diff --git a/.eslintignore b/.eslintignore
new file mode 100644
index 0000000000..09ed0ee8ad
--- /dev/null
+++ b/.eslintignore
@@ -0,0 +1,4 @@
+node_modules
+test
+test.js
+bench.js
diff --git a/.eslintrc.js b/.eslintrc.js
new file mode 100644
index 0000000000..ae93f706a1
--- /dev/null
+++ b/.eslintrc.js
@@ -0,0 +1,8 @@
+module.exports = {
+ "extends": "mourner",
+ "rules": {
+ "strict": [0],
+ "camelcase": [0],
+ "consistent-return": [0]
+ }
+};
diff --git a/.gitignore b/.gitignore
index 12f494fe89..673ee839b7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,7 +15,3 @@ results
npm-debug.log
node_modules
-
-out
-
-turf_modules
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 20fd86b6a5..0000000000
--- a/.travis.yml
+++ /dev/null
@@ -1,3 +0,0 @@
-language: node_js
-node_js:
- - 0.10
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1b0ab6a332..04ea0f204f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,82 @@
+# 3.0.1
+
+This is a big change in Turf! 3.0.0 is a release that targets the development
+cycle of Turf, letting us work on it more and release more often.
+
+**Monorepo**
+
+Turf 3.x and forward is a **monorepo** project. We publish lots of little modules
+as usual, but there's one repo - turfjs/turf - that contains all the code
+and the issues for the Turf source code. We use [lerna](https://lernajs.io/)
+to link these packages together and make sure they work.
+
+Why? We already had internal turf modules, like `turf-meta`, and development
+was harder and harder - we had a bunch of custom scripts to do releases and
+tests, and these were just written for Turf. Lerna is from the very popular
+and very well-maintained [babel](http://www.babeljs.io) project, and it
+works really well, and reduces maintainer sadness.
+
+**Simplicity**
+
+Turf grew a bunch of modules that weren't totally necessary, or were
+expressing only a line or two of JavaScript. We want to make things easier,
+but these modules didn't make code more expressive and they hid complexity
+where it didn't need to be hidden. Turf 3.x focuses on the core
+functionalities we need, making sure they're tested and performant.
+
+turf-erase has been renamed turf-difference to make its name more similar to the equivalents in other libraries.
+
+Removed modules: merge, sum, min, max, average, median, variance, deviation, filter, remove, jenks, quantile.
+See the upgrade guide below for replacements.
+
+**Upgrading from v2**
+
+**If you were using turf-merge**
+
+turf-merge repeatedly called turf-union on an array of polygons. Here's
+how to implement the same thing without the special module
+
+```js
+var clone = require('clone');
+var union = require('turf-union');
+function merge(polygons) {
+ var merged = clone(polygons.features[0]), features = polygons.features;
+ for (var i = 0, len = features.length; i < len; i++) {
+ var poly = features[i];
+ if (poly.geometry) merged = union(merged, poly);
+ }
+ return merged;
+}
+```
+
+**If you were using turf-sum, min, max, average, median, variance, deviation**
+
+The `turf-collect` method provides the core of these statistical methods
+and lets you bring your own statistical library, like `simple-statistics`,
+`science.js`, or others.
+
+**If you were using turf-filter, turf-remove**
+
+These modules were thin wrappers around native JavaScript methods: use
+[Array.filter](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/filter) instead:
+
+```js
+var filteredFeatures = features.filter(function(feature) {
+ return feature.properties.value > 10;
+});
+```
+
+**If you were using turf-jenks, turf-quantile**
+
+Use Array.map to get values, and then bring your own statistical calculation,
+like simple-statistics or science.js.
+
+```js
+var values = features.map(function(feature) {
+ return feature.properties.value;
+});
+```
+
# 2.0.0
* turf-grid renamed turf-point-grid (turf.grid => turf.pointGrid)
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 127596fca2..105b32c2cd 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,3 +1,5 @@
+### :bug: [How to report a bug](http://polite.technology/reportabug.html)
+
## How To Contribute
- Most work happens in sub modules. These are modules prefixed with "turf-".
@@ -13,7 +15,7 @@
To ensure code style at the `turf` module level, run
```sh
-$ npm run lint
+$ npm test
```
* Follow the [AirBNB JavaScript code style](https://github.com/airbnb/javascript).
@@ -33,3 +35,13 @@ turf-hello
|-index.js
|-README.md
```
+
+## Publishing
+
+Install lerna:
+
+ npm install -g lerna@2.0.0-beta.9
+
+Publish a test release:
+
+ lerna publish --canary
diff --git a/README.md b/README.md
index e82bb3a587..7b458247f7 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,16 @@
![turf](https://raw.githubusercontent.com/Turfjs/turf/9a1d5e8d99564d4080f1e2bf1517ed41d18012fa/logo.png)
======
- [![Version Badge](http://vb.teelaun.ch/Turfjs/turf.svg)](https://npmjs.org/package/turf) [![Build Status](https://travis-ci.org/Turfjs/turf.svg?branch=master)](https://travis-ci.org/Turfjs/turf) [![Gitter chat](https://badges.gitter.im/Turfjs/turf.png)](https://gitter.im/Turfjs/turf)
+**We just released Turf 3! Try it out**
+[![Version Badge][npm-img]][npm-url]
+[![Circle CI](https://circleci.com/gh/Turfjs/turf.svg?style=svg)](https://circleci.com/gh/Turfjs/turf)
+[![Gitter chat][gitter-img]][gitter-url]
+
+[npm-img]: https://img.shields.io/npm/v/turf.svg
+[npm-url]: https://www.npmjs.com/package/turf
+[gitter-img]: https://badges.gitter.im/Turfjs/turf.png
+[gitter-url]: https://gitter.im/Turfjs/turf
***A modular geospatial engine written in JavaScript***
@@ -12,7 +20,7 @@
[Turf](https://turfjs.org) is a [JavaScript library](https://en.wikipedia.org/wiki/JavaScript_library) for [spatial analysis](http://en.wikipedia.org/wiki/Spatial_analysis). It includes traditional spatial operations, helper functions for creating [GeoJSON](http://geojson.org) data, and data classification and statistics tools. Turf can be added to your website as a client-side plugin, or you can [run Turf server-side](https://www.npmjs.com/package/turf) with [Node.js](http://nodejs.org/) (see below).
-##Installation
+## Installation
**In Node.js:**
@@ -22,12 +30,14 @@ npm install turf
**In browser:**
-Download the [minified file](https://raw.github.com/morganherlocker/turf/master/turf.min.js), and include it in a script tag. This will expose a global variable named "turf".
+Download the [minified file](https://raw.githubusercontent.com/Turfjs/turf/v2.0.2/turf.min.js), and include it in a script tag. This will expose a global variable named `turf`.
```html
```
+You can create light-weight turf builds with only the functions you need using the [turfjs-builder UI](https://turfjs-builder.herokuapp.com/) or using browserify as described below.
+
**Browserify:**
All of Turf's functions can also be installed as separate modules. This works well with tools like [browserify](http://browserify.org/) where you want to install only the code you need. It also allows you to mix and match modules. This is the recommended usage pattern for most production environments. For example, to install the *point* and *buffer* modules use:
@@ -38,7 +48,7 @@ npm install turf-point turf-buffer
- - -
-###Data in Turf
+### Data in Turf
Turf uses GeoJSON for all geographic data. Turf expects the data to be standard WGS84 longitude, latitude coordinates. Check out geojson.io for a tool to easily create this data.
@@ -62,141 +72,3 @@ var point2 = {
properties: {}
};
```
-
-- - -
-
-##Functions
-
-####geometry
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-point.svg?branch=master)](https://travis-ci.org/Turfjs/turf-point) [point](https://github.com/Turfjs/turf-point)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-linestring.svg?branch=master)](https://travis-ci.org/Turfjs/turf-linestring) [linestring](https://github.com/Turfjs/turf-linestring)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-polygon.svg?branch=master)](https://travis-ci.org/Turfjs/turf-polygon) [polygon](https://github.com/Turfjs/turf-polygon)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-featurecollection.svg?branch=master)](https://travis-ci.org/Turfjs/turf-featurecollection) [featurecollection](https://github.com/Turfjs/turf-featurecollection)
-
-####joins
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-inside.svg?branch=master)](https://travis-ci.org/Turfjs/turf-inside) [inside](https://github.com/Turfjs/turf-inside)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-within.svg?branch=master)](https://travis-ci.org/Turfjs/turf-within) [within](https://github.com/Turfjs/turf-within)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-tag.svg?branch=master)](https://travis-ci.org/Turfjs/turf-tag) [tag](https://github.com/Turfjs/turf-tag)
-
-####data
-[![Build Status](https://travis-ci.org/Turfjs/turf-remove.svg?branch=master)](https://travis-ci.org/Turfjs/turf-remove) [remove](https://github.com/Turfjs/turf-remove)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-filter.svg?branch=master)](https://travis-ci.org/Turfjs/turf-filter) [filter](https://github.com/Turfjs/turf-filter)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-sample.svg?branch=master)](https://travis-ci.org/Turfjs/turf-sample) [sample](https://github.com/Turfjs/turf-sample)
-
-####measurement
-[![Build Status](https://travis-ci.org/Turfjs/turf-distance.svg?branch=master)](https://travis-ci.org/Turfjs/turf-distance) [distance](https://github.com/Turfjs/turf-distance)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-area.svg?branch=master)](https://travis-ci.org/Turfjs/turf-area) [area](https://github.com/Turfjs/turf-area)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-nearest.svg?branch=master)](https://travis-ci.org/Turfjs/turf-nearest) [nearest](https://github.com/Turfjs/turf-nearest)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-bbox-polygon.svg?branch=master)](https://travis-ci.org/Turfjs/turf-bbox-polygon) [bbox-polygon](https://github.com/Turfjs/turf-bbox-polygon)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-envelope.svg?branch=master)](https://travis-ci.org/Turfjs/turf-envelope) [envelope](https://github.com/Turfjs/turf-envelope)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-extent.svg?branch=master)](https://travis-ci.org/Turfjs/turf-extent) [extent](https://github.com/Turfjs/turf-extent)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-square.svg?branch=master)](https://travis-ci.org/Turfjs/turf-square) [square](https://github.com/Turfjs/turf-square)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-size.svg?branch=master)](https://travis-ci.org/Turfjs/turf-size) [size](https://github.com/Turfjs/turf-size)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-center.svg?branch=master)](https://travis-ci.org/Turfjs/turf-center) [center](https://github.com/Turfjs/turf-center)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-centroid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-centroid) [centroid](https://github.com/Turfjs/turf-centroid)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-point-on-surface.svg?branch=master)](https://travis-ci.org/Turfjs/turf-point-on-surface) [point-on-surface](https://github.com/Turfjs/turf-point-on-surface)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-midpoint.svg?branch=master)](https://travis-ci.org/Turfjs/turf-midpoint) [midpoint](https://github.com/Turfjs/turf-midpoint)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-bearing.svg?branch=master)](https://travis-ci.org/Turfjs/turf-bearing) [bearing](https://github.com/Turfjs/turf-bearing)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-destination.svg?branch=master)](https://travis-ci.org/Turfjs/turf-destination) [destination](https://github.com/Turfjs/turf-destination)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-line-distance.svg?branch=master)](https://travis-ci.org/Turfjs/turf-line-distance) [line-distance](https://github.com/Turfjs/turf-line-distance)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-along.svg?branch=master)](https://travis-ci.org/Turfjs/turf-along) [along](https://github.com/Turfjs/turf-along)
-
-####interpolation
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-tin.svg?branch=master)](https://travis-ci.org/Turfjs/turf-tin) [tin](https://github.com/Turfjs/turf-tin)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-planepoint.svg?branch=master)](https://travis-ci.org/Turfjs/turf-planepoint) [planepoint](https://github.com/Turfjs/turf-planepoint)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-isolines.svg?branch=master)](https://travis-ci.org/Turfjs/turf-isolines) [isolines](https://github.com/Turfjs/turf-isolines)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-isobands.svg?branch=master)](https://travis-ci.org/Turfjs/turf-isobands) [isobands](https://github.com/Turfjs/turf-isobands)
-
-####grids
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-point-grid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-point-grid) [point-grid](https://github.com/Turfjs/turf-point-grid)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-square-grid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-square-grid) [square-grid](https://github.com/Turfjs/turf-square-grid)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-hex-grid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-hex-grid) [hex-grid](https://github.com/Turfjs/turf-hex-grid)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-triangle-grid.svg?branch=master)](https://travis-ci.org/Turfjs/turf-triangle-grid) [triangle-grid](https://github.com/Turfjs/turf-triangle-grid)
-
-####classification
-[![Build Status](https://travis-ci.org/Turfjs/turf-quantile.svg?branch=master)](https://travis-ci.org/Turfjs/turf-quantile) [quantile](https://github.com/Turfjs/turf-quantile)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-jenks.svg?branch=master)](https://travis-ci.org/Turfjs/turf-jenks) [jenks](https://github.com/Turfjs/turf-jenks)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-reclass.svg?branch=master)](https://travis-ci.org/Turfjs/turf-reclass) [reclass](https://github.com/Turfjs/turf-reclass)
-
-####aggregation
-[![Build Status](https://travis-ci.org/Turfjs/turf-average.svg?branch=master)](https://travis-ci.org/Turfjs/turf-average) [average](https://github.com/Turfjs/turf-average)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-median.svg?branch=master)](https://travis-ci.org/Turfjs/turf-median) [median](https://github.com/Turfjs/turf-median)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-sum.svg?branch=master)](https://travis-ci.org/Turfjs/turf-sum) [sum](https://github.com/Turfjs/turf-sum)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-min.svg?branch=master)](https://travis-ci.org/Turfjs/turf-min) [min](https://github.com/Turfjs/turf-min)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-max.svg?branch=master)](https://travis-ci.org/Turfjs/turf-max) [max](https://github.com/Turfjs/turf-max)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-count.svg?branch=master)](https://travis-ci.org/Turfjs/turf-count) [count](https://github.com/Turfjs/turf-count)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-deviation.svg?branch=master)](https://travis-ci.org/Turfjs/turf-deviation) [deviation](https://github.com/Turfjs/turf-deviation)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-variance.svg?branch=master)](https://travis-ci.org/Turfjs/turf-variance) [variance](https://github.com/Turfjs/turf-variance)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-aggregate.svg?branch=master)](https://travis-ci.org/Turfjs/turf-aggregate) [aggregate](https://github.com/Turfjs/turf-aggregate)
-
-####transformation
-[![Build Status](https://travis-ci.org/Turfjs/turf-buffer.svg?branch=master)](https://travis-ci.org/Turfjs/turf-buffer) [buffer](https://github.com/Turfjs/turf-buffer)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-bezier.svg?branch=master)](https://travis-ci.org/Turfjs/turf-bezier) [bezier](https://github.com/Turfjs/turf-bezier)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-simplify.svg?branch=master)](https://travis-ci.org/Turfjs/turf-simplify) [simplify](https://github.com/Turfjs/turf-simplify)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-union.svg?branch=master)](https://travis-ci.org/Turfjs/turf-union) [union](https://github.com/Turfjs/turf-union)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-merge.svg?branch=master)](https://travis-ci.org/Turfjs/turf-merge) [merge](https://github.com/Turfjs/turf-merge)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-intersect.svg?branch=master)](https://travis-ci.org/Turfjs/turf-intersect) [intersect](https://github.com/Turfjs/turf-intersect)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-erase.svg?branch=master)](https://travis-ci.org/Turfjs/turf-erase) [erase](https://github.com/Turfjs/turf-erase)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-convex.svg?branch=master)](https://travis-ci.org/Turfjs/turf-convex) [convex](https://github.com/Turfjs/turf-convex)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-concave.svg?branch=master)](https://travis-ci.org/Turfjs/turf-concave) [concave](https://github.com/Turfjs/turf-concave)
-
-####misc
-[![Build Status](https://travis-ci.org/Turfjs/turf-flip.svg?branch=master)](https://travis-ci.org/Turfjs/turf-flip) [flip](https://github.com/Turfjs/turf-flip)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-explode.svg?branch=master)](https://travis-ci.org/Turfjs/turf-explode) [explode](https://github.com/Turfjs/turf-explode)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-combine.svg?branch=master)](https://travis-ci.org/Turfjs/turf-combine) [combine](https://github.com/Turfjs/turf-combine)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-is-clockwise.svg?branch=master)](https://travis-ci.org/Turfjs/turf-is-clockwise) [is-clockwise](https://github.com/Turfjs/turf-is-clockwise)
-
-[![Build Status](https://travis-ci.org/Turfjs/turf-kinks.svg?branch=master)](https://travis-ci.org/Turfjs/turf-kinks) [kinks](https://github.com/Turfjs/turf-kinks)
diff --git a/bower.json b/bower.json
index 7343a2e597..f152fca982 100644
--- a/bower.json
+++ b/bower.json
@@ -1,6 +1,5 @@
{
"name": "turf",
- "version": "1.4.0",
"description": "",
"homepage": "https://github.com/morganherlocker/turf",
"main": "turf.min.js",
diff --git a/circle.yml b/circle.yml
new file mode 100644
index 0000000000..807a2a68d2
--- /dev/null
+++ b/circle.yml
@@ -0,0 +1,3 @@
+machine:
+ node:
+ version: 5
diff --git a/commit_all.sh b/commit_all.sh
deleted file mode 100755
index 940a5060e4..0000000000
--- a/commit_all.sh
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-
-for d in turf_modules/*; do
- (cd $d; git add .)
- (cd $d; git commit -m "$1")
- (cd $d; git push origin master)
-done
diff --git a/index.js b/index.js
deleted file mode 100644
index a6d373f532..0000000000
--- a/index.js
+++ /dev/null
@@ -1,70 +0,0 @@
-/**
- * Turf is a modular GIS engine written in JavaScript. It performs geospatial
- * processing tasks with GeoJSON data and can be run on a server or in a browser.
- *
- * @module turf
- * @summary GIS For Web Maps
- */
-module.exports = {
- isolines: require('turf-isolines'),
- merge: require('turf-merge'),
- convex: require('turf-convex'),
- within: require('turf-within'),
- concave: require('turf-concave'),
- count: require('turf-count'),
- erase: require('turf-erase'),
- variance: require('turf-variance'),
- deviation: require('turf-deviation'),
- median: require('turf-median'),
- min: require('turf-min'),
- max: require('turf-max'),
- aggregate: require('turf-aggregate'),
- flip: require('turf-flip'),
- simplify: require('turf-simplify'),
- sum: require('turf-sum'),
- average: require('turf-average'),
- bezier: require('turf-bezier'),
- tag: require('turf-tag'),
- size: require('turf-size'),
- sample: require('turf-sample'),
- jenks: require('turf-jenks'),
- quantile: require('turf-quantile'),
- envelope: require('turf-envelope'),
- square: require('turf-square'),
- midpoint: require('turf-midpoint'),
- buffer: require('turf-buffer'),
- center: require('turf-center'),
- centroid: require('turf-centroid'),
- combine: require('turf-combine'),
- distance: require('turf-distance'),
- explode: require('turf-explode'),
- extent: require('turf-extent'),
- bboxPolygon: require('turf-bbox-polygon'),
- featurecollection: require('turf-featurecollection'),
- filter: require('turf-filter'),
- inside: require('turf-inside'),
- intersect: require('turf-intersect'),
- linestring: require('turf-linestring'),
- nearest: require('turf-nearest'),
- planepoint: require('turf-planepoint'),
- point: require('turf-point'),
- polygon: require('turf-polygon'),
- random: require('turf-random'),
- reclass: require('turf-reclass'),
- remove: require('turf-remove'),
- tin: require('turf-tin'),
- union: require('turf-union'),
- bearing: require('turf-bearing'),
- destination: require('turf-destination'),
- kinks: require('turf-kinks'),
- pointOnSurface: require('turf-point-on-surface'),
- area: require('turf-area'),
- along: require('turf-along'),
- lineDistance: require('turf-line-distance'),
- lineSlice: require('turf-line-slice'),
- pointOnLine: require('turf-point-on-line'),
- pointGrid: require('turf-point-grid'),
- squareGrid: require('turf-square-grid'),
- triangleGrid: require('turf-triangle-grid'),
- hexGrid: require('turf-hex-grid')
-};
diff --git a/lerna.json b/lerna.json
new file mode 100644
index 0000000000..ed84b330d6
--- /dev/null
+++ b/lerna.json
@@ -0,0 +1,4 @@
+{
+ "lerna": "2.0.0-beta.9",
+ "version": "3.0.5"
+}
diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json
deleted file mode 100644
index 345d0a7fac..0000000000
--- a/npm-shrinkwrap.json
+++ /dev/null
@@ -1,598 +0,0 @@
-{
- "name": "turf",
- "version": "2.0.2",
- "dependencies": {
- "turf-aggregate": {
- "version": "1.0.2",
- "from": "turf-aggregate@1.0.2",
- "resolved": "https://registry.npmjs.org/turf-aggregate/-/turf-aggregate-1.0.2.tgz"
- },
- "turf-along": {
- "version": "1.0.2",
- "from": "turf-along@>=1.0.2 <2.0.0"
- },
- "turf-area": {
- "version": "1.1.1",
- "from": "turf-area@>=1.1.1 <2.0.0",
- "dependencies": {
- "geojson-area": {
- "version": "0.2.0",
- "from": "geojson-area@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/geojson-area/-/geojson-area-0.2.0.tgz",
- "dependencies": {
- "wgs84": {
- "version": "0.0.0",
- "from": "wgs84@0.0.0",
- "resolved": "https://registry.npmjs.org/wgs84/-/wgs84-0.0.0.tgz"
- }
- }
- }
- }
- },
- "turf-average": {
- "version": "1.1.1",
- "from": "turf-average@1.1.1",
- "resolved": "https://registry.npmjs.org/turf-average/-/turf-average-1.1.1.tgz"
- },
- "turf-bbox-polygon": {
- "version": "1.0.1",
- "from": "turf-bbox-polygon@>=1.0.1 <2.0.0"
- },
- "turf-bearing": {
- "version": "1.0.1",
- "from": "turf-bearing@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-bearing/-/turf-bearing-1.0.1.tgz"
- },
- "turf-bezier": {
- "version": "1.0.2",
- "from": "turf-bezier@1.0.2",
- "resolved": "https://registry.npmjs.org/turf-bezier/-/turf-bezier-1.0.2.tgz"
- },
- "turf-buffer": {
- "version": "1.0.1",
- "from": "turf-buffer@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-buffer/-/turf-buffer-1.0.1.tgz",
- "dependencies": {
- "jsts": {
- "version": "0.15.0",
- "from": "jsts@>=0.15.0 <0.16.0",
- "resolved": "https://registry.npmjs.org/jsts/-/jsts-0.15.0.tgz",
- "dependencies": {
- "javascript.util": {
- "version": "0.12.5",
- "resolved": "https://registry.npmjs.org/javascript.util/-/javascript.util-0.12.5.tgz"
- }
- }
- }
- }
- },
- "turf-center": {
- "version": "1.0.2",
- "from": "turf-center@>=1.0.2 <2.0.0"
- },
- "turf-centroid": {
- "version": "1.1.2",
- "from": "turf-centroid@>=1.1.2 <2.0.0",
- "dependencies": {
- "turf-meta": {
- "version": "1.0.2",
- "from": "turf-meta@>=1.0.2 <2.0.0"
- }
- }
- },
- "turf-combine": {
- "version": "1.0.2",
- "from": "turf-combine@1.0.2",
- "resolved": "https://registry.npmjs.org/turf-combine/-/turf-combine-1.0.2.tgz"
- },
- "turf-concave": {
- "version": "1.1.3",
- "from": "turf-concave@1.1.3",
- "resolved": "https://registry.npmjs.org/turf-concave/-/turf-concave-1.1.3.tgz"
- },
- "turf-convex": {
- "version": "1.0.1",
- "from": "turf-convex@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-convex/-/turf-convex-1.0.1.tgz",
- "dependencies": {
- "convex-hull": {
- "version": "1.0.3",
- "from": "convex-hull@>=1.0.3 <2.0.0",
- "resolved": "https://registry.npmjs.org/convex-hull/-/convex-hull-1.0.3.tgz",
- "dependencies": {
- "affine-hull": {
- "version": "1.0.0",
- "from": "affine-hull@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/affine-hull/-/affine-hull-1.0.0.tgz",
- "dependencies": {
- "robust-orientation": {
- "version": "1.1.3",
- "from": "robust-orientation@>=1.1.3 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz",
- "dependencies": {
- "robust-scale": {
- "version": "1.0.2",
- "from": "robust-scale@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz",
- "dependencies": {
- "two-sum": {
- "version": "1.0.0",
- "from": "two-sum@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/two-sum/-/two-sum-1.0.0.tgz"
- }
- }
- },
- "robust-sum": {
- "version": "1.0.0",
- "from": "robust-sum@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz"
- },
- "two-product": {
- "version": "1.0.2",
- "from": "two-product@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/two-product/-/two-product-1.0.2.tgz"
- },
- "robust-subtract": {
- "version": "1.0.0",
- "from": "robust-subtract@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz"
- }
- }
- }
- }
- },
- "incremental-convex-hull": {
- "version": "1.0.1",
- "from": "incremental-convex-hull@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/incremental-convex-hull/-/incremental-convex-hull-1.0.1.tgz",
- "dependencies": {
- "simplicial-complex": {
- "version": "1.0.0",
- "from": "simplicial-complex@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/simplicial-complex/-/simplicial-complex-1.0.0.tgz",
- "dependencies": {
- "bit-twiddle": {
- "version": "1.0.2",
- "from": "bit-twiddle@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/bit-twiddle/-/bit-twiddle-1.0.2.tgz"
- },
- "union-find": {
- "version": "1.0.2",
- "from": "union-find@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/union-find/-/union-find-1.0.2.tgz"
- }
- }
- },
- "robust-orientation": {
- "version": "1.1.3",
- "from": "robust-orientation@>=1.1.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz",
- "dependencies": {
- "robust-scale": {
- "version": "1.0.2",
- "from": "robust-scale@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz",
- "dependencies": {
- "two-sum": {
- "version": "1.0.0",
- "from": "two-sum@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/two-sum/-/two-sum-1.0.0.tgz"
- }
- }
- },
- "robust-sum": {
- "version": "1.0.0",
- "from": "robust-sum@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz"
- },
- "two-product": {
- "version": "1.0.2",
- "from": "two-product@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/two-product/-/two-product-1.0.2.tgz"
- },
- "robust-subtract": {
- "version": "1.0.0",
- "from": "robust-subtract@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz"
- }
- }
- }
- }
- },
- "monotone-convex-hull-2d": {
- "version": "1.0.1",
- "from": "monotone-convex-hull-2d@>=1.0.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/monotone-convex-hull-2d/-/monotone-convex-hull-2d-1.0.1.tgz",
- "dependencies": {
- "robust-orientation": {
- "version": "1.1.3",
- "from": "robust-orientation@>=1.1.3 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz",
- "dependencies": {
- "robust-scale": {
- "version": "1.0.2",
- "from": "robust-scale@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-scale/-/robust-scale-1.0.2.tgz",
- "dependencies": {
- "two-sum": {
- "version": "1.0.0",
- "from": "two-sum@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/two-sum/-/two-sum-1.0.0.tgz"
- }
- }
- },
- "robust-sum": {
- "version": "1.0.0",
- "from": "robust-sum@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-sum/-/robust-sum-1.0.0.tgz"
- },
- "two-product": {
- "version": "1.0.2",
- "from": "two-product@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/two-product/-/two-product-1.0.2.tgz"
- },
- "robust-subtract": {
- "version": "1.0.0",
- "from": "robust-subtract@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/robust-subtract/-/robust-subtract-1.0.0.tgz"
- }
- }
- }
- }
- }
- }
- },
- "turf-meta": {
- "version": "1.0.2",
- "from": "turf-meta@>=1.0.2 <2.0.0"
- }
- }
- },
- "turf-count": {
- "version": "1.0.2",
- "from": "turf-count@1.0.2",
- "resolved": "https://registry.npmjs.org/turf-count/-/turf-count-1.0.2.tgz"
- },
- "turf-destination": {
- "version": "1.2.1",
- "from": "turf-destination@>=1.2.1 <2.0.0"
- },
- "turf-deviation": {
- "version": "1.0.1",
- "from": "turf-deviation@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-deviation/-/turf-deviation-1.0.1.tgz",
- "dependencies": {
- "simple-statistics": {
- "version": "0.9.1",
- "from": "simple-statistics@>=0.9.0 <0.10.0",
- "resolved": "https://registry.npmjs.org/simple-statistics/-/simple-statistics-0.9.1.tgz"
- }
- }
- },
- "turf-distance": {
- "version": "1.0.1",
- "from": "turf-distance@>=1.0.1 <2.0.0",
- "dependencies": {
- "turf-invariant": {
- "version": "1.0.3",
- "from": "turf-invariant@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/turf-invariant/-/turf-invariant-1.0.3.tgz"
- }
- }
- },
- "turf-envelope": {
- "version": "1.0.2",
- "from": "turf-envelope@>=1.0.2 <1.1.0"
- },
- "turf-erase": {
- "version": "1.3.1",
- "from": "turf-erase@1.3.1",
- "resolved": "https://registry.npmjs.org/turf-erase/-/turf-erase-1.3.1.tgz",
- "dependencies": {
- "jsts": {
- "version": "0.15.0",
- "from": "jsts@>=0.15.0 <0.16.0",
- "resolved": "https://registry.npmjs.org/jsts/-/jsts-0.15.0.tgz",
- "dependencies": {
- "javascript.util": {
- "version": "0.12.5",
- "resolved": "https://registry.npmjs.org/javascript.util/-/javascript.util-0.12.5.tgz"
- }
- }
- }
- }
- },
- "turf-explode": {
- "version": "1.0.1",
- "from": "turf-explode@>=1.0.1 <2.0.0",
- "dependencies": {
- "turf-meta": {
- "version": "1.0.2",
- "from": "turf-meta@>=1.0.2 <2.0.0"
- }
- }
- },
- "turf-extent": {
- "version": "1.0.4",
- "from": "turf-extent@>=1.0.4 <2.0.0",
- "dependencies": {
- "turf-meta": {
- "version": "1.0.2",
- "from": "turf-meta@>=1.0.2 <2.0.0"
- }
- }
- },
- "turf-featurecollection": {
- "version": "1.0.1",
- "from": "turf-featurecollection@>=1.0.1 <1.1.0"
- },
- "turf-filter": {
- "version": "1.0.1",
- "from": "turf-filter@>=1.0.1 <2.0.0"
- },
- "turf-flip": {
- "version": "1.0.3",
- "from": "turf-flip@1.0.3",
- "resolved": "https://registry.npmjs.org/turf-flip/-/turf-flip-1.0.3.tgz"
- },
- "turf-hex-grid": {
- "version": "2.0.1",
- "from": "turf-hex-grid@>=2.0.1 <3.0.0"
- },
- "turf-inside": {
- "version": "1.1.4",
- "from": "turf-inside@>=1.1.4 <2.0.0",
- "dependencies": {
- "minimist": {
- "version": "1.1.1",
- "from": "minimist@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.1.tgz"
- }
- }
- },
- "turf-intersect": {
- "version": "1.4.1",
- "from": "turf-intersect@1.4.1",
- "resolved": "https://registry.npmjs.org/turf-intersect/-/turf-intersect-1.4.1.tgz",
- "dependencies": {
- "jsts": {
- "version": "0.15.0",
- "from": "jsts@>=0.15.0 <0.16.0",
- "resolved": "https://registry.npmjs.org/jsts/-/jsts-0.15.0.tgz",
- "dependencies": {
- "javascript.util": {
- "version": "0.12.5",
- "resolved": "https://registry.npmjs.org/javascript.util/-/javascript.util-0.12.5.tgz"
- }
- }
- }
- }
- },
- "turf-isolines": {
- "version": "1.0.2",
- "from": "turf-isolines@1.0.2",
- "resolved": "https://registry.npmjs.org/turf-isolines/-/turf-isolines-1.0.2.tgz",
- "dependencies": {
- "turf-grid": {
- "version": "1.0.1",
- "from": "turf-grid@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/turf-grid/-/turf-grid-1.0.1.tgz"
- }
- }
- },
- "turf-jenks": {
- "version": "1.0.1",
- "from": "turf-jenks@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-jenks/-/turf-jenks-1.0.1.tgz",
- "dependencies": {
- "simple-statistics": {
- "version": "0.9.1",
- "from": "simple-statistics@>=0.9.0 <0.10.0",
- "resolved": "https://registry.npmjs.org/simple-statistics/-/simple-statistics-0.9.1.tgz"
- }
- }
- },
- "turf-kinks": {
- "version": "1.3.1",
- "from": "turf-kinks@>=1.3.1 <2.0.0"
- },
- "turf-line-distance": {
- "version": "1.0.2",
- "from": "turf-line-distance@>=1.0.2 <2.0.0"
- },
- "turf-line-slice": {
- "version": "1.3.4",
- "from": "turf-line-slice@>=1.3.4 <2.0.0"
- },
- "turf-linestring": {
- "version": "1.0.2",
- "from": "turf-linestring@>=1.0.2 <2.0.0"
- },
- "turf-max": {
- "version": "1.0.1",
- "from": "turf-max@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-max/-/turf-max-1.0.1.tgz"
- },
- "turf-median": {
- "version": "1.0.2",
- "from": "turf-median@1.0.2",
- "resolved": "https://registry.npmjs.org/turf-median/-/turf-median-1.0.2.tgz"
- },
- "turf-merge": {
- "version": "1.0.2",
- "from": "turf-merge@1.0.2",
- "resolved": "https://registry.npmjs.org/turf-merge/-/turf-merge-1.0.2.tgz",
- "dependencies": {
- "clone": {
- "version": "0.2.0",
- "from": "clone@>=0.2.0 <0.3.0",
- "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz"
- }
- }
- },
- "turf-midpoint": {
- "version": "1.0.1",
- "from": "turf-midpoint@>=1.0.1 <2.0.0"
- },
- "turf-min": {
- "version": "1.0.1",
- "from": "turf-min@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-min/-/turf-min-1.0.1.tgz"
- },
- "turf-nearest": {
- "version": "1.0.2",
- "from": "turf-nearest@>=1.0.2 <2.0.0"
- },
- "turf-planepoint": {
- "version": "1.0.1",
- "from": "turf-planepoint@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-planepoint/-/turf-planepoint-1.0.1.tgz"
- },
- "turf-point": {
- "version": "2.0.1",
- "from": "turf-point@>=2.0.1 <3.0.0",
- "dependencies": {
- "minimist": {
- "version": "1.1.1",
- "from": "minimist@>=1.1.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.1.1.tgz"
- }
- }
- },
- "turf-point-grid": {
- "version": "2.0.0",
- "from": "turf-point-grid@>=2.0.0 <3.0.0"
- },
- "turf-point-on-line": {
- "version": "1.0.2",
- "from": "turf-point-on-line@>=1.0.2 <2.0.0"
- },
- "turf-point-on-surface": {
- "version": "1.1.1",
- "from": "turf-point-on-surface@>=1.1.1 <2.0.0"
- },
- "turf-polygon": {
- "version": "1.0.3",
- "from": "turf-polygon@>=1.0.3 <2.0.0"
- },
- "turf-quantile": {
- "version": "1.0.1",
- "from": "turf-quantile@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-quantile/-/turf-quantile-1.0.1.tgz",
- "dependencies": {
- "simple-statistics": {
- "version": "0.9.1",
- "from": "simple-statistics@>=0.9.0 <0.10.0",
- "resolved": "https://registry.npmjs.org/simple-statistics/-/simple-statistics-0.9.1.tgz"
- }
- }
- },
- "turf-random": {
- "version": "1.0.2",
- "from": "turf-random@>=1.0.2 <2.0.0",
- "resolved": "https://registry.npmjs.org/turf-random/-/turf-random-1.0.2.tgz",
- "dependencies": {
- "geojson-random": {
- "version": "0.2.2",
- "from": "geojson-random@>=0.2.2 <0.3.0",
- "resolved": "https://registry.npmjs.org/geojson-random/-/geojson-random-0.2.2.tgz"
- }
- }
- },
- "turf-reclass": {
- "version": "1.0.1",
- "from": "turf-reclass@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-reclass/-/turf-reclass-1.0.1.tgz"
- },
- "turf-remove": {
- "version": "1.0.1",
- "from": "turf-remove@>=1.0.1 <2.0.0"
- },
- "turf-sample": {
- "version": "1.0.1",
- "from": "turf-sample@>=1.0.1 <2.0.0"
- },
- "turf-simplify": {
- "version": "1.0.3",
- "from": "turf-simplify@>=1.0.3 <2.0.0",
- "dependencies": {
- "simplify-js": {
- "version": "1.2.1",
- "from": "simplify-js@>=1.2.1 <2.0.0",
- "resolved": "https://registry.npmjs.org/simplify-js/-/simplify-js-1.2.1.tgz"
- }
- }
- },
- "turf-size": {
- "version": "1.1.1",
- "from": "turf-size@>=1.1.1 <2.0.0"
- },
- "turf-square": {
- "version": "1.0.1",
- "from": "turf-square@>=1.0.1 <2.0.0"
- },
- "turf-square-grid": {
- "version": "1.0.1",
- "from": "turf-square-grid@>=1.0.0 <2.0.0"
- },
- "turf-sum": {
- "version": "1.0.1",
- "from": "turf-sum@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-sum/-/turf-sum-1.0.1.tgz"
- },
- "turf-tag": {
- "version": "1.0.1",
- "from": "turf-tag@>=1.0.1 <1.1.0"
- },
- "turf-tin": {
- "version": "1.0.6",
- "from": "turf-tin@1.0.6",
- "resolved": "https://registry.npmjs.org/turf-tin/-/turf-tin-1.0.6.tgz"
- },
- "turf-triangle-grid": {
- "version": "1.0.1",
- "from": "turf-triangle-grid@>=1.0.0 <2.0.0",
- "dependencies": {
- "benchmark": {
- "version": "1.0.0",
- "from": "benchmark@>=1.0.0 <2.0.0",
- "resolved": "https://registry.npmjs.org/benchmark/-/benchmark-1.0.0.tgz"
- }
- }
- },
- "turf-union": {
- "version": "1.0.1",
- "from": "turf-union@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-union/-/turf-union-1.0.1.tgz",
- "dependencies": {
- "jsts": {
- "version": "0.15.0",
- "from": "jsts@>=0.15.0 <0.16.0",
- "resolved": "https://registry.npmjs.org/jsts/-/jsts-0.15.0.tgz",
- "dependencies": {
- "javascript.util": {
- "version": "0.12.5",
- "resolved": "https://registry.npmjs.org/javascript.util/-/javascript.util-0.12.5.tgz"
- }
- }
- }
- }
- },
- "turf-variance": {
- "version": "1.0.1",
- "from": "turf-variance@1.0.1",
- "resolved": "https://registry.npmjs.org/turf-variance/-/turf-variance-1.0.1.tgz",
- "dependencies": {
- "simple-statistics": {
- "version": "0.9.1",
- "from": "simple-statistics@>=0.9.0 <0.10.0",
- "resolved": "https://registry.npmjs.org/simple-statistics/-/simple-statistics-0.9.1.tgz"
- }
- }
- },
- "turf-within": {
- "version": "1.0.1",
- "from": "turf-within@>=1.0.1 <2.0.0"
- }
- }
-}
diff --git a/package.json b/package.json
index 90dc4c5c9f..51ec564eca 100644
--- a/package.json
+++ b/package.json
@@ -1,28 +1,10 @@
{
- "name": "turf",
- "version": "2.0.2",
+ "private": true,
+ "version": "3.0.0",
"description": "a node.js library for performing geospatial operations with geojson",
- "main": "index.js",
"scripts": {
- "test": "node test.js",
- "build": "browserify index.js -s turf > turf.js && uglifyjs turf.js -c -m > turf.min.js;",
- "doc": "jsdoc index.js ./node_modules/turf-*/index.js",
- "lint": "eslint --no-ignore ./node_modules/turf-*/index.js",
- "size": "browserify index.js --full-paths -s turf | uglifyjs -c -m | discify | hcat"
- },
- "eslintConfig": {
- "rules": {
- "quotes": 0,
- "curly": 0,
- "camelcase": 0,
- "space-infix-ops": 0,
- "comma-spacing": 0,
- "no-use-before-define": 0,
- "strict": 0
- },
- "env": {
- "node": true
- }
+ "test": "npm run lint && lerna bootstrap && lerna run test",
+ "lint": "eslint packages"
},
"repository": {
"type": "git",
@@ -58,78 +40,14 @@
"author": "morganherlocker",
"license": "MIT",
"bugs": {
- "url": "https://github.com/morganherlocker/turf/issues"
- },
- "dependencies": {
- "turf-aggregate": "1.0.2",
- "turf-along": "^1.0.2",
- "turf-area": "^1.1.1",
- "turf-average": "1.1.1",
- "turf-bbox-polygon": "^1.0.1",
- "turf-bearing": "1.0.1",
- "turf-bezier": "1.0.2",
- "turf-buffer": "1.0.1",
- "turf-center": "^1.0.2",
- "turf-centroid": "^1.1.2",
- "turf-combine": "1.0.2",
- "turf-concave": "1.1.3",
- "turf-convex": "1.0.1",
- "turf-count": "1.0.2",
- "turf-destination": "^1.2.1",
- "turf-deviation": "1.0.1",
- "turf-distance": "^1.0.1",
- "turf-envelope": "~1.0.2",
- "turf-erase": "1.3.1",
- "turf-explode": "^1.0.1",
- "turf-extent": "^1.0.4",
- "turf-featurecollection": "~1.0.1",
- "turf-filter": "^1.0.1",
- "turf-flip": "1.0.3",
- "turf-hex-grid": "^2.0.1",
- "turf-inside": "^1.1.4",
- "turf-intersect": "1.4.1",
- "turf-isolines": "1.0.2",
- "turf-jenks": "1.0.1",
- "turf-kinks": "^1.3.1",
- "turf-line-distance": "^1.0.2",
- "turf-line-slice": "^1.3.4",
- "turf-linestring": "^1.0.2",
- "turf-max": "1.0.1",
- "turf-median": "1.0.2",
- "turf-merge": "1.0.2",
- "turf-midpoint": "^1.0.1",
- "turf-min": "1.0.1",
- "turf-nearest": "^1.0.2",
- "turf-planepoint": "1.0.1",
- "turf-point": "^2.0.1",
- "turf-point-grid": "^2.0.0",
- "turf-point-on-line": "^1.0.2",
- "turf-point-on-surface": "^1.1.1",
- "turf-polygon": "^1.0.3",
- "turf-quantile": "1.0.1",
- "turf-random": "^1.0.2",
- "turf-reclass": "1.0.1",
- "turf-remove": "^1.0.1",
- "turf-sample": "^1.0.1",
- "turf-simplify": "^1.0.3",
- "turf-size": "^1.1.1",
- "turf-square": "^1.0.1",
- "turf-square-grid": "^1.0.0",
- "turf-sum": "1.0.1",
- "turf-tag": "~1.0.1",
- "turf-tin": "1.0.6",
- "turf-triangle-grid": "^1.0.0",
- "turf-union": "1.0.1",
- "turf-variance": "1.0.1",
- "turf-within": "^1.0.1"
+ "url": "https://github.com/Turfjs/turf/issues"
},
+ "dependencies": { },
"devDependencies": {
- "browserify": "~9.0.3",
- "disc": "^1.3.2",
- "eslint": "^0.15.0",
- "hcat": "0.0.5",
- "jsdoc": "^3.3.0-beta1",
- "tape": "^3.5.0",
+ "browserify": "^13.0.0",
+ "eslint": "^2.0.0",
+ "eslint-config-mourner": "^2.0.0",
+ "lerna": "2.0.0-beta.9",
"uglify-js": "~2.4.16"
}
}
diff --git a/packages/turf-along/.npmignore b/packages/turf-along/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-along/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-along/LICENSE b/packages/turf-along/LICENSE
new file mode 100644
index 0000000000..87a514a46d
--- /dev/null
+++ b/packages/turf-along/LICENSE
@@ -0,0 +1,22 @@
+The MIT License (MIT)
+
+Copyright (c) 2015 turf
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
+
diff --git a/packages/turf-along/README.md b/packages/turf-along/README.md
new file mode 100644
index 0000000000..1c741ce79d
--- /dev/null
+++ b/packages/turf-along/README.md
@@ -0,0 +1,68 @@
+# turf-along
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-along.png)](http://travis-ci.org/Turfjs/turf-along)
+
+
+
+
+### `turf.along(line, distance, [units=miles])`
+
+Takes a LineString|line and returns a Point|point at a specified distance along the line.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------------- | ----------------------- | --------------------------------------------------------- |
+| `line` | Feature\.\ | input line |
+| `distance` | Number | distance along the line |
+| `[units=miles]` | String | _optional:_ can be degrees, radians, miles, or kilometers |
+
+
+### Example
+
+```js
+var line = {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [-77.031669, 38.878605],
+ [-77.029609, 38.881946],
+ [-77.020339, 38.884084],
+ [-77.025661, 38.885821],
+ [-77.021884, 38.889563],
+ [-77.019824, 38.892368]
+ ]
+ }
+};
+
+var along = turf.along(line, 1, 'miles');
+
+var result = {
+ "type": "FeatureCollection",
+ "features": [line, along]
+};
+
+//=result
+```
+
+
+**Returns** `Feature.`, Point `distance` `units` along the line
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-along
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-along/bench.js b/packages/turf-along/bench.js
new file mode 100644
index 0000000000..1175c82667
--- /dev/null
+++ b/packages/turf-along/bench.js
@@ -0,0 +1,64 @@
+var along = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var line = {
+ type: "Feature",
+ properties: {},
+ geometry: {
+ type: "LineString",
+ coordinates: [
+ [
+ -77.0316696166992,
+ 38.878605901789236
+ ],
+ [
+ -77.02960968017578,
+ 38.88194668656296
+ ],
+ [
+ -77.02033996582031,
+ 38.88408470638821
+ ],
+ [
+ -77.02566146850586,
+ 38.885821800123196
+ ],
+ [
+ -77.02188491821289,
+ 38.88956308852534
+ ],
+ [
+ -77.01982498168944,
+ 38.89236892551996
+ ]
+ ]
+ }
+};
+
+var route = JSON.parse(fs.readFileSync(__dirname + '/test/fixtures/route.geojson'));
+
+var suite = new Benchmark.Suite('turf-along');
+suite
+ .add('turf-along',function () {
+ along(line, 1, 'miles');
+ })
+ .add('turf-along#route 1 mile',function () {
+ along(route, 1, 'miles');
+ })
+ .add('turf-along#route 10 miles',function () {
+ along(route, 10, 'miles');
+ })
+ .add('turf-along#route 50 miles',function () {
+ along(route, 50, 'miles');
+ })
+ .add('turf-along#route 100 miles',function () {
+ along(route, 100, 'miles');
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
diff --git a/packages/turf-along/index.js b/packages/turf-along/index.js
new file mode 100644
index 0000000000..0f36c83f5a
--- /dev/null
+++ b/packages/turf-along/index.js
@@ -0,0 +1,63 @@
+var distance = require('turf-distance');
+var point = require('turf-helpers').point;
+var bearing = require('turf-bearing');
+var destination = require('turf-destination');
+
+/**
+ * Takes a {@link LineString|line} and returns a {@link Point|point} at a specified distance along the line.
+ *
+ * @name along
+ * @category measurement
+ * @param {Feature} line input line
+ * @param {Number} distance distance along the line
+ * @param {String} [units=miles] can be degrees, radians, miles, or kilometers
+ * @return {Feature} Point `distance` `units` along the line
+ * @example
+ * var line = {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "LineString",
+ * "coordinates": [
+ * [-77.031669, 38.878605],
+ * [-77.029609, 38.881946],
+ * [-77.020339, 38.884084],
+ * [-77.025661, 38.885821],
+ * [-77.021884, 38.889563],
+ * [-77.019824, 38.892368]
+ * ]
+ * }
+ * };
+ *
+ * var along = turf.along(line, 1, 'miles');
+ *
+ * var result = {
+ * "type": "FeatureCollection",
+ * "features": [line, along]
+ * };
+ *
+ * //=result
+ */
+module.exports = function (line, dist, units) {
+ var coords;
+ if (line.type === 'Feature') coords = line.geometry.coordinates;
+ else if (line.type === 'LineString') coords = line.coordinates;
+ else throw new Error('input must be a LineString Feature or Geometry');
+
+ var travelled = 0;
+ for (var i = 0; i < coords.length; i++) {
+ if (dist >= travelled && i === coords.length - 1) break;
+ else if (travelled >= dist) {
+ var overshot = dist - travelled;
+ if (!overshot) return point(coords[i]);
+ else {
+ var direction = bearing(coords[i], coords[i - 1]) - 180;
+ var interpolated = destination(coords[i], overshot, direction, units);
+ return interpolated;
+ }
+ } else {
+ travelled += distance(coords[i], coords[i + 1], units);
+ }
+ }
+ return point(coords[coords.length - 1]);
+};
diff --git a/packages/turf-along/package.json b/packages/turf-along/package.json
new file mode 100644
index 0000000000..2b8ab9182c
--- /dev/null
+++ b/packages/turf-along/package.json
@@ -0,0 +1,37 @@
+{
+ "name": "turf-along",
+ "version": "3.0.5",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-along.git"
+ },
+ "keywords": [
+ "along",
+ "line",
+ "linestring",
+ "turf",
+ "distance"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-along/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-along",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0",
+ "turf-helpers": "^3.0.5"
+ },
+ "dependencies": {
+ "turf-bearing": "^3.0.1",
+ "turf-destination": "^3.0.5",
+ "turf-distance": "^3.0.5",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-along/test.js b/packages/turf-along/test.js
new file mode 100644
index 0000000000..c9e9626fd9
--- /dev/null
+++ b/packages/turf-along/test.js
@@ -0,0 +1,29 @@
+var test = require('tape');
+var fs = require('fs');
+var along = require('./');
+var featurecollection = require('turf-helpers').featureCollection;
+
+var line = JSON.parse(fs.readFileSync(__dirname + '/test/fixtures/dc-line.geojson'));
+
+test('turf-along', function (t) {
+ var pt1 = along(line, 1, 'miles');
+ var pt2 = along(line.geometry, 1.2, 'miles');
+ var pt3 = along(line, 1.4, 'miles');
+ var pt4 = along(line.geometry, 1.6, 'miles');
+ var pt5 = along(line, 1.8, 'miles');
+ var pt6 = along(line.geometry, 2, 'miles');
+ var pt7 = along(line, 100, 'miles');
+ var pt8 = along(line.geometry, 0, 'miles');
+ var fc = featurecollection([pt1,pt2,pt3,pt4,pt5,pt6,pt7,pt8]);
+
+ fc.features.forEach(function (f) {
+ t.ok(f);
+ t.equal(f.type, 'Feature');
+ t.equal(f.geometry.type, 'Point');
+ });
+ t.equal(fc.features.length, 8);
+ t.equal(fc.features[7].geometry.coordinates[0], pt8.geometry.coordinates[0]);
+ t.equal(fc.features[7].geometry.coordinates[1], pt8.geometry.coordinates[1]);
+
+ t.end();
+});
diff --git a/packages/turf-along/test/fixtures/dc-line.geojson b/packages/turf-along/test/fixtures/dc-line.geojson
new file mode 100644
index 0000000000..2ce6ac568a
--- /dev/null
+++ b/packages/turf-along/test/fixtures/dc-line.geojson
@@ -0,0 +1,77 @@
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ -77.0316696166992,
+ 38.878605901789236
+ ],
+ [
+ -77.02960968017578,
+ 38.88194668656296
+ ],
+ [
+ -77.02033996582031,
+ 38.88408470638821
+ ],
+ [
+ -77.02566146850586,
+ 38.885821800123196
+ ],
+ [
+ -77.02188491821289,
+ 38.88956308852534
+ ],
+ [
+ -77.01982498168944,
+ 38.89236892551996
+ ],
+ [
+ -77.02291488647461,
+ 38.89370499941828
+ ],
+ [
+ -77.02291488647461,
+ 38.89958342598271
+ ],
+ [
+ -77.01896667480469,
+ 38.90011780426885
+ ],
+ [
+ -77.01845169067383,
+ 38.90733151751689
+ ],
+ [
+ -77.02291488647461,
+ 38.907865837489105
+ ],
+ [
+ -77.02377319335936,
+ 38.91200668090932
+ ],
+ [
+ -77.02995300292969,
+ 38.91254096569048
+ ],
+ [
+ -77.03338623046875,
+ 38.91708222394378
+ ],
+ [
+ -77.03784942626953,
+ 38.920821865485834
+ ],
+ [
+ -77.03115463256836,
+ 38.92830055730587
+ ],
+ [
+ -77.03596115112305,
+ 38.931505469602044
+ ]
+ ]
+ }
+ }
diff --git a/packages/turf-along/test/fixtures/dc-points.geojson b/packages/turf-along/test/fixtures/dc-points.geojson
new file mode 100644
index 0000000000..bd19be8658
--- /dev/null
+++ b/packages/turf-along/test/fixtures/dc-points.geojson
@@ -0,0 +1,115 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0316696166992,
+ 38.87406218243845
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02325820922852,
+ 38.885688179036094
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0222282409668,
+ 38.89744587262311
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02377319335936,
+ 38.910804525446686
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02840805053711,
+ 38.91441093075183
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02840805053711,
+ 38.92402711565758
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.04008102416992,
+ 38.932707274379595
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99390411376953,
+ 38.91387666004744
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03269958496094,
+ 38.898648254305215
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02342987060545,
+ 38.870587377511235
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-along/test/fixtures/route.geojson b/packages/turf-along/test/fixtures/route.geojson
new file mode 100644
index 0000000000..8c19389b35
--- /dev/null
+++ b/packages/turf-along/test/fixtures/route.geojson
@@ -0,0 +1,2 @@
+
+{ "type": "Feature", "properties": { "name": null, "cmt": null, "desc": null, "src": null, "link1_href": null, "link1_text": null, "link1_type": null, "link2_href": null, "link2_text": null, "link2_type": null, "number": null, "type": null }, "geometry": { "type": "LineString", "coordinates": [ [ -79.254923, 36.98394 ], [ -79.254923, 36.983939 ], [ -79.255326, 36.9838 ], [ -79.255401, 36.983774 ], [ -79.25576, 36.983664 ], [ -79.256795, 36.984137 ], [ -79.257537, 36.984478 ], [ -79.258539, 36.984925 ], [ -79.259498, 36.985353 ], [ -79.260286, 36.985712 ], [ -79.261405, 36.986222 ], [ -79.262933, 36.986928 ], [ -79.263237, 36.987071 ], [ -79.263755, 36.987296 ], [ -79.264086, 36.987423 ], [ -79.264167, 36.987446 ], [ -79.264338, 36.987486 ], [ -79.264414, 36.987501 ], [ -79.264618, 36.987531 ], [ -79.2648, 36.987542 ], [ -79.264982, 36.987537 ], [ -79.265163, 36.987517 ], [ -79.26703, 36.987355 ], [ -79.267952, 36.98726 ], [ -79.268404, 36.987226 ], [ -79.268771, 36.987197 ], [ -79.26955, 36.987117 ], [ -79.271398, 36.986946 ], [ -79.271488, 36.986941 ], [ -79.271698, 36.986925 ], [ -79.271936, 36.986898 ], [ -79.272231, 36.986852 ], [ -79.272474, 36.986785 ], [ -79.272711, 36.986705 ], [ -79.272895, 36.986632 ], [ -79.273059, 36.986552 ], [ -79.273646, 36.986245 ], [ -79.274224, 36.985925 ], [ -79.274887, 36.985592 ], [ -79.275308, 36.985365 ], [ -79.275672, 36.98517 ], [ -79.276249, 36.984876 ], [ -79.277101, 36.984433 ], [ -79.277425, 36.984259 ], [ -79.277918, 36.983982 ], [ -79.27799, 36.98395 ], [ -79.278179, 36.98385 ], [ -79.278261, 36.9838 ], [ -79.278335, 36.983745 ], [ -79.278421, 36.983666 ], [ -79.27844, 36.983647 ], [ -79.278502, 36.983577 ], [ -79.278548, 36.983511 ], [ -79.278614, 36.983381 ], [ -79.278654, 36.983273 ], [ -79.278711, 36.983011 ], [ -79.278763, 36.98269 ], [ -79.278806, 36.982485 ], [ -79.278866, 36.982282 ], [ -79.278952, 36.982101 ], [ -79.279023, 36.981984 ], [ -79.280178, 36.980418 ], [ -79.280259, 36.980319 ], [ -79.280355, 36.980229 ], [ -79.280419, 36.98018 ], [ -79.280578, 36.980082 ], [ -79.280666, 36.980038 ], [ -79.280783, 36.979994 ], [ -79.280908, 36.979963 ], [ -79.281301, 36.979913 ], [ -79.281646, 36.979874 ], [ -79.282145, 36.979835 ], [ -79.282797, 36.97977 ], [ -79.283144, 36.979743 ], [ -79.283618, 36.97972 ], [ -79.28399, 36.979706 ], [ -79.284447, 36.979695 ], [ -79.284904, 36.979697 ], [ -79.286913, 36.979638 ], [ -79.287201, 36.979628 ], [ -79.287954, 36.979612 ], [ -79.288037, 36.979611 ], [ -79.288397, 36.97962 ], [ -79.288697, 36.979643 ], [ -79.289908, 36.979722 ], [ -79.289994, 36.979724 ], [ -79.290136, 36.979716 ], [ -79.290248, 36.979699 ], [ -79.290503, 36.979632 ], [ -79.291043, 36.979454 ], [ -79.291563, 36.979269 ], [ -79.292467, 36.97896 ], [ -79.292759, 36.978877 ], [ -79.292963, 36.978832 ], [ -79.293286, 36.978778 ], [ -79.293549, 36.978746 ], [ -79.293649, 36.978738 ], [ -79.293755, 36.978729 ], [ -79.293858, 36.978731 ], [ -79.294028, 36.978747 ], [ -79.294162, 36.978771 ], [ -79.294243, 36.9788 ], [ -79.294439, 36.978883 ], [ -79.294626, 36.978979 ], [ -79.294782, 36.979072 ], [ -79.294921, 36.979174 ], [ -79.295023, 36.979263 ], [ -79.295281, 36.979534 ], [ -79.295458, 36.979739 ], [ -79.296347, 36.980843 ], [ -79.296549, 36.981064 ], [ -79.296594, 36.981095 ], [ -79.296695, 36.981144 ], [ -79.296788, 36.98117 ], [ -79.296916, 36.981184 ], [ -79.297032, 36.981182 ], [ -79.297147, 36.981165 ], [ -79.297933, 36.980962 ], [ -79.298145, 36.980893 ], [ -79.298401, 36.98079 ], [ -79.298602, 36.980696 ], [ -79.298795, 36.980593 ], [ -79.299134, 36.980402 ], [ -79.299407, 36.980244 ], [ -79.299963, 36.9799 ], [ -79.301767, 36.97881 ], [ -79.301976, 36.978691 ], [ -79.3021, 36.978619 ], [ -79.302508, 36.978369 ], [ -79.302614, 36.978309 ], [ -79.3028, 36.97822 ], [ -79.302995, 36.978145 ], [ -79.303113, 36.978114 ], [ -79.303153, 36.978249 ], [ -79.303232, 36.978565 ], [ -79.303319, 36.978989 ], [ -79.303326, 36.979184 ], [ -79.303313, 36.979346 ], [ -79.30324, 36.979748 ], [ -79.303136, 36.980362 ], [ -79.303088, 36.980609 ], [ -79.302996, 36.981143 ], [ -79.302982, 36.981226 ], [ -79.302977, 36.981321 ], [ -79.302986, 36.98144 ], [ -79.303013, 36.981556 ], [ -79.303057, 36.98167 ], [ -79.303191, 36.9819 ], [ -79.303336, 36.982126 ], [ -79.303702, 36.982652 ], [ -79.304322, 36.983486 ], [ -79.304588, 36.98382 ], [ -79.304756, 36.984051 ], [ -79.304903, 36.984229 ], [ -79.305059, 36.984403 ], [ -79.305145, 36.984487 ], [ -79.305336, 36.984648 ], [ -79.305612, 36.98486 ], [ -79.30569, 36.984915 ], [ -79.305765, 36.984974 ], [ -79.305944, 36.98513 ], [ -79.306108, 36.985295 ], [ -79.306259, 36.985469 ], [ -79.306333, 36.98557 ], [ -79.306437, 36.985737 ], [ -79.306524, 36.985911 ], [ -79.306595, 36.98609 ], [ -79.306677, 36.986365 ], [ -79.306734, 36.98662 ], [ -79.306773, 36.986878 ], [ -79.306759, 36.986998 ], [ -79.306724, 36.987146 ], [ -79.306621, 36.987426 ], [ -79.306591, 36.987545 ], [ -79.306555, 36.987745 ], [ -79.306536, 36.987984 ], [ -79.30653, 36.988172 ], [ -79.306539, 36.988321 ], [ -79.30655, 36.988398 ], [ -79.306566, 36.988507 ], [ -79.306673, 36.988967 ], [ -79.306789, 36.989416 ], [ -79.30681, 36.989518 ], [ -79.306831, 36.98969 ], [ -79.306833, 36.989828 ], [ -79.306822, 36.989888 ], [ -79.306771, 36.990067 ], [ -79.306696, 36.99024 ], [ -79.306569, 36.990463 ], [ -79.306374, 36.99078 ], [ -79.30633, 36.990863 ], [ -79.306292, 36.990972 ], [ -79.306271, 36.991084 ], [ -79.306268, 36.991229 ], [ -79.306282, 36.991421 ], [ -79.306323, 36.991648 ], [ -79.30657, 36.992516 ], [ -79.306601, 36.992703 ], [ -79.306614, 36.992892 ], [ -79.306598, 36.993111 ], [ -79.306569, 36.993287 ], [ -79.306553, 36.993345 ], [ -79.306526, 36.993432 ], [ -79.306466, 36.993574 ], [ -79.306313, 36.993848 ], [ -79.305971, 36.994382 ], [ -79.305826, 36.994647 ], [ -79.305382, 36.995598 ], [ -79.305197, 36.995963 ], [ -79.305065, 36.996284 ], [ -79.304983, 36.996521 ], [ -79.304954, 36.99668 ], [ -79.30495, 36.996815 ], [ -79.304959, 36.996932 ], [ -79.304988, 36.997077 ], [ -79.305024, 36.99719 ], [ -79.305111, 36.99739 ], [ -79.305197, 36.997567 ], [ -79.30532, 36.997782 ], [ -79.305429, 36.997949 ], [ -79.305577, 36.998153 ], [ -79.306017, 36.99873 ], [ -79.306204, 36.998965 ], [ -79.306407, 36.999192 ], [ -79.306624, 36.999411 ], [ -79.30672, 36.999489 ], [ -79.306828, 36.999557 ], [ -79.306922, 36.999602 ], [ -79.307072, 36.999656 ], [ -79.307354, 36.999723 ], [ -79.307628, 36.999778 ], [ -79.308892, 36.999988 ], [ -79.309029, 37.00002 ], [ -79.309135, 37.000056 ], [ -79.30926, 37.000112 ], [ -79.309374, 37.00018 ], [ -79.309478, 37.000259 ], [ -79.30959, 37.000372 ], [ -79.309743, 37.000552 ], [ -79.31029, 37.001344 ], [ -79.31037, 37.001451 ], [ -79.310486, 37.001568 ], [ -79.310598, 37.001654 ], [ -79.310697, 37.001714 ], [ -79.310838, 37.001785 ], [ -79.310991, 37.001844 ], [ -79.31115, 37.001891 ], [ -79.311632, 37.001979 ], [ -79.312359, 37.002135 ], [ -79.312455, 37.002156 ], [ -79.312915, 37.002271 ], [ -79.313026, 37.002296 ], [ -79.313639, 37.002422 ], [ -79.314311, 37.002515 ], [ -79.314769, 37.002553 ], [ -79.315227, 37.002582 ], [ -79.315352, 37.002604 ], [ -79.315472, 37.002641 ], [ -79.315543, 37.002685 ], [ -79.315621, 37.00275 ], [ -79.315685, 37.002824 ], [ -79.315725, 37.002889 ], [ -79.315888, 37.002832 ], [ -79.316221, 37.002733 ], [ -79.316448, 37.002678 ], [ -79.31752, 37.002455 ], [ -79.318524, 37.002275 ], [ -79.319059, 37.002211 ], [ -79.319268, 37.002199 ], [ -79.319435, 37.0022 ], [ -79.319651, 37.002214 ], [ -79.319786, 37.002226 ], [ -79.320258, 37.002279 ], [ -79.320522, 37.002298 ], [ -79.320786, 37.002302 ], [ -79.320953, 37.002288 ], [ -79.321116, 37.002258 ], [ -79.321274, 37.002213 ], [ -79.321381, 37.00217 ], [ -79.321762, 37.002001 ], [ -79.322382, 37.001698 ], [ -79.322844, 37.001466 ], [ -79.323023, 37.001376 ], [ -79.323292, 37.001249 ], [ -79.32357, 37.001134 ], [ -79.323943, 37.001003 ], [ -79.324098, 37.000958 ], [ -79.324162, 37.000945 ], [ -79.32513, 37.000843 ], [ -79.325325, 37.000814 ], [ -79.325517, 37.000777 ], [ -79.325753, 37.000719 ], [ -79.327186, 37.000266 ], [ -79.327482, 37.000173 ], [ -79.327802, 37.00008 ], [ -79.328598, 36.999838 ], [ -79.329158, 36.999654 ], [ -79.329204, 36.999715 ], [ -79.329343, 36.999894 ], [ -79.32942, 36.999975 ], [ -79.329588, 37.000125 ], [ -79.329742, 37.000239 ], [ -79.329777, 37.000256 ], [ -79.329869, 37.000291 ], [ -79.329988, 37.000315 ], [ -79.330091, 37.000318 ], [ -79.33027, 37.000316 ], [ -79.330449, 37.000298 ], [ -79.331035, 37.000223 ], [ -79.331427, 37.000184 ], [ -79.331855, 37.000129 ], [ -79.333009, 37.000023 ], [ -79.334568, 36.999869 ], [ -79.335002, 36.999826 ], [ -79.33552, 36.999806 ], [ -79.33606, 36.999814 ], [ -79.336208, 36.999833 ], [ -79.336352, 36.999866 ], [ -79.33649, 36.999913 ], [ -79.336644, 36.999986 ], [ -79.336856, 37.000123 ], [ -79.336962, 37.000203 ], [ -79.337096, 37.000316 ], [ -79.337325, 37.000539 ], [ -79.337519, 37.000761 ], [ -79.338522, 37.001965 ], [ -79.339126, 37.002688 ], [ -79.339574, 37.003185 ], [ -79.340385, 37.004106 ], [ -79.340479, 37.004212 ], [ -79.340603, 37.004341 ], [ -79.340773, 37.00449 ], [ -79.340929, 37.004602 ], [ -79.341131, 37.004723 ], [ -79.341632, 37.004968 ], [ -79.341875, 37.005087 ], [ -79.342172, 37.005233 ], [ -79.342594, 37.00542 ], [ -79.343189, 37.005708 ], [ -79.343817, 37.006011 ], [ -79.344455, 37.006335 ], [ -79.344712, 37.00647 ], [ -79.345697, 37.006916 ], [ -79.345837, 37.006985 ], [ -79.346006, 37.00708 ], [ -79.346221, 37.007218 ], [ -79.347403, 37.008016 ], [ -79.347493, 37.008071 ], [ -79.347634, 37.008171 ], [ -79.347763, 37.008281 ], [ -79.347971, 37.008497 ], [ -79.348051, 37.008623 ], [ -79.348135, 37.008786 ], [ -79.348201, 37.008954 ], [ -79.34825, 37.009126 ], [ -79.348316, 37.00954 ], [ -79.348397, 37.010196 ], [ -79.34854, 37.01111 ], [ -79.348616, 37.011496 ], [ -79.348778, 37.012266 ], [ -79.349159, 37.013946 ], [ -79.349315, 37.014628 ], [ -79.349636, 37.015919 ], [ -79.349688, 37.016183 ], [ -79.349795, 37.016628 ], [ -79.349854, 37.016827 ], [ -79.349915, 37.01701 ], [ -79.350064, 37.017337 ], [ -79.350135, 37.017464 ], [ -79.350159, 37.017499 ], [ -79.350325, 37.017735 ], [ -79.35042, 37.017865 ], [ -79.350584, 37.018129 ], [ -79.35072, 37.01842 ], [ -79.350808, 37.018683 ], [ -79.35089, 37.018981 ], [ -79.350968, 37.019317 ], [ -79.35119, 37.020219 ], [ -79.351251, 37.020445 ], [ -79.351346, 37.020719 ], [ -79.351414, 37.020888 ], [ -79.351505, 37.021079 ], [ -79.351682, 37.021459 ], [ -79.351825, 37.02176 ], [ -79.352185, 37.022473 ], [ -79.352628, 37.023433 ], [ -79.352751, 37.023743 ], [ -79.35282, 37.023863 ], [ -79.352895, 37.023965 ], [ -79.353012, 37.024078 ], [ -79.353078, 37.024127 ], [ -79.353186, 37.024186 ], [ -79.353325, 37.024244 ], [ -79.353398, 37.024265 ], [ -79.353421, 37.02427 ], [ -79.353621, 37.024315 ], [ -79.353675, 37.024321 ], [ -79.35392, 37.024336 ], [ -79.354286, 37.024379 ], [ -79.354423, 37.024385 ], [ -79.354844, 37.024375 ], [ -79.355058, 37.024359 ], [ -79.355214, 37.024339 ], [ -79.355354, 37.024308 ], [ -79.355614, 37.024238 ], [ -79.355718, 37.024209 ], [ -79.355965, 37.024125 ], [ -79.356147, 37.024057 ], [ -79.356485, 37.02394 ], [ -79.356546, 37.023919 ], [ -79.356797, 37.023824 ], [ -79.356964, 37.023769 ], [ -79.357077, 37.023757 ], [ -79.357196, 37.023767 ], [ -79.357262, 37.023786 ], [ -79.357309, 37.023811 ], [ -79.35735, 37.023849 ], [ -79.357388, 37.023905 ], [ -79.357541, 37.024317 ], [ -79.357583, 37.024391 ], [ -79.357634, 37.024438 ], [ -79.357685, 37.024467 ], [ -79.357747, 37.024487 ], [ -79.35783, 37.024497 ], [ -79.357899, 37.024495 ], [ -79.35801, 37.02448 ], [ -79.358102, 37.02446 ], [ -79.358409, 37.025941 ], [ -79.358471, 37.026316 ], [ -79.358502, 37.026637 ], [ -79.358517, 37.026844 ], [ -79.358519, 37.027185 ], [ -79.358497, 37.027679 ], [ -79.358457, 37.028033 ], [ -79.358398, 37.028378 ], [ -79.358301, 37.028779 ], [ -79.358082, 37.029574 ], [ -79.357957, 37.030026 ], [ -79.357813, 37.030609 ], [ -79.357745, 37.03095 ], [ -79.357685, 37.031344 ], [ -79.357656, 37.031612 ], [ -79.357621, 37.032199 ], [ -79.357619, 37.032445 ], [ -79.357631, 37.032766 ], [ -79.357637, 37.032893 ], [ -79.357666, 37.033258 ], [ -79.357711, 37.033639 ], [ -79.357789, 37.034066 ], [ -79.357875, 37.034441 ], [ -79.357922, 37.034622 ], [ -79.358521, 37.036938 ], [ -79.358613, 37.037315 ], [ -79.358687, 37.037658 ], [ -79.358786, 37.038217 ], [ -79.358856, 37.038791 ], [ -79.358911, 37.039356 ], [ -79.358965, 37.0401 ], [ -79.359051, 37.041306 ], [ -79.359073, 37.041825 ], [ -79.359059, 37.042471 ], [ -79.359012, 37.042954 ], [ -79.35899, 37.04313 ], [ -79.358922, 37.043537 ], [ -79.358829, 37.043973 ], [ -79.358773, 37.044171 ], [ -79.358704, 37.044417 ], [ -79.358541, 37.044914 ], [ -79.358352, 37.045429 ], [ -79.357856, 37.04678 ], [ -79.357794, 37.046961 ], [ -79.357564, 37.047556 ], [ -79.357409, 37.047915 ], [ -79.357338, 37.048062 ], [ -79.357278, 37.048184 ], [ -79.356942, 37.048801 ], [ -79.356841, 37.048967 ], [ -79.356589, 37.049349 ], [ -79.356363, 37.049677 ], [ -79.354212, 37.052783 ], [ -79.353972, 37.053148 ], [ -79.353865, 37.053295 ], [ -79.353452, 37.053889 ], [ -79.352197, 37.055711 ], [ -79.352126, 37.055808 ], [ -79.351983, 37.056023 ], [ -79.351596, 37.056539 ], [ -79.351413, 37.056761 ], [ -79.35122, 37.056979 ], [ -79.351018, 37.057191 ], [ -79.35075, 37.057445 ], [ -79.350603, 37.057584 ], [ -79.35029, 37.057856 ], [ -79.348032, 37.059645 ], [ -79.346954, 37.060488 ], [ -79.345892, 37.06133 ], [ -79.345295, 37.061797 ], [ -79.344778, 37.062208 ], [ -79.344716, 37.062258 ], [ -79.343942, 37.062866 ], [ -79.343259, 37.06342 ], [ -79.342925, 37.063722 ], [ -79.342732, 37.063907 ], [ -79.342302, 37.064351 ], [ -79.342055, 37.06463 ], [ -79.341843, 37.064885 ], [ -79.341424, 37.065452 ], [ -79.341048, 37.066036 ], [ -79.340718, 37.066647 ], [ -79.340066, 37.068047 ], [ -79.338982, 37.070343 ], [ -79.336951, 37.074656 ], [ -79.336672, 37.075265 ], [ -79.335622, 37.077497 ], [ -79.335265, 37.078252 ], [ -79.33489, 37.079062 ], [ -79.334833, 37.079182 ], [ -79.334222, 37.080477 ], [ -79.333262, 37.082521 ], [ -79.333001, 37.083079 ], [ -79.332628, 37.084028 ], [ -79.332548, 37.084278 ], [ -79.332388, 37.08478 ], [ -79.332201, 37.085539 ], [ -79.33204, 37.086421 ], [ -79.33196, 37.086978 ], [ -79.331907, 37.087757 ], [ -79.331871, 37.088536 ], [ -79.33185, 37.089317 ], [ -79.331805, 37.090324 ], [ -79.331772, 37.091338 ], [ -79.331768, 37.092235 ], [ -79.33183, 37.093576 ], [ -79.331943, 37.095022 ], [ -79.332045, 37.096198 ], [ -79.332341, 37.099713 ], [ -79.332397, 37.100421 ], [ -79.332436, 37.101086 ], [ -79.332443, 37.1013 ], [ -79.332438, 37.10199 ], [ -79.332418, 37.102426 ], [ -79.332391, 37.102795 ], [ -79.332337, 37.103324 ], [ -79.332244, 37.103966 ], [ -79.332205, 37.104185 ], [ -79.332175, 37.104355 ], [ -79.332056, 37.104907 ], [ -79.332041, 37.104978 ], [ -79.331903, 37.105494 ], [ -79.331733, 37.106053 ], [ -79.331559, 37.106562 ], [ -79.33131, 37.107195 ], [ -79.331178, 37.107501 ], [ -79.330959, 37.107973 ], [ -79.330748, 37.108399 ], [ -79.330489, 37.108876 ], [ -79.330365, 37.109093 ], [ -79.330155, 37.10944 ], [ -79.329757, 37.110058 ], [ -79.328813, 37.111446 ], [ -79.328701, 37.111611 ], [ -79.327118, 37.113932 ], [ -79.327107, 37.113947 ], [ -79.326498, 37.114802 ], [ -79.326178, 37.115223 ], [ -79.326128, 37.115289 ], [ -79.32568, 37.115855 ], [ -79.325061, 37.116595 ], [ -79.324816, 37.116878 ], [ -79.324497, 37.117235 ], [ -79.324161, 37.117601 ], [ -79.323816, 37.117964 ], [ -79.323589, 37.118194 ], [ -79.323104, 37.118678 ], [ -79.322015, 37.119732 ], [ -79.320826, 37.12089 ], [ -79.320279, 37.121415 ], [ -79.31993, 37.121729 ], [ -79.319276, 37.122271 ], [ -79.318828, 37.122609 ], [ -79.318377, 37.122925 ], [ -79.317535, 37.123462 ], [ -79.316595, 37.123987 ], [ -79.315586, 37.124473 ], [ -79.314958, 37.124742 ], [ -79.311931, 37.125973 ], [ -79.303986, 37.129196 ], [ -79.303177, 37.129555 ], [ -79.302367, 37.129915 ], [ -79.30095, 37.130617 ], [ -79.298871, 37.131691 ], [ -79.298008, 37.132146 ], [ -79.293574, 37.134491 ], [ -79.293108, 37.134749 ], [ -79.292712, 37.134937 ], [ -79.292278, 37.135125 ], [ -79.291836, 37.1353 ], [ -79.291351, 37.135473 ], [ -79.290905, 37.135615 ], [ -79.290365, 37.135772 ], [ -79.289641, 37.135941 ], [ -79.289078, 37.136055 ], [ -79.288222, 37.136184 ], [ -79.287781, 37.136228 ], [ -79.287205, 37.136269 ], [ -79.281895, 37.136526 ], [ -79.280512, 37.136607 ], [ -79.279731, 37.13667 ], [ -79.278968, 37.136747 ], [ -79.277922, 37.136872 ], [ -79.276244, 37.13712 ], [ -79.273494, 37.137624 ], [ -79.272005, 37.137904 ], [ -79.271794, 37.137944 ], [ -79.266159, 37.138985 ], [ -79.265643, 37.139056 ], [ -79.265084, 37.139119 ], [ -79.264404, 37.139177 ], [ -79.263826, 37.139213 ], [ -79.263263, 37.139234 ], [ -79.262666, 37.139241 ], [ -79.262103, 37.139234 ], [ -79.26149, 37.139213 ], [ -79.260895, 37.13918 ], [ -79.260488, 37.139149 ], [ -79.257811, 37.138859 ], [ -79.253283, 37.138354 ], [ -79.251817, 37.138189 ], [ -79.251311, 37.138138 ], [ -79.25082, 37.138104 ], [ -79.250344, 37.138087 ], [ -79.249949, 37.138091 ], [ -79.249141, 37.138125 ], [ -79.248701, 37.138169 ], [ -79.248255, 37.138232 ], [ -79.247815, 37.138303 ], [ -79.247404, 37.138388 ], [ -79.246983, 37.138492 ], [ -79.24619, 37.138741 ], [ -79.246034, 37.138799 ], [ -79.245567, 37.138991 ], [ -79.243639, 37.139795 ], [ -79.242121, 37.140435 ], [ -79.241618, 37.140648 ], [ -79.241125, 37.14089 ], [ -79.240755, 37.141103 ], [ -79.240471, 37.141293 ], [ -79.240237, 37.141475 ], [ -79.240023, 37.141661 ], [ -79.239659, 37.142024 ], [ -79.238717, 37.143115 ], [ -79.238653, 37.143189 ], [ -79.238443, 37.143404 ], [ -79.23822, 37.14361 ], [ -79.237972, 37.143817 ], [ -79.237711, 37.144013 ], [ -79.237424, 37.144206 ], [ -79.237139, 37.144378 ], [ -79.236846, 37.144536 ], [ -79.23672, 37.144599 ], [ -79.235366, 37.145185 ], [ -79.235031, 37.145327 ], [ -79.233118, 37.146139 ], [ -79.232943, 37.146214 ], [ -79.23213, 37.146559 ], [ -79.23159, 37.146789 ], [ -79.231268, 37.146943 ], [ -79.230971, 37.147103 ], [ -79.230723, 37.147248 ], [ -79.230589, 37.147333 ], [ -79.230303, 37.147527 ], [ -79.230067, 37.147704 ], [ -79.229831, 37.147902 ], [ -79.229608, 37.148108 ], [ -79.229398, 37.148324 ], [ -79.229192, 37.148559 ], [ -79.229002, 37.148802 ], [ -79.228823, 37.149065 ], [ -79.228683, 37.149299 ], [ -79.228557, 37.149537 ], [ -79.228436, 37.149807 ], [ -79.228332, 37.15008 ], [ -79.22824, 37.150371 ], [ -79.228165, 37.150679 ], [ -79.228144, 37.150787 ], [ -79.22795, 37.1522 ], [ -79.227939, 37.152282 ], [ -79.227922, 37.152405 ], [ -79.227831, 37.1531 ], [ -79.227768, 37.153577 ], [ -79.22775, 37.153704 ], [ -79.227707, 37.153951 ], [ -79.227614, 37.154338 ], [ -79.227519, 37.154642 ], [ -79.227394, 37.154981 ], [ -79.227259, 37.155289 ], [ -79.227113, 37.155579 ], [ -79.227008, 37.155764 ], [ -79.226979, 37.155814 ], [ -79.226931, 37.155892 ], [ -79.22673, 37.156196 ], [ -79.226531, 37.156466 ], [ -79.226359, 37.156679 ], [ -79.226091, 37.156981 ], [ -79.225836, 37.157239 ], [ -79.225577, 37.157477 ], [ -79.225307, 37.157704 ], [ -79.225033, 37.15791 ], [ -79.224838, 37.158043 ], [ -79.223223, 37.159106 ], [ -79.222625, 37.159494 ], [ -79.222577, 37.159525 ], [ -79.222526, 37.159559 ], [ -79.222269, 37.159725 ], [ -79.221758, 37.160065 ], [ -79.219427, 37.161585 ], [ -79.218294, 37.162324 ], [ -79.218211, 37.162378 ], [ -79.216923, 37.163217 ], [ -79.216426, 37.163539 ], [ -79.215909, 37.16389 ], [ -79.215531, 37.164171 ], [ -79.215221, 37.164425 ], [ -79.214936, 37.164678 ], [ -79.214674, 37.164929 ], [ -79.214292, 37.165324 ], [ -79.214244, 37.165374 ], [ -79.213081, 37.166582 ], [ -79.212642, 37.167038 ], [ -79.212368, 37.167324 ], [ -79.212048, 37.167658 ], [ -79.211768, 37.16795 ], [ -79.211486, 37.168245 ], [ -79.211416, 37.168318 ], [ -79.211008, 37.168744 ], [ -79.210963, 37.168791 ], [ -79.210689, 37.16908 ], [ -79.210304, 37.16953 ], [ -79.2101, 37.169782 ], [ -79.209923, 37.170006 ], [ -79.209526, 37.170538 ], [ -79.209343, 37.170798 ], [ -79.207037, 37.174039 ], [ -79.206764, 37.174435 ], [ -79.206634, 37.174641 ], [ -79.206469, 37.174929 ], [ -79.206273, 37.17532 ], [ -79.20615, 37.175603 ], [ -79.206073, 37.175802 ], [ -79.206026, 37.175929 ], [ -79.205916, 37.176273 ], [ -79.205845, 37.176539 ], [ -79.205757, 37.176917 ], [ -79.205696, 37.177164 ], [ -79.205658, 37.177349 ], [ -79.205603, 37.177589 ], [ -79.205562, 37.177759 ], [ -79.205539, 37.177863 ], [ -79.205487, 37.178091 ], [ -79.205427, 37.178344 ], [ -79.205364, 37.178607 ], [ -79.205297, 37.178889 ], [ -79.205253, 37.179068 ], [ -79.20519, 37.179332 ], [ -79.205122, 37.179618 ], [ -79.205055, 37.179895 ], [ -79.204997, 37.180138 ], [ -79.204614, 37.181773 ], [ -79.204588, 37.181883 ], [ -79.204488, 37.182314 ], [ -79.204319, 37.183043 ], [ -79.204265, 37.183268 ], [ -79.204123, 37.18388 ], [ -79.203924, 37.184747 ], [ -79.203855, 37.185167 ], [ -79.203781, 37.185725 ], [ -79.203767, 37.185869 ], [ -79.203714, 37.186727 ], [ -79.203688, 37.188358 ], [ -79.203665, 37.189574 ], [ -79.203624, 37.192626 ], [ -79.203627, 37.192665 ], [ -79.203588, 37.193792 ], [ -79.203572, 37.194229 ], [ -79.203568, 37.194309 ], [ -79.203559, 37.194539 ], [ -79.203553, 37.194676 ], [ -79.203543, 37.194919 ], [ -79.203531, 37.195199 ], [ -79.203502, 37.195859 ], [ -79.203483, 37.196276 ], [ -79.203468, 37.196579 ], [ -79.203458, 37.196792 ], [ -79.203433, 37.197322 ], [ -79.203422, 37.197563 ], [ -79.20341, 37.197824 ], [ -79.203397, 37.198095 ], [ -79.20339, 37.198254 ], [ -79.203379, 37.19847 ], [ -79.203358, 37.198936 ], [ -79.20334, 37.19935 ], [ -79.203304, 37.200071 ], [ -79.203262, 37.200536 ], [ -79.203244, 37.200686 ], [ -79.203162, 37.201241 ], [ -79.203073, 37.201722 ], [ -79.20306, 37.201793 ], [ -79.203026, 37.201977 ], [ -79.202836, 37.203003 ], [ -79.202752, 37.203459 ], [ -79.202563, 37.204478 ], [ -79.202452, 37.205079 ], [ -79.202395, 37.205385 ], [ -79.201856, 37.208299 ], [ -79.201805, 37.208574 ], [ -79.201702, 37.209126 ], [ -79.201673, 37.209268 ], [ -79.201619, 37.209479 ], [ -79.201573, 37.209638 ], [ -79.201505, 37.209836 ], [ -79.201407, 37.210085 ], [ -79.201284, 37.210341 ], [ -79.201114, 37.21064 ], [ -79.201026, 37.210776 ], [ -79.200882, 37.21098 ], [ -79.200649, 37.211282 ], [ -79.200396, 37.211554 ], [ -79.199727, 37.212167 ], [ -79.199637, 37.212249 ], [ -79.199553, 37.212325 ], [ -79.199391, 37.212473 ], [ -79.199159, 37.212684 ], [ -79.19865, 37.213144 ], [ -79.197756, 37.213946 ], [ -79.197588, 37.214097 ], [ -79.197252, 37.214415 ], [ -79.196922, 37.214731 ], [ -79.196487, 37.215166 ], [ -79.196055, 37.215596 ], [ -79.195714, 37.216042 ], [ -79.195395, 37.216449 ], [ -79.194175, 37.218086 ], [ -79.193942, 37.2184 ], [ -79.193714, 37.218705 ], [ -79.193339, 37.219208 ], [ -79.193103, 37.219523 ], [ -79.192804, 37.219924 ], [ -79.192465, 37.220384 ], [ -79.191972, 37.221056 ], [ -79.191665, 37.221486 ], [ -79.191271, 37.222039 ], [ -79.191066, 37.222328 ], [ -79.190837, 37.222648 ], [ -79.190786, 37.222724 ], [ -79.190591, 37.223024 ], [ -79.190561, 37.223069 ], [ -79.190114, 37.223762 ], [ -79.189976, 37.223994 ], [ -79.189786, 37.224314 ], [ -79.189538, 37.224731 ], [ -79.189441, 37.224896 ], [ -79.189231, 37.225287 ], [ -79.188873, 37.225949 ], [ -79.188647, 37.226369 ], [ -79.188578, 37.226497 ], [ -79.188422, 37.22682 ], [ -79.187747, 37.228226 ], [ -79.187638, 37.228454 ], [ -79.186752, 37.230317 ], [ -79.186236, 37.23142 ], [ -79.186183, 37.231531 ], [ -79.186143, 37.231633 ], [ -79.186012, 37.231905 ], [ -79.185971, 37.232009 ], [ -79.185901, 37.232204 ], [ -79.185821, 37.232467 ], [ -79.185783, 37.232629 ], [ -79.185746, 37.232787 ], [ -79.185712, 37.232989 ], [ -79.185564, 37.234115 ], [ -79.18554, 37.234342 ], [ -79.185535, 37.234388 ], [ -79.185527, 37.234464 ], [ -79.185489, 37.234824 ], [ -79.185459, 37.235133 ], [ -79.185442, 37.235447 ], [ -79.185444, 37.235802 ], [ -79.185467, 37.236157 ], [ -79.185494, 37.236478 ], [ -79.185509, 37.236629 ], [ -79.185568, 37.237037 ], [ -79.185613, 37.237268 ], [ -79.185642, 37.237403 ], [ -79.185719, 37.237706 ], [ -79.185791, 37.237965 ], [ -79.185811, 37.238037 ], [ -79.185899, 37.238345 ], [ -79.185952, 37.238527 ], [ -79.18597, 37.23859 ], [ -79.186042, 37.238834 ], [ -79.186525, 37.240494 ], [ -79.186638, 37.240882 ], [ -79.186786, 37.241392 ], [ -79.186995, 37.242108 ], [ -79.187061, 37.242336 ], [ -79.187075, 37.242384 ], [ -79.187298, 37.243149 ], [ -79.187378, 37.243422 ], [ -79.187527, 37.243936 ], [ -79.187774, 37.244774 ], [ -79.187853, 37.245008 ], [ -79.187949, 37.245331 ], [ -79.187975, 37.245426 ], [ -79.18809, 37.245933 ], [ -79.188158, 37.246339 ], [ -79.188193, 37.246639 ], [ -79.188214, 37.246935 ], [ -79.188219, 37.247189 ], [ -79.188219, 37.247284 ], [ -79.188204, 37.247624 ], [ -79.188173, 37.24795 ], [ -79.188121, 37.248287 ], [ -79.188078, 37.248502 ], [ -79.188012, 37.248777 ], [ -79.187964, 37.248948 ], [ -79.18752, 37.250322 ], [ -79.187502, 37.250377 ], [ -79.187461, 37.250489 ], [ -79.187101, 37.251604 ], [ -79.186977, 37.251986 ], [ -79.186803, 37.252487 ], [ -79.186647, 37.252862 ], [ -79.186473, 37.253233 ], [ -79.1864, 37.253375 ], [ -79.186369, 37.253435 ], [ -79.186196, 37.253727 ], [ -79.186096, 37.253883 ], [ -79.185846, 37.254253 ], [ -79.185619, 37.254587 ], [ -79.184816, 37.255765 ], [ -79.184332, 37.256471 ], [ -79.184251, 37.256583 ], [ -79.183919, 37.257073 ], [ -79.183282, 37.258009 ], [ -79.183273, 37.258023 ], [ -79.182658, 37.258928 ], [ -79.182428, 37.259266 ], [ -79.182236, 37.259548 ], [ -79.182189, 37.259617 ], [ -79.181677, 37.260371 ], [ -79.180889, 37.261527 ], [ -79.180329, 37.262346 ], [ -79.179966, 37.262877 ], [ -79.178561, 37.264935 ], [ -79.177834, 37.265998 ], [ -79.17762, 37.266312 ], [ -79.177577, 37.266375 ], [ -79.177344, 37.266717 ], [ -79.177268, 37.266828 ], [ -79.175738, 37.269066 ], [ -79.175293, 37.269718 ], [ -79.175059, 37.270062 ], [ -79.175024, 37.270113 ], [ -79.174746, 37.27052 ], [ -79.174499, 37.270885 ], [ -79.174225, 37.271286 ], [ -79.17318, 37.27282 ], [ -79.172596, 37.273676 ], [ -79.172062, 37.274457 ], [ -79.17205, 37.274476 ], [ -79.171892, 37.274707 ], [ -79.171746, 37.274919 ], [ -79.170612, 37.276581 ], [ -79.170091, 37.277344 ], [ -79.170074, 37.277368 ], [ -79.169014, 37.27887 ], [ -79.168768, 37.279279 ], [ -79.168446, 37.279751 ], [ -79.168095, 37.28026 ], [ -79.167791, 37.280704 ], [ -79.167004, 37.281854 ], [ -79.166839, 37.282126 ], [ -79.166686, 37.282417 ], [ -79.166553, 37.282715 ], [ -79.166455, 37.282978 ], [ -79.166365, 37.283271 ], [ -79.166331, 37.283406 ], [ -79.166277, 37.283662 ], [ -79.166236, 37.283934 ], [ -79.166211, 37.284233 ], [ -79.166208, 37.284331 ], [ -79.16621, 37.284606 ], [ -79.166232, 37.284894 ], [ -79.166273, 37.28518 ], [ -79.166341, 37.285491 ], [ -79.166394, 37.28568 ], [ -79.166419, 37.28576 ], [ -79.16653, 37.286061 ], [ -79.16656, 37.286133 ], [ -79.166601, 37.286228 ], [ -79.167073, 37.287187 ], [ -79.167342, 37.287727 ], [ -79.167647, 37.288335 ], [ -79.167961, 37.288961 ], [ -79.168213, 37.289466 ], [ -79.168669, 37.290363 ], [ -79.169252, 37.291516 ], [ -79.169707, 37.292425 ], [ -79.170019, 37.293049 ], [ -79.170164, 37.293337 ], [ -79.170762, 37.294525 ], [ -79.171017, 37.295032 ], [ -79.171197, 37.29539 ], [ -79.171228, 37.295451 ], [ -79.171707, 37.296402 ], [ -79.171854, 37.296694 ], [ -79.172057, 37.297099 ], [ -79.172329, 37.297639 ], [ -79.172756, 37.298485 ], [ -79.172921, 37.29877 ], [ -79.173118, 37.299071 ], [ -79.173326, 37.299351 ], [ -79.1734, 37.299443 ], [ -79.173711, 37.299824 ], [ -79.174643, 37.300928 ], [ -79.177789, 37.304649 ], [ -79.17841, 37.305383 ], [ -79.179563, 37.306751 ], [ -79.18128, 37.308787 ], [ -79.181492, 37.309036 ], [ -79.181949, 37.309573 ], [ -79.182599, 37.310336 ], [ -79.183198, 37.311046 ], [ -79.183775, 37.311729 ], [ -79.183964, 37.311947 ], [ -79.18428, 37.312314 ], [ -79.18536, 37.313557 ], [ -79.18553, 37.313753 ], [ -79.18588, 37.314159 ], [ -79.186286, 37.314624 ], [ -79.186592, 37.314975 ], [ -79.186893, 37.31532 ], [ -79.187155, 37.315623 ], [ -79.187287, 37.315796 ], [ -79.187433, 37.315958 ], [ -79.187603, 37.316193 ], [ -79.187705, 37.316348 ], [ -79.187781, 37.316469 ], [ -79.187895, 37.316666 ], [ -79.188063, 37.316995 ], [ -79.188211, 37.31734 ], [ -79.188267, 37.317488 ], [ -79.188574, 37.31828 ], [ -79.18873, 37.318682 ], [ -79.188773, 37.318793 ], [ -79.188818, 37.318907 ], [ -79.188983, 37.319332 ], [ -79.189167, 37.319817 ], [ -79.18919, 37.319881 ], [ -79.189276, 37.320122 ], [ -79.189293, 37.320183 ], [ -79.189372, 37.320484 ], [ -79.189407, 37.320635 ], [ -79.189445, 37.320825 ], [ -79.189477, 37.321015 ], [ -79.189492, 37.321115 ], [ -79.189533, 37.321458 ], [ -79.189536, 37.321492 ], [ -79.189586, 37.322119 ], [ -79.189602, 37.322319 ], [ -79.189637, 37.32275 ], [ -79.189647, 37.322876 ], [ -79.189704, 37.323523 ], [ -79.189737, 37.323892 ], [ -79.189747, 37.323997 ], [ -79.189761, 37.324147 ], [ -79.189781, 37.324375 ], [ -79.189798, 37.324545 ], [ -79.189823, 37.324722 ], [ -79.189861, 37.324935 ], [ -79.189896, 37.325095 ], [ -79.189922, 37.3252 ], [ -79.190034, 37.325593 ], [ -79.190115, 37.325884 ], [ -79.190279, 37.326471 ], [ -79.190558, 37.327468 ], [ -79.190626, 37.327737 ], [ -79.190656, 37.327855 ], [ -79.190719, 37.328102 ], [ -79.190893, 37.328783 ], [ -79.19093, 37.328914 ], [ -79.19114, 37.329665 ], [ -79.191197, 37.329849 ], [ -79.191289, 37.330174 ], [ -79.191411, 37.330604 ], [ -79.191427, 37.330662 ], [ -79.191549, 37.331144 ], [ -79.191612, 37.331407 ], [ -79.191674, 37.33166 ], [ -79.191713, 37.331945 ], [ -79.191731, 37.332216 ], [ -79.191727, 37.3324 ], [ -79.191718, 37.332618 ], [ -79.191688, 37.333114 ], [ -79.191671, 37.333265 ], [ -79.191652, 37.333506 ], [ -79.191625, 37.33369 ], [ -79.191591, 37.333978 ], [ -79.191586, 37.334109 ], [ -79.191605, 37.334336 ], [ -79.19161, 37.334672 ], [ -79.191612, 37.334771 ], [ -79.191619, 37.335165 ], [ -79.191615, 37.335425 ], [ -79.191612, 37.335464 ], [ -79.191591, 37.335798 ], [ -79.191573, 37.33597 ], [ -79.19153, 37.336198 ], [ -79.191511, 37.3363 ], [ -79.191476, 37.336481 ], [ -79.191396, 37.336901 ], [ -79.191254, 37.33724 ], [ -79.191108, 37.337564 ], [ -79.190891, 37.337852 ], [ -79.190707, 37.338004 ], [ -79.190446, 37.338136 ], [ -79.190159, 37.338232 ], [ -79.189809, 37.338303 ], [ -79.189504, 37.338343 ], [ -79.189039, 37.338414 ], [ -79.188663, 37.33847 ], [ -79.188351, 37.338526 ], [ -79.18802, 37.338571 ], [ -79.18767, 37.338617 ], [ -79.187276, 37.338677 ], [ -79.18683, 37.338758 ], [ -79.186448, 37.338854 ], [ -79.186232, 37.338986 ], [ -79.186034, 37.339158 ], [ -79.185913, 37.339381 ], [ -79.185862, 37.339654 ], [ -79.185792, 37.339958 ], [ -79.185735, 37.340246 ], [ -79.185608, 37.340565 ], [ -79.185474, 37.340849 ], [ -79.185264, 37.341152 ], [ -79.185009, 37.341421 ], [ -79.184748, 37.341658 ], [ -79.184399, 37.341989 ], [ -79.184093, 37.342254 ], [ -79.183658, 37.342682 ], [ -79.18294, 37.343536 ], [ -79.182113, 37.344505 ], [ -79.181077, 37.345699 ], [ -79.180004, 37.346871 ], [ -79.178729, 37.348196 ], [ -79.177389, 37.349407 ], [ -79.177129, 37.349621 ], [ -79.176626, 37.350036 ], [ -79.173129, 37.353092 ], [ -79.169752, 37.356318 ], [ -79.169186, 37.356859 ], [ -79.166439, 37.359647 ], [ -79.165165, 37.360856 ], [ -79.164528, 37.361444 ], [ -79.163946, 37.361878 ], [ -79.162943, 37.362614 ], [ -79.161891, 37.363349 ], [ -79.159885, 37.364693 ], [ -79.158866, 37.365389 ], [ -79.157915, 37.36609 ], [ -79.156262, 37.367299 ], [ -79.153378, 37.36939 ], [ -79.1513, 37.370777 ], [ -79.148798, 37.372337 ], [ -79.146813, 37.373529 ], [ -79.146135, 37.37394 ], [ -79.145298, 37.374385 ], [ -79.144399, 37.374808 ], [ -79.143032, 37.375351 ], [ -79.142887, 37.375396 ], [ -79.141407, 37.375861 ], [ -79.13952, 37.376309 ], [ -79.137442, 37.376753 ], [ -79.136385, 37.376976 ], [ -79.135221, 37.37722 ], [ -79.134065, 37.377456 ], [ -79.132756, 37.377733 ], [ -79.131505, 37.377997 ], [ -79.130701, 37.378165 ], [ -79.129655, 37.378385 ], [ -79.128812, 37.378561 ], [ -79.127809, 37.378776 ], [ -79.127166, 37.378891 ], [ -79.124907, 37.379433 ], [ -79.122351, 37.380007 ], [ -79.119924, 37.380555 ], [ -79.118369, 37.380958 ], [ -79.116892, 37.381492 ], [ -79.11429, 37.382508 ], [ -79.111589, 37.383564 ], [ -79.110432, 37.384015 ], [ -79.108723, 37.384663 ], [ -79.107004, 37.385341 ], [ -79.10533, 37.38597 ], [ -79.10529, 37.385969 ], [ -79.104874, 37.386095 ], [ -79.104406, 37.386191 ], [ -79.103958, 37.38624 ], [ -79.103328, 37.386271 ], [ -79.101681, 37.386155 ], [ -79.101144, 37.386117 ], [ -79.100418, 37.386038 ], [ -79.097991, 37.385843 ], [ -79.09636, 37.385744 ], [ -79.095982, 37.385658 ], [ -79.095845, 37.385614 ], [ -79.09571, 37.385555 ], [ -79.095567, 37.38548 ], [ -79.095427, 37.38539 ], [ -79.095308, 37.385296 ], [ -79.09517, 37.385161 ], [ -79.09509, 37.385054 ], [ -79.094998, 37.384905 ], [ -79.094916, 37.384737 ], [ -79.094844, 37.384528 ], [ -79.094656, 37.383845 ], [ -79.094531, 37.38345 ], [ -79.094325, 37.383054 ], [ -79.094038, 37.38276 ], [ -79.093621, 37.382467 ], [ -79.093187, 37.382294 ], [ -79.092689, 37.382201 ], [ -79.092284, 37.382201 ], [ -79.091903, 37.382257 ], [ -79.091551, 37.382364 ], [ -79.091187, 37.382541 ], [ -79.090959, 37.382723 ], [ -79.090789, 37.382882 ], [ -79.090589, 37.383115 ], [ -79.090443, 37.383376 ], [ -79.090284, 37.383744 ], [ -79.090225, 37.384 ], [ -79.090179, 37.384541 ], [ -79.090062, 37.385779 ], [ -79.089925, 37.386644 ], [ -79.089849, 37.387226 ], [ -79.089779, 37.387541 ], [ -79.089689, 37.387836 ], [ -79.0895, 37.38838 ], [ -79.089436, 37.388633 ], [ -79.089405, 37.388841 ], [ -79.089289, 37.389685 ], [ -79.089161, 37.39093 ], [ -79.089008, 37.392008 ], [ -79.08881, 37.394069 ], [ -79.088768, 37.394579 ], [ -79.088645, 37.395885 ], [ -79.088477, 37.397207 ], [ -79.087956, 37.401181 ], [ -79.087825, 37.401823 ], [ -79.087665, 37.402308 ], [ -79.087554, 37.402629 ], [ -79.08736, 37.403142 ], [ -79.087142, 37.403562 ], [ -79.086923, 37.403937 ], [ -79.086762, 37.404195 ], [ -79.086439, 37.404708 ], [ -79.086251, 37.405002 ], [ -79.085982, 37.405393 ], [ -79.085647, 37.405896 ], [ -79.085037, 37.406824 ], [ -79.084691, 37.407346 ], [ -79.084239, 37.407998 ], [ -79.084081, 37.408208 ], [ -79.083969, 37.408376 ], [ -79.083852, 37.408534 ], [ -79.083752, 37.408705 ], [ -79.083641, 37.408893 ], [ -79.08253, 37.41059 ], [ -79.082107, 37.41155 ], [ -79.081937, 37.412163 ], [ -79.081833, 37.412538 ], [ -79.081757, 37.413176 ], [ -79.08171, 37.413903 ], [ -79.081751, 37.414774 ], [ -79.081781, 37.415758 ], [ -79.081777, 37.417393 ], [ -79.081646, 37.41901 ], [ -79.081485, 37.420256 ], [ -79.081292, 37.421219 ], [ -79.081057, 37.422257 ], [ -79.080513, 37.424117 ], [ -79.07951, 37.427155 ], [ -79.078061, 37.431195 ], [ -79.077269, 37.433524 ], [ -79.076993, 37.434391 ], [ -79.076647, 37.435495 ], [ -79.076395, 37.436608 ], [ -79.076304, 37.437254 ], [ -79.076229, 37.438019 ], [ -79.076213, 37.439312 ], [ -79.076213, 37.439413 ], [ -79.076155, 37.442774 ], [ -79.07614, 37.443179 ], [ -79.076116, 37.443841 ], [ -79.076046, 37.446058 ], [ -79.075976, 37.449173 ], [ -79.076002, 37.451689 ], [ -79.076065, 37.4523 ], [ -79.076262, 37.453 ], [ -79.076579, 37.453683 ], [ -79.076982, 37.454312 ], [ -79.077536, 37.45501 ], [ -79.079739, 37.457229 ], [ -79.080689, 37.458217 ], [ -79.081531, 37.459252 ], [ -79.082085, 37.460038 ], [ -79.082441, 37.460738 ], [ -79.082708, 37.461304 ], [ -79.082968, 37.461981 ], [ -79.083137, 37.462694 ], [ -79.083265, 37.463513 ], [ -79.083293, 37.464338 ], [ -79.083287, 37.464745 ], [ -79.083277, 37.465166 ], [ -79.083236, 37.465743 ], [ -79.083136, 37.466259 ], [ -79.082678, 37.468029 ], [ -79.082438, 37.469156 ], [ -79.08215, 37.470371 ], [ -79.081963, 37.471033 ], [ -79.081827, 37.471415 ], [ -79.081408, 37.472342 ], [ -79.081005, 37.47309 ], [ -79.080296, 37.474045 ], [ -79.079641, 37.474751 ], [ -79.078249, 37.476094 ], [ -79.077451, 37.477058 ], [ -79.076776, 37.477863 ], [ -79.076213, 37.478711 ], [ -79.075638, 37.479763 ], [ -79.075274, 37.480624 ], [ -79.074869, 37.481821 ], [ -79.074675, 37.482594 ], [ -79.074634, 37.482892 ], [ -79.074593, 37.483204 ], [ -79.07457, 37.483627 ], [ -79.074448, 37.484732 ], [ -79.074331, 37.485753 ], [ -79.074167, 37.486518 ], [ -79.073888, 37.487326 ], [ -79.073467, 37.488074 ], [ -79.07305, 37.488846 ], [ -79.072616, 37.489619 ], [ -79.072018, 37.490699 ], [ -79.07163, 37.49136 ], [ -79.070791, 37.492896 ], [ -79.070146, 37.494186 ], [ -79.06953, 37.495438 ], [ -79.068703, 37.497026 ], [ -79.067817, 37.498799 ], [ -79.067177, 37.500098 ], [ -79.066497, 37.501471 ], [ -79.066168, 37.502341 ], [ -79.065974, 37.503063 ], [ -79.065895, 37.503746 ], [ -79.065857, 37.504329 ], [ -79.065851, 37.505804 ], [ -79.065851, 37.506847 ], [ -79.065828, 37.508187 ], [ -79.065831, 37.509824 ], [ -79.0658, 37.510657 ], [ -79.065769, 37.511273 ], [ -79.065628, 37.51191 ], [ -79.065455, 37.512506 ], [ -79.065165, 37.513111 ], [ -79.064807, 37.513823 ], [ -79.064426, 37.514512 ], [ -79.063986, 37.515424 ], [ -79.063804, 37.515903 ], [ -79.063545, 37.516788 ], [ -79.063328, 37.51796 ], [ -79.063264, 37.519296 ], [ -79.063311, 37.520208 ], [ -79.063487, 37.521209 ], [ -79.063645, 37.522214 ], [ -79.063845, 37.523275 ], [ -79.06425, 37.525364 ], [ -79.064871, 37.528602 ], [ -79.065376, 37.531264 ], [ -79.066057, 37.534819 ], [ -79.066725, 37.538252 ], [ -79.0674, 37.541904 ], [ -79.06794, 37.544546 ], [ -79.068021, 37.545221 ], [ -79.068093, 37.545891 ], [ -79.068075, 37.546616 ], [ -79.067977, 37.547323 ], [ -79.067805, 37.547989 ], [ -79.06729, 37.549617 ], [ -79.066508, 37.552189 ], [ -79.066203, 37.55312 ], [ -79.065916, 37.554199 ], [ -79.06571, 37.554864 ], [ -79.065358, 37.555901 ], [ -79.06462, 37.558162 ], [ -79.064236, 37.559374 ], [ -79.064086, 37.559848 ], [ -79.063835, 37.560896 ], [ -79.063609, 37.561383 ], [ -79.063256, 37.561986 ], [ -79.062896, 37.562503 ], [ -79.062134, 37.563345 ], [ -79.061625, 37.563753 ], [ -79.06094, 37.564213 ], [ -79.058641, 37.565583 ], [ -79.05758, 37.566208 ], [ -79.056639, 37.566768 ], [ -79.055935, 37.567192 ], [ -79.055742, 37.567302 ], [ -79.055553, 37.567416 ], [ -79.055246, 37.567615 ], [ -79.054927, 37.567838 ], [ -79.054748, 37.567977 ], [ -79.054525, 37.568169 ], [ -79.05429, 37.568391 ], [ -79.054239, 37.568442 ], [ -79.054034, 37.568657 ], [ -79.053873, 37.56885 ], [ -79.053657, 37.569143 ], [ -79.053524, 37.569347 ], [ -79.053368, 37.569618 ], [ -79.053228, 37.569894 ], [ -79.053172, 37.570026 ], [ -79.053043, 37.570358 ], [ -79.05286, 37.57095 ], [ -79.052677, 37.571527 ], [ -79.052485, 37.572133 ], [ -79.052132, 37.573261 ], [ -79.051632, 37.57486 ], [ -79.051348, 37.57574 ], [ -79.051123, 37.576286 ], [ -79.051087, 37.576361 ], [ -79.050788, 37.576916 ], [ -79.050662, 37.577116 ], [ -79.050472, 37.577395 ], [ -79.050278, 37.577652 ], [ -79.050057, 37.577924 ], [ -79.049759, 37.578262 ], [ -79.049412, 37.578608 ], [ -79.049047, 37.578931 ], [ -79.047001, 37.580602 ], [ -79.046515, 37.580994 ], [ -79.046166, 37.58126 ], [ -79.045909, 37.581455 ], [ -79.04561, 37.58167 ], [ -79.045264, 37.581887 ], [ -79.044961, 37.582077 ], [ -79.044149, 37.582573 ], [ -79.04353, 37.582927 ], [ -79.04291, 37.58327 ], [ -79.042129, 37.58371 ], [ -79.041873, 37.583864 ], [ -79.041806, 37.58391 ], [ -79.041621, 37.584017 ], [ -79.041414, 37.584155 ], [ -79.041178, 37.58431 ], [ -79.040635, 37.584689 ], [ -79.039894, 37.585255 ], [ -79.039608, 37.585491 ], [ -79.03912, 37.585904 ], [ -79.038845, 37.586155 ], [ -79.038474, 37.586513 ], [ -79.03781, 37.587198 ], [ -79.037358, 37.587719 ], [ -79.037086, 37.588056 ], [ -79.036877, 37.588331 ], [ -79.036498, 37.588836 ], [ -79.036258, 37.589205 ], [ -79.035926, 37.589739 ], [ -79.034645, 37.591992 ], [ -79.034482, 37.592286 ], [ -79.034097, 37.592957 ], [ -79.033913, 37.593255 ], [ -79.033669, 37.593669 ], [ -79.033006, 37.594819 ], [ -79.032654, 37.595452 ], [ -79.032044, 37.596522 ], [ -79.031678, 37.597159 ], [ -79.031353, 37.597735 ], [ -79.03004, 37.600074 ], [ -79.029644, 37.600763 ], [ -79.028963, 37.601951 ], [ -79.028685, 37.602397 ], [ -79.02851, 37.602662 ], [ -79.028221, 37.603043 ], [ -79.027978, 37.603341 ], [ -79.027692, 37.60368 ], [ -79.027548, 37.60383 ], [ -79.027306, 37.604072 ], [ -79.027105, 37.604269 ], [ -79.02697, 37.604392 ], [ -79.026652, 37.60468 ], [ -79.026083, 37.605207 ], [ -79.026036, 37.60525 ], [ -79.025989, 37.605294 ], [ -79.025872, 37.605402 ], [ -79.02555, 37.605685 ], [ -79.025303, 37.605893 ], [ -79.025239, 37.605951 ], [ -79.025075, 37.606102 ], [ -79.024795, 37.606358 ], [ -79.024408, 37.606702 ], [ -79.024072, 37.607013 ], [ -79.024053, 37.607031 ], [ -79.023787, 37.607264 ], [ -79.023498, 37.607516 ], [ -79.023027, 37.607911 ], [ -79.022811, 37.60807 ], [ -79.022583, 37.608218 ], [ -79.022393, 37.608329 ], [ -79.022103, 37.608478 ], [ -79.021864, 37.608585 ], [ -79.021424, 37.608752 ], [ -79.020855, 37.608965 ], [ -79.020271, 37.609195 ], [ -79.020171, 37.609236 ], [ -79.019921, 37.609348 ], [ -79.019569, 37.609526 ], [ -79.019341, 37.609661 ], [ -79.019134, 37.609801 ], [ -79.018938, 37.609951 ], [ -79.018736, 37.61013 ], [ -79.018557, 37.610318 ], [ -79.018408, 37.6105 ], [ -79.018273, 37.610689 ], [ -79.018177, 37.610845 ], [ -79.018077, 37.611005 ], [ -79.017942, 37.61127 ], [ -79.01775, 37.611733 ], [ -79.017583, 37.612195 ], [ -79.017453, 37.612536 ], [ -79.01736, 37.612779 ], [ -79.017077, 37.613518 ], [ -79.016316, 37.615651 ], [ -79.016211, 37.615921 ], [ -79.015957, 37.616661 ], [ -79.015442, 37.618041 ], [ -79.015171, 37.618767 ], [ -79.015044, 37.619085 ], [ -79.014896, 37.619401 ], [ -79.014725, 37.619699 ], [ -79.014609, 37.619891 ], [ -79.014507, 37.620046 ], [ -79.014326, 37.620291 ], [ -79.014076, 37.620611 ], [ -79.013882, 37.620808 ], [ -79.013583, 37.621079 ], [ -79.012998, 37.621504 ], [ -79.01238, 37.621893 ], [ -79.010646, 37.622959 ], [ -79.01003, 37.623323 ], [ -79.009112, 37.623886 ], [ -79.007841, 37.62468 ], [ -79.007669, 37.624786 ], [ -79.00613, 37.625753 ], [ -79.00574, 37.625992 ], [ -79.004933, 37.626484 ], [ -79.004251, 37.626912 ], [ -79.004139, 37.626981 ], [ -79.003154, 37.627592 ], [ -79.001641, 37.628516 ], [ -79.001111, 37.628835 ], [ -79.00072, 37.62907 ], [ -79.000623, 37.62914 ], [ -79.000217, 37.629394 ], [ -78.998912, 37.630202 ], [ -78.998196, 37.630645 ], [ -78.997598, 37.631025 ], [ -78.997526, 37.631071 ], [ -78.997241, 37.631274 ], [ -78.996875, 37.631534 ], [ -78.996217, 37.63205 ], [ -78.995656, 37.632525 ], [ -78.995017, 37.633129 ], [ -78.994464, 37.633668 ], [ -78.993794, 37.634338 ], [ -78.992582, 37.635539 ], [ -78.99241, 37.635715 ], [ -78.992112, 37.636 ], [ -78.991971, 37.636127 ], [ -78.991598, 37.636454 ], [ -78.991319, 37.636676 ], [ -78.991111, 37.636827 ], [ -78.990724, 37.637089 ], [ -78.990344, 37.637324 ], [ -78.989967, 37.637537 ], [ -78.989578, 37.637737 ], [ -78.988855, 37.638052 ], [ -78.98807, 37.638382 ], [ -78.986736, 37.63892 ], [ -78.986454, 37.639034 ], [ -78.985803, 37.639316 ], [ -78.984897, 37.639687 ], [ -78.98388, 37.640096 ], [ -78.983117, 37.640414 ], [ -78.982726, 37.640573 ], [ -78.981774, 37.640959 ], [ -78.979687, 37.64182 ], [ -78.978231, 37.642417 ], [ -78.977005, 37.64291 ], [ -78.97646, 37.643116 ], [ -78.975777, 37.643333 ], [ -78.975711, 37.643354 ], [ -78.97542, 37.643425 ], [ -78.974834, 37.643551 ], [ -78.974604, 37.64359 ], [ -78.974067, 37.643681 ], [ -78.973393, 37.643752 ], [ -78.972559, 37.643813 ], [ -78.972242, 37.643839 ], [ -78.970006, 37.64399 ], [ -78.96903, 37.64406 ], [ -78.968589, 37.644095 ], [ -78.968224, 37.644136 ], [ -78.967889, 37.644182 ], [ -78.967664, 37.644226 ], [ -78.967387, 37.644293 ], [ -78.967224, 37.644341 ], [ -78.966957, 37.64443 ], [ -78.966688, 37.644536 ], [ -78.966474, 37.644631 ], [ -78.966164, 37.644789 ], [ -78.965983, 37.644902 ], [ -78.965692, 37.645098 ], [ -78.965428, 37.645294 ], [ -78.965238, 37.645456 ], [ -78.965063, 37.645628 ], [ -78.964898, 37.645816 ], [ -78.964762, 37.645992 ], [ -78.964605, 37.646219 ], [ -78.964465, 37.646453 ], [ -78.964354, 37.646672 ], [ -78.96426, 37.646896 ], [ -78.964184, 37.647124 ], [ -78.964105, 37.647472 ], [ -78.964045, 37.647822 ], [ -78.963795, 37.650137 ], [ -78.963771, 37.650446 ], [ -78.963726, 37.650831 ], [ -78.963699, 37.651104 ], [ -78.963637, 37.651545 ], [ -78.963559, 37.651968 ], [ -78.963475, 37.652244 ], [ -78.963403, 37.652439 ], [ -78.963343, 37.65259 ], [ -78.963259, 37.652771 ], [ -78.963211, 37.652855 ], [ -78.963159, 37.652948 ], [ -78.963044, 37.653119 ], [ -78.962876, 37.65334 ], [ -78.962692, 37.653554 ], [ -78.961989, 37.654258 ], [ -78.961507, 37.654728 ], [ -78.961039, 37.655181 ], [ -78.960337, 37.655875 ], [ -78.96023, 37.655972 ], [ -78.960126, 37.656071 ], [ -78.959777, 37.656385 ], [ -78.959596, 37.656559 ], [ -78.959428, 37.656733 ], [ -78.95894, 37.657212 ], [ -78.958347, 37.65781 ], [ -78.957955, 37.658265 ], [ -78.957902, 37.65834 ], [ -78.957703, 37.658582 ], [ -78.956957, 37.659613 ], [ -78.956, 37.660952 ], [ -78.95555, 37.661601 ], [ -78.95521, 37.662149 ], [ -78.955078, 37.662367 ], [ -78.954742, 37.662988 ], [ -78.954584, 37.663297 ], [ -78.954305, 37.663917 ], [ -78.954148, 37.6643 ], [ -78.953981, 37.664751 ], [ -78.953842, 37.665162 ], [ -78.953791, 37.665348 ], [ -78.953693, 37.665702 ], [ -78.953658, 37.665836 ], [ -78.953519, 37.666441 ], [ -78.953449, 37.666806 ], [ -78.953407, 37.667104 ], [ -78.953324, 37.667763 ], [ -78.953292, 37.668183 ], [ -78.953221, 37.669156 ], [ -78.953153, 37.670098 ], [ -78.953142, 37.670264 ], [ -78.953141, 37.6704 ], [ -78.953072, 37.671177 ], [ -78.95304, 37.671615 ], [ -78.952995, 37.672174 ], [ -78.952947, 37.672942 ], [ -78.95292, 37.673225 ], [ -78.952878, 37.673819 ], [ -78.952829, 37.674339 ], [ -78.952797, 37.674686 ], [ -78.952784, 37.674804 ], [ -78.952747, 37.675024 ], [ -78.952692, 37.675301 ], [ -78.952624, 37.675578 ], [ -78.952561, 37.675784 ], [ -78.952486, 37.675985 ], [ -78.952442, 37.676122 ], [ -78.952386, 37.676257 ], [ -78.95232, 37.676433 ], [ -78.952115, 37.676852 ], [ -78.952045, 37.676981 ], [ -78.951895, 37.677259 ], [ -78.951765, 37.677478 ], [ -78.951015, 37.678688 ], [ -78.950642, 37.679294 ], [ -78.950106, 37.680167 ], [ -78.949932, 37.680439 ], [ -78.949555, 37.681057 ], [ -78.948514, 37.682749 ], [ -78.948346, 37.683014 ], [ -78.94819, 37.68327 ], [ -78.947933, 37.683687 ], [ -78.947735, 37.683997 ], [ -78.946949, 37.685284 ], [ -78.946763, 37.685577 ], [ -78.946171, 37.686544 ], [ -78.946077, 37.686718 ], [ -78.945972, 37.686928 ], [ -78.945848, 37.687201 ], [ -78.945794, 37.687349 ], [ -78.945689, 37.687661 ], [ -78.945632, 37.687901 ], [ -78.945568, 37.688266 ], [ -78.945541, 37.688542 ], [ -78.945537, 37.688659 ], [ -78.945545, 37.689126 ], [ -78.945579, 37.689434 ], [ -78.945664, 37.689907 ], [ -78.945683, 37.68999 ], [ -78.945776, 37.690456 ], [ -78.945835, 37.69071 ], [ -78.945961, 37.691323 ], [ -78.946182, 37.69241 ], [ -78.946237, 37.692788 ], [ -78.946274, 37.693085 ], [ -78.946296, 37.693491 ], [ -78.946303, 37.694022 ], [ -78.946301, 37.694057 ], [ -78.946287, 37.694387 ], [ -78.946261, 37.694709 ], [ -78.946249, 37.694805 ], [ -78.946182, 37.695293 ], [ -78.946055, 37.695876 ], [ -78.945864, 37.696567 ], [ -78.945405, 37.698162 ], [ -78.945298, 37.698548 ], [ -78.944826, 37.700186 ], [ -78.944719, 37.700501 ], [ -78.94458, 37.700835 ], [ -78.944457, 37.701074 ], [ -78.944324, 37.701307 ], [ -78.944135, 37.701595 ], [ -78.944026, 37.701738 ], [ -78.943778, 37.70202 ], [ -78.943504, 37.702305 ], [ -78.943214, 37.702564 ], [ -78.94302, 37.702719 ], [ -78.942935, 37.702779 ], [ -78.942809, 37.702868 ], [ -78.942485, 37.703077 ], [ -78.942218, 37.703232 ], [ -78.9405, 37.704132 ], [ -78.940455, 37.704155 ], [ -78.940006, 37.704381 ], [ -78.938227, 37.705302 ], [ -78.93698, 37.705948 ], [ -78.93647, 37.706225 ], [ -78.93488, 37.707122 ], [ -78.934646, 37.707256 ], [ -78.93388, 37.707679 ], [ -78.933448, 37.707924 ], [ -78.932774, 37.708305 ], [ -78.931107, 37.709235 ], [ -78.929365, 37.710215 ], [ -78.928987, 37.710423 ], [ -78.928188, 37.710873 ], [ -78.927848, 37.711058 ], [ -78.927739, 37.711117 ], [ -78.927286, 37.71134 ], [ -78.927035, 37.711449 ], [ -78.926705, 37.711572 ], [ -78.926357, 37.711684 ], [ -78.926015, 37.711773 ], [ -78.925764, 37.711831 ], [ -78.925742, 37.711836 ], [ -78.925395, 37.711899 ], [ -78.925098, 37.711943 ], [ -78.92463, 37.712006 ], [ -78.924358, 37.71204 ], [ -78.9241, 37.712072 ], [ -78.923317, 37.712168 ], [ -78.922673, 37.712257 ], [ -78.921644, 37.712386 ], [ -78.920771, 37.712503 ], [ -78.91879, 37.712755 ], [ -78.917763, 37.712894 ], [ -78.916758, 37.713029 ], [ -78.916316, 37.713107 ], [ -78.915891, 37.713204 ], [ -78.915614, 37.71328 ], [ -78.915324, 37.713372 ], [ -78.915274, 37.713388 ], [ -78.914912, 37.71352 ], [ -78.91455, 37.71367 ], [ -78.914179, 37.713842 ], [ -78.913675, 37.714085 ], [ -78.912967, 37.714415 ], [ -78.910226, 37.715714 ], [ -78.90939, 37.716116 ], [ -78.908844, 37.716378 ], [ -78.908565, 37.716525 ], [ -78.908344, 37.716654 ], [ -78.908223, 37.716733 ], [ -78.907898, 37.716972 ], [ -78.907709, 37.71712 ], [ -78.907284, 37.717479 ], [ -78.905705, 37.718784 ], [ -78.905314, 37.719084 ], [ -78.90491, 37.719372 ], [ -78.904525, 37.719604 ], [ -78.904033, 37.719882 ], [ -78.903337, 37.720265 ], [ -78.902528, 37.720722 ], [ -78.902455, 37.720766 ], [ -78.902055, 37.720998 ], [ -78.901704, 37.721237 ], [ -78.901372, 37.721492 ], [ -78.901207, 37.721632 ], [ -78.901102, 37.721732 ], [ -78.90093, 37.721897 ], [ -78.900791, 37.722043 ], [ -78.900736, 37.722103 ], [ -78.900601, 37.722261 ], [ -78.900394, 37.722523 ], [ -78.900222, 37.722764 ], [ -78.900079, 37.722992 ], [ -78.900004, 37.723131 ], [ -78.899716, 37.723665 ], [ -78.899467, 37.724145 ], [ -78.899406, 37.724274 ], [ -78.89922, 37.72461 ], [ -78.899008, 37.725016 ], [ -78.898838, 37.725322 ], [ -78.898749, 37.725462 ], [ -78.898619, 37.725684 ], [ -78.898501, 37.725886 ], [ -78.898424, 37.726009 ], [ -78.898396, 37.726054 ], [ -78.89823, 37.726333 ], [ -78.897785, 37.72702 ], [ -78.897326, 37.727687 ], [ -78.897029, 37.728104 ], [ -78.896755, 37.72847 ], [ -78.896087, 37.729327 ], [ -78.895376, 37.730223 ], [ -78.89492, 37.73078 ], [ -78.894224, 37.731648 ], [ -78.893951, 37.731982 ], [ -78.893208, 37.732922 ], [ -78.893101, 37.733073 ], [ -78.892951, 37.733284 ], [ -78.892829, 37.733486 ], [ -78.892725, 37.733694 ], [ -78.892653, 37.733852 ], [ -78.892395, 37.734583 ], [ -78.892264, 37.735006 ], [ -78.891874, 37.73617 ], [ -78.891809, 37.736394 ], [ -78.891615, 37.736972 ], [ -78.891508, 37.737307 ], [ -78.891316, 37.737819 ], [ -78.891154, 37.738191 ], [ -78.891075, 37.738356 ], [ -78.891011, 37.738485 ], [ -78.890701, 37.739024 ], [ -78.890539, 37.739262 ], [ -78.890353, 37.739521 ], [ -78.890119, 37.739847 ], [ -78.889796, 37.740253 ], [ -78.889491, 37.740645 ], [ -78.889217, 37.740996 ], [ -78.888944, 37.74133 ], [ -78.888623, 37.741743 ], [ -78.888513, 37.741886 ], [ -78.888267, 37.742188 ], [ -78.887876, 37.742653 ], [ -78.887675, 37.74287 ], [ -78.887504, 37.743037 ], [ -78.887277, 37.743237 ], [ -78.887216, 37.743287 ], [ -78.887135, 37.743353 ], [ -78.886534, 37.743824 ], [ -78.886162, 37.744125 ], [ -78.8861, 37.744182 ], [ -78.885899, 37.744355 ], [ -78.885622, 37.744575 ], [ -78.885356, 37.74478 ], [ -78.884605, 37.745388 ], [ -78.884042, 37.74585 ], [ -78.882882, 37.746752 ], [ -78.882051, 37.747417 ], [ -78.880834, 37.748391 ], [ -78.88003, 37.749038 ], [ -78.879751, 37.749271 ], [ -78.879568, 37.74942 ], [ -78.879376, 37.749569 ], [ -78.878419, 37.750353 ], [ -78.877854, 37.750804 ], [ -78.877584, 37.751037 ], [ -78.877286, 37.751315 ], [ -78.877004, 37.751598 ], [ -78.876844, 37.751774 ], [ -78.876626, 37.752042 ], [ -78.876378, 37.752385 ], [ -78.876192, 37.752665 ], [ -78.876061, 37.752882 ], [ -78.875814, 37.753345 ], [ -78.875209, 37.754691 ], [ -78.874619, 37.756931 ], [ -78.874501, 37.757307 ], [ -78.874339, 37.757855 ], [ -78.873994, 37.758979 ], [ -78.873789, 37.759637 ], [ -78.873696, 37.75991 ], [ -78.873541, 37.760318 ], [ -78.873332, 37.760834 ], [ -78.873094, 37.761337 ], [ -78.872847, 37.761808 ], [ -78.872451, 37.762468 ], [ -78.872257, 37.76277 ], [ -78.871993, 37.763172 ], [ -78.871574, 37.763799 ], [ -78.871327, 37.764167 ], [ -78.871012, 37.764642 ], [ -78.870469, 37.765468 ], [ -78.870316, 37.765702 ], [ -78.870042, 37.766126 ], [ -78.869873, 37.766412 ], [ -78.869781, 37.766589 ], [ -78.869687, 37.766814 ], [ -78.869585, 37.76708 ], [ -78.869516, 37.767314 ], [ -78.869424, 37.767698 ], [ -78.869391, 37.767942 ], [ -78.86938, 37.768238 ], [ -78.869389, 37.768459 ], [ -78.869415, 37.768673 ], [ -78.869485, 37.768991 ], [ -78.869567, 37.769255 ], [ -78.86966, 37.769515 ], [ -78.869743, 37.769714 ], [ -78.869793, 37.769822 ], [ -78.870127, 37.770634 ], [ -78.870244, 37.770938 ], [ -78.870299, 37.771157 ], [ -78.870337, 37.771378 ], [ -78.870379, 37.771605 ], [ -78.870392, 37.771879 ], [ -78.870378, 37.772127 ], [ -78.870337, 37.772397 ], [ -78.870272, 37.77267 ], [ -78.870248, 37.772764 ], [ -78.87004, 37.773562 ], [ -78.869728, 37.774718 ], [ -78.869574, 37.775264 ], [ -78.869411, 37.775864 ], [ -78.869234, 37.776522 ], [ -78.869061, 37.777151 ], [ -78.868889, 37.777735 ], [ -78.868643, 37.778648 ], [ -78.868399, 37.779571 ], [ -78.868224, 37.780198 ], [ -78.868067, 37.780782 ], [ -78.867497, 37.782893 ], [ -78.867434, 37.783141 ], [ -78.867364, 37.783414 ], [ -78.867185, 37.784047 ], [ -78.867156, 37.784152 ], [ -78.867042, 37.784562 ], [ -78.866921, 37.785054 ], [ -78.866779, 37.785508 ], [ -78.866518, 37.786333 ], [ -78.866458, 37.786501 ], [ -78.866348, 37.786832 ], [ -78.866066, 37.787709 ], [ -78.865703, 37.788816 ], [ -78.865457, 37.789659 ], [ -78.865164, 37.790592 ], [ -78.864927, 37.791345 ], [ -78.864619, 37.792175 ], [ -78.864507, 37.792484 ], [ -78.864363, 37.792792 ], [ -78.864228, 37.793041 ], [ -78.864067, 37.7933 ], [ -78.863882, 37.793548 ], [ -78.863684, 37.793797 ], [ -78.863319, 37.794211 ], [ -78.863117, 37.794344 ], [ -78.86295, 37.794541 ], [ -78.862701, 37.794857 ], [ -78.86248, 37.795184 ], [ -78.862275, 37.795518 ], [ -78.862199, 37.795651 ], [ -78.862007, 37.796159 ], [ -78.861989, 37.79622 ], [ -78.861909, 37.796548 ], [ -78.861883, 37.796687 ], [ -78.861846, 37.796942 ], [ -78.861828, 37.797235 ], [ -78.861827, 37.797529 ], [ -78.861837, 37.797754 ], [ -78.861844, 37.797901 ], [ -78.861878, 37.798631 ], [ -78.861919, 37.799738 ], [ -78.861971, 37.800826 ], [ -78.862007, 37.801869 ], [ -78.862081, 37.803303 ], [ -78.862104, 37.80423 ], [ -78.86209, 37.804437 ], [ -78.862063, 37.804642 ], [ -78.862038, 37.804754 ], [ -78.862023, 37.804816 ], [ -78.861947, 37.805046 ], [ -78.861861, 37.805246 ], [ -78.861771, 37.805437 ], [ -78.86165, 37.805634 ], [ -78.861512, 37.805817 ], [ -78.861343, 37.806004 ], [ -78.860353, 37.806994 ], [ -78.859848, 37.807481 ], [ -78.858512, 37.808821 ], [ -78.858367, 37.808958 ], [ -78.858079, 37.809211 ], [ -78.857729, 37.809505 ], [ -78.857293, 37.80986 ], [ -78.856987, 37.81009 ], [ -78.856658, 37.810338 ], [ -78.855693, 37.81105 ], [ -78.85561, 37.811115 ], [ -78.855262, 37.811371 ], [ -78.854965, 37.811605 ], [ -78.853694, 37.812587 ], [ -78.853389, 37.812818 ], [ -78.852362, 37.813637 ], [ -78.851981, 37.813912 ], [ -78.851517, 37.814266 ], [ -78.851057, 37.81462 ], [ -78.85085, 37.814768 ], [ -78.850729, 37.814859 ], [ -78.850652, 37.81492 ], [ -78.850085, 37.815369 ], [ -78.848637, 37.81648 ], [ -78.846503, 37.818117 ], [ -78.846263, 37.818303 ], [ -78.845641, 37.818784 ], [ -78.845198, 37.81912 ], [ -78.844287, 37.819835 ], [ -78.843809, 37.820229 ], [ -78.841255, 37.822413 ], [ -78.840635, 37.822925 ], [ -78.840114, 37.823377 ], [ -78.839772, 37.823685 ], [ -78.839408, 37.824047 ], [ -78.839049, 37.824425 ], [ -78.838766, 37.824737 ], [ -78.838386, 37.825182 ], [ -78.838147, 37.825481 ], [ -78.837849, 37.82588 ], [ -78.837407, 37.826506 ], [ -78.837204, 37.826823 ], [ -78.837053, 37.827081 ], [ -78.836731, 37.827595 ], [ -78.836452, 37.828104 ], [ -78.836275, 37.828399 ], [ -78.836111, 37.828667 ], [ -78.835849, 37.82912 ], [ -78.835504, 37.829691 ], [ -78.835352, 37.829945 ], [ -78.83498, 37.830568 ], [ -78.834935, 37.830642 ], [ -78.834826, 37.830821 ], [ -78.834646, 37.831137 ], [ -78.834377, 37.831577 ], [ -78.833853, 37.832462 ], [ -78.833724, 37.832692 ], [ -78.833217, 37.833546 ], [ -78.831919, 37.835713 ], [ -78.831568, 37.836263 ], [ -78.831293, 37.836637 ], [ -78.831013, 37.836981 ], [ -78.83077, 37.837252 ], [ -78.829687, 37.838434 ], [ -78.829526, 37.8386 ], [ -78.829353, 37.838766 ], [ -78.828845, 37.839208 ], [ -78.828553, 37.839442 ], [ -78.828248, 37.839665 ], [ -78.827736, 37.840071 ], [ -78.82744, 37.840316 ], [ -78.827359, 37.840393 ], [ -78.827219, 37.840526 ], [ -78.827033, 37.840723 ], [ -78.82681, 37.840985 ], [ -78.826636, 37.841213 ], [ -78.826324, 37.841668 ], [ -78.825848, 37.842321 ], [ -78.825635, 37.842569 ], [ -78.825481, 37.842727 ], [ -78.825276, 37.842917 ], [ -78.825211, 37.842971 ], [ -78.825103, 37.843062 ], [ -78.824902, 37.843225 ], [ -78.824735, 37.84334 ], [ -78.824467, 37.843502 ], [ -78.824206, 37.843652 ], [ -78.82312, 37.844198 ], [ -78.822611, 37.844456 ], [ -78.821878, 37.84482 ], [ -78.820981, 37.845244 ], [ -78.82067, 37.845389 ], [ -78.820264, 37.845536 ], [ -78.820038, 37.845598 ], [ -78.819873, 37.845635 ], [ -78.81967, 37.845683 ], [ -78.819501, 37.845707 ], [ -78.819221, 37.845735 ], [ -78.818871, 37.845752 ], [ -78.818684, 37.845746 ], [ -78.818377, 37.845729 ], [ -78.818065, 37.845689 ], [ -78.817748, 37.845635 ], [ -78.817461, 37.845563 ], [ -78.817089, 37.845456 ], [ -78.81664, 37.845308 ], [ -78.816094, 37.845137 ], [ -78.815801, 37.845042 ], [ -78.815106, 37.844835 ], [ -78.814203, 37.844545 ], [ -78.813661, 37.844372 ], [ -78.813194, 37.844227 ], [ -78.812793, 37.844119 ], [ -78.812466, 37.844059 ], [ -78.812161, 37.844015 ], [ -78.811899, 37.843994 ], [ -78.811692, 37.843985 ], [ -78.81145, 37.844002 ], [ -78.811288, 37.844022 ], [ -78.810966, 37.84409 ], [ -78.810704, 37.844162 ], [ -78.810498, 37.844229 ], [ -78.810246, 37.844336 ], [ -78.80993, 37.84449 ], [ -78.809727, 37.844605 ], [ -78.809573, 37.844705 ], [ -78.809276, 37.84492 ], [ -78.809029, 37.845076 ], [ -78.808807, 37.845199 ], [ -78.808527, 37.845332 ], [ -78.808311, 37.845419 ], [ -78.808089, 37.845498 ], [ -78.807811, 37.845579 ], [ -78.807589, 37.845643 ], [ -78.807297, 37.845708 ], [ -78.807, 37.845759 ], [ -78.806691, 37.845797 ], [ -78.806302, 37.845837 ], [ -78.805184, 37.845933 ], [ -78.80503, 37.845945 ], [ -78.804012, 37.846026 ], [ -78.800837, 37.846324 ], [ -78.800537, 37.846339 ], [ -78.800237, 37.846355 ], [ -78.800014, 37.846352 ], [ -78.79976, 37.846345 ], [ -78.799425, 37.846321 ], [ -78.799048, 37.846276 ], [ -78.79881, 37.846227 ], [ -78.798587, 37.846183 ], [ -78.798334, 37.846121 ], [ -78.798127, 37.846044 ], [ -78.797833, 37.845932 ], [ -78.797473, 37.845765 ], [ -78.797183, 37.845617 ], [ -78.796923, 37.845465 ], [ -78.796357, 37.845082 ], [ -78.795818, 37.844712 ], [ -78.795607, 37.84458 ], [ -78.795352, 37.844427 ], [ -78.795147, 37.84431 ], [ -78.794915, 37.844201 ], [ -78.794645, 37.844085 ], [ -78.794419, 37.843996 ], [ -78.794095, 37.843903 ], [ -78.793805, 37.843828 ], [ -78.793467, 37.843774 ], [ -78.793125, 37.84374 ], [ -78.792933, 37.843732 ], [ -78.792722, 37.843723 ], [ -78.792238, 37.84372 ], [ -78.791688, 37.843732 ], [ -78.791137, 37.843731 ], [ -78.790713, 37.843712 ], [ -78.790444, 37.843693 ], [ -78.79016, 37.843657 ], [ -78.78988, 37.843607 ], [ -78.789604, 37.843542 ], [ -78.789363, 37.843478 ], [ -78.789067, 37.843389 ], [ -78.788706, 37.843253 ], [ -78.78839, 37.843125 ], [ -78.788101, 37.843016 ], [ -78.78765, 37.842857 ], [ -78.787324, 37.842748 ], [ -78.787056, 37.84268 ], [ -78.786677, 37.842606 ], [ -78.786459, 37.842568 ], [ -78.786292, 37.842537 ], [ -78.785994, 37.842501 ], [ -78.785649, 37.842467 ], [ -78.785267, 37.842457 ], [ -78.784945, 37.842456 ], [ -78.784589, 37.842468 ], [ -78.782212, 37.842633 ], [ -78.780497, 37.842776 ], [ -78.779987, 37.842814 ], [ -78.778924, 37.842896 ], [ -78.77812, 37.842986 ], [ -78.777773, 37.843042 ], [ -78.777066, 37.843144 ], [ -78.776444, 37.84325 ], [ -78.775647, 37.843402 ], [ -78.774632, 37.843601 ], [ -78.773646, 37.843786 ], [ -78.773282, 37.843855 ], [ -78.772981, 37.843912 ], [ -78.772128, 37.844091 ], [ -78.771161, 37.844316 ], [ -78.770651, 37.844441 ], [ -78.769991, 37.844616 ], [ -78.768859, 37.844941 ], [ -78.768162, 37.845142 ], [ -78.767015, 37.845472 ], [ -78.76637, 37.845658 ], [ -78.765119, 37.846012 ], [ -78.761663, 37.84701 ], [ -78.760903, 37.847224 ], [ -78.760298, 37.847402 ], [ -78.75996, 37.847506 ], [ -78.7597, 37.847596 ], [ -78.759532, 37.84765 ], [ -78.759113, 37.847806 ], [ -78.758783, 37.847948 ], [ -78.758412, 37.84812 ], [ -78.758057, 37.848288 ], [ -78.757154, 37.848747 ], [ -78.756986, 37.848829 ], [ -78.756546, 37.849062 ], [ -78.756115, 37.849306 ], [ -78.755862, 37.849458 ], [ -78.755244, 37.849843 ], [ -78.754769, 37.85013 ], [ -78.754377, 37.85038 ], [ -78.753945, 37.850672 ], [ -78.753673, 37.850873 ], [ -78.753364, 37.851127 ], [ -78.753217, 37.851259 ], [ -78.752739, 37.851715 ], [ -78.752046, 37.852374 ], [ -78.75166, 37.852719 ], [ -78.751401, 37.852929 ], [ -78.751134, 37.853132 ], [ -78.750789, 37.853376 ], [ -78.750504, 37.853564 ], [ -78.750081, 37.853824 ], [ -78.74973, 37.854021 ], [ -78.749369, 37.854207 ], [ -78.748998, 37.85438 ], [ -78.748624, 37.854531 ], [ -78.748053, 37.854743 ], [ -78.747045, 37.85508 ], [ -78.746537, 37.855262 ], [ -78.746473, 37.855285 ], [ -78.745985, 37.855474 ], [ -78.7456, 37.855635 ], [ -78.744986, 37.855911 ], [ -78.744673, 37.856064 ], [ -78.744246, 37.856299 ], [ -78.743761, 37.856591 ], [ -78.743416, 37.856817 ], [ -78.742954, 37.857145 ], [ -78.742639, 37.857387 ], [ -78.742337, 37.85764 ], [ -78.742294, 37.85768 ], [ -78.741896, 37.858045 ], [ -78.741503, 37.85843 ], [ -78.741291, 37.858648 ], [ -78.741254, 37.858686 ], [ -78.740963, 37.859027 ], [ -78.740705, 37.859351 ], [ -78.740668, 37.859398 ], [ -78.740453, 37.85968 ], [ -78.739901, 37.860385 ], [ -78.739675, 37.860647 ], [ -78.739434, 37.860902 ], [ -78.739176, 37.861151 ], [ -78.73895, 37.861357 ], [ -78.738655, 37.861604 ], [ -78.738411, 37.861795 ], [ -78.738094, 37.862025 ], [ -78.737733, 37.862262 ], [ -78.737429, 37.862445 ], [ -78.73708, 37.862638 ], [ -78.73657, 37.862893 ], [ -78.736186, 37.863088 ], [ -78.735435, 37.86348 ], [ -78.734529, 37.863942 ], [ -78.733874, 37.864271 ], [ -78.733562, 37.864427 ], [ -78.733042, 37.864704 ], [ -78.732039, 37.865214 ], [ -78.731948, 37.865258 ], [ -78.731785, 37.865335 ], [ -78.731411, 37.86553 ], [ -78.730148, 37.866169 ], [ -78.729986, 37.866254 ], [ -78.729722, 37.866391 ], [ -78.728688, 37.866913 ], [ -78.727888, 37.86733 ], [ -78.727529, 37.86751 ], [ -78.726765, 37.867904 ], [ -78.726166, 37.868202 ], [ -78.725869, 37.868361 ], [ -78.725428, 37.868579 ], [ -78.725084, 37.868757 ], [ -78.724518, 37.869049 ], [ -78.723898, 37.869354 ], [ -78.722779, 37.869945 ], [ -78.721592, 37.870542 ], [ -78.720481, 37.87111 ], [ -78.719958, 37.871373 ], [ -78.719701, 37.871497 ], [ -78.719365, 37.871672 ], [ -78.718719, 37.872028 ], [ -78.71847, 37.872183 ], [ -78.718164, 37.872388 ], [ -78.717945, 37.872553 ], [ -78.717592, 37.872851 ], [ -78.717285, 37.873139 ], [ -78.717049, 37.873363 ], [ -78.716739, 37.873728 ], [ -78.716536, 37.874002 ], [ -78.716395, 37.874221 ], [ -78.716144, 37.874657 ], [ -78.71604, 37.87487 ], [ -78.715888, 37.875212 ], [ -78.715814, 37.875401 ], [ -78.715694, 37.87571 ], [ -78.715495, 37.876238 ], [ -78.715377, 37.876548 ], [ -78.715275, 37.876817 ], [ -78.71521, 37.877013 ], [ -78.715136, 37.877211 ], [ -78.715081, 37.877371 ], [ -78.714995, 37.877587 ], [ -78.71492, 37.877787 ], [ -78.7148, 37.878131 ], [ -78.714687, 37.878428 ], [ -78.714533, 37.878796 ], [ -78.714454, 37.879009 ], [ -78.714417, 37.879116 ], [ -78.714256, 37.879549 ], [ -78.714141, 37.879854 ], [ -78.713896, 37.880594 ], [ -78.713756, 37.881038 ], [ -78.713682, 37.88126 ], [ -78.713617, 37.881457 ], [ -78.713533, 37.881697 ], [ -78.713446, 37.881943 ], [ -78.713394, 37.882108 ], [ -78.713314, 37.882336 ], [ -78.713184, 37.882655 ], [ -78.713006, 37.883053 ], [ -78.712892, 37.883274 ], [ -78.712733, 37.88355 ], [ -78.712558, 37.88384 ], [ -78.712369, 37.884119 ], [ -78.712275, 37.884257 ], [ -78.712136, 37.884449 ], [ -78.711974, 37.884667 ], [ -78.711814, 37.884876 ], [ -78.711641, 37.885085 ], [ -78.711418, 37.885345 ], [ -78.711139, 37.885644 ], [ -78.710798, 37.88599 ], [ -78.710465, 37.886309 ], [ -78.710195, 37.886555 ], [ -78.709928, 37.886781 ], [ -78.709577, 37.88706 ], [ -78.709406, 37.887199 ], [ -78.709211, 37.887345 ], [ -78.708778, 37.887648 ], [ -78.707968, 37.888179 ], [ -78.707642, 37.888399 ], [ -78.707473, 37.88851 ], [ -78.707244, 37.888663 ], [ -78.706965, 37.888843 ], [ -78.706601, 37.889083 ], [ -78.706088, 37.889425 ], [ -78.705712, 37.889669 ], [ -78.705189, 37.890019 ], [ -78.704893, 37.890211 ], [ -78.703445, 37.891162 ], [ -78.703041, 37.891429 ], [ -78.702721, 37.891638 ], [ -78.702327, 37.891905 ], [ -78.70184, 37.892223 ], [ -78.701163, 37.892662 ], [ -78.700778, 37.892933 ], [ -78.70071, 37.892981 ], [ -78.700622, 37.893046 ], [ -78.700337, 37.893272 ], [ -78.69999, 37.89357 ], [ -78.699755, 37.8938 ], [ -78.699482, 37.894099 ], [ -78.699289, 37.894329 ], [ -78.698787, 37.894984 ], [ -78.698558, 37.895284 ], [ -78.69837, 37.895519 ], [ -78.698116, 37.895851 ], [ -78.697966, 37.896055 ], [ -78.697696, 37.896407 ], [ -78.697057, 37.897242 ], [ -78.696439, 37.898041 ], [ -78.695681, 37.899035 ], [ -78.695049, 37.899863 ], [ -78.694658, 37.900403 ], [ -78.694519, 37.900599 ], [ -78.694429, 37.900733 ], [ -78.693954, 37.901464 ], [ -78.693721, 37.901862 ], [ -78.693473, 37.902275 ], [ -78.693102, 37.902981 ], [ -78.692879, 37.903439 ], [ -78.692797, 37.903623 ], [ -78.692129, 37.905105 ], [ -78.691808, 37.905817 ], [ -78.691268, 37.906984 ], [ -78.690987, 37.907549 ], [ -78.690814, 37.907874 ], [ -78.690688, 37.908089 ], [ -78.690521, 37.908372 ], [ -78.690275, 37.908767 ], [ -78.689663, 37.909657 ], [ -78.689078, 37.910492 ], [ -78.685485, 37.915666 ], [ -78.684467, 37.917131 ], [ -78.682047, 37.920608 ], [ -78.681785, 37.92095 ], [ -78.681517, 37.921272 ], [ -78.681241, 37.921578 ], [ -78.68101, 37.921818 ], [ -78.680605, 37.922194 ], [ -78.68013, 37.922617 ], [ -78.679566, 37.923137 ], [ -78.679307, 37.923403 ], [ -78.678986, 37.92374 ], [ -78.678605, 37.924203 ], [ -78.678345, 37.924561 ], [ -78.678124, 37.924891 ], [ -78.677903, 37.925227 ], [ -78.677688, 37.925589 ], [ -78.677544, 37.925878 ], [ -78.67731, 37.926442 ], [ -78.676551, 37.928284 ], [ -78.676404, 37.928595 ], [ -78.676242, 37.928949 ], [ -78.676148, 37.929122 ], [ -78.675977, 37.929377 ], [ -78.675612, 37.929807 ], [ -78.675385, 37.930086 ], [ -78.675213, 37.930312 ], [ -78.675004, 37.930559 ], [ -78.674617, 37.931044 ], [ -78.67407, 37.931702 ], [ -78.673673, 37.932201 ], [ -78.673281, 37.9327 ], [ -78.672994, 37.933082 ], [ -78.672166, 37.934227 ], [ -78.671112, 37.935771 ], [ -78.670762, 37.936281 ], [ -78.670385, 37.936817 ], [ -78.669877, 37.937599 ], [ -78.668999, 37.93886 ], [ -78.667671, 37.940789 ], [ -78.666721, 37.942158 ], [ -78.666126, 37.943118 ], [ -78.665597, 37.944014 ], [ -78.665125, 37.944827 ], [ -78.664642, 37.945633 ], [ -78.664087, 37.946602 ], [ -78.663665, 37.947366 ], [ -78.663523, 37.947648 ], [ -78.663363, 37.948007 ], [ -78.66312, 37.948581 ], [ -78.662992, 37.948919 ], [ -78.662788, 37.949511 ], [ -78.662392, 37.950794 ], [ -78.662127, 37.951686 ], [ -78.661907, 37.952368 ], [ -78.6618, 37.952667 ], [ -78.661673, 37.952964 ], [ -78.661549, 37.953229 ], [ -78.661377, 37.953546 ], [ -78.661172, 37.953875 ], [ -78.660975, 37.954168 ], [ -78.660712, 37.954527 ], [ -78.660589, 37.954686 ], [ -78.660525, 37.954768 ], [ -78.660204, 37.955161 ], [ -78.659899, 37.955515 ], [ -78.65946, 37.956045 ], [ -78.659107, 37.956472 ], [ -78.658939, 37.95668 ], [ -78.658404, 37.957325 ], [ -78.658185, 37.957583 ], [ -78.657413, 37.958505 ], [ -78.65713, 37.958855 ], [ -78.65677, 37.959264 ], [ -78.656612, 37.959431 ], [ -78.656439, 37.95959 ], [ -78.656251, 37.959739 ], [ -78.656068, 37.959867 ], [ -78.655989, 37.959917 ], [ -78.655752, 37.960052 ], [ -78.655575, 37.96015 ], [ -78.655228, 37.960289 ], [ -78.654931, 37.960405 ], [ -78.653275, 37.960978 ], [ -78.652399, 37.961277 ], [ -78.651659, 37.961545 ], [ -78.651372, 37.96167 ], [ -78.651131, 37.961788 ], [ -78.650953, 37.961888 ], [ -78.65077, 37.962003 ], [ -78.650655, 37.962074 ], [ -78.650545, 37.96215 ], [ -78.650369, 37.962277 ], [ -78.650124, 37.962492 ], [ -78.649827, 37.962781 ], [ -78.649528, 37.963082 ], [ -78.649157, 37.963468 ], [ -78.648771, 37.96385 ], [ -78.648569, 37.964042 ], [ -78.648236, 37.964318 ], [ -78.647928, 37.964546 ], [ -78.647355, 37.964951 ], [ -78.646421, 37.965624 ], [ -78.646034, 37.965897 ], [ -78.645591, 37.966218 ], [ -78.645351, 37.966376 ], [ -78.645051, 37.966569 ], [ -78.644735, 37.966754 ], [ -78.644581, 37.96684 ], [ -78.6444, 37.966936 ], [ -78.643915, 37.967163 ], [ -78.643555, 37.967319 ], [ -78.643147, 37.967465 ], [ -78.642853, 37.967561 ], [ -78.642519, 37.96766 ], [ -78.642395, 37.967695 ], [ -78.642095, 37.967768 ], [ -78.641871, 37.967823 ], [ -78.641449, 37.967916 ], [ -78.640993, 37.967991 ], [ -78.640408, 37.968066 ], [ -78.639997, 37.968103 ], [ -78.639496, 37.96813 ], [ -78.638995, 37.968136 ], [ -78.638434, 37.968125 ], [ -78.637944, 37.9681 ], [ -78.63612, 37.967958 ], [ -78.635136, 37.967873 ], [ -78.633802, 37.96777 ], [ -78.632073, 37.967631 ], [ -78.631801, 37.967611 ], [ -78.630935, 37.967546 ], [ -78.630424, 37.967503 ], [ -78.629697, 37.967442 ], [ -78.628686, 37.967361 ], [ -78.626167, 37.967159 ], [ -78.623282, 37.966927 ], [ -78.622258, 37.96685 ], [ -78.621932, 37.966824 ], [ -78.620819, 37.966736 ], [ -78.620381, 37.966716 ], [ -78.620004, 37.966712 ], [ -78.619679, 37.966717 ], [ -78.61937, 37.966745 ], [ -78.619064, 37.966787 ], [ -78.618761, 37.966844 ], [ -78.618523, 37.9669 ], [ -78.618222, 37.966977 ], [ -78.617837, 37.967103 ], [ -78.617525, 37.967224 ], [ -78.617264, 37.967333 ], [ -78.616866, 37.967526 ], [ -78.61666, 37.96764 ], [ -78.616487, 37.967735 ], [ -78.616266, 37.967872 ], [ -78.615844, 37.968137 ], [ -78.615555, 37.968338 ], [ -78.615229, 37.968577 ], [ -78.614931, 37.968831 ], [ -78.614607, 37.969142 ], [ -78.614381, 37.96937 ], [ -78.614151, 37.969646 ], [ -78.613964, 37.96988 ], [ -78.613494, 37.970554 ], [ -78.61301, 37.971246 ], [ -78.612831, 37.971512 ], [ -78.612279, 37.972333 ], [ -78.611229, 37.97389 ], [ -78.610819, 37.974494 ], [ -78.610719, 37.974624 ], [ -78.610499, 37.974897 ], [ -78.610319, 37.975118 ], [ -78.610116, 37.975331 ], [ -78.609966, 37.975469 ], [ -78.609796, 37.975624 ], [ -78.609591, 37.975796 ], [ -78.609317, 37.976004 ], [ -78.609071, 37.976176 ], [ -78.608849, 37.976327 ], [ -78.608744, 37.97639 ], [ -78.608365, 37.976619 ], [ -78.608101, 37.976752 ], [ -78.607845, 37.976869 ], [ -78.607584, 37.976978 ], [ -78.60725, 37.977103 ], [ -78.606977, 37.977192 ], [ -78.606625, 37.977297 ], [ -78.606266, 37.977388 ], [ -78.606123, 37.977418 ], [ -78.605902, 37.977465 ], [ -78.605646, 37.97752 ], [ -78.605621, 37.977522 ], [ -78.605549, 37.977538 ], [ -78.60423, 37.977756 ], [ -78.602588, 37.978034 ], [ -78.602162, 37.978122 ], [ -78.601825, 37.978203 ], [ -78.601492, 37.978293 ], [ -78.601094, 37.978414 ], [ -78.60071, 37.978547 ], [ -78.600334, 37.978694 ], [ -78.599967, 37.978854 ], [ -78.599486, 37.979083 ], [ -78.599163, 37.979252 ], [ -78.598789, 37.97947 ], [ -78.598549, 37.979624 ], [ -78.597946, 37.980033 ], [ -78.596889, 37.98075 ], [ -78.595137, 37.981939 ], [ -78.593704, 37.982911 ], [ -78.592376, 37.98382 ], [ -78.590854, 37.984906 ], [ -78.590225, 37.985373 ], [ -78.588999, 37.98631 ], [ -78.588012, 37.9871 ], [ -78.587089, 37.987859 ], [ -78.586722, 37.988171 ], [ -78.586183, 37.988631 ], [ -78.585023, 37.989655 ], [ -78.583908, 37.990662 ], [ -78.583686, 37.990885 ], [ -78.583478, 37.991116 ], [ -78.583203, 37.991447 ], [ -78.583057, 37.991641 ], [ -78.582889, 37.99189 ], [ -78.582734, 37.992152 ], [ -78.582584, 37.992445 ], [ -78.582451, 37.992743 ], [ -78.582318, 37.993104 ], [ -78.582229, 37.993396 ], [ -78.582158, 37.993692 ], [ -78.582061, 37.994255 ], [ -78.581989, 37.994788 ], [ -78.581919, 37.9952 ], [ -78.581831, 37.99573 ], [ -78.581596, 37.997239 ], [ -78.581525, 37.997665 ], [ -78.58147, 37.998088 ], [ -78.581083, 38.000517 ], [ -78.580993, 38.001016 ], [ -78.580912, 38.001332 ], [ -78.580857, 38.001514 ], [ -78.580851, 38.001532 ], [ -78.580827, 38.001607 ], [ -78.580788, 38.001711 ], [ -78.580764, 38.001783 ], [ -78.580638, 38.002087 ], [ -78.580501, 38.002397 ], [ -78.580338, 38.002682 ], [ -78.580176, 38.002939 ], [ -78.580026, 38.003155 ], [ -78.57984, 38.003394 ], [ -78.579631, 38.003641 ], [ -78.579528, 38.003748 ], [ -78.579258, 38.004014 ], [ -78.578985, 38.00426 ], [ -78.578784, 38.004426 ], [ -78.578575, 38.004584 ], [ -78.578379, 38.004723 ], [ -78.578122, 38.004899 ], [ -78.577709, 38.005151 ], [ -78.577431, 38.005306 ], [ -78.577141, 38.005444 ], [ -78.576923, 38.005542 ], [ -78.576628, 38.005666 ], [ -78.576327, 38.005766 ], [ -78.576154, 38.005828 ], [ -78.575371, 38.006031 ], [ -78.574274, 38.006313 ], [ -78.573929, 38.006397 ], [ -78.573678, 38.006459 ], [ -78.5731, 38.006602 ], [ -78.572544, 38.006742 ], [ -78.570845, 38.007165 ], [ -78.570536, 38.007245 ], [ -78.570147, 38.007346 ], [ -78.569511, 38.007502 ], [ -78.568866, 38.007677 ], [ -78.568449, 38.007795 ], [ -78.568216, 38.007865 ], [ -78.567861, 38.007984 ], [ -78.567483, 38.008116 ], [ -78.567008, 38.00831 ], [ -78.566642, 38.008471 ], [ -78.566222, 38.008672 ], [ -78.565813, 38.008887 ], [ -78.565381, 38.009126 ], [ -78.564818, 38.009422 ], [ -78.564544, 38.009563 ], [ -78.564196, 38.009735 ], [ -78.564075, 38.009787 ], [ -78.56369, 38.009944 ], [ -78.56326, 38.010103 ], [ -78.562849, 38.010238 ], [ -78.562529, 38.010332 ], [ -78.562124, 38.010438 ], [ -78.561805, 38.010515 ], [ -78.561564, 38.010564 ], [ -78.56093, 38.010675 ], [ -78.560028, 38.010845 ], [ -78.558824, 38.011064 ], [ -78.558024, 38.011219 ], [ -78.557648, 38.011286 ], [ -78.557386, 38.011333 ], [ -78.557058, 38.011387 ], [ -78.555118, 38.011755 ], [ -78.554112, 38.011931 ], [ -78.552878, 38.012156 ], [ -78.552449, 38.01225 ], [ -78.552186, 38.012316 ], [ -78.551829, 38.012417 ], [ -78.551365, 38.012562 ], [ -78.55109, 38.012655 ], [ -78.550658, 38.012829 ], [ -78.550236, 38.013017 ], [ -78.549599, 38.013364 ], [ -78.549376, 38.013492 ], [ -78.549058, 38.013698 ], [ -78.548469, 38.01411 ], [ -78.547659, 38.014674 ], [ -78.547468, 38.014808 ], [ -78.54736, 38.014884 ], [ -78.547042, 38.015096 ], [ -78.546611, 38.015362 ], [ -78.546269, 38.015559 ], [ -78.54592, 38.01574 ], [ -78.545223, 38.016069 ], [ -78.544841, 38.016247 ], [ -78.543906, 38.016682 ], [ -78.543654, 38.016806 ], [ -78.54333, 38.016982 ], [ -78.542733, 38.017318 ], [ -78.542466, 38.017467 ], [ -78.539711, 38.018979 ], [ -78.536725, 38.020664 ], [ -78.535885, 38.021132 ], [ -78.535518, 38.021335 ], [ -78.534742, 38.021766 ], [ -78.534188, 38.022073 ], [ -78.532955, 38.02276 ], [ -78.532173, 38.023196 ], [ -78.531193, 38.023747 ], [ -78.531125, 38.023792 ], [ -78.53075, 38.024045 ], [ -78.530445, 38.024274 ], [ -78.530203, 38.024476 ], [ -78.530016, 38.024649 ], [ -78.529931, 38.024733 ], [ -78.52985, 38.024806 ], [ -78.529798, 38.024854 ], [ -78.529758, 38.024894 ], [ -78.529598, 38.025065 ], [ -78.529327, 38.025386 ], [ -78.52916, 38.025608 ], [ -78.528945, 38.025933 ], [ -78.5288, 38.026176 ], [ -78.528672, 38.026426 ], [ -78.52861, 38.026566 ], [ -78.528405, 38.027066 ], [ -78.52833, 38.027311 ], [ -78.528283, 38.02751 ], [ -78.528235, 38.027689 ], [ -78.528151, 38.028145 ], [ -78.527582, 38.03105 ], [ -78.527126, 38.033402 ], [ -78.52703, 38.033972 ], [ -78.526914, 38.034782 ], [ -78.526868, 38.035166 ], [ -78.52679, 38.036035 ], [ -78.526753, 38.036647 ], [ -78.526715, 38.03781 ], [ -78.526642, 38.040878 ], [ -78.526607, 38.042081 ], [ -78.526584, 38.042473 ], [ -78.526544, 38.042863 ], [ -78.52645, 38.043462 ], [ -78.526353, 38.043907 ], [ -78.526306, 38.044099 ], [ -78.526225, 38.044382 ], [ -78.526103, 38.044762 ], [ -78.525978, 38.045116 ], [ -78.52595, 38.045183 ], [ -78.525619, 38.045973 ], [ -78.525226, 38.046882 ], [ -78.524837, 38.047794 ], [ -78.524807, 38.047861 ], [ -78.524712, 38.048073 ], [ -78.523664, 38.050524 ], [ -78.523608, 38.050633 ], [ -78.523449, 38.050945 ], [ -78.523194, 38.051371 ], [ -78.522992, 38.051667 ], [ -78.522896, 38.051793 ], [ -78.522708, 38.052033 ], [ -78.522379, 38.052403 ], [ -78.522049, 38.052728 ], [ -78.521736, 38.053004 ], [ -78.521375, 38.053289 ], [ -78.521061, 38.053512 ], [ -78.520792, 38.053687 ], [ -78.520433, 38.053898 ], [ -78.5202, 38.054028 ], [ -78.519924, 38.054166 ], [ -78.519561, 38.054329 ], [ -78.519179, 38.054486 ], [ -78.518827, 38.054612 ], [ -78.518437, 38.054736 ], [ -78.518106, 38.054829 ], [ -78.517883, 38.054877 ], [ -78.517638, 38.05494 ], [ -78.517298, 38.055006 ], [ -78.51674, 38.055093 ], [ -78.515503, 38.055228 ], [ -78.513125, 38.055506 ], [ -78.51298, 38.05552 ], [ -78.511721, 38.055664 ], [ -78.510089, 38.05585 ], [ -78.509444, 38.055931 ], [ -78.508892, 38.056018 ], [ -78.508324, 38.056121 ], [ -78.50762, 38.056269 ], [ -78.507101, 38.056364 ], [ -78.5063, 38.056529 ], [ -78.504207, 38.056975 ], [ -78.503544, 38.057129 ], [ -78.50332, 38.057173 ], [ -78.50218, 38.05739 ], [ -78.501769, 38.057476 ], [ -78.501588, 38.057518 ], [ -78.501288, 38.05758 ], [ -78.500918, 38.057644 ], [ -78.50053, 38.057699 ], [ -78.50025, 38.057721 ], [ -78.49999, 38.057731 ], [ -78.4996, 38.057738 ], [ -78.499258, 38.057729 ], [ -78.499228, 38.057727 ], [ -78.498789, 38.057695 ], [ -78.498509, 38.057667 ], [ -78.498249, 38.05764 ], [ -78.497868, 38.057604 ], [ -78.497658, 38.057584 ], [ -78.497235, 38.057537 ], [ -78.496848, 38.057489 ], [ -78.495893, 38.057371 ], [ -78.494978, 38.057279 ], [ -78.49472, 38.057173 ], [ -78.494659, 38.057142 ], [ -78.494592, 38.057093 ], [ -78.494549, 38.057047 ], [ -78.494516, 38.056995 ], [ -78.494502, 38.05695 ], [ -78.494493, 38.056874 ], [ -78.494502, 38.056798 ], [ -78.494522, 38.056739 ], [ -78.494562, 38.056669 ], [ -78.494623, 38.05661 ], [ -78.494697, 38.056562 ], [ -78.494781, 38.056525 ], [ -78.494872, 38.056502 ], [ -78.49496, 38.056493 ], [ -78.495044, 38.0565 ], [ -78.495109, 38.056516 ], [ -78.495169, 38.056541 ], [ -78.495238, 38.056584 ], [ -78.49528, 38.056617 ], [ -78.495339, 38.05668 ], [ -78.495381, 38.056751 ], [ -78.495402, 38.056811 ], [ -78.495415, 38.056894 ], [ -78.495413, 38.056998 ], [ -78.495388, 38.057116 ], [ -78.49528, 38.057239 ], [ -78.495007, 38.057577 ], [ -78.494845, 38.057747 ], [ -78.494782, 38.057825 ], [ -78.494593, 38.05807 ], [ -78.494413, 38.058298 ], [ -78.494268, 38.05847 ], [ -78.494235, 38.058509 ], [ -78.494159, 38.058601 ], [ -78.493967, 38.058833 ], [ -78.493505, 38.059401 ], [ -78.493364, 38.059586 ], [ -78.492889, 38.060182 ], [ -78.492564, 38.060616 ], [ -78.492196, 38.061101 ], [ -78.491916, 38.061468 ], [ -78.491724, 38.061722 ], [ -78.491723, 38.061722 ], [ -78.491578, 38.061897 ], [ -78.491244, 38.062293 ], [ -78.490863, 38.062734 ], [ -78.490477, 38.063153 ], [ -78.490269, 38.06338 ], [ -78.489937, 38.063742 ], [ -78.48969, 38.064008 ], [ -78.489478, 38.064259 ], [ -78.489344, 38.064409 ], [ -78.489289, 38.06447 ], [ -78.489212, 38.064554 ], [ -78.488761, 38.065053 ], [ -78.48815, 38.065739 ], [ -78.488116, 38.065779 ], [ -78.487867, 38.06605 ], [ -78.48713, 38.06686 ], [ -78.486995, 38.067008 ], [ -78.486825, 38.067194 ], [ -78.486343, 38.067727 ], [ -78.486218, 38.067866 ], [ -78.486208, 38.067877 ], [ -78.486134, 38.067959 ], [ -78.48576, 38.068363 ], [ -78.485475, 38.06867 ], [ -78.485154, 38.069027 ], [ -78.484295, 38.070023 ], [ -78.484063, 38.070271 ], [ -78.483776, 38.070614 ], [ -78.483281, 38.071164 ], [ -78.482433, 38.07211 ], [ -78.480968, 38.073741 ], [ -78.480778, 38.073943 ], [ -78.480706, 38.07403 ], [ -78.480376, 38.074401 ], [ -78.479882, 38.074956 ], [ -78.479801, 38.075034 ], [ -78.479272, 38.075634 ], [ -78.478606, 38.076375 ], [ -78.478527, 38.076469 ], [ -78.478367, 38.076647 ], [ -78.477091, 38.078062 ], [ -78.476397, 38.078846 ], [ -78.475743, 38.079571 ], [ -78.474543, 38.08091 ], [ -78.474163, 38.081335 ], [ -78.473969, 38.081577 ], [ -78.473788, 38.081788 ], [ -78.473613, 38.082014 ], [ -78.47347, 38.082218 ], [ -78.472971, 38.083082 ], [ -78.472639, 38.083666 ], [ -78.472264, 38.084319 ], [ -78.471709, 38.085285 ], [ -78.471146, 38.086271 ], [ -78.47079, 38.086895 ], [ -78.470583, 38.087258 ], [ -78.47026, 38.087825 ], [ -78.469568, 38.089039 ], [ -78.468607, 38.090712 ], [ -78.468501, 38.090897 ], [ -78.468139, 38.091557 ], [ -78.468043, 38.091733 ], [ -78.467922, 38.09192 ], [ -78.467732, 38.092218 ], [ -78.46735, 38.0929 ], [ -78.466766, 38.093924 ], [ -78.466497, 38.09437 ], [ -78.466369, 38.094558 ], [ -78.46599, 38.095057 ], [ -78.465526, 38.09564 ], [ -78.465381, 38.095816 ], [ -78.464933, 38.096381 ], [ -78.464463, 38.096962 ], [ -78.464049, 38.097474 ], [ -78.463974, 38.097573 ], [ -78.463441, 38.098232 ], [ -78.46294, 38.098874 ], [ -78.462231, 38.099765 ], [ -78.461478, 38.100721 ], [ -78.460943, 38.101395 ], [ -78.460544, 38.101882 ], [ -78.460009, 38.102564 ], [ -78.459568, 38.103126 ], [ -78.459337, 38.103403 ], [ -78.458603, 38.10429 ], [ -78.457804, 38.105297 ], [ -78.45751, 38.105695 ], [ -78.4569, 38.106619 ], [ -78.456598, 38.107068 ], [ -78.45544, 38.108845 ], [ -78.454988, 38.109578 ], [ -78.454476, 38.110311 ], [ -78.454296, 38.110569 ], [ -78.454206, 38.110708 ], [ -78.454093, 38.110899 ], [ -78.453942, 38.111128 ], [ -78.453769, 38.111409 ], [ -78.453294, 38.112125 ], [ -78.453172, 38.112318 ], [ -78.452856, 38.112817 ], [ -78.452688, 38.11307 ], [ -78.452602, 38.113223 ], [ -78.451975, 38.114186 ], [ -78.451686, 38.11461 ], [ -78.45106, 38.115568 ], [ -78.450908, 38.115798 ], [ -78.450496, 38.11642 ], [ -78.450419, 38.116537 ], [ -78.45032, 38.116697 ], [ -78.450137, 38.116993 ], [ -78.449702, 38.117634 ], [ -78.449172, 38.118448 ], [ -78.448773, 38.119065 ], [ -78.448006, 38.120242 ], [ -78.447677, 38.120726 ], [ -78.447299, 38.121219 ], [ -78.44692, 38.121631 ], [ -78.446411, 38.122124 ], [ -78.4458, 38.12267 ], [ -78.444661, 38.123687 ], [ -78.442392, 38.125724 ], [ -78.441529, 38.126494 ], [ -78.440922, 38.127044 ], [ -78.440006, 38.127866 ], [ -78.439371, 38.128436 ], [ -78.437997, 38.129669 ], [ -78.437902, 38.129754 ], [ -78.437019, 38.130549 ], [ -78.436453, 38.131059 ], [ -78.436187, 38.131299 ], [ -78.435995, 38.13147 ], [ -78.435251, 38.132172 ], [ -78.435106, 38.132303 ], [ -78.434673, 38.132753 ], [ -78.434293, 38.13317 ], [ -78.433695, 38.133887 ], [ -78.433416, 38.134269 ], [ -78.433195, 38.134572 ], [ -78.432173, 38.13616 ], [ -78.430917, 38.138131 ], [ -78.430468, 38.138847 ], [ -78.429836, 38.139833 ], [ -78.429464, 38.140424 ], [ -78.428859, 38.141359 ], [ -78.428348, 38.142178 ], [ -78.428275, 38.142291 ], [ -78.427887, 38.14289 ], [ -78.427641, 38.143278 ], [ -78.427277, 38.143851 ], [ -78.427263, 38.143873 ], [ -78.425718, 38.146293 ], [ -78.4249, 38.147586 ], [ -78.423982, 38.149017 ], [ -78.423879, 38.149181 ], [ -78.4234, 38.149936 ], [ -78.422346, 38.1516 ], [ -78.42208, 38.151996 ], [ -78.421684, 38.152621 ], [ -78.421337, 38.15319 ], [ -78.420383, 38.154692 ], [ -78.419605, 38.155908 ], [ -78.417659, 38.158962 ], [ -78.415009, 38.163121 ], [ -78.414626, 38.163716 ], [ -78.414541, 38.163851 ], [ -78.414293, 38.164245 ], [ -78.412771, 38.16663 ], [ -78.41231, 38.167345 ], [ -78.411781, 38.168185 ], [ -78.410521, 38.170164 ], [ -78.410064, 38.170881 ], [ -78.408661, 38.173081 ], [ -78.408289, 38.173661 ], [ -78.406754, 38.176057 ], [ -78.405791, 38.177582 ], [ -78.405633, 38.177824 ], [ -78.404819, 38.179105 ], [ -78.40451, 38.179581 ], [ -78.403702, 38.180857 ], [ -78.403534, 38.181116 ], [ -78.40229, 38.183084 ], [ -78.402, 38.183534 ], [ -78.401567, 38.184219 ], [ -78.401491, 38.184329 ], [ -78.400918, 38.18523 ], [ -78.400512, 38.185861 ], [ -78.399321, 38.187671 ], [ -78.399195, 38.187856 ], [ -78.399077, 38.188041 ], [ -78.398689, 38.188617 ], [ -78.398558, 38.18882 ], [ -78.397589, 38.190295 ], [ -78.3974, 38.190566 ], [ -78.397207, 38.19086 ], [ -78.396877, 38.191349 ], [ -78.396731, 38.191574 ], [ -78.396016, 38.192652 ], [ -78.395969, 38.192724 ], [ -78.395198, 38.193895 ], [ -78.395145, 38.193978 ], [ -78.395092, 38.194057 ], [ -78.395078, 38.194078 ], [ -78.394787, 38.194511 ], [ -78.394461, 38.19501 ], [ -78.394425, 38.195065 ], [ -78.393867, 38.195904 ], [ -78.393697, 38.196162 ], [ -78.392569, 38.197862 ], [ -78.392356, 38.198186 ], [ -78.391791, 38.199049 ], [ -78.3916, 38.199341 ], [ -78.391424, 38.19959 ], [ -78.391056, 38.200141 ], [ -78.390364, 38.201178 ], [ -78.388697, 38.203713 ], [ -78.387884, 38.204937 ], [ -78.387682, 38.20524 ], [ -78.387424, 38.205639 ], [ -78.386997, 38.206278 ], [ -78.386781, 38.206604 ], [ -78.386138, 38.207581 ], [ -78.385992, 38.207804 ], [ -78.385531, 38.2085 ], [ -78.38498, 38.209334 ], [ -78.384853, 38.209537 ], [ -78.383889, 38.210987 ], [ -78.383519, 38.211533 ], [ -78.383408, 38.211705 ], [ -78.383194, 38.212041 ], [ -78.382209, 38.213531 ], [ -78.381949, 38.213932 ], [ -78.381401, 38.214759 ], [ -78.380953, 38.215433 ], [ -78.380697, 38.215818 ], [ -78.380472, 38.216158 ], [ -78.379118, 38.218196 ], [ -78.378999, 38.218384 ], [ -78.37862, 38.21895 ], [ -78.377882, 38.220071 ], [ -78.377739, 38.220289 ], [ -78.377587, 38.220523 ], [ -78.376908, 38.221535 ], [ -78.376698, 38.221851 ], [ -78.376516, 38.222128 ], [ -78.375966, 38.222959 ], [ -78.375503, 38.223658 ], [ -78.374143, 38.225716 ], [ -78.373741, 38.226317 ], [ -78.372465, 38.228246 ], [ -78.371604, 38.229546 ], [ -78.371224, 38.230126 ], [ -78.37075, 38.230832 ], [ -78.370117, 38.231792 ], [ -78.369796, 38.23229 ], [ -78.369344, 38.233031 ], [ -78.369247, 38.233202 ], [ -78.369201, 38.233285 ], [ -78.369089, 38.233499 ], [ -78.368757, 38.234191 ], [ -78.368537, 38.23469 ], [ -78.368285, 38.235273 ], [ -78.367348, 38.237406 ], [ -78.367125, 38.237924 ], [ -78.366876, 38.23848 ], [ -78.366632, 38.239054 ], [ -78.366538, 38.239263 ], [ -78.366315, 38.239761 ], [ -78.365981, 38.240523 ], [ -78.365112, 38.242495 ], [ -78.364536, 38.243815 ], [ -78.364277, 38.244425 ], [ -78.363872, 38.245322 ], [ -78.363644, 38.245831 ], [ -78.363475, 38.246227 ], [ -78.363324, 38.246579 ], [ -78.363065, 38.24716 ], [ -78.362399, 38.248697 ], [ -78.362213, 38.249115 ], [ -78.36185, 38.249928 ], [ -78.360994, 38.251906 ], [ -78.360894, 38.252122 ], [ -78.360732, 38.252472 ], [ -78.359818, 38.254556 ], [ -78.359604, 38.255032 ], [ -78.358451, 38.257672 ], [ -78.35837, 38.257854 ], [ -78.357235, 38.260418 ], [ -78.35697, 38.261034 ], [ -78.356749, 38.261526 ], [ -78.356328, 38.262487 ], [ -78.3557, 38.26392 ], [ -78.355441, 38.264489 ], [ -78.354985, 38.265534 ], [ -78.354199, 38.267311 ], [ -78.354014, 38.267697 ], [ -78.353899, 38.267927 ], [ -78.353632, 38.268419 ], [ -78.353386, 38.268835 ], [ -78.353012, 38.269405 ], [ -78.352727, 38.269807 ], [ -78.352433, 38.270193 ], [ -78.351176, 38.271816 ], [ -78.35069, 38.272444 ], [ -78.350332, 38.272914 ], [ -78.349867, 38.273496 ], [ -78.349659, 38.273731 ], [ -78.349448, 38.273949 ], [ -78.349246, 38.274133 ], [ -78.348925, 38.274393 ], [ -78.348653, 38.274592 ], [ -78.348309, 38.274816 ], [ -78.346752, 38.275754 ], [ -78.345609, 38.276449 ], [ -78.34394, 38.277447 ], [ -78.343411, 38.277789 ], [ -78.343205, 38.277938 ], [ -78.342906, 38.278167 ], [ -78.342692, 38.278348 ], [ -78.342621, 38.27841 ], [ -78.342399, 38.278622 ], [ -78.342335, 38.278686 ], [ -78.342171, 38.278857 ], [ -78.341631, 38.279482 ], [ -78.341204, 38.280003 ], [ -78.341139, 38.280089 ], [ -78.341053, 38.280202 ], [ -78.340551, 38.280804 ], [ -78.34033, 38.281097 ], [ -78.339739, 38.281771 ], [ -78.337121, 38.284947 ], [ -78.335554, 38.286807 ], [ -78.334912, 38.287652 ], [ -78.334363, 38.288479 ], [ -78.333901, 38.289321 ], [ -78.332891, 38.291302 ], [ -78.33264, 38.291856 ], [ -78.332046, 38.29316 ], [ -78.331547, 38.294091 ], [ -78.33002, 38.297253 ], [ -78.328705, 38.299896 ], [ -78.328454, 38.300437 ], [ -78.327604, 38.302025 ], [ -78.326529, 38.303681 ], [ -78.325643, 38.304891 ], [ -78.325058, 38.305662 ], [ -78.32399, 38.30691 ], [ -78.3236, 38.307359 ], [ -78.323233, 38.30771 ], [ -78.322626, 38.308335 ], [ -78.320591, 38.310229 ], [ -78.317859, 38.312439 ], [ -78.317136, 38.313055 ], [ -78.314274, 38.315396 ], [ -78.313204, 38.316275 ], [ -78.313084, 38.316374 ], [ -78.312238, 38.317069 ], [ -78.31127, 38.317874 ], [ -78.310555, 38.318624 ], [ -78.308339, 38.321068 ], [ -78.307189, 38.322326 ], [ -78.306432, 38.323147 ], [ -78.305157, 38.324565 ], [ -78.299683, 38.33067 ], [ -78.296227, 38.334366 ], [ -78.294775, 38.336025 ], [ -78.294422, 38.336434 ], [ -78.293518, 38.337393 ], [ -78.292283, 38.338774 ], [ -78.290905, 38.340301 ], [ -78.289054, 38.34231 ], [ -78.287698, 38.343781 ], [ -78.286127, 38.345511 ], [ -78.284805, 38.346961 ], [ -78.284197, 38.347653 ], [ -78.281261, 38.350904 ], [ -78.27928, 38.353063 ], [ -78.277989, 38.354462 ], [ -78.276967, 38.355626 ], [ -78.275482, 38.357205 ], [ -78.275108, 38.357686 ], [ -78.273995, 38.359116 ], [ -78.272612, 38.361053 ], [ -78.269402, 38.365549 ], [ -78.268281, 38.367067 ], [ -78.26707, 38.368543 ], [ -78.266209, 38.369424 ], [ -78.26463, 38.370803 ], [ -78.263855, 38.371431 ], [ -78.262777, 38.372178 ], [ -78.262167, 38.372601 ], [ -78.258589, 38.375046 ], [ -78.253931, 38.378242 ], [ -78.253419, 38.378585 ], [ -78.252722, 38.379065 ], [ -78.251038, 38.380279 ], [ -78.249725, 38.3814 ], [ -78.248824, 38.38242 ], [ -78.247019, 38.384778 ], [ -78.243045, 38.39007 ], [ -78.242379, 38.390835 ], [ -78.241798, 38.391304 ], [ -78.241358, 38.391649 ], [ -78.240659, 38.392107 ], [ -78.239791, 38.392562 ], [ -78.236781, 38.394134 ], [ -78.234618, 38.395478 ], [ -78.233524, 38.396238 ], [ -78.231366, 38.397688 ], [ -78.230593, 38.398159 ], [ -78.229713, 38.398631 ], [ -78.22927, 38.398846 ], [ -78.227176, 38.399941 ], [ -78.224001, 38.401573 ], [ -78.221687, 38.402762 ], [ -78.220927, 38.403115 ], [ -78.219583, 38.403494 ], [ -78.217956, 38.403869 ], [ -78.216834, 38.404329 ], [ -78.216198, 38.404653 ], [ -78.215673, 38.404943 ], [ -78.2147, 38.405692 ], [ -78.214341, 38.406017 ], [ -78.211846, 38.409013 ], [ -78.211205, 38.409859 ], [ -78.208931, 38.412831 ], [ -78.207891, 38.413946 ], [ -78.207388, 38.414459 ], [ -78.206848, 38.414885 ], [ -78.20502, 38.416246 ], [ -78.204339, 38.416746 ], [ -78.203587, 38.417231 ], [ -78.201789, 38.418025 ], [ -78.199931, 38.418788 ], [ -78.198775, 38.419213 ], [ -78.197516, 38.419599 ], [ -78.196891, 38.419728 ], [ -78.193593, 38.420311 ], [ -78.192656, 38.420508 ], [ -78.191772, 38.420736 ], [ -78.190615, 38.421137 ], [ -78.189756, 38.421485 ], [ -78.189131, 38.421795 ], [ -78.188009, 38.422501 ], [ -78.186635, 38.423265 ], [ -78.185396, 38.423841 ], [ -78.184545, 38.424162 ], [ -78.179643, 38.425692 ], [ -78.176595, 38.426575 ], [ -78.175037, 38.427149 ], [ -78.174014, 38.427529 ], [ -78.171007, 38.428688 ], [ -78.169272, 38.429381 ], [ -78.165511, 38.430827 ], [ -78.164119, 38.431371 ], [ -78.162591, 38.431967 ], [ -78.161653, 38.432308 ], [ -78.160661, 38.43271 ], [ -78.160269, 38.432865 ], [ -78.159874, 38.433009 ], [ -78.157491, 38.433942 ], [ -78.157022, 38.434133 ], [ -78.156281, 38.434403 ], [ -78.154122, 38.435214 ], [ -78.152887, 38.435503 ], [ -78.151935, 38.435645 ], [ -78.151237, 38.435723 ], [ -78.149391, 38.435895 ], [ -78.145341, 38.436294 ], [ -78.143178, 38.436516 ], [ -78.141588, 38.436723 ], [ -78.140742, 38.436927 ], [ -78.139967, 38.43716 ], [ -78.139029, 38.437478 ], [ -78.138213, 38.437833 ], [ -78.13673, 38.438732 ], [ -78.135769, 38.439493 ], [ -78.133667, 38.441543 ], [ -78.13309, 38.442092 ], [ -78.132637, 38.442565 ], [ -78.131362, 38.443807 ], [ -78.131197, 38.443972 ], [ -78.13069, 38.444456 ], [ -78.13004, 38.445093 ], [ -78.129654, 38.445515 ], [ -78.129431, 38.445788 ], [ -78.129306, 38.445939 ], [ -78.129135, 38.446147 ], [ -78.126535, 38.449414 ], [ -78.12559, 38.450596 ], [ -78.124937, 38.451403 ], [ -78.12463, 38.451786 ], [ -78.122999, 38.453819 ], [ -78.12268, 38.454222 ], [ -78.122212, 38.454799 ], [ -78.122012, 38.455018 ], [ -78.121815, 38.455209 ], [ -78.121657, 38.455346 ], [ -78.121484, 38.455481 ], [ -78.121283, 38.455622 ], [ -78.121072, 38.455755 ], [ -78.120838, 38.455889 ], [ -78.120605, 38.456007 ], [ -78.120411, 38.456093 ], [ -78.120081, 38.45622 ], [ -78.11988, 38.456286 ], [ -78.119617, 38.456362 ], [ -78.119481, 38.456395 ], [ -78.119029, 38.456484 ], [ -78.118859, 38.456513 ], [ -78.118556, 38.456543 ], [ -78.118252, 38.456558 ], [ -78.117886, 38.45656 ], [ -78.117582, 38.456545 ], [ -78.117215, 38.456509 ], [ -78.11691, 38.456463 ], [ -78.116669, 38.456417 ], [ -78.116299, 38.456332 ], [ -78.114395, 38.455867 ], [ -78.113075, 38.455549 ], [ -78.112183, 38.455337 ], [ -78.111983, 38.455288 ], [ -78.110622, 38.454956 ], [ -78.109647, 38.454713 ], [ -78.109318, 38.454619 ], [ -78.108646, 38.454427 ], [ -78.108148, 38.454266 ], [ -78.107826, 38.454152 ], [ -78.107433, 38.454006 ], [ -78.106215, 38.453523 ], [ -78.103244, 38.452284 ], [ -78.103113, 38.45223 ], [ -78.101465, 38.451517 ], [ -78.100793, 38.451267 ], [ -78.099999, 38.450965 ], [ -78.099633, 38.450843 ], [ -78.099366, 38.450762 ], [ -78.098981, 38.450649 ], [ -78.098604, 38.450547 ], [ -78.098262, 38.45046 ], [ -78.09792, 38.450384 ], [ -78.096808, 38.450181 ], [ -78.096151, 38.450083 ], [ -78.095446, 38.449969 ], [ -78.093727, 38.449707 ], [ -78.092677, 38.449547 ], [ -78.092158, 38.449481 ], [ -78.091766, 38.449445 ], [ -78.091635, 38.449437 ], [ -78.091391, 38.44943 ], [ -78.09088, 38.449437 ], [ -78.090541, 38.449459 ], [ -78.090154, 38.449505 ], [ -78.090027, 38.449526 ], [ -78.089761, 38.44957 ], [ -78.089091, 38.449707 ], [ -78.08849, 38.449845 ], [ -78.087312, 38.450134 ], [ -78.086546, 38.450314 ], [ -78.086092, 38.450427 ], [ -78.085716, 38.450516 ], [ -78.085217, 38.45064 ], [ -78.083614, 38.45102 ], [ -78.082588, 38.451268 ], [ -78.081682, 38.451496 ], [ -78.080934, 38.451707 ], [ -78.080808, 38.451743 ], [ -78.080252, 38.451928 ], [ -78.080061, 38.451995 ], [ -78.079356, 38.452244 ], [ -78.079056, 38.452366 ], [ -78.077758, 38.452899 ], [ -78.07693, 38.453218 ], [ -78.07648, 38.453363 ], [ -78.075972, 38.453504 ], [ -78.075519, 38.453613 ], [ -78.075245, 38.453672 ], [ -78.074633, 38.453773 ], [ -78.073634, 38.453917 ], [ -78.073086, 38.453985 ], [ -78.071708, 38.454165 ], [ -78.070367, 38.45434 ], [ -78.069606, 38.454439 ], [ -78.065196, 38.455001 ], [ -78.0636, 38.455212 ], [ -78.062967, 38.455296 ], [ -78.062279, 38.455383 ], [ -78.061807, 38.45545 ], [ -78.061375, 38.455516 ], [ -78.060496, 38.455651 ], [ -78.059099, 38.455874 ], [ -78.058415, 38.455997 ], [ -78.057861, 38.456107 ], [ -78.057398, 38.456211 ], [ -78.057094, 38.456284 ], [ -78.055369, 38.456762 ], [ -78.054558, 38.456978 ], [ -78.05416, 38.457057 ], [ -78.053923, 38.4571 ], [ -78.053692, 38.457137 ], [ -78.053464, 38.457172 ], [ -78.052965, 38.457229 ], [ -78.052547, 38.457266 ], [ -78.05168, 38.457327 ], [ -78.051381, 38.457343 ], [ -78.051209, 38.457356 ], [ -78.050231, 38.457415 ], [ -78.049522, 38.45745 ], [ -78.049115, 38.457457 ], [ -78.048707, 38.45745 ], [ -78.048107, 38.457414 ], [ -78.046583, 38.457296 ], [ -78.045473, 38.457209 ], [ -78.043615, 38.457066 ], [ -78.04299, 38.457014 ], [ -78.041948, 38.456934 ], [ -78.041564, 38.4569 ], [ -78.040447, 38.456809 ], [ -78.039807, 38.456752 ], [ -78.039565, 38.456722 ], [ -78.038614, 38.456586 ], [ -78.037992, 38.45648 ], [ -78.036619, 38.456229 ], [ -78.036312, 38.456174 ], [ -78.035316, 38.455996 ], [ -78.033993, 38.455756 ], [ -78.033455, 38.455659 ], [ -78.032995, 38.455576 ], [ -78.032344, 38.455462 ], [ -78.032225, 38.455441 ], [ -78.032071, 38.455411 ], [ -78.031918, 38.455381 ], [ -78.030629, 38.455156 ], [ -78.030487, 38.455136 ], [ -78.02993, 38.455035 ], [ -78.029397, 38.454939 ], [ -78.027154, 38.454551 ], [ -78.026507, 38.454439 ], [ -78.026143, 38.454368 ], [ -78.025005, 38.454171 ], [ -78.024336, 38.45404 ], [ -78.023622, 38.453878 ], [ -78.02312, 38.453727 ], [ -78.02273, 38.453603 ], [ -78.022384, 38.453473 ], [ -78.021945, 38.453293 ], [ -78.021688, 38.453179 ], [ -78.02141, 38.45304 ], [ -78.020949, 38.452794 ], [ -78.020606, 38.452593 ], [ -78.018376, 38.451156 ], [ -78.015052, 38.449001 ], [ -78.013038, 38.447702 ], [ -78.012718, 38.447476 ], [ -78.012365, 38.447314 ], [ -78.011913, 38.44707 ], [ -78.011467, 38.446849 ], [ -78.011017, 38.446646 ], [ -78.010785, 38.446548 ], [ -78.01041, 38.446389 ], [ -78.009947, 38.446212 ], [ -78.009475, 38.446047 ], [ -78.009032, 38.44592 ], [ -78.008198, 38.445668 ], [ -78.007806, 38.445574 ], [ -78.007536, 38.445509 ], [ -78.00704, 38.445404 ], [ -78.006541, 38.445314 ], [ -78.006039, 38.445234 ], [ -78.005535, 38.445168 ], [ -78.004882, 38.445103 ], [ -78.00427, 38.44506 ], [ -78.003857, 38.445042 ], [ -78.003259, 38.445032 ], [ -77.996098, 38.445039 ], [ -77.995524, 38.445052 ], [ -77.995083, 38.445072 ], [ -77.9946, 38.445108 ], [ -77.994291, 38.44514 ], [ -77.994119, 38.445159 ], [ -77.993562, 38.445235 ], [ -77.993077, 38.445314 ], [ -77.992738, 38.44538 ], [ -77.992304, 38.445476 ], [ -77.991774, 38.445609 ], [ -77.991277, 38.445754 ], [ -77.990885, 38.44588 ], [ -77.990401, 38.446049 ], [ -77.989902, 38.446248 ], [ -77.98951, 38.446417 ], [ -77.989127, 38.446595 ], [ -77.988671, 38.446826 ], [ -77.988226, 38.44707 ], [ -77.988015, 38.447193 ], [ -77.987964, 38.447222 ], [ -77.986229, 38.448266 ], [ -77.982377, 38.450578 ], [ -77.980067, 38.451965 ], [ -77.978396, 38.452971 ], [ -77.976723, 38.453978 ], [ -77.971729, 38.456974 ], [ -77.970854, 38.457513 ], [ -77.970447, 38.457776 ], [ -77.969812, 38.458205 ], [ -77.969672, 38.458304 ], [ -77.969294, 38.458571 ], [ -77.968878, 38.458872 ], [ -77.968162, 38.459423 ], [ -77.967696, 38.459799 ], [ -77.967125, 38.46028 ], [ -77.966325, 38.460982 ], [ -77.965258, 38.461918 ], [ -77.964866, 38.462267 ], [ -77.960196, 38.466376 ], [ -77.955939, 38.470123 ], [ -77.954947, 38.470996 ], [ -77.954533, 38.471358 ], [ -77.953922, 38.471893 ], [ -77.953458, 38.472304 ], [ -77.953176, 38.472548 ], [ -77.952583, 38.473072 ], [ -77.951119, 38.474355 ], [ -77.950943, 38.474509 ], [ -77.949669, 38.47563 ], [ -77.948949, 38.476265 ], [ -77.948002, 38.477098 ], [ -77.940672, 38.483548 ], [ -77.940481, 38.483731 ], [ -77.940188, 38.484012 ], [ -77.939893, 38.484318 ], [ -77.939484, 38.484776 ], [ -77.93926, 38.485054 ], [ -77.939039, 38.48534 ], [ -77.938835, 38.485618 ], [ -77.938574, 38.486003 ], [ -77.938385, 38.4863 ], [ -77.938154, 38.486695 ], [ -77.936929, 38.489071 ], [ -77.936476, 38.48995 ], [ -77.936307, 38.490277 ], [ -77.936213, 38.490449 ], [ -77.936032, 38.490779 ], [ -77.935797, 38.491168 ], [ -77.935515, 38.491593 ], [ -77.935238, 38.491981 ], [ -77.934904, 38.492412 ], [ -77.934836, 38.492493 ], [ -77.93462, 38.492753 ], [ -77.934238, 38.493183 ], [ -77.933985, 38.493449 ], [ -77.933681, 38.493753 ], [ -77.933395, 38.494018 ], [ -77.933018, 38.494354 ], [ -77.932749, 38.494585 ], [ -77.932252, 38.494973 ], [ -77.93171, 38.495374 ], [ -77.931341, 38.495628 ], [ -77.930966, 38.495866 ], [ -77.930194, 38.496327 ], [ -77.929795, 38.496546 ], [ -77.929468, 38.496713 ], [ -77.928898, 38.496989 ], [ -77.928401, 38.497211 ], [ -77.927814, 38.497454 ], [ -77.927352, 38.49763 ], [ -77.926883, 38.497792 ], [ -77.92627, 38.497988 ], [ -77.925745, 38.498139 ], [ -77.925688, 38.498154 ], [ -77.925207, 38.498279 ], [ -77.924635, 38.498412 ], [ -77.924059, 38.498531 ], [ -77.923478, 38.498637 ], [ -77.923244, 38.498675 ], [ -77.9209, 38.499106 ], [ -77.920407, 38.499196 ], [ -77.916265, 38.499951 ], [ -77.914897, 38.500194 ], [ -77.913262, 38.500498 ], [ -77.912906, 38.500563 ], [ -77.911059, 38.5009 ], [ -77.910401, 38.501012 ], [ -77.909308, 38.501222 ], [ -77.90816, 38.501425 ], [ -77.906956, 38.501647 ], [ -77.902649, 38.502433 ], [ -77.901836, 38.502578 ], [ -77.901383, 38.502661 ], [ -77.899056, 38.503088 ], [ -77.897887, 38.503302 ], [ -77.896932, 38.503454 ], [ -77.896481, 38.503514 ], [ -77.896026, 38.50356 ], [ -77.89557, 38.503592 ], [ -77.895091, 38.503613 ], [ -77.894605, 38.503621 ], [ -77.894338, 38.503619 ], [ -77.894023, 38.503612 ], [ -77.893539, 38.503589 ], [ -77.893152, 38.50356 ], [ -77.891645, 38.503392 ], [ -77.891145, 38.503351 ], [ -77.890705, 38.503331 ], [ -77.890264, 38.503325 ], [ -77.89, 38.503328 ], [ -77.889421, 38.503346 ], [ -77.888918, 38.503375 ], [ -77.888578, 38.503406 ], [ -77.888318, 38.503429 ], [ -77.887823, 38.50349 ], [ -77.887334, 38.503566 ], [ -77.886849, 38.503655 ], [ -77.886369, 38.503759 ], [ -77.885701, 38.503929 ], [ -77.88504, 38.504114 ], [ -77.883872, 38.504451 ], [ -77.882026, 38.504972 ], [ -77.880726, 38.50535 ], [ -77.879756, 38.505628 ], [ -77.879416, 38.505726 ], [ -77.878734, 38.505916 ], [ -77.87665, 38.506514 ], [ -77.873295, 38.507467 ], [ -77.870872, 38.508164 ], [ -77.867574, 38.509112 ], [ -77.86643, 38.509426 ], [ -77.865139, 38.509804 ], [ -77.864878, 38.509875 ], [ -77.864614, 38.509946 ], [ -77.864004, 38.510124 ], [ -77.863963, 38.510136 ], [ -77.863243, 38.510359 ], [ -77.862776, 38.510515 ], [ -77.862313, 38.51068 ], [ -77.86153, 38.510992 ], [ -77.86091, 38.511252 ], [ -77.860341, 38.511504 ], [ -77.860101, 38.511597 ], [ -77.859873, 38.511706 ], [ -77.859049, 38.512033 ], [ -77.858596, 38.512199 ], [ -77.85801, 38.512393 ], [ -77.85641, 38.512859 ], [ -77.85546, 38.513131 ], [ -77.853636, 38.513652 ], [ -77.852939, 38.513842 ], [ -77.85189, 38.514117 ], [ -77.851773, 38.514147 ], [ -77.851155, 38.514282 ], [ -77.850783, 38.514355 ], [ -77.850158, 38.514468 ], [ -77.849529, 38.514566 ], [ -77.848611, 38.514673 ], [ -77.847601, 38.514814 ], [ -77.847219, 38.514874 ], [ -77.846744, 38.514961 ], [ -77.846275, 38.515063 ], [ -77.845622, 38.515227 ], [ -77.843493, 38.515828 ], [ -77.840926, 38.516554 ], [ -77.838953, 38.517123 ], [ -77.838611, 38.51724 ], [ -77.838276, 38.51737 ], [ -77.838087, 38.517452 ], [ -77.837878, 38.517559 ], [ -77.837641, 38.517698 ], [ -77.837371, 38.517879 ], [ -77.837159, 38.518042 ], [ -77.836631, 38.518508 ], [ -77.833939, 38.52107 ], [ -77.833536, 38.521444 ], [ -77.832859, 38.52207 ], [ -77.832618, 38.52227 ], [ -77.832363, 38.52246 ], [ -77.832151, 38.522605 ], [ -77.831761, 38.52284 ], [ -77.831645, 38.522905 ], [ -77.831341, 38.523059 ], [ -77.831027, 38.523201 ], [ -77.830705, 38.52333 ], [ -77.830375, 38.523446 ], [ -77.82725, 38.524408 ], [ -77.825282, 38.525005 ], [ -77.824825, 38.525153 ], [ -77.824766, 38.525172 ], [ -77.82414, 38.525403 ], [ -77.823904, 38.525501 ], [ -77.823444, 38.525707 ], [ -77.823161, 38.525842 ], [ -77.822816, 38.526023 ], [ -77.822483, 38.526216 ], [ -77.82216, 38.526429 ], [ -77.821905, 38.526618 ], [ -77.821824, 38.526681 ], [ -77.821661, 38.526816 ], [ -77.82143, 38.527024 ], [ -77.821026, 38.527454 ], [ -77.820758, 38.527783 ], [ -77.820516, 38.528112 ], [ -77.820197, 38.52856 ], [ -77.819895, 38.529029 ], [ -77.81945, 38.529798 ], [ -77.818541, 38.531386 ], [ -77.817476, 38.533249 ], [ -77.817174, 38.533749 ], [ -77.815779, 38.536111 ], [ -77.812836, 38.541042 ], [ -77.812145, 38.542152 ], [ -77.811443, 38.543345 ], [ -77.81107, 38.543916 ], [ -77.809169, 38.54677 ], [ -77.807061, 38.549912 ], [ -77.805801, 38.55177 ], [ -77.803189, 38.555743 ], [ -77.802664, 38.55653 ], [ -77.802442, 38.556869 ], [ -77.802253, 38.557175 ], [ -77.802079, 38.557492 ], [ -77.801838, 38.557971 ], [ -77.801782, 38.55809 ], [ -77.801657, 38.55838 ], [ -77.801522, 38.558722 ], [ -77.801429, 38.558994 ], [ -77.801302, 38.559432 ], [ -77.801209, 38.559822 ], [ -77.801144, 38.560169 ], [ -77.801065, 38.560727 ], [ -77.801025, 38.56131 ], [ -77.801027, 38.561813 ], [ -77.801049, 38.562487 ], [ -77.801069, 38.562893 ], [ -77.801213, 38.565749 ], [ -77.801305, 38.567636 ], [ -77.80137, 38.568961 ], [ -77.801541, 38.572402 ], [ -77.801599, 38.573623 ], [ -77.801669, 38.575224 ], [ -77.801707, 38.575829 ], [ -77.801772, 38.577117 ], [ -77.801874, 38.579138 ], [ -77.801902, 38.579759 ], [ -77.801914, 38.579914 ], [ -77.801945, 38.580642 ], [ -77.801977, 38.581198 ], [ -77.802036, 38.582417 ], [ -77.802118, 38.584113 ], [ -77.802126, 38.584391 ], [ -77.802131, 38.584986 ], [ -77.802118, 38.585525 ], [ -77.802088, 38.586052 ], [ -77.802017, 38.586791 ], [ -77.801743, 38.589112 ], [ -77.801725, 38.589268 ], [ -77.801437, 38.591698 ], [ -77.801342, 38.5925 ], [ -77.801281, 38.593006 ], [ -77.800994, 38.595455 ], [ -77.800644, 38.598437 ], [ -77.800492, 38.599704 ], [ -77.800457, 38.599972 ], [ -77.800268, 38.601612 ], [ -77.800209, 38.602305 ], [ -77.80017, 38.602992 ], [ -77.800152, 38.603904 ], [ -77.800152, 38.604035 ], [ -77.800152, 38.604483 ], [ -77.800172, 38.60559 ], [ -77.800187, 38.606551 ], [ -77.800205, 38.607644 ], [ -77.80022, 38.608813 ], [ -77.800237, 38.609384 ], [ -77.800232, 38.610093 ], [ -77.800248, 38.611162 ], [ -77.80027, 38.611781 ], [ -77.800276, 38.611972 ], [ -77.800298, 38.612639 ], [ -77.800312, 38.613039 ], [ -77.800332, 38.613399 ], [ -77.800397, 38.614527 ], [ -77.800421, 38.615203 ], [ -77.800432, 38.61575 ], [ -77.800444, 38.616559 ], [ -77.800478, 38.618723 ], [ -77.8005, 38.619601 ], [ -77.800525, 38.620811 ], [ -77.800527, 38.620908 ], [ -77.800548, 38.62192 ], [ -77.80058, 38.623403 ], [ -77.800594, 38.624213 ], [ -77.800603, 38.625413 ], [ -77.80062, 38.627386 ], [ -77.800629, 38.627856 ], [ -77.800651, 38.62934 ], [ -77.800658, 38.629863 ], [ -77.800688, 38.631295 ], [ -77.800701, 38.63219 ], [ -77.800708, 38.632656 ], [ -77.800729, 38.632937 ], [ -77.800749, 38.6331 ], [ -77.800764, 38.633194 ], [ -77.800824, 38.633493 ], [ -77.8009, 38.63375 ], [ -77.801033, 38.634132 ], [ -77.801091, 38.634277 ], [ -77.801339, 38.634852 ], [ -77.801526, 38.635289 ], [ -77.801703, 38.635692 ], [ -77.801752, 38.635808 ], [ -77.801965, 38.636295 ], [ -77.802897, 38.638462 ], [ -77.802996, 38.638693 ], [ -77.803206, 38.639174 ], [ -77.803351, 38.639505 ], [ -77.803635, 38.640158 ], [ -77.803774, 38.640485 ], [ -77.80405, 38.641121 ], [ -77.804137, 38.641325 ], [ -77.804199, 38.641471 ], [ -77.804367, 38.641868 ], [ -77.804398, 38.641941 ], [ -77.804535, 38.642359 ], [ -77.804602, 38.642621 ], [ -77.804642, 38.642832 ], [ -77.804669, 38.643038 ], [ -77.804677, 38.643118 ], [ -77.804687, 38.643291 ], [ -77.804696, 38.643722 ], [ -77.804696, 38.644409 ], [ -77.804677, 38.644766 ], [ -77.804636, 38.645023 ], [ -77.804576, 38.645279 ], [ -77.804498, 38.645531 ], [ -77.804445, 38.645671 ], [ -77.804179, 38.646296 ], [ -77.803976, 38.646795 ], [ -77.803645, 38.647584 ], [ -77.803607, 38.647672 ], [ -77.803037, 38.649027 ], [ -77.802582, 38.650099 ], [ -77.802488, 38.65032 ], [ -77.80226, 38.650816 ], [ -77.802226, 38.650891 ], [ -77.801705, 38.651973 ], [ -77.801524, 38.652348 ], [ -77.800517, 38.654435 ], [ -77.800311, 38.654856 ], [ -77.800109, 38.655223 ], [ -77.799504, 38.656216 ], [ -77.799258, 38.656629 ], [ -77.799064, 38.656995 ], [ -77.798952, 38.657238 ], [ -77.798593, 38.658126 ], [ -77.798524, 38.658287 ], [ -77.798395, 38.658591 ], [ -77.798266, 38.658901 ], [ -77.798049, 38.659428 ], [ -77.797829, 38.659963 ], [ -77.79736, 38.661105 ], [ -77.797075, 38.661795 ], [ -77.796724, 38.662641 ], [ -77.79625, 38.663783 ], [ -77.796094, 38.664161 ], [ -77.795637, 38.665271 ], [ -77.79528, 38.666132 ], [ -77.795248, 38.66621 ], [ -77.794069, 38.669063 ], [ -77.793674, 38.670024 ], [ -77.793379, 38.670723 ], [ -77.793244, 38.671036 ], [ -77.793103, 38.671307 ], [ -77.792943, 38.671571 ], [ -77.792813, 38.671755 ], [ -77.792641, 38.671968 ], [ -77.792454, 38.672174 ], [ -77.792251, 38.672371 ], [ -77.791496, 38.673047 ], [ -77.791134, 38.673372 ], [ -77.790643, 38.673809 ], [ -77.789269, 38.675032 ], [ -77.788765, 38.675507 ], [ -77.788692, 38.675576 ], [ -77.788181, 38.676104 ], [ -77.787807, 38.676549 ], [ -77.787668, 38.676743 ], [ -77.787501, 38.677031 ], [ -77.78738, 38.677265 ], [ -77.78733, 38.677383 ], [ -77.787232, 38.677659 ], [ -77.787165, 38.677911 ], [ -77.787115, 38.678177 ], [ -77.787085, 38.678445 ], [ -77.787079, 38.678552 ], [ -77.787095, 38.67913 ], [ -77.787153, 38.679798 ], [ -77.787259, 38.680924 ], [ -77.787331, 38.681886 ], [ -77.787363, 38.682419 ], [ -77.787413, 38.683635 ], [ -77.787401, 38.684203 ], [ -77.787392, 38.684611 ], [ -77.78735, 38.685019 ], [ -77.787315, 38.685264 ], [ -77.787231, 38.685728 ], [ -77.787136, 38.686251 ], [ -77.787114, 38.686332 ], [ -77.78692, 38.686986 ], [ -77.786696, 38.687619 ], [ -77.786501, 38.688074 ], [ -77.786277, 38.68855 ], [ -77.786098, 38.688888 ], [ -77.785944, 38.689154 ], [ -77.785576, 38.689748 ], [ -77.784818, 38.690938 ], [ -77.784516, 38.691425 ], [ -77.784271, 38.691807 ], [ -77.783827, 38.692506 ], [ -77.783401, 38.6932 ], [ -77.783246, 38.693444 ], [ -77.782384, 38.694802 ], [ -77.782205, 38.695084 ], [ -77.781593, 38.696059 ], [ -77.781243, 38.69667 ], [ -77.78108, 38.696994 ], [ -77.780923, 38.697347 ], [ -77.780812, 38.697637 ], [ -77.780687, 38.698004 ], [ -77.780614, 38.698231 ], [ -77.780587, 38.698314 ], [ -77.780392, 38.699181 ], [ -77.780333, 38.699659 ], [ -77.780298, 38.700094 ], [ -77.780287, 38.700389 ], [ -77.780289, 38.700757 ], [ -77.780315, 38.701452 ], [ -77.780365, 38.702797 ], [ -77.780397, 38.703509 ], [ -77.780462, 38.705131 ], [ -77.780535, 38.706895 ], [ -77.780587, 38.708144 ], [ -77.780612, 38.708911 ], [ -77.780675, 38.710324 ], [ -77.780782, 38.713019 ], [ -77.780806, 38.713639 ], [ -77.780906, 38.716128 ], [ -77.780923, 38.716557 ], [ -77.780985, 38.71812 ], [ -77.781094, 38.720811 ], [ -77.781111, 38.721348 ], [ -77.78117, 38.722771 ], [ -77.781205, 38.723428 ], [ -77.781207, 38.723933 ], [ -77.781141, 38.724638 ], [ -77.781062, 38.725028 ], [ -77.780986, 38.725313 ], [ -77.780873, 38.725651 ], [ -77.780799, 38.725838 ], [ -77.780763, 38.72593 ], [ -77.780608, 38.726258 ], [ -77.780457, 38.726537 ], [ -77.78029, 38.726814 ], [ -77.780067, 38.727137 ], [ -77.779841, 38.727426 ], [ -77.779593, 38.727712 ], [ -77.779535, 38.727773 ], [ -77.779432, 38.727882 ], [ -77.779137, 38.728163 ], [ -77.778889, 38.728379 ], [ -77.778564, 38.728638 ], [ -77.777988, 38.729064 ], [ -77.777903, 38.729128 ], [ -77.777813, 38.729195 ], [ -77.777751, 38.72924 ], [ -77.777544, 38.729395 ], [ -77.776507, 38.73018 ], [ -77.77534, 38.731069 ], [ -77.775049, 38.73127 ], [ -77.774364, 38.73177 ], [ -77.774051, 38.732009 ], [ -77.773303, 38.732554 ], [ -77.772496, 38.733155 ], [ -77.772444, 38.733192 ], [ -77.771424, 38.733941 ], [ -77.770375, 38.73472 ], [ -77.769774, 38.735166 ], [ -77.766501, 38.737595 ], [ -77.766092, 38.7379 ], [ -77.766013, 38.737957 ], [ -77.764613, 38.738973 ], [ -77.763699, 38.739647 ], [ -77.760294, 38.742188 ], [ -77.759475, 38.742805 ], [ -77.758292, 38.743704 ], [ -77.757242, 38.744507 ], [ -77.756734, 38.744888 ], [ -77.75607, 38.745394 ], [ -77.755332, 38.74595 ], [ -77.753869, 38.747051 ], [ -77.753512, 38.747317 ], [ -77.752239, 38.748266 ], [ -77.751486, 38.748835 ], [ -77.749304, 38.750477 ], [ -77.747696, 38.751677 ], [ -77.747175, 38.752069 ], [ -77.746636, 38.752468 ], [ -77.746089, 38.752858 ], [ -77.745719, 38.753113 ], [ -77.745109, 38.753534 ], [ -77.744529, 38.753946 ], [ -77.744441, 38.754016 ], [ -77.743143, 38.755039 ], [ -77.742369, 38.755648 ], [ -77.741019, 38.756723 ], [ -77.740302, 38.757289 ], [ -77.74012, 38.757439 ], [ -77.739869, 38.757633 ], [ -77.739452, 38.757933 ], [ -77.738896, 38.758325 ], [ -77.738458, 38.758616 ], [ -77.737994, 38.758912 ], [ -77.737675, 38.759109 ], [ -77.736928, 38.759546 ], [ -77.736529, 38.759764 ], [ -77.73598, 38.760062 ], [ -77.735512, 38.760302 ], [ -77.734641, 38.760749 ], [ -77.731871, 38.762168 ], [ -77.730354, 38.762946 ], [ -77.726563, 38.764904 ], [ -77.726297, 38.765042 ], [ -77.725494, 38.765462 ], [ -77.724993, 38.765717 ], [ -77.724283, 38.76606 ], [ -77.724155, 38.766114 ], [ -77.723683, 38.766274 ], [ -77.723631, 38.766287 ], [ -77.723461, 38.76633 ], [ -77.723208, 38.766384 ], [ -77.722948, 38.766425 ], [ -77.722732, 38.766449 ], [ -77.722439, 38.766466 ], [ -77.722204, 38.76647 ], [ -77.721761, 38.76645 ], [ -77.721338, 38.766416 ], [ -77.720827, 38.766373 ], [ -77.71958, 38.766268 ], [ -77.718945, 38.766226 ], [ -77.71829, 38.766214 ], [ -77.717886, 38.766231 ], [ -77.717644, 38.766248 ], [ -77.717238, 38.766296 ], [ -77.716986, 38.766333 ], [ -77.716478, 38.766426 ], [ -77.715933, 38.766539 ], [ -77.71313, 38.767126 ], [ -77.71253, 38.76725 ], [ -77.711446, 38.767475 ], [ -77.711213, 38.767521 ], [ -77.709832, 38.76781 ], [ -77.709246, 38.767933 ], [ -77.708584, 38.768078 ], [ -77.708134, 38.768177 ], [ -77.707984, 38.768211 ], [ -77.707651, 38.768287 ], [ -77.707208, 38.768389 ], [ -77.707037, 38.768429 ], [ -77.706966, 38.768445 ], [ -77.706604, 38.768529 ], [ -77.705724, 38.768733 ], [ -77.704884, 38.768928 ], [ -77.704008, 38.769125 ], [ -77.703413, 38.769266 ], [ -77.703044, 38.769359 ], [ -77.702667, 38.769454 ], [ -77.702289, 38.769565 ], [ -77.701922, 38.769687 ], [ -77.701705, 38.769766 ], [ -77.701294, 38.769925 ], [ -77.700381, 38.770277 ], [ -77.698624, 38.770957 ], [ -77.69792, 38.771222 ], [ -77.696779, 38.771656 ], [ -77.696286, 38.771839 ], [ -77.694688, 38.772451 ], [ -77.693388, 38.772942 ], [ -77.69338, 38.772945 ], [ -77.69299, 38.773092 ], [ -77.691828, 38.773541 ], [ -77.689985, 38.774273 ], [ -77.689184, 38.774593 ], [ -77.687947, 38.775099 ], [ -77.68652, 38.775696 ], [ -77.686093, 38.775875 ], [ -77.685013, 38.776323 ], [ -77.684548, 38.776508 ], [ -77.683617, 38.77688 ], [ -77.682281, 38.77742 ], [ -77.681906, 38.77757 ], [ -77.680152, 38.778273 ], [ -77.680071, 38.778309 ], [ -77.679964, 38.778348 ], [ -77.67944, 38.778559 ], [ -77.679135, 38.778682 ], [ -77.679008, 38.778733 ], [ -77.678765, 38.778831 ], [ -77.678322, 38.779011 ], [ -77.677302, 38.779417 ], [ -77.677036, 38.779514 ], [ -77.676871, 38.779569 ], [ -77.676375, 38.779711 ], [ -77.675903, 38.779834 ], [ -77.675739, 38.779874 ], [ -77.675282, 38.779966 ], [ -77.675165, 38.77999 ], [ -77.673681, 38.780291 ], [ -77.67245, 38.780538 ], [ -77.671784, 38.780666 ], [ -77.671623, 38.780699 ], [ -77.671392, 38.780752 ], [ -77.670977, 38.780857 ], [ -77.67067, 38.780949 ], [ -77.669909, 38.781181 ], [ -77.669755, 38.781229 ], [ -77.668691, 38.781557 ], [ -77.668105, 38.781729 ], [ -77.66717, 38.781984 ], [ -77.665556, 38.7824 ], [ -77.665397, 38.782443 ], [ -77.66509, 38.782528 ], [ -77.663117, 38.783041 ], [ -77.662729, 38.783142 ], [ -77.658982, 38.784122 ], [ -77.658234, 38.784318 ], [ -77.657487, 38.784515 ], [ -77.656903, 38.784668 ], [ -77.656444, 38.784785 ], [ -77.655772, 38.784954 ], [ -77.655488, 38.785028 ], [ -77.654149, 38.78538 ], [ -77.653073, 38.785665 ], [ -77.652817, 38.785732 ], [ -77.652723, 38.785757 ], [ -77.652335, 38.78586 ], [ -77.650432, 38.786358 ], [ -77.650292, 38.786394 ], [ -77.648546, 38.786845 ], [ -77.648132, 38.786953 ], [ -77.6471, 38.787217 ], [ -77.646912, 38.787266 ], [ -77.646792, 38.787296 ], [ -77.646475, 38.787378 ], [ -77.643862, 38.788066 ], [ -77.643514, 38.788151 ], [ -77.642956, 38.788288 ], [ -77.641845, 38.788545 ], [ -77.641256, 38.788678 ], [ -77.640668, 38.788812 ], [ -77.637878, 38.789456 ], [ -77.637724, 38.789491 ], [ -77.635026, 38.790112 ], [ -77.633026, 38.790572 ], [ -77.631672, 38.790883 ], [ -77.630391, 38.791179 ], [ -77.630168, 38.791231 ], [ -77.629412, 38.791414 ], [ -77.629006, 38.791523 ], [ -77.628982, 38.791529 ], [ -77.628275, 38.791722 ], [ -77.626219, 38.792284 ], [ -77.625465, 38.792483 ], [ -77.624741, 38.792675 ], [ -77.624567, 38.792721 ], [ -77.624468, 38.792748 ], [ -77.624067, 38.792856 ], [ -77.622821, 38.793191 ], [ -77.622323, 38.793326 ], [ -77.622182, 38.793359 ], [ -77.62157, 38.793529 ], [ -77.621412, 38.793572 ], [ -77.620477, 38.793825 ], [ -77.620443, 38.793835 ], [ -77.619193, 38.794171 ], [ -77.619018, 38.794213 ], [ -77.617763, 38.794556 ], [ -77.617092, 38.79473 ], [ -77.616747, 38.794832 ], [ -77.614017, 38.7956 ], [ -77.613309, 38.7958 ], [ -77.613097, 38.795859 ], [ -77.611965, 38.796178 ], [ -77.611011, 38.796432 ], [ -77.609519, 38.79683 ], [ -77.609066, 38.796955 ], [ -77.60887, 38.79701 ], [ -77.608124, 38.797223 ], [ -77.607861, 38.79729 ], [ -77.60659, 38.797608 ], [ -77.604759, 38.798106 ], [ -77.603341, 38.798433 ], [ -77.602615, 38.798623 ], [ -77.60217, 38.798681 ], [ -77.60178, 38.798726 ], [ -77.60159, 38.798739 ], [ -77.601338, 38.79876 ], [ -77.601043, 38.798748 ], [ -77.600761, 38.798726 ], [ -77.600475, 38.798685 ], [ -77.600088, 38.798626 ], [ -77.598701, 38.798329 ], [ -77.598447, 38.798288 ], [ -77.598168, 38.798263 ], [ -77.597945, 38.798266 ], [ -77.597733, 38.798267 ], [ -77.597515, 38.798295 ], [ -77.597295, 38.798329 ], [ -77.59709, 38.79838 ], [ -77.596838, 38.798472 ], [ -77.596056, 38.79873 ], [ -77.595792, 38.798802 ], [ -77.595557, 38.798839 ], [ -77.595321, 38.798872 ], [ -77.595123, 38.798893 ], [ -77.594903, 38.798906 ], [ -77.594606, 38.798902 ], [ -77.592349, 38.798571 ], [ -77.589853, 38.798246 ], [ -77.587564, 38.797961 ], [ -77.584659, 38.797708 ], [ -77.583518, 38.797592 ], [ -77.582596, 38.797507 ], [ -77.581727, 38.797465 ], [ -77.580645, 38.797422 ], [ -77.579853, 38.797408 ], [ -77.579381, 38.797391 ], [ -77.579328, 38.797391 ], [ -77.578346, 38.797391 ], [ -77.576989, 38.797404 ], [ -77.576007, 38.797446 ], [ -77.575373, 38.797504 ], [ -77.571144, 38.797797 ], [ -77.569287, 38.79792 ], [ -77.56555, 38.798187 ], [ -77.561659, 38.798447 ], [ -77.555891, 38.7988 ], [ -77.553755, 38.798951 ], [ -77.550887, 38.799152 ], [ -77.550295, 38.799193 ], [ -77.548407, 38.799331 ], [ -77.54595, 38.799494 ], [ -77.541063, 38.799812 ], [ -77.539341, 38.799946 ], [ -77.536546, 38.800151 ], [ -77.532281, 38.800448 ], [ -77.529135, 38.800667 ], [ -77.525861, 38.800895 ], [ -77.523173, 38.801079 ], [ -77.520134, 38.801324 ], [ -77.519426, 38.801374 ], [ -77.518588, 38.801436 ], [ -77.514662, 38.801698 ], [ -77.51275, 38.801833 ], [ -77.512257, 38.801883 ], [ -77.51176, 38.801949 ], [ -77.511242, 38.802033 ], [ -77.510728, 38.802133 ], [ -77.510237, 38.802245 ], [ -77.509757, 38.802371 ], [ -77.509283, 38.802511 ], [ -77.508762, 38.802686 ], [ -77.508249, 38.802874 ], [ -77.503238, 38.804849 ], [ -77.501867, 38.805383 ], [ -77.49854, 38.806696 ], [ -77.492854, 38.808929 ], [ -77.492586, 38.809039 ], [ -77.491408, 38.809499 ], [ -77.490728, 38.809768 ], [ -77.490387, 38.809903 ], [ -77.489846, 38.810125 ], [ -77.48976, 38.810159 ], [ -77.489588, 38.810228 ], [ -77.488128, 38.810814 ], [ -77.487975, 38.810876 ], [ -77.487938, 38.810891 ], [ -77.487614, 38.811027 ], [ -77.486889, 38.811312 ], [ -77.485515, 38.811841 ], [ -77.481021, 38.813606 ], [ -77.480031, 38.813987 ], [ -77.479528, 38.81418 ], [ -77.478278, 38.814671 ], [ -77.477784, 38.814859 ], [ -77.476696, 38.815283 ], [ -77.476308, 38.815444 ], [ -77.470849, 38.817587 ], [ -77.469997, 38.817934 ], [ -77.469107, 38.818314 ], [ -77.468263, 38.818692 ], [ -77.467788, 38.818912 ], [ -77.466824, 38.819384 ], [ -77.466481, 38.819559 ], [ -77.465978, 38.819814 ], [ -77.465888, 38.819862 ], [ -77.465082, 38.820299 ], [ -77.464689, 38.820516 ], [ -77.463916, 38.820976 ], [ -77.463568, 38.821184 ], [ -77.462817, 38.82165 ], [ -77.462169, 38.822067 ], [ -77.461524, 38.822499 ], [ -77.460742, 38.823046 ], [ -77.459971, 38.823615 ], [ -77.459453, 38.824009 ], [ -77.458829, 38.824505 ], [ -77.458041, 38.825157 ], [ -77.457989, 38.825199 ], [ -77.457719, 38.825436 ], [ -77.457456, 38.825667 ], [ -77.457174, 38.825914 ], [ -77.456485, 38.82655 ], [ -77.455925, 38.827089 ], [ -77.455609, 38.827408 ], [ -77.455354, 38.827664 ], [ -77.455286, 38.827736 ], [ -77.454763, 38.828288 ], [ -77.453687, 38.829492 ], [ -77.45117, 38.83231 ], [ -77.450091, 38.833546 ], [ -77.449603, 38.834072 ], [ -77.4484, 38.835411 ], [ -77.448317, 38.835496 ], [ -77.447073, 38.836883 ], [ -77.446568, 38.837456 ], [ -77.444983, 38.839239 ], [ -77.444962, 38.839261 ], [ -77.44448, 38.839771 ], [ -77.443925, 38.840374 ], [ -77.443121, 38.841151 ], [ -77.442523, 38.841683 ], [ -77.442048, 38.842083 ], [ -77.441563, 38.842472 ], [ -77.44121, 38.842729 ], [ -77.440835, 38.842989 ], [ -77.440353, 38.843301 ], [ -77.439357, 38.843895 ], [ -77.438808, 38.844189 ], [ -77.438412, 38.844388 ], [ -77.438154, 38.844513 ], [ -77.437585, 38.844773 ], [ -77.43695, 38.845042 ], [ -77.436125, 38.845358 ], [ -77.435386, 38.845611 ], [ -77.434841, 38.845778 ], [ -77.434461, 38.845886 ], [ -77.434065, 38.845989 ], [ -77.433588, 38.846102 ], [ -77.432595, 38.846311 ], [ -77.431976, 38.846424 ], [ -77.431894, 38.846439 ], [ -77.43166, 38.846482 ], [ -77.43013, 38.84677 ], [ -77.428638, 38.847052 ], [ -77.427672, 38.847201 ], [ -77.426895, 38.847336 ], [ -77.426613, 38.847387 ], [ -77.423954, 38.847868 ], [ -77.42318, 38.84802 ], [ -77.422578, 38.848129 ], [ -77.421734, 38.848284 ], [ -77.419777, 38.84865 ], [ -77.418032, 38.848977 ], [ -77.416532, 38.849246 ], [ -77.415198, 38.849482 ], [ -77.414151, 38.849672 ], [ -77.413692, 38.849756 ], [ -77.413004, 38.849886 ], [ -77.41025, 38.850388 ], [ -77.408348, 38.850725 ], [ -77.406003, 38.851167 ], [ -77.404553, 38.851419 ], [ -77.403103, 38.851676 ], [ -77.402433, 38.851803 ], [ -77.401513, 38.851954 ], [ -77.399882, 38.852249 ], [ -77.399048, 38.852319 ], [ -77.398718, 38.852375 ], [ -77.397996, 38.852492 ], [ -77.397318, 38.852624 ], [ -77.396752, 38.852714 ], [ -77.396348, 38.852749 ], [ -77.395658, 38.852767 ], [ -77.395009, 38.8528 ], [ -77.394695, 38.852837 ], [ -77.39433, 38.852891 ], [ -77.393802, 38.852984 ], [ -77.393126, 38.853114 ], [ -77.392725, 38.85318 ], [ -77.392095, 38.853297 ], [ -77.391904, 38.853339 ], [ -77.391134, 38.853478 ], [ -77.389836, 38.853723 ], [ -77.389215, 38.853845 ], [ -77.38892, 38.853895 ], [ -77.388716, 38.853941 ], [ -77.388024, 38.854062 ], [ -77.387165, 38.854196 ], [ -77.386771, 38.854162 ], [ -77.386529, 38.854111 ], [ -77.386343, 38.854055 ], [ -77.386187, 38.853987 ], [ -77.386127, 38.853954 ], [ -77.386079, 38.85392 ], [ -77.385986, 38.853839 ], [ -77.385938, 38.853785 ], [ -77.385904, 38.853738 ], [ -77.385849, 38.853638 ], [ -77.385829, 38.853585 ], [ -77.385812, 38.853521 ], [ -77.3858, 38.853402 ], [ -77.385805, 38.853336 ], [ -77.385817, 38.853271 ], [ -77.38586, 38.853155 ], [ -77.385888, 38.853105 ], [ -77.385929, 38.853047 ], [ -77.38601, 38.852959 ], [ -77.386068, 38.85291 ], [ -77.386119, 38.852873 ], [ -77.386233, 38.85281 ], [ -77.386292, 38.852784 ], [ -77.386367, 38.852757 ], [ -77.386444, 38.852736 ], [ -77.386551, 38.852715 ], [ -77.386695, 38.852705 ], [ -77.38684, 38.852711 ], [ -77.386899, 38.85272 ], [ -77.386985, 38.852739 ], [ -77.387131, 38.852784 ], [ -77.387234, 38.852827 ], [ -77.387327, 38.852872 ], [ -77.387501, 38.852977 ], [ -77.387596, 38.853046 ], [ -77.387689, 38.853125 ], [ -77.387869, 38.853301 ], [ -77.388005, 38.8535 ], [ -77.388211, 38.853861 ], [ -77.388248, 38.853958 ], [ -77.38834, 38.854202 ], [ -77.388434, 38.854509 ], [ -77.388512, 38.85483 ], [ -77.388556, 38.855045 ], [ -77.388563, 38.855077 ], [ -77.388615, 38.855398 ], [ -77.38864, 38.855726 ], [ -77.388657, 38.85606 ], [ -77.388632, 38.856494 ], [ -77.388606, 38.856728 ], [ -77.388546, 38.857062 ], [ -77.388494, 38.857283 ], [ -77.388383, 38.85759 ], [ -77.388245, 38.857898 ], [ -77.387962, 38.858392 ], [ -77.387722, 38.858713 ], [ -77.387587, 38.858842 ], [ -77.387448, 38.858992 ], [ -77.38738, 38.859049 ], [ -77.387049, 38.859315 ], [ -77.387001, 38.859355 ], [ -77.386572, 38.859616 ], [ -77.386057, 38.859876 ], [ -77.385696, 38.860037 ], [ -77.385104, 38.860297 ], [ -77.384246, 38.860678 ], [ -77.383311, 38.861091 ], [ -77.382484, 38.861549 ], [ -77.381927, 38.861964 ], [ -77.381649, 38.862271 ], [ -77.381472, 38.862656 ], [ -77.38114, 38.86254 ], [ -77.380676, 38.862336 ], [ -77.380373, 38.862167 ], [ -77.380144, 38.862016 ], [ -77.379932, 38.861857 ], [ -77.379724, 38.861669 ], [ -77.379541, 38.861495 ], [ -77.379299, 38.861256 ], [ -77.379174, 38.86114 ], [ -77.378963, 38.86097 ], [ -77.378779, 38.860822 ], [ -77.378622, 38.860715 ], [ -77.378375, 38.860584 ], [ -77.37825, 38.860526 ], [ -77.377901, 38.860354 ], [ -77.377674, 38.860258 ], [ -77.377503, 38.860194 ], [ -77.376982, 38.860031 ], [ -77.376724, 38.859968 ], [ -77.376465, 38.859908 ], [ -77.376139, 38.859843 ], [ -77.375957, 38.859809 ], [ -77.375449, 38.859704 ], [ -77.37477, 38.859591 ], [ -77.373992, 38.859482 ], [ -77.373385, 38.859411 ], [ -77.373319, 38.859405 ], [ -77.371684, 38.859251 ], [ -77.371331, 38.859226 ], [ -77.37112, 38.859211 ], [ -77.371099, 38.85942 ], [ -77.371098, 38.859619 ], [ -77.371033, 38.860102 ], [ -77.370993, 38.860407 ], [ -77.370953, 38.86073 ], [ -77.370894, 38.86095 ], [ -77.370816, 38.861165 ], [ -77.370757, 38.861296 ], [ -77.370665, 38.861443 ], [ -77.370575, 38.861587 ], [ -77.370384, 38.861875 ], [ -77.370116, 38.862301 ], [ -77.369869, 38.862675 ], [ -77.369695, 38.862937 ], [ -77.369553, 38.863149 ], [ -77.369282, 38.863562 ], [ -77.369075, 38.863878 ], [ -77.369003, 38.863978 ], [ -77.368943, 38.864053 ], [ -77.368872, 38.864143 ], [ -77.368754, 38.864281 ], [ -77.368648, 38.864383 ], [ -77.368548, 38.86448 ], [ -77.368413, 38.864611 ], [ -77.368244, 38.864751 ], [ -77.368139, 38.86483 ], [ -77.368096, 38.864859 ], [ -77.367962, 38.864949 ], [ -77.367753, 38.865087 ], [ -77.36752, 38.865221 ], [ -77.36716, 38.865425 ], [ -77.366916, 38.865565 ], [ -77.366749, 38.865664 ], [ -77.366693, 38.865696 ], [ -77.366603, 38.865757 ], [ -77.36621, 38.865941 ], [ -77.365964, 38.866096 ], [ -77.365677, 38.866275 ], [ -77.365412, 38.86648 ], [ -77.365205, 38.866666 ], [ -77.365092, 38.866802 ], [ -77.364926, 38.867027 ], [ -77.364819, 38.867215 ], [ -77.364795, 38.867271 ], [ -77.364687, 38.867526 ], [ -77.364631, 38.867731 ], [ -77.364602, 38.867885 ], [ -77.364585, 38.868103 ], [ -77.364599, 38.86833 ], [ -77.364602, 38.868416 ], [ -77.364653, 38.868646 ], [ -77.364749, 38.868903 ], [ -77.364915, 38.869232 ], [ -77.365031, 38.869489 ], [ -77.36519, 38.869811 ], [ -77.365353, 38.870145 ], [ -77.365541, 38.870577 ], [ -77.365608, 38.870714 ], [ -77.36564, 38.87078 ], [ -77.365767, 38.871048 ], [ -77.365858, 38.871232 ], [ -77.365914, 38.871335 ], [ -77.366032, 38.871546 ], [ -77.366196, 38.871805 ], [ -77.366355, 38.872046 ], [ -77.366507, 38.872259 ], [ -77.366678, 38.872501 ], [ -77.366856, 38.872754 ], [ -77.366963, 38.872925 ], [ -77.367022, 38.873039 ], [ -77.367081, 38.873163 ], [ -77.367145, 38.873344 ], [ -77.367182, 38.87346 ], [ -77.367204, 38.873534 ], [ -77.367233, 38.873695 ], [ -77.36726, 38.873889 ], [ -77.367273, 38.874003 ], [ -77.367165, 38.874012 ], [ -77.366994, 38.874012 ], [ -77.366779, 38.873999 ], [ -77.366666, 38.873986 ], [ -77.366501, 38.873968 ], [ -77.366313, 38.873934 ], [ -77.366155, 38.873897 ], [ -77.365932, 38.873832 ], [ -77.36562, 38.873728 ], [ -77.365375, 38.873647 ], [ -77.36552, 38.873752 ], [ -77.365645, 38.873824 ], [ -77.365759, 38.873875 ] ] } }
diff --git a/packages/turf-area/.npmignore b/packages/turf-area/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-area/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-area/README.md b/packages/turf-area/README.md
new file mode 100644
index 0000000000..9dd7d3e324
--- /dev/null
+++ b/packages/turf-area/README.md
@@ -0,0 +1,79 @@
+# turf-area
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-area.png)](http://travis-ci.org/Turfjs/turf-area)
+
+calculate the area of a polygon or multipolygon feature
+
+
+### `turf.area(input)`
+
+Takes a one or more features and returns their area
+in square meters.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | -------------------------- | -------------- |
+| `input` | Feature\,FeatureCollection | input features |
+
+
+### Example
+
+```js
+var polygons = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[
+ [-67.031021, 10.458102],
+ [-67.031021, 10.53372],
+ [-66.929397, 10.53372],
+ [-66.929397, 10.458102],
+ [-67.031021, 10.458102]
+ ]]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[
+ [-66.919784, 10.397325],
+ [-66.919784, 10.513467],
+ [-66.805114, 10.513467],
+ [-66.805114, 10.397325],
+ [-66.919784, 10.397325]
+ ]]
+ }
+ }
+ ]
+};
+
+var area = turf.area(polygons);
+
+//=area
+```
+
+
+**Returns** `Number`, area in square meters
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-area
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-area/index.js b/packages/turf-area/index.js
new file mode 100644
index 0000000000..d903743d5d
--- /dev/null
+++ b/packages/turf-area/index.js
@@ -0,0 +1,62 @@
+var geometryArea = require('geojson-area').geometry;
+
+/**
+ * Takes a one or more features and returns their area
+ * in square meters.
+ *
+ * @category measurement
+ * @param {(Feature|FeatureCollection)} input input features
+ * @return {Number} area in square meters
+ * @example
+ * var polygons = {
+ * "type": "FeatureCollection",
+ * "features": [
+ * {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Polygon",
+ * "coordinates": [[
+ * [-67.031021, 10.458102],
+ * [-67.031021, 10.53372],
+ * [-66.929397, 10.53372],
+ * [-66.929397, 10.458102],
+ * [-67.031021, 10.458102]
+ * ]]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Polygon",
+ * "coordinates": [[
+ * [-66.919784, 10.397325],
+ * [-66.919784, 10.513467],
+ * [-66.805114, 10.513467],
+ * [-66.805114, 10.397325],
+ * [-66.919784, 10.397325]
+ * ]]
+ * }
+ * }
+ * ]
+ * };
+ *
+ * var area = turf.area(polygons);
+ *
+ * //=area
+ */
+function area(input) {
+ if (input.type === 'FeatureCollection') {
+ for (var i = 0, sum = 0; i < input.features.length; i++) {
+ if (input.features[i].geometry) {
+ sum += geometryArea(input.features[i].geometry);
+ }
+ }
+ return sum;
+ } else if (input.type === 'Feature') {
+ return geometryArea(input.geometry);
+ } else {
+ return geometryArea(input);
+ }
+}
+module.exports = area;
diff --git a/packages/turf-area/package.json b/packages/turf-area/package.json
new file mode 100644
index 0000000000..f44fd08844
--- /dev/null
+++ b/packages/turf-area/package.json
@@ -0,0 +1,28 @@
+{
+ "name": "turf-area",
+ "version": "3.0.1",
+ "description": "calculate the area of a polygon or multipolygon feature",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js"
+ },
+ "keywords": [
+ "turf",
+ "area",
+ "polygon",
+ "multipolygon"
+ ],
+ "author": "Tom MacWright",
+ "license": "ISC",
+ "dependencies": {
+ "geojson-area": "^0.2.1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git@github.com:Turfjs/turf-area.git"
+ },
+ "devDependencies": {
+ "geojson-fixtures": "^0.6.0",
+ "tape": "^3.5.0"
+ }
+}
diff --git a/packages/turf-area/test.js b/packages/turf-area/test.js
new file mode 100644
index 0000000000..5f8f6f4208
--- /dev/null
+++ b/packages/turf-area/test.js
@@ -0,0 +1,5 @@
+var geojsonFixtures = require('geojson-fixtures/helper');
+geojsonFixtures(require('tape'), 'all', require('./'), __dirname + '/test', false, function(t, input, output) {
+ t.ok(typeof output === 'number', 'output is number');
+ t.ok(output >= 0, 'area is positive or zero');
+});
diff --git a/packages/turf-area/test/geometrycollection-0-0.output.json b/packages/turf-area/test/geometrycollection-0-0.output.json
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/packages/turf-area/test/geometrycollection-0-0.output.json
@@ -0,0 +1 @@
+0
\ No newline at end of file
diff --git a/packages/turf-area/test/geometrycollection-xyz-0-6.output.json b/packages/turf-area/test/geometrycollection-xyz-0-6.output.json
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/packages/turf-area/test/geometrycollection-xyz-0-6.output.json
@@ -0,0 +1 @@
+0
\ No newline at end of file
diff --git a/packages/turf-area/test/idaho-1-1.output.json b/packages/turf-area/test/idaho-1-1.output.json
new file mode 100644
index 0000000000..b6101fcf06
--- /dev/null
+++ b/packages/turf-area/test/idaho-1-1.output.json
@@ -0,0 +1 @@
+216478084193.14395
\ No newline at end of file
diff --git a/packages/turf-area/test/multilinestring-0-5.output.json b/packages/turf-area/test/multilinestring-0-5.output.json
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/packages/turf-area/test/multilinestring-0-5.output.json
@@ -0,0 +1 @@
+0
\ No newline at end of file
diff --git a/packages/turf-area/test/multilinestring-xyz-0-11.output.json b/packages/turf-area/test/multilinestring-xyz-0-11.output.json
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/packages/turf-area/test/multilinestring-xyz-0-11.output.json
@@ -0,0 +1 @@
+0
\ No newline at end of file
diff --git a/packages/turf-area/test/multipoint-0-3.output.json b/packages/turf-area/test/multipoint-0-3.output.json
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/packages/turf-area/test/multipoint-0-3.output.json
@@ -0,0 +1 @@
+0
\ No newline at end of file
diff --git a/packages/turf-area/test/multipoint-xyz-0-9.output.json b/packages/turf-area/test/multipoint-xyz-0-9.output.json
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/packages/turf-area/test/multipoint-xyz-0-9.output.json
@@ -0,0 +1 @@
+0
\ No newline at end of file
diff --git a/packages/turf-area/test/multipolygon-0-4.output.json b/packages/turf-area/test/multipolygon-0-4.output.json
new file mode 100644
index 0000000000..2714b761aa
--- /dev/null
+++ b/packages/turf-area/test/multipolygon-0-4.output.json
@@ -0,0 +1 @@
+20310537131.032814
diff --git a/packages/turf-area/test/multipolygon-xyz-0-10.output.json b/packages/turf-area/test/multipolygon-xyz-0-10.output.json
new file mode 100644
index 0000000000..2714b761aa
--- /dev/null
+++ b/packages/turf-area/test/multipolygon-xyz-0-10.output.json
@@ -0,0 +1 @@
+20310537131.032814
diff --git a/packages/turf-area/test/one-1-0.output.json b/packages/turf-area/test/one-1-0.output.json
new file mode 100644
index 0000000000..b50cd9a172
--- /dev/null
+++ b/packages/turf-area/test/one-1-0.output.json
@@ -0,0 +1 @@
+12391399902.071121
diff --git a/packages/turf-area/test/one-2-0.output.json b/packages/turf-area/test/one-2-0.output.json
new file mode 100644
index 0000000000..b50cd9a172
--- /dev/null
+++ b/packages/turf-area/test/one-2-0.output.json
@@ -0,0 +1 @@
+12391399902.071121
diff --git a/packages/turf-area/test/point-0-2.output.json b/packages/turf-area/test/point-0-2.output.json
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/packages/turf-area/test/point-0-2.output.json
@@ -0,0 +1 @@
+0
\ No newline at end of file
diff --git a/packages/turf-area/test/point-xyz-0-8.output.json b/packages/turf-area/test/point-xyz-0-8.output.json
new file mode 100644
index 0000000000..c227083464
--- /dev/null
+++ b/packages/turf-area/test/point-xyz-0-8.output.json
@@ -0,0 +1 @@
+0
\ No newline at end of file
diff --git a/packages/turf-area/test/polygon-0-1.output.json b/packages/turf-area/test/polygon-0-1.output.json
new file mode 100644
index 0000000000..b50cd9a172
--- /dev/null
+++ b/packages/turf-area/test/polygon-0-1.output.json
@@ -0,0 +1 @@
+12391399902.071121
diff --git a/packages/turf-area/test/polygon-xyz-0-7.output.json b/packages/turf-area/test/polygon-xyz-0-7.output.json
new file mode 100644
index 0000000000..b50cd9a172
--- /dev/null
+++ b/packages/turf-area/test/polygon-xyz-0-7.output.json
@@ -0,0 +1 @@
+12391399902.071121
diff --git a/packages/turf-bbox-polygon/.npmignore b/packages/turf-bbox-polygon/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-bbox-polygon/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-bbox-polygon/LICENSE b/packages/turf-bbox-polygon/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-bbox-polygon/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-bbox-polygon/README.md b/packages/turf-bbox-polygon/README.md
new file mode 100644
index 0000000000..be7ae6b94a
--- /dev/null
+++ b/packages/turf-bbox-polygon/README.md
@@ -0,0 +1,47 @@
+# turf-bbox-polygon
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-bboxPolygon.png)](http://travis-ci.org/Turfjs/turf-bboxPolygon)
+
+turf bboxPolygon module
+
+
+### `turf.bbox-polygon(bbox)`
+
+Takes a bbox and returns an equivalent Polygon|polygon.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | ----------------- | ---------------------------------------------------------------------------------- |
+| `bbox` | Array\.\ | an Array of bounding box coordinates in the form: ```[xLow, yLow, xHigh, yHigh]``` |
+
+
+### Example
+
+```js
+var bbox = [0, 0, 10, 10];
+
+var poly = turf.bboxPolygon(bbox);
+
+//=poly
+```
+
+
+**Returns** `Feature.`, a Polygon representation of the bounding box
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-bbox-polygon
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-bbox-polygon/bench.js b/packages/turf-bbox-polygon/bench.js
new file mode 100644
index 0000000000..e1dceae38c
--- /dev/null
+++ b/packages/turf-bbox-polygon/bench.js
@@ -0,0 +1,16 @@
+var bboxpolygon = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var suite = new Benchmark.Suite('turf-bbox-polygon');
+suite
+ .add('turf-bbox-polygon',function () {
+ bboxpolygon([0,0,10,10])
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-bbox-polygon/index.js b/packages/turf-bbox-polygon/index.js
new file mode 100644
index 0000000000..be1f46a329
--- /dev/null
+++ b/packages/turf-bbox-polygon/index.js
@@ -0,0 +1,31 @@
+var polygon = require('turf-helpers').polygon;
+
+/**
+ * Takes a bbox and returns an equivalent {@link Polygon|polygon}.
+ *
+ * @name bboxPolygon
+ * @category measurement
+ * @param {Array} bbox an Array of bounding box coordinates in the form: ```[xLow, yLow, xHigh, yHigh]```
+ * @return {Feature} a Polygon representation of the bounding box
+ * @example
+ * var bbox = [0, 0, 10, 10];
+ *
+ * var poly = turf.bboxPolygon(bbox);
+ *
+ * //=poly
+ */
+
+module.exports = function (bbox) {
+ var lowLeft = [bbox[0], bbox[1]];
+ var topLeft = [bbox[0], bbox[3]];
+ var topRight = [bbox[2], bbox[3]];
+ var lowRight = [bbox[2], bbox[1]];
+
+ return polygon([[
+ lowLeft,
+ lowRight,
+ topRight,
+ topLeft,
+ lowLeft
+ ]]);
+};
diff --git a/packages/turf-bbox-polygon/package.json b/packages/turf-bbox-polygon/package.json
new file mode 100644
index 0000000000..5c69ff9bda
--- /dev/null
+++ b/packages/turf-bbox-polygon/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "turf-bbox-polygon",
+ "version": "3.0.5",
+ "description": "turf bboxPolygon module",
+ "main": "index.js",
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-bboxPolygon.git"
+ },
+ "keywords": [
+ "turf",
+ "gis",
+ "geojson",
+ "extent",
+ "bbox"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-bboxPolygon/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-bboxPolygon",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0"
+ },
+ "dependencies": {
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-bbox-polygon/test.js b/packages/turf-bbox-polygon/test.js
new file mode 100644
index 0000000000..282fbf2396
--- /dev/null
+++ b/packages/turf-bbox-polygon/test.js
@@ -0,0 +1,21 @@
+var test = require('tape')
+var bboxPolygon = require('./')
+
+test('bboxPolygon', function(t){
+ t.plan(2);
+
+ var poly = bboxPolygon([0,0,10,10]);
+
+ t.ok(poly.geometry.coordinates, 'should take a bbox and return the equivalent polygon feature');
+ t.equal(poly.geometry.type, 'Polygon', 'should be a Polygon geometry type');
+});
+
+test('bboxPolygon valid geojson', function (t) {
+ var poly = bboxPolygon([0,0,10,10]),
+ coordinates = poly.geometry.coordinates;
+ t.ok(poly, 'should be valid geojson.');
+ t.equal(coordinates[0].length, 5);
+ t.equal(coordinates[0][0][0], coordinates[0][coordinates.length - 1][0]);
+ t.equal(coordinates[0][0][1], coordinates[0][coordinates.length - 1][1]);
+ t.end();
+});
diff --git a/packages/turf-bbox/.npmignore b/packages/turf-bbox/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-bbox/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-bbox/LICENSE b/packages/turf-bbox/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-bbox/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-bbox/README.md b/packages/turf-bbox/README.md
new file mode 100644
index 0000000000..26c8f4af8b
--- /dev/null
+++ b/packages/turf-bbox/README.md
@@ -0,0 +1,88 @@
+# turf-bbox
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-bbox.png)](http://travis-ci.org/Turfjs/turf-bbox)
+
+turf bbox module
+
+
+### `turf.bbox(input)`
+
+Takes a set of features, calculates the bbox of all input features, and returns a bounding box.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | -------------------------- | -------------- |
+| `input` | Feature\,FeatureCollection | input features |
+
+
+### Example
+
+```js
+var input = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [114.175329, 22.2524]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [114.170007, 22.267969]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [114.200649, 22.274641]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [114.186744, 22.265745]
+ }
+ }
+ ]
+};
+
+var bbox = turf.bbox(input);
+
+var bboxPolygon = turf.bboxPolygon(bbox);
+
+var resultFeatures = input.features.concat(bboxPolygon);
+var result = {
+ "type": "FeatureCollection",
+ "features": resultFeatures
+};
+
+//=result
+```
+
+
+**Returns** `Array.`, the bounding box of `input` given as an array in WSEN order (west, south, east, north)
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-bbox
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-bbox/bench.js b/packages/turf-bbox/bench.js
new file mode 100644
index 0000000000..d49643bbb2
--- /dev/null
+++ b/packages/turf-bbox/bench.js
@@ -0,0 +1,43 @@
+global.bbox = require('./');
+global.bbox2 = require('./index-lazy-reduce');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+global.fc = require('./test/FeatureCollection');
+global.pt = require('./test/Point');
+global.line = require('./test/LineString');
+global.poly = require('./test/Polygon');
+global.multiLine = require('./test/MultiLineString');
+global.multiPoly = require('./test/MultiPolygon');
+
+var suite = new Benchmark.Suite('turf-bbox');
+suite
+ .add('turf-bbox#FeatureCollection',function () {
+ global.bbox(global.fc);
+ })
+ .add('turf-bbox2#FeatureCollection',function () {
+ global.bbox2(global.fc);
+ })
+ /*
+ .add('turf-bbox#Point',function () {
+ global.bbox(global.pt);
+ })
+ .add('turf-bbox#LineString',function () {
+ global.bbox(global.line);
+ })
+ .add('turf-bbox#Polygon',function () {
+ global.bbox(global.poly);
+ })
+ .add('turf-bbox#MultiLineString',function () {
+ global.bbox(global.multiLine);
+ })
+ .add('turf-bbox#MultiPolygon',function () {
+ global.bbox(global.multiPoly);
+ })
+ */
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+ })
+ .run();
diff --git a/packages/turf-bbox/index.js b/packages/turf-bbox/index.js
new file mode 100644
index 0000000000..b1215a59d6
--- /dev/null
+++ b/packages/turf-bbox/index.js
@@ -0,0 +1,68 @@
+var each = require('turf-meta').coordEach;
+
+/**
+ * Takes a set of features, calculates the bbox of all input features, and returns a bounding box.
+ *
+ * @name bbox
+ * @category measurement
+ * @param {(Feature|FeatureCollection)} input input features
+ * @return {Array} the bounding box of `input` given
+ * as an array in WSEN order (west, south, east, north)
+ * @example
+ * var input = {
+ * "type": "FeatureCollection",
+ * "features": [
+ * {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [114.175329, 22.2524]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [114.170007, 22.267969]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [114.200649, 22.274641]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [114.186744, 22.265745]
+ * }
+ * }
+ * ]
+ * };
+ *
+ * var bbox = turf.bbox(input);
+ *
+ * var bboxPolygon = turf.bboxPolygon(bbox);
+ *
+ * var resultFeatures = input.features.concat(bboxPolygon);
+ * var result = {
+ * "type": "FeatureCollection",
+ * "features": resultFeatures
+ * };
+ *
+ * //=result
+ */
+module.exports = function (layer) {
+ var bbox = [Infinity, Infinity, -Infinity, -Infinity];
+ each(layer, function (coord) {
+ if (bbox[0] > coord[0]) bbox[0] = coord[0];
+ if (bbox[1] > coord[1]) bbox[1] = coord[1];
+ if (bbox[2] < coord[0]) bbox[2] = coord[0];
+ if (bbox[3] < coord[1]) bbox[3] = coord[1];
+ });
+ return bbox;
+};
diff --git a/packages/turf-bbox/package.json b/packages/turf-bbox/package.json
new file mode 100644
index 0000000000..96ea1d51ef
--- /dev/null
+++ b/packages/turf-bbox/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "turf-bbox",
+ "version": "3.0.1",
+ "description": "turf bbox module",
+ "main": "index.js",
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf.git"
+ },
+ "keywords": [
+ "turf",
+ "extent",
+ "bbox",
+ "polygon",
+ "featurecollection",
+ "geojson"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0"
+ },
+ "dependencies": {
+ "turf-meta": "^3.0.1"
+ }
+}
diff --git a/packages/turf-bbox/test.js b/packages/turf-bbox/test.js
new file mode 100644
index 0000000000..10038521f3
--- /dev/null
+++ b/packages/turf-bbox/test.js
@@ -0,0 +1,72 @@
+var test = require('tape');
+var fs = require('fs');
+var extent = require('./');
+
+// test data
+var fc = require('./test/FeatureCollection');
+var pt = require('./test/Point');
+var line = require('./test/LineString');
+var poly = require('./test/Polygon');
+var multiLine = require('./test/MultiLineString');
+var multiPoly = require('./test/MultiPolygon');
+
+test('extent', function(t){
+ // FeatureCollection
+ var fcExtent = extent(fc);
+
+ t.ok(fcExtent, 'FeatureCollection');
+ t.equal(fcExtent[0], 20);
+ t.equal(fcExtent[1], -10);
+ t.equal(fcExtent[2], 130);
+ t.equal(fcExtent[3], 4);
+
+ // Point
+ var ptExtent = extent(pt);
+ t.ok(ptExtent, 'Point');
+ t.equal(ptExtent[0], 102);
+ t.equal(ptExtent[1], 0.5);
+ t.equal(ptExtent[2], 102);
+ t.equal(ptExtent[3], 0.5);
+
+ // Line
+ var lineExtent = extent(line);
+
+ t.ok(lineExtent, 'Line');
+ t.equal(lineExtent[0], 102);
+ t.equal(lineExtent[1], -10);
+ t.equal(lineExtent[2], 130);
+ t.equal(lineExtent[3], 4);
+
+ // Polygon
+ var polyExtent = extent(poly);
+
+ t.ok(polyExtent, 'Polygon');
+ t.equal(polyExtent[0], 100);
+ t.equal(polyExtent[1], 0);
+ t.equal(polyExtent[2], 101);
+ t.equal(polyExtent[3], 1);
+
+ // MultiLineString
+ var multiLineExtent = extent(multiLine);
+
+ t.ok(multiLineExtent, 'MultiLineString');
+ t.equal(multiLineExtent[0], 100);
+ t.equal(multiLineExtent[1], 0);
+ t.equal(multiLineExtent[2], 103);
+ t.equal(multiLineExtent[3], 3);
+
+ // MultiPolygon
+ var multiPolyExtent = extent(multiPoly);
+
+ t.ok(multiPolyExtent, 'MultiPolygon');
+ t.equal(multiPolyExtent[0], 100);
+ t.equal(multiPolyExtent[1], 0);
+ t.equal(multiPolyExtent[2], 103);
+ t.equal(multiPolyExtent[3], 3);
+
+ t.throws(function() {
+ var multiPolyExtent = extent({});
+ }, /Unknown Geometry Type/, 'unknown geometry type error');
+
+ t.end();
+});
diff --git a/packages/turf-bbox/test/FeatureCollection.js b/packages/turf-bbox/test/FeatureCollection.js
new file mode 100644
index 0000000000..89a859f2bc
--- /dev/null
+++ b/packages/turf-bbox/test/FeatureCollection.js
@@ -0,0 +1,39 @@
+module.exports = {
+ 'type': 'FeatureCollection',
+ 'features': [
+ {
+ 'type': 'Feature',
+ 'geometry': {
+ 'type': 'Point',
+ 'coordinates': [102.0, 0.5]
+ },
+ 'properties': {
+ }
+ },
+ {
+ 'type': 'Feature',
+ 'geometry': {
+ 'type': 'LineString',
+ 'coordinates': [
+ [102.0, -10.0], [103.0, 1.0], [104.0, 0.0], [130.0, 4.0]
+ ]
+ },
+ 'properties': {
+ }
+ },
+ {
+ 'type': 'Feature',
+ 'geometry': {
+ 'type': 'Polygon',
+ 'coordinates': [
+ [
+ [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0],
+ [100.0, 0.0]
+ ]
+ ]
+ },
+ 'properties': {
+ }
+ }
+ ]
+};
diff --git a/packages/turf-bbox/test/LineString.js b/packages/turf-bbox/test/LineString.js
new file mode 100644
index 0000000000..10ee8da151
--- /dev/null
+++ b/packages/turf-bbox/test/LineString.js
@@ -0,0 +1,21 @@
+module.exports = {
+ 'type': 'LineString',
+ 'coordinates': [
+ [
+ 102.0,
+ -10.0
+ ],
+ [
+ 103.0,
+ 1.0
+ ],
+ [
+ 104.0,
+ 0.0
+ ],
+ [
+ 130.0,
+ 4.0
+ ]
+ ]
+};
diff --git a/packages/turf-bbox/test/MultiLineString.js b/packages/turf-bbox/test/MultiLineString.js
new file mode 100644
index 0000000000..43e742a373
--- /dev/null
+++ b/packages/turf-bbox/test/MultiLineString.js
@@ -0,0 +1,25 @@
+module.exports = {
+ 'type': 'MultiLineString',
+ 'coordinates': [
+ [
+ [
+ 100.0,
+ 0.0
+ ],
+ [
+ 101.0,
+ 1.0
+ ]
+ ],
+ [
+ [
+ 102.0,
+ 2.0
+ ],
+ [
+ 103.0,
+ 3.0
+ ]
+ ]
+ ]
+};
diff --git a/packages/turf-bbox/test/MultiPolygon.js b/packages/turf-bbox/test/MultiPolygon.js
new file mode 100644
index 0000000000..e21cd8a469
--- /dev/null
+++ b/packages/turf-bbox/test/MultiPolygon.js
@@ -0,0 +1,75 @@
+module.exports = {
+ 'type': 'MultiPolygon',
+ 'coordinates': [
+ [
+ [
+ [
+ 102.0,
+ 2.0
+ ],
+ [
+ 103.0,
+ 2.0
+ ],
+ [
+ 103.0,
+ 3.0
+ ],
+ [
+ 102.0,
+ 3.0
+ ],
+ [
+ 102.0,
+ 2.0
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ 100.0,
+ 0.0
+ ],
+ [
+ 101.0,
+ 0.0
+ ],
+ [
+ 101.0,
+ 1.0
+ ],
+ [
+ 100.0,
+ 1.0
+ ],
+ [
+ 100.0,
+ 0.0
+ ]
+ ],
+ [
+ [
+ 100.2,
+ 0.2
+ ],
+ [
+ 100.8,
+ 0.2
+ ],
+ [
+ 100.8,
+ 0.8
+ ],
+ [
+ 100.2,
+ 0.8
+ ],
+ [
+ 100.2,
+ 0.2
+ ]
+ ]
+ ]
+ ]
+};
diff --git a/packages/turf-bbox/test/Point.js b/packages/turf-bbox/test/Point.js
new file mode 100644
index 0000000000..f25c36270f
--- /dev/null
+++ b/packages/turf-bbox/test/Point.js
@@ -0,0 +1,10 @@
+module.exports = {
+ 'type': 'Feature',
+ 'geometry': {
+ 'type': 'Point',
+ 'coordinates': [
+ 102.0,
+ 0.5
+ ]
+ }
+};
diff --git a/packages/turf-bbox/test/Polygon.js b/packages/turf-bbox/test/Polygon.js
new file mode 100644
index 0000000000..437c3ad518
--- /dev/null
+++ b/packages/turf-bbox/test/Polygon.js
@@ -0,0 +1,26 @@
+module.exports = {
+ 'type': 'Feature',
+ 'geometry': {
+ 'type': 'Polygon',
+ 'coordinates': [
+ [
+ [
+ 101.0,
+ 0.0
+ ],
+ [
+ 101.0,
+ 1.0
+ ],
+ [
+ 100.0,
+ 1.0
+ ],
+ [
+ 100.0,
+ 0.0
+ ]
+ ]
+ ]
+ }
+};
diff --git a/packages/turf-bearing/.npmignore b/packages/turf-bearing/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-bearing/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-bearing/LICENSE b/packages/turf-bearing/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-bearing/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-bearing/README.md b/packages/turf-bearing/README.md
new file mode 100644
index 0000000000..3231b5ea75
--- /dev/null
+++ b/packages/turf-bearing/README.md
@@ -0,0 +1,74 @@
+# turf-bearing
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-bearing.png)](http://travis-ci.org/Turfjs/turf-bearing)
+
+turf bearing module
+
+
+### `turf.bearing(start, end)`
+
+Takes two Point|points and finds the geographic bearing between them.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | ------------------ | -------------- |
+| `start` | Feature\.\ | starting Point |
+| `end` | Feature\.\ | ending Point |
+
+
+### Example
+
+```js
+var point1 = {
+ "type": "Feature",
+ "properties": {
+ "marker-color": '#f00'
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75.343, 39.984]
+ }
+};
+var point2 = {
+ "type": "Feature",
+ "properties": {
+ "marker-color": '#0f0'
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75.534, 39.123]
+ }
+};
+
+var points = {
+ "type": "FeatureCollection",
+ "features": [point1, point2]
+};
+
+//=points
+
+var bearing = turf.bearing(point1, point2);
+
+//=bearing
+```
+
+
+**Returns** `Number`, bearing in decimal degrees
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-bearing
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-bearing/bench.js b/packages/turf-bearing/bench.js
new file mode 100644
index 0000000000..aa0db6795a
--- /dev/null
+++ b/packages/turf-bearing/bench.js
@@ -0,0 +1,25 @@
+var bearing = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var pt1 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.4, 39.4]}
+ };
+var pt2 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.534, 39.123]}
+ };
+
+var suite = new Benchmark.Suite('turf-bearing');
+suite
+ .add('turf-bearing',function () {
+ bearing(pt1, pt2);
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-bearing/index.js b/packages/turf-bearing/index.js
new file mode 100644
index 0000000000..b8e574a6d8
--- /dev/null
+++ b/packages/turf-bearing/index.js
@@ -0,0 +1,64 @@
+var getCoord = require('turf-invariant').getCoord;
+//http://en.wikipedia.org/wiki/Haversine_formula
+//http://www.movable-type.co.uk/scripts/latlong.html
+
+/**
+ * Takes two {@link Point|points} and finds the geographic bearing between them.
+ *
+ * @name bearing
+ * @category measurement
+ * @param {Feature} start starting Point
+ * @param {Feature} end ending Point
+ * @category measurement
+ * @returns {Number} bearing in decimal degrees
+ * @example
+ * var point1 = {
+ * "type": "Feature",
+ * "properties": {
+ * "marker-color": '#f00'
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-75.343, 39.984]
+ * }
+ * };
+ * var point2 = {
+ * "type": "Feature",
+ * "properties": {
+ * "marker-color": '#0f0'
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-75.534, 39.123]
+ * }
+ * };
+ *
+ * var points = {
+ * "type": "FeatureCollection",
+ * "features": [point1, point2]
+ * };
+ *
+ * //=points
+ *
+ * var bearing = turf.bearing(point1, point2);
+ *
+ * //=bearing
+ */
+module.exports = function (p1, p2) {
+ var degrees2radians = Math.PI / 180;
+ var radians2degrees = 180 / Math.PI;
+ var coordinates1 = getCoord(p1);
+ var coordinates2 = getCoord(p2);
+
+ var lon1 = degrees2radians * coordinates1[0];
+ var lon2 = degrees2radians * coordinates2[0];
+ var lat1 = degrees2radians * coordinates1[1];
+ var lat2 = degrees2radians * coordinates2[1];
+ var a = Math.sin(lon2 - lon1) * Math.cos(lat2);
+ var b = Math.cos(lat1) * Math.sin(lat2) -
+ Math.sin(lat1) * Math.cos(lat2) * Math.cos(lon2 - lon1);
+
+ var bearing = radians2degrees * Math.atan2(a, b);
+
+ return bearing;
+};
diff --git a/packages/turf-bearing/package.json b/packages/turf-bearing/package.json
new file mode 100644
index 0000000000..1f116504cc
--- /dev/null
+++ b/packages/turf-bearing/package.json
@@ -0,0 +1,30 @@
+{
+ "name": "turf-bearing",
+ "version": "3.0.1",
+ "description": "turf bearing module",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-bearing.git"
+ },
+ "keywords": [
+ "turf",
+ "bearing"
+ ],
+ "author": "jvrousseau",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-bearing/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-bearing",
+ "dependencies": {
+ "turf-invariant": "^3.0.1"
+ },
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0"
+ }
+}
diff --git a/packages/turf-bearing/test.js b/packages/turf-bearing/test.js
new file mode 100644
index 0000000000..ea42aa2db6
--- /dev/null
+++ b/packages/turf-bearing/test.js
@@ -0,0 +1,17 @@
+var test = require('tape');
+var bearing = require('./');
+
+test('bearing', function(t){
+ var pt1 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.4, 39.4]}
+ };
+ var pt2 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.534, 39.123]}
+ };
+
+ var bear = bearing(pt1, pt2);
+ t.equal(bear.toFixed(2), '-159.42', 'should return the correct bearing');
+ t.end();
+});
diff --git a/packages/turf-bezier/.npmignore b/packages/turf-bezier/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-bezier/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-bezier/README.md b/packages/turf-bezier/README.md
new file mode 100644
index 0000000000..0ab707b42b
--- /dev/null
+++ b/packages/turf-bezier/README.md
@@ -0,0 +1,75 @@
+# turf-bezier
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-bezier.png)](http://travis-ci.org/Turfjs/turf-bezier)
+
+generate a bezier curve from a linestring
+
+
+### `turf.bezier(line, [resolution=10000], [sharpness=0.85])`
+
+Takes a LineString|line and returns a curved version
+by applying a [Bezier spline](http://en.wikipedia.org/wiki/B%C3%A9zier_spline)
+algorithm.
+
+The bezier spline implementation is by [Leszek Rybicki](http://leszek.rybicki.cc/).
+
+
+### Parameters
+
+| parameter | type | description |
+| -------------------- | ----------------------- | --------------------------------------------------------------------- |
+| `line` | Feature\.\ | input LineString |
+| `[resolution=10000]` | Number | _optional:_ time in milliseconds between points |
+| `[sharpness=0.85]` | Number | _optional:_ a measure of how curvy the path should be between splines |
+
+
+### Example
+
+```js
+var line = {
+ "type": "Feature",
+ "properties": {
+ "stroke": "#f00"
+ },
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [-76.091308, 18.427501],
+ [-76.695556, 18.729501],
+ [-76.552734, 19.40443],
+ [-74.61914, 19.134789],
+ [-73.652343, 20.07657],
+ [-73.157958, 20.210656]
+ ]
+ }
+};
+
+var curved = turf.bezier(line);
+curved.properties = { stroke: '#0f0' };
+
+var result = {
+ "type": "FeatureCollection",
+ "features": [line, curved]
+};
+
+//=result
+```
+
+
+**Returns** `Feature.`, curved line
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-bezier
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-bezier/bench.js b/packages/turf-bezier/bench.js
new file mode 100644
index 0000000000..b516bd47f2
--- /dev/null
+++ b/packages/turf-bezier/bench.js
@@ -0,0 +1,18 @@
+var bezier = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var line = JSON.parse(fs.readFileSync(__dirname+'/test/bezierIn.geojson'));
+
+var suite = new Benchmark.Suite('turf-bezier');
+suite
+ .add('turf-bezier',function () {
+ bezier(line, 5000, .85);
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
diff --git a/packages/turf-bezier/index.js b/packages/turf-bezier/index.js
new file mode 100644
index 0000000000..c83bf41d1e
--- /dev/null
+++ b/packages/turf-bezier/index.js
@@ -0,0 +1,67 @@
+var linestring = require('turf-helpers').lineString;
+var Spline = require('./spline.js');
+
+/**
+ * Takes a {@link LineString|line} and returns a curved version
+ * by applying a [Bezier spline](http://en.wikipedia.org/wiki/B%C3%A9zier_spline)
+ * algorithm.
+ *
+ * The bezier spline implementation is by [Leszek Rybicki](http://leszek.rybicki.cc/).
+ *
+ * @name bezier
+ * @category transformation
+ * @param {Feature} line input LineString
+ * @param {Number} [resolution=10000] time in milliseconds between points
+ * @param {Number} [sharpness=0.85] a measure of how curvy the path should be between splines
+ * @returns {Feature} curved line
+ * @example
+ * var line = {
+ * "type": "Feature",
+ * "properties": {
+ * "stroke": "#f00"
+ * },
+ * "geometry": {
+ * "type": "LineString",
+ * "coordinates": [
+ * [-76.091308, 18.427501],
+ * [-76.695556, 18.729501],
+ * [-76.552734, 19.40443],
+ * [-74.61914, 19.134789],
+ * [-73.652343, 20.07657],
+ * [-73.157958, 20.210656]
+ * ]
+ * }
+ * };
+ *
+ * var curved = turf.bezier(line);
+ * curved.properties = { stroke: '#0f0' };
+ *
+ * var result = {
+ * "type": "FeatureCollection",
+ * "features": [line, curved]
+ * };
+ *
+ * //=result
+ */
+module.exports = function (line, resolution, sharpness) {
+ var lineOut = linestring([]);
+
+ lineOut.properties = line.properties;
+
+ var spline = new Spline({
+ points: line.geometry.coordinates.map(function (pt) {
+ return {x: pt[0], y: pt[1]};
+ }),
+ duration: resolution,
+ sharpness: sharpness
+ });
+
+ for (var i = 0; i < spline.duration; i += 10) {
+ var pos = spline.pos(i);
+ if (Math.floor(i / 100) % 2 === 0) {
+ lineOut.geometry.coordinates.push([pos.x, pos.y]);
+ }
+ }
+
+ return lineOut;
+};
diff --git a/packages/turf-bezier/package.json b/packages/turf-bezier/package.json
new file mode 100644
index 0000000000..98820fe3b2
--- /dev/null
+++ b/packages/turf-bezier/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "turf-bezier",
+ "version": "3.0.5",
+ "description": "generate a bezier curve from a linestring",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/Turfjs/turf-bezier.git"
+ },
+ "keywords": [
+ "turf",
+ "geometry",
+ "bezier",
+ "curve",
+ "linestring"
+ ],
+ "author": "Morgan Herlocker",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-bezier/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-bezier",
+ "dependencies": {
+ "turf-helpers": "^3.0.5"
+ },
+ "devDependencies": {
+ "benchmark": "1.0.0",
+ "tape": "~3.5.0"
+ }
+}
diff --git a/packages/turf-bezier/spline.js b/packages/turf-bezier/spline.js
new file mode 100644
index 0000000000..9899b5d8d2
--- /dev/null
+++ b/packages/turf-bezier/spline.js
@@ -0,0 +1,134 @@
+/* eslint-disable */
+
+ /**
+ * BezierSpline
+ * https://github.com/leszekr/bezier-spline-js
+ *
+ * @private
+ * @copyright
+ * Copyright (c) 2013 Leszek Rybicki
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in all
+ * copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ * SOFTWARE.
+ */
+var Spline = function (options) {
+ this.points = options.points || [];
+ this.duration = options.duration || 10000;
+ this.sharpness = options.sharpness || 0.85;
+ this.centers = [];
+ this.controls = [];
+ this.stepLength = options.stepLength || 60;
+ this.length = this.points.length;
+ this.delay = 0;
+ // this is to ensure compatibility with the 2d version
+ for (var i = 0; i < this.length; i++) this.points[i].z = this.points[i].z || 0;
+ for (var i = 0; i < this.length - 1; i++) {
+ var p1 = this.points[i];
+ var p2 = this.points[i + 1];
+ this.centers.push({
+ x: (p1.x + p2.x) / 2,
+ y: (p1.y + p2.y) / 2,
+ z: (p1.z + p2.z) / 2
+ });
+ }
+ this.controls.push([this.points[0], this.points[0]]);
+ for (var i = 0; i < this.centers.length - 1; i++) {
+ var p1 = this.centers[i];
+ var p2 = this.centers[i + 1];
+ var dx = this.points[i + 1].x - (this.centers[i].x + this.centers[i + 1].x) / 2;
+ var dy = this.points[i + 1].y - (this.centers[i].y + this.centers[i + 1].y) / 2;
+ var dz = this.points[i + 1].z - (this.centers[i].y + this.centers[i + 1].z) / 2;
+ this.controls.push([{
+ x: (1.0 - this.sharpness) * this.points[i + 1].x + this.sharpness * (this.centers[i].x + dx),
+ y: (1.0 - this.sharpness) * this.points[i + 1].y + this.sharpness * (this.centers[i].y + dy),
+ z: (1.0 - this.sharpness) * this.points[i + 1].z + this.sharpness * (this.centers[i].z + dz)},
+ {
+ x: (1.0 - this.sharpness) * this.points[i + 1].x + this.sharpness * (this.centers[i + 1].x + dx),
+ y: (1.0 - this.sharpness) * this.points[i + 1].y + this.sharpness * (this.centers[i + 1].y + dy),
+ z: (1.0 - this.sharpness) * this.points[i + 1].z + this.sharpness * (this.centers[i + 1].z + dz)}]);
+ }
+ this.controls.push([this.points[this.length - 1], this.points[this.length - 1]]);
+ this.steps = this.cacheSteps(this.stepLength);
+ return this;
+};
+
+ /*
+ Caches an array of equidistant (more or less) points on the curve.
+ */
+Spline.prototype.cacheSteps = function (mindist) {
+ var steps = [];
+ var laststep = this.pos(0);
+ steps.push(0);
+ for (var t = 0; t < this.duration; t += 10) {
+ var step = this.pos(t);
+ var dist = Math.sqrt((step.x - laststep.x) * (step.x - laststep.x) + (step.y - laststep.y) * (step.y - laststep.y) + (step.z - laststep.z) * (step.z - laststep.z));
+ if (dist > mindist) {
+ steps.push(t);
+ laststep = step;
+ }
+ }
+ return steps;
+};
+
+ /*
+ returns angle and speed in the given point in the curve
+ */
+Spline.prototype.vector = function (t) {
+ var p1 = this.pos(t + 10);
+ var p2 = this.pos(t - 10);
+ return {
+ angle:180 * Math.atan2(p1.y - p2.y, p1.x - p2.x) / 3.14,
+ speed:Math.sqrt((p2.x - p1.x) * (p2.x - p1.x) + (p2.y - p1.y) * (p2.y - p1.y) + (p2.z - p1.z) * (p2.z - p1.z))
+ };
+};
+
+ /*
+ Gets the position of the point, given time.
+
+ WARNING: The speed is not constant. The time it takes between control points is constant.
+
+ For constant speed, use Spline.steps[i];
+ */
+Spline.prototype.pos = function (time) {
+
+ function bezier(t, p1, c1, c2, p2) {
+ var B = function (t) {
+ var t2 = t * t, t3 = t2 * t;
+ return [(t3), (3 * t2 * (1 - t)), (3 * t * (1 - t) * (1 - t)), ((1 - t) * (1 - t) * (1 - t))];
+ };
+ var b = B(t);
+ var pos = {
+ x : p2.x * b[0] + c2.x * b[1] + c1.x * b[2] + p1.x * b[3],
+ y : p2.y * b[0] + c2.y * b[1] + c1.y * b[2] + p1.y * b[3],
+ z : p2.z * b[0] + c2.z * b[1] + c1.z * b[2] + p1.z * b[3]
+ };
+ return pos;
+ }
+ var t = time - this.delay;
+ if (t < 0) t = 0;
+ if (t > this.duration) t = this.duration - 1;
+ //t = t-this.delay;
+ var t2 = (t) / this.duration;
+ if (t2 >= 1) return this.points[this.length - 1];
+
+ var n = Math.floor((this.points.length - 1) * t2);
+ var t1 = (this.length - 1) * t2 - n;
+ return bezier(t1, this.points[n], this.controls[n][1], this.controls[n + 1][0], this.points[n + 1]);
+};
+
+module.exports = Spline;
diff --git a/packages/turf-bezier/test.js b/packages/turf-bezier/test.js
new file mode 100644
index 0000000000..d9466402a5
--- /dev/null
+++ b/packages/turf-bezier/test.js
@@ -0,0 +1,13 @@
+var bezier = require('./'),
+ test = require('tape'),
+ fs = require('fs');
+
+test('bezier', function(t) {
+ var lineIn = JSON.parse(fs.readFileSync(__dirname+'/test/bezierIn.geojson'));
+ var syncLineOut = bezier(lineIn, 5000, .85);
+ if (syncLineOut instanceof Error) throw syncLineOut;
+ t.ok(syncLineOut);
+ t.ok(syncLineOut.geometry.coordinates);
+ t.equal(syncLineOut.geometry.coordinates.length, 250);
+ t.end();
+})
diff --git a/packages/turf-bezier/test/bezierIn.geojson b/packages/turf-bezier/test/bezierIn.geojson
new file mode 100644
index 0000000000..d50a4a45da
--- /dev/null
+++ b/packages/turf-bezier/test/bezierIn.geojson
@@ -0,0 +1,61 @@
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ -80.08724212646484,
+ 32.77428536643231
+ ],
+ [
+ -80.03746032714844,
+ 32.84007757059952
+ ],
+ [
+ -80.01548767089844,
+ 32.74512501406368
+ ],
+ [
+ -79.95368957519531,
+ 32.850461360442424
+ ],
+ [
+ -79.9361801147461,
+ 32.75349876580794
+ ],
+ [
+ -79.9310302734375,
+ 32.79997320569839
+ ],
+ [
+ -79.91043090820312,
+ 32.78409957394813
+ ],
+ [
+ -79.90528106689453,
+ 32.8490192400596
+ ],
+ [
+ -79.79919433593749,
+ 32.76995522487643
+ ],
+ [
+ -79.82494354248047,
+ 32.810361684869015
+ ],
+ [
+ -79.78683471679688,
+ 32.83373132321818
+ ],
+ [
+ -79.76554870605469,
+ 32.80430188623444
+ ],
+ [
+ -79.8098373413086,
+ 32.726931048100624
+ ]
+ ]
+ }
+}
diff --git a/packages/turf-buffer/.npmignore b/packages/turf-buffer/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-buffer/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-buffer/LICENSE b/packages/turf-buffer/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-buffer/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-buffer/README.md b/packages/turf-buffer/README.md
new file mode 100644
index 0000000000..99a788ea37
--- /dev/null
+++ b/packages/turf-buffer/README.md
@@ -0,0 +1,58 @@
+# turf-buffer
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-buffer.png)](http://travis-ci.org/Turfjs/turf-buffer)
+
+turf buffer module
+
+
+### `turf.buffer(feature, distance, unit)`
+
+Calculates a buffer for input features for a given radius. Units supported are miles, kilometers, and degrees.
+
+
+### Parameters
+
+| parameter | type | description |
+| ---------- | -------------------------- | ----------------------------------------------------- |
+| `feature` | Feature\,FeatureCollection | input to be buffered |
+| `distance` | Number | distance to draw the buffer |
+| `unit` | String | 'miles', 'feet', 'kilometers', 'meters', or 'degrees' |
+
+
+### Example
+
+```js
+var pt = {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-90.548630, 14.616599]
+ }
+};
+var unit = 'miles';
+
+var buffered = turf.buffer(pt, 500, unit);
+var result = turf.featurecollection([buffered, pt]);
+
+//=result
+```
+
+
+**Returns** `FeatureCollection.,FeatureCollection.,Polygon,MultiPolygon`, buffered features
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-buffer
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-buffer/bench.js b/packages/turf-buffer/bench.js
new file mode 100644
index 0000000000..759a6cb562
--- /dev/null
+++ b/packages/turf-buffer/bench.js
@@ -0,0 +1,30 @@
+var buffer = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var pt = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/Point.geojson'));
+var line = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/LineString.geojson'));
+var polygon = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/Polygon.geojson'));
+var fc = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/FeatureCollection.geojson'));
+
+var suite = new Benchmark.Suite('turf-buffer');
+suite
+ .add('turf-buffer#Point',function () {
+ buffer(pt, 10, 'miles');
+ })
+ .add('turf-buffer#LineString',function () {
+ buffer(line, 10, 'miles');
+ })
+ .add('turf-buffer#Polygon',function () {
+ buffer(polygon, 10, 'miles');
+ })
+ .add('turf-buffer#FeatureCollection',function () {
+ buffer(fc, 10, 'miles');
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-buffer/index.js b/packages/turf-buffer/index.js
new file mode 100644
index 0000000000..4b381ec5e0
--- /dev/null
+++ b/packages/turf-buffer/index.js
@@ -0,0 +1,61 @@
+// http://stackoverflow.com/questions/839899/how-do-i-calculate-a-point-on-a-circles-circumference
+// radians = degrees * (pi/180)
+// https://github.com/bjornharrtell/jsts/blob/master/examples/buffer.html
+
+var helpers = require('turf-helpers');
+var featureCollection = helpers.featureCollection;
+var jsts = require('jsts');
+var normalize = require('geojson-normalize');
+
+/**
+ * Calculates a buffer for input features for a given radius. Units supported are miles, kilometers, and degrees.
+ *
+ * @name buffer
+ * @category transformation
+ * @param {(Feature|FeatureCollection)} feature input to be buffered
+ * @param {Number} distance distance to draw the buffer
+ * @param {String} unit any of the options supported by turf units
+ * @return {FeatureCollection|FeatureCollection|Polygon|MultiPolygon} buffered features
+ *
+ * @example
+ * var pt = {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-90.548630, 14.616599]
+ * }
+ * };
+ * var unit = 'miles';
+ *
+ * var buffered = turf.buffer(pt, 500, unit);
+ * var result = turf.featurecollection([buffered, pt]);
+ *
+ * //=result
+ */
+
+module.exports = function (feature, radius, units) {
+
+ var degrees = helpers.distanceToDegrees(radius, units);
+ var fc = normalize(feature);
+ var buffered = normalize(featureCollection(fc.features.map(function (f) {
+ return bufferOp(f, degrees);
+ })));
+
+ if (buffered.features.length > 1) return buffered;
+ else if (buffered.features.length === 1) return buffered.features[0];
+};
+
+function bufferOp(feature, radius) {
+ var reader = new jsts.io.GeoJSONReader();
+ var geom = reader.read(feature.geometry);
+ var buffered = geom.buffer(radius);
+ var writer = new jsts.io.GeoJSONWriter();
+ buffered = writer.write(buffered);
+
+ return {
+ type: 'Feature',
+ geometry: buffered,
+ properties: {}
+ };
+}
diff --git a/packages/turf-buffer/package.json b/packages/turf-buffer/package.json
new file mode 100644
index 0000000000..33c8ef8f92
--- /dev/null
+++ b/packages/turf-buffer/package.json
@@ -0,0 +1,42 @@
+{
+ "name": "turf-buffer",
+ "version": "3.0.5",
+ "description": "turf buffer module",
+ "main": "index.js",
+ "scripts": {
+ "test": "node ./test/test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-buffer.git"
+ },
+ "keywords": [
+ "buffer",
+ "offset",
+ "polygon",
+ "linestring",
+ "point",
+ "geojson",
+ "turf"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-buffer/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-buffer",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "glob": "^5.0.3",
+ "tape": "^3.5.0",
+ "turf-distance": "^3.0.5",
+ "turf-bbox": "^3.0.1",
+ "turf-helpers": "^3.0.5"
+ },
+ "dependencies": {
+ "geojson-normalize": "0.0.0",
+ "jsts": "1.1.1",
+ "turf-combine": "^3.0.5",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-buffer/test/fixtures/in/FeatureCollection.geojson b/packages/turf-buffer/test/fixtures/in/FeatureCollection.geojson
new file mode 100644
index 0000000000..966478da70
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/in/FeatureCollection.geojson
@@ -0,0 +1,141 @@
+ {
+ "type": "FeatureCollection",
+ "features": [
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.833, 39.284]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 25
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.6, 39.984]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 23
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.221, 39.125]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 29
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.358, 39.987]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 12
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.9221, 39.27]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 11
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.534, 39.123]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 49
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.21, 39.12]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 50
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.22, 39.33]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 90
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.44, 39.55]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 22
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.77, 39.66]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 99
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.44, 39.11]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 55
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.05, 39.92]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 41
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.88, 39.98]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 52
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.55, 39.55]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 143
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.33, 39.44]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 76
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.56, 39.24]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 18
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.56, 39.36]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 52
+ }
+ }
+ ]
+ }
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/in/GeometryCollection.geojson b/packages/turf-buffer/test/fixtures/in/GeometryCollection.geojson
new file mode 100644
index 0000000000..0d836e9c5f
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/in/GeometryCollection.geojson
@@ -0,0 +1,75 @@
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "GeometryCollection",
+ "geometries": [
+ {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.2578125,
+ 35.85343961959182
+ ],
+ [
+ 69.2578125,
+ 38.496593518947556
+ ],
+ [
+ 72.421875,
+ 38.496593518947556
+ ],
+ [
+ 72.421875,
+ 35.85343961959182
+ ],
+ [
+ 69.2578125,
+ 35.85343961959182
+ ]
+ ]
+ ]
+ },
+ {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 55.30517578124999,
+ 39.87601941962116
+ ],
+ [
+ 55.85449218749999,
+ 41.14556973100947
+ ],
+ [
+ 56.6015625,
+ 40.111688665595956
+ ],
+ [
+ 57.65624999999999,
+ 41.57436130598913
+ ],
+ [
+ 58.11767578124999,
+ 40.94671366508002
+ ]
+ ]
+ },
+ {
+ "type": "Point",
+ "coordinates": [
+ 62.33642578125001,
+ 29.248063243796576
+ ]
+ },
+ {
+ "type": "Point",
+ "coordinates": [
+ 58.75488281249999,
+ 32.45415593941475
+ ]
+ }
+ ]
+ }
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/in/LineString.geojson b/packages/turf-buffer/test/fixtures/in/LineString.geojson
new file mode 100644
index 0000000000..e4d310d8b5
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/in/LineString.geojson
@@ -0,0 +1,53 @@
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ -92.4884033203125,
+ 44.58655513209543
+ ],
+ [
+ -92.2906494140625,
+ 44.52392653654215
+ ],
+ [
+ -92.230224609375,
+ 44.429857265397246
+ ],
+ [
+ -92.08740234375,
+ 44.429857265397246
+ ],
+ [
+ -91.9830322265625,
+ 44.35527821160296
+ ],
+ [
+ -91.92260742187499,
+ 44.308126684886126
+ ],
+ [
+ -91.8731689453125,
+ 44.24519901522129
+ ],
+ [
+ -91.8072509765625,
+ 44.166444664458595
+ ],
+ [
+ -91.58203125,
+ 44.06390660801779
+ ],
+ [
+ -91.29638671875,
+ 43.874138181474734
+ ],
+ [
+ -91.219482421875,
+ 43.37710501700073
+ ]
+ ]
+ }
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/in/MultiLineString.geojson b/packages/turf-buffer/test/fixtures/in/MultiLineString.geojson
new file mode 100644
index 0000000000..e452aa9a10
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/in/MultiLineString.geojson
@@ -0,0 +1,41 @@
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [
+ 65.7421875,
+ 52.482780222078226
+ ],
+ [
+ 38.3203125,
+ 44.59046718130883
+ ],
+ [
+ 61.87499999999999,
+ 37.16031654673677
+ ],
+ [
+ 63.984375,
+ 21.616579336740603
+ ]
+ ],
+ [
+ [
+ 96.328125,
+ 34.59704151614417
+ ],
+ [
+ 75.234375,
+ 7.013667927566642
+ ],
+ [
+ 98.0859375,
+ 9.44906182688142
+ ]
+ ]
+ ]
+ }
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/in/MultiPoint.geojson b/packages/turf-buffer/test/fixtures/in/MultiPoint.geojson
new file mode 100644
index 0000000000..5f726a2ce6
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/in/MultiPoint.geojson
@@ -0,0 +1,21 @@
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "MultiPoint",
+ "coordinates": [
+ [
+ 84.0234375,
+ 47.040182144806664
+ ],
+ [
+ 85.2264404296875,
+ 46.464349400461124
+ ],
+ [
+ 86.396484375,
+ 47.26432008025478
+ ]
+ ]
+ }
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/in/MultiPolygon.geojson b/packages/turf-buffer/test/fixtures/in/MultiPolygon.geojson
new file mode 100644
index 0000000000..c124f2727d
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/in/MultiPolygon.geojson
@@ -0,0 +1,53 @@
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [
+ -88.692626953125,
+ 42.95039177450287
+ ],
+ [
+ -88.692626953125,
+ 43.27520565244538
+ ],
+ [
+ -88.25592041015625,
+ 43.27520565244538
+ ],
+ [
+ -88.25592041015625,
+ 42.95039177450287
+ ],
+ [
+ -88.692626953125,
+ 42.95039177450287
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -87.8521728515625,
+ 43.624147145668076
+ ],
+ [
+ -87.9949951171875,
+ 43.2872026848044
+ ],
+ [
+ -87.61322021484375,
+ 43.395069512861355
+ ],
+ [
+ -87.8521728515625,
+ 43.624147145668076
+ ]
+ ]
+ ]
+ ]
+ }
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/in/Point.geojson b/packages/turf-buffer/test/fixtures/in/Point.geojson
new file mode 100644
index 0000000000..8c290bfe3f
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/in/Point.geojson
@@ -0,0 +1,8 @@
+{
+ "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.4, 39.4]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store"
+ }
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/in/Polygon.geojson b/packages/turf-buffer/test/fixtures/in/Polygon.geojson
new file mode 100644
index 0000000000..b18701656b
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/in/Polygon.geojson
@@ -0,0 +1,43 @@
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.92141723632812,
+ 32.953944317478246
+ ],
+ [
+ -79.97428894042969,
+ 32.83690450361482
+ ],
+ [
+ -79.97360229492188,
+ 32.76071688548088
+ ],
+ [
+ -79.93034362792969,
+ 32.76475877693074
+ ],
+ [
+ -79.93789672851562,
+ 32.74108223150125
+ ],
+ [
+ -79.80537414550781,
+ 32.7231762754146
+ ],
+ [
+ -79.81773376464844,
+ 32.923402043498875
+ ],
+ [
+ -79.92141723632812,
+ 32.953944317478246
+ ]
+ ]
+ ]
+ }
+}
diff --git a/packages/turf-buffer/test/fixtures/out/FeatureCollection.geojson b/packages/turf-buffer/test/fixtures/out/FeatureCollection.geojson
new file mode 100644
index 0000000000..995d81603e
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/out/FeatureCollection.geojson
@@ -0,0 +1,2759 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.72248722855471,
+ 39.284
+ ],
+ [
+ -75.7246107004699,
+ 39.26244002783184
+ ],
+ [
+ -75.7308995123806,
+ 39.24170859330314
+ ],
+ [
+ -75.7411119887719,
+ 39.222602393816494
+ ],
+ [
+ -75.75485566990332,
+ 39.205855669903315
+ ],
+ [
+ -75.7716023938165,
+ 39.192111988771906
+ ],
+ [
+ -75.79070859330314,
+ 39.181899512380596
+ ],
+ [
+ -75.81144002783184,
+ 39.175610700469896
+ ],
+ [
+ -75.833,
+ 39.17348722855471
+ ],
+ [
+ -75.85455997216816,
+ 39.175610700469896
+ ],
+ [
+ -75.87529140669686,
+ 39.181899512380596
+ ],
+ [
+ -75.8943976061835,
+ 39.192111988771906
+ ],
+ [
+ -75.91114433009668,
+ 39.205855669903315
+ ],
+ [
+ -75.92488801122809,
+ 39.222602393816494
+ ],
+ [
+ -75.9351004876194,
+ 39.24170859330314
+ ],
+ [
+ -75.9413892995301,
+ 39.26244002783184
+ ],
+ [
+ -75.94351277144528,
+ 39.284
+ ],
+ [
+ -75.9413892995301,
+ 39.305559972168155
+ ],
+ [
+ -75.9351004876194,
+ 39.32629140669686
+ ],
+ [
+ -75.92488801122809,
+ 39.345397606183504
+ ],
+ [
+ -75.91114433009668,
+ 39.36214433009668
+ ],
+ [
+ -75.8943976061835,
+ 39.37588801122809
+ ],
+ [
+ -75.87529140669686,
+ 39.3861004876194
+ ],
+ [
+ -75.85455997216816,
+ 39.3923892995301
+ ],
+ [
+ -75.833,
+ 39.394512771445285
+ ],
+ [
+ -75.81144002783184,
+ 39.3923892995301
+ ],
+ [
+ -75.79070859330314,
+ 39.3861004876194
+ ],
+ [
+ -75.7716023938165,
+ 39.37588801122809
+ ],
+ [
+ -75.75485566990332,
+ 39.36214433009668
+ ],
+ [
+ -75.7411119887719,
+ 39.345397606183504
+ ],
+ [
+ -75.7308995123806,
+ 39.32629140669686
+ ],
+ [
+ -75.7246107004699,
+ 39.305559972168155
+ ],
+ [
+ -75.72248722855471,
+ 39.284
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.48948722855471,
+ 39.984
+ ],
+ [
+ -75.49161070046989,
+ 39.962440027831846
+ ],
+ [
+ -75.4978995123806,
+ 39.94170859330314
+ ],
+ [
+ -75.5081119887719,
+ 39.9226023938165
+ ],
+ [
+ -75.52185566990332,
+ 39.90585566990332
+ ],
+ [
+ -75.53860239381649,
+ 39.89211198877191
+ ],
+ [
+ -75.55770859330313,
+ 39.8818995123806
+ ],
+ [
+ -75.57844002783183,
+ 39.8756107004699
+ ],
+ [
+ -75.6,
+ 39.873487228554716
+ ],
+ [
+ -75.62155997216816,
+ 39.8756107004699
+ ],
+ [
+ -75.64229140669686,
+ 39.8818995123806
+ ],
+ [
+ -75.6613976061835,
+ 39.89211198877191
+ ],
+ [
+ -75.67814433009667,
+ 39.90585566990332
+ ],
+ [
+ -75.69188801122809,
+ 39.9226023938165
+ ],
+ [
+ -75.70210048761939,
+ 39.94170859330314
+ ],
+ [
+ -75.7083892995301,
+ 39.962440027831846
+ ],
+ [
+ -75.71051277144528,
+ 39.984
+ ],
+ [
+ -75.7083892995301,
+ 40.00555997216816
+ ],
+ [
+ -75.70210048761939,
+ 40.02629140669686
+ ],
+ [
+ -75.69188801122809,
+ 40.045397606183506
+ ],
+ [
+ -75.67814433009667,
+ 40.062144330096686
+ ],
+ [
+ -75.6613976061835,
+ 40.075888011228095
+ ],
+ [
+ -75.64229140669686,
+ 40.086100487619404
+ ],
+ [
+ -75.62155997216816,
+ 40.092389299530105
+ ],
+ [
+ -75.6,
+ 40.09451277144529
+ ],
+ [
+ -75.57844002783183,
+ 40.092389299530105
+ ],
+ [
+ -75.55770859330313,
+ 40.086100487619404
+ ],
+ [
+ -75.53860239381649,
+ 40.075888011228095
+ ],
+ [
+ -75.52185566990332,
+ 40.062144330096686
+ ],
+ [
+ -75.5081119887719,
+ 40.045397606183506
+ ],
+ [
+ -75.4978995123806,
+ 40.02629140669686
+ ],
+ [
+ -75.49161070046989,
+ 40.00555997216816
+ ],
+ [
+ -75.48948722855471,
+ 39.984
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.11048722855472,
+ 39.125
+ ],
+ [
+ -75.1126107004699,
+ 39.103440027831844
+ ],
+ [
+ -75.11889951238061,
+ 39.08270859330314
+ ],
+ [
+ -75.12911198877191,
+ 39.063602393816495
+ ],
+ [
+ -75.14285566990333,
+ 39.046855669903316
+ ],
+ [
+ -75.1596023938165,
+ 39.03311198877191
+ ],
+ [
+ -75.17870859330314,
+ 39.0228995123806
+ ],
+ [
+ -75.19944002783184,
+ 39.0166107004699
+ ],
+ [
+ -75.221,
+ 39.014487228554714
+ ],
+ [
+ -75.24255997216817,
+ 39.0166107004699
+ ],
+ [
+ -75.26329140669687,
+ 39.0228995123806
+ ],
+ [
+ -75.28239760618351,
+ 39.03311198877191
+ ],
+ [
+ -75.29914433009668,
+ 39.046855669903316
+ ],
+ [
+ -75.3128880112281,
+ 39.063602393816495
+ ],
+ [
+ -75.3231004876194,
+ 39.08270859330314
+ ],
+ [
+ -75.3293892995301,
+ 39.103440027831844
+ ],
+ [
+ -75.33151277144529,
+ 39.125
+ ],
+ [
+ -75.3293892995301,
+ 39.146559972168156
+ ],
+ [
+ -75.3231004876194,
+ 39.16729140669686
+ ],
+ [
+ -75.3128880112281,
+ 39.186397606183505
+ ],
+ [
+ -75.29914433009668,
+ 39.203144330096684
+ ],
+ [
+ -75.28239760618351,
+ 39.21688801122809
+ ],
+ [
+ -75.26329140669687,
+ 39.2271004876194
+ ],
+ [
+ -75.24255997216817,
+ 39.2333892995301
+ ],
+ [
+ -75.221,
+ 39.235512771445286
+ ],
+ [
+ -75.19944002783184,
+ 39.2333892995301
+ ],
+ [
+ -75.17870859330314,
+ 39.2271004876194
+ ],
+ [
+ -75.1596023938165,
+ 39.21688801122809
+ ],
+ [
+ -75.14285566990333,
+ 39.203144330096684
+ ],
+ [
+ -75.12911198877191,
+ 39.186397606183505
+ ],
+ [
+ -75.11889951238061,
+ 39.16729140669686
+ ],
+ [
+ -75.1126107004699,
+ 39.146559972168156
+ ],
+ [
+ -75.11048722855472,
+ 39.125
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.24748722855472,
+ 39.987
+ ],
+ [
+ -75.2496107004699,
+ 39.965440027831846
+ ],
+ [
+ -75.25589951238061,
+ 39.94470859330314
+ ],
+ [
+ -75.26611198877191,
+ 39.9256023938165
+ ],
+ [
+ -75.27985566990333,
+ 39.90885566990332
+ ],
+ [
+ -75.2966023938165,
+ 39.89511198877191
+ ],
+ [
+ -75.31570859330314,
+ 39.8848995123806
+ ],
+ [
+ -75.33644002783184,
+ 39.8786107004699
+ ],
+ [
+ -75.358,
+ 39.876487228554716
+ ],
+ [
+ -75.37955997216817,
+ 39.8786107004699
+ ],
+ [
+ -75.40029140669687,
+ 39.8848995123806
+ ],
+ [
+ -75.41939760618351,
+ 39.89511198877191
+ ],
+ [
+ -75.43614433009668,
+ 39.90885566990332
+ ],
+ [
+ -75.4498880112281,
+ 39.9256023938165
+ ],
+ [
+ -75.4601004876194,
+ 39.94470859330314
+ ],
+ [
+ -75.4663892995301,
+ 39.965440027831846
+ ],
+ [
+ -75.46851277144529,
+ 39.987
+ ],
+ [
+ -75.4663892995301,
+ 40.00855997216816
+ ],
+ [
+ -75.4601004876194,
+ 40.02929140669686
+ ],
+ [
+ -75.4498880112281,
+ 40.04839760618351
+ ],
+ [
+ -75.43614433009668,
+ 40.065144330096686
+ ],
+ [
+ -75.41939760618351,
+ 40.078888011228095
+ ],
+ [
+ -75.40029140669687,
+ 40.089100487619405
+ ],
+ [
+ -75.37955997216817,
+ 40.095389299530105
+ ],
+ [
+ -75.358,
+ 40.09751277144529
+ ],
+ [
+ -75.33644002783184,
+ 40.095389299530105
+ ],
+ [
+ -75.31570859330314,
+ 40.089100487619405
+ ],
+ [
+ -75.2966023938165,
+ 40.078888011228095
+ ],
+ [
+ -75.27985566990333,
+ 40.065144330096686
+ ],
+ [
+ -75.26611198877191,
+ 40.04839760618351
+ ],
+ [
+ -75.25589951238061,
+ 40.02929140669686
+ ],
+ [
+ -75.2496107004699,
+ 40.00855997216816
+ ],
+ [
+ -75.24748722855472,
+ 39.987
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.81158722855471,
+ 39.27
+ ],
+ [
+ -75.8137107004699,
+ 39.24844002783185
+ ],
+ [
+ -75.8199995123806,
+ 39.22770859330314
+ ],
+ [
+ -75.83021198877191,
+ 39.2086023938165
+ ],
+ [
+ -75.84395566990332,
+ 39.19185566990332
+ ],
+ [
+ -75.8607023938165,
+ 39.17811198877191
+ ],
+ [
+ -75.87980859330314,
+ 39.1678995123806
+ ],
+ [
+ -75.90054002783184,
+ 39.1616107004699
+ ],
+ [
+ -75.9221,
+ 39.15948722855472
+ ],
+ [
+ -75.94365997216816,
+ 39.1616107004699
+ ],
+ [
+ -75.96439140669686,
+ 39.1678995123806
+ ],
+ [
+ -75.9834976061835,
+ 39.17811198877191
+ ],
+ [
+ -76.00024433009668,
+ 39.19185566990332
+ ],
+ [
+ -76.0139880112281,
+ 39.2086023938165
+ ],
+ [
+ -76.0242004876194,
+ 39.22770859330314
+ ],
+ [
+ -76.0304892995301,
+ 39.24844002783185
+ ],
+ [
+ -76.03261277144529,
+ 39.27
+ ],
+ [
+ -76.0304892995301,
+ 39.29155997216816
+ ],
+ [
+ -76.0242004876194,
+ 39.312291406696865
+ ],
+ [
+ -76.0139880112281,
+ 39.33139760618351
+ ],
+ [
+ -76.00024433009668,
+ 39.34814433009669
+ ],
+ [
+ -75.9834976061835,
+ 39.361888011228096
+ ],
+ [
+ -75.96439140669686,
+ 39.372100487619406
+ ],
+ [
+ -75.94365997216816,
+ 39.378389299530106
+ ],
+ [
+ -75.9221,
+ 39.38051277144529
+ ],
+ [
+ -75.90054002783184,
+ 39.378389299530106
+ ],
+ [
+ -75.87980859330314,
+ 39.372100487619406
+ ],
+ [
+ -75.8607023938165,
+ 39.361888011228096
+ ],
+ [
+ -75.84395566990332,
+ 39.34814433009669
+ ],
+ [
+ -75.83021198877191,
+ 39.33139760618351
+ ],
+ [
+ -75.8199995123806,
+ 39.312291406696865
+ ],
+ [
+ -75.8137107004699,
+ 39.29155997216816
+ ],
+ [
+ -75.81158722855471,
+ 39.27
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.42348722855472,
+ 39.123
+ ],
+ [
+ -75.4256107004699,
+ 39.10144002783184
+ ],
+ [
+ -75.43189951238061,
+ 39.080708593303136
+ ],
+ [
+ -75.44211198877191,
+ 39.06160239381649
+ ],
+ [
+ -75.45585566990333,
+ 39.04485566990331
+ ],
+ [
+ -75.4726023938165,
+ 39.031111988771904
+ ],
+ [
+ -75.49170859330314,
+ 39.020899512380595
+ ],
+ [
+ -75.51244002783184,
+ 39.014610700469895
+ ],
+ [
+ -75.534,
+ 39.01248722855471
+ ],
+ [
+ -75.55555997216817,
+ 39.014610700469895
+ ],
+ [
+ -75.57629140669687,
+ 39.020899512380595
+ ],
+ [
+ -75.59539760618351,
+ 39.031111988771904
+ ],
+ [
+ -75.61214433009668,
+ 39.04485566990331
+ ],
+ [
+ -75.6258880112281,
+ 39.06160239381649
+ ],
+ [
+ -75.6361004876194,
+ 39.080708593303136
+ ],
+ [
+ -75.64238929953011,
+ 39.10144002783184
+ ],
+ [
+ -75.64451277144529,
+ 39.123
+ ],
+ [
+ -75.64238929953011,
+ 39.14455997216815
+ ],
+ [
+ -75.6361004876194,
+ 39.16529140669686
+ ],
+ [
+ -75.6258880112281,
+ 39.1843976061835
+ ],
+ [
+ -75.61214433009668,
+ 39.20114433009668
+ ],
+ [
+ -75.59539760618351,
+ 39.21488801122809
+ ],
+ [
+ -75.57629140669687,
+ 39.2251004876194
+ ],
+ [
+ -75.55555997216817,
+ 39.2313892995301
+ ],
+ [
+ -75.534,
+ 39.233512771445284
+ ],
+ [
+ -75.51244002783184,
+ 39.2313892995301
+ ],
+ [
+ -75.49170859330314,
+ 39.2251004876194
+ ],
+ [
+ -75.4726023938165,
+ 39.21488801122809
+ ],
+ [
+ -75.45585566990333,
+ 39.20114433009668
+ ],
+ [
+ -75.44211198877191,
+ 39.1843976061835
+ ],
+ [
+ -75.43189951238061,
+ 39.16529140669686
+ ],
+ [
+ -75.4256107004699,
+ 39.14455997216815
+ ],
+ [
+ -75.42348722855472,
+ 39.123
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.09948722855471,
+ 39.12
+ ],
+ [
+ -75.10161070046989,
+ 39.09844002783184
+ ],
+ [
+ -75.1078995123806,
+ 39.077708593303136
+ ],
+ [
+ -75.1181119887719,
+ 39.05860239381649
+ ],
+ [
+ -75.13185566990332,
+ 39.04185566990331
+ ],
+ [
+ -75.14860239381649,
+ 39.028111988771904
+ ],
+ [
+ -75.16770859330313,
+ 39.017899512380595
+ ],
+ [
+ -75.18844002783183,
+ 39.011610700469895
+ ],
+ [
+ -75.21,
+ 39.00948722855471
+ ],
+ [
+ -75.23155997216816,
+ 39.011610700469895
+ ],
+ [
+ -75.25229140669686,
+ 39.017899512380595
+ ],
+ [
+ -75.2713976061835,
+ 39.028111988771904
+ ],
+ [
+ -75.28814433009667,
+ 39.04185566990331
+ ],
+ [
+ -75.30188801122809,
+ 39.05860239381649
+ ],
+ [
+ -75.31210048761939,
+ 39.077708593303136
+ ],
+ [
+ -75.3183892995301,
+ 39.09844002783184
+ ],
+ [
+ -75.32051277144528,
+ 39.12
+ ],
+ [
+ -75.3183892995301,
+ 39.14155997216815
+ ],
+ [
+ -75.31210048761939,
+ 39.16229140669686
+ ],
+ [
+ -75.30188801122809,
+ 39.1813976061835
+ ],
+ [
+ -75.28814433009667,
+ 39.19814433009668
+ ],
+ [
+ -75.2713976061835,
+ 39.21188801122809
+ ],
+ [
+ -75.25229140669686,
+ 39.2221004876194
+ ],
+ [
+ -75.23155997216816,
+ 39.2283892995301
+ ],
+ [
+ -75.21,
+ 39.230512771445284
+ ],
+ [
+ -75.18844002783183,
+ 39.2283892995301
+ ],
+ [
+ -75.16770859330313,
+ 39.2221004876194
+ ],
+ [
+ -75.14860239381649,
+ 39.21188801122809
+ ],
+ [
+ -75.13185566990332,
+ 39.19814433009668
+ ],
+ [
+ -75.1181119887719,
+ 39.1813976061835
+ ],
+ [
+ -75.1078995123806,
+ 39.16229140669686
+ ],
+ [
+ -75.10161070046989,
+ 39.14155997216815
+ ],
+ [
+ -75.09948722855471,
+ 39.12
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.10948722855471,
+ 39.33
+ ],
+ [
+ -75.1116107004699,
+ 39.30844002783184
+ ],
+ [
+ -75.1178995123806,
+ 39.28770859330314
+ ],
+ [
+ -75.1281119887719,
+ 39.268602393816494
+ ],
+ [
+ -75.14185566990332,
+ 39.251855669903314
+ ],
+ [
+ -75.1586023938165,
+ 39.238111988771905
+ ],
+ [
+ -75.17770859330314,
+ 39.227899512380596
+ ],
+ [
+ -75.19844002783184,
+ 39.221610700469896
+ ],
+ [
+ -75.22,
+ 39.21948722855471
+ ],
+ [
+ -75.24155997216816,
+ 39.221610700469896
+ ],
+ [
+ -75.26229140669686,
+ 39.227899512380596
+ ],
+ [
+ -75.2813976061835,
+ 39.238111988771905
+ ],
+ [
+ -75.29814433009668,
+ 39.251855669903314
+ ],
+ [
+ -75.31188801122809,
+ 39.268602393816494
+ ],
+ [
+ -75.3221004876194,
+ 39.28770859330314
+ ],
+ [
+ -75.3283892995301,
+ 39.30844002783184
+ ],
+ [
+ -75.33051277144529,
+ 39.33
+ ],
+ [
+ -75.3283892995301,
+ 39.351559972168154
+ ],
+ [
+ -75.3221004876194,
+ 39.37229140669686
+ ],
+ [
+ -75.31188801122809,
+ 39.3913976061835
+ ],
+ [
+ -75.29814433009668,
+ 39.40814433009668
+ ],
+ [
+ -75.2813976061835,
+ 39.42188801122809
+ ],
+ [
+ -75.26229140669686,
+ 39.4321004876194
+ ],
+ [
+ -75.24155997216816,
+ 39.4383892995301
+ ],
+ [
+ -75.22,
+ 39.440512771445285
+ ],
+ [
+ -75.19844002783184,
+ 39.4383892995301
+ ],
+ [
+ -75.17770859330314,
+ 39.4321004876194
+ ],
+ [
+ -75.1586023938165,
+ 39.42188801122809
+ ],
+ [
+ -75.14185566990332,
+ 39.40814433009668
+ ],
+ [
+ -75.1281119887719,
+ 39.3913976061835
+ ],
+ [
+ -75.1178995123806,
+ 39.37229140669686
+ ],
+ [
+ -75.1116107004699,
+ 39.351559972168154
+ ],
+ [
+ -75.10948722855471,
+ 39.33
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.32948722855471,
+ 39.55
+ ],
+ [
+ -75.3316107004699,
+ 39.52844002783184
+ ],
+ [
+ -75.3378995123806,
+ 39.507708593303136
+ ],
+ [
+ -75.3481119887719,
+ 39.48860239381649
+ ],
+ [
+ -75.36185566990332,
+ 39.47185566990331
+ ],
+ [
+ -75.3786023938165,
+ 39.458111988771904
+ ],
+ [
+ -75.39770859330314,
+ 39.447899512380594
+ ],
+ [
+ -75.41844002783183,
+ 39.441610700469894
+ ],
+ [
+ -75.44,
+ 39.43948722855471
+ ],
+ [
+ -75.46155997216816,
+ 39.441610700469894
+ ],
+ [
+ -75.48229140669686,
+ 39.447899512380594
+ ],
+ [
+ -75.5013976061835,
+ 39.458111988771904
+ ],
+ [
+ -75.51814433009667,
+ 39.47185566990331
+ ],
+ [
+ -75.53188801122809,
+ 39.48860239381649
+ ],
+ [
+ -75.5421004876194,
+ 39.507708593303136
+ ],
+ [
+ -75.5483892995301,
+ 39.52844002783184
+ ],
+ [
+ -75.55051277144528,
+ 39.55
+ ],
+ [
+ -75.5483892995301,
+ 39.57155997216815
+ ],
+ [
+ -75.5421004876194,
+ 39.59229140669686
+ ],
+ [
+ -75.53188801122809,
+ 39.6113976061835
+ ],
+ [
+ -75.51814433009667,
+ 39.62814433009668
+ ],
+ [
+ -75.5013976061835,
+ 39.64188801122809
+ ],
+ [
+ -75.48229140669686,
+ 39.6521004876194
+ ],
+ [
+ -75.46155997216816,
+ 39.6583892995301
+ ],
+ [
+ -75.44,
+ 39.66051277144528
+ ],
+ [
+ -75.41844002783183,
+ 39.6583892995301
+ ],
+ [
+ -75.39770859330314,
+ 39.6521004876194
+ ],
+ [
+ -75.3786023938165,
+ 39.64188801122809
+ ],
+ [
+ -75.36185566990332,
+ 39.62814433009668
+ ],
+ [
+ -75.3481119887719,
+ 39.6113976061835
+ ],
+ [
+ -75.3378995123806,
+ 39.59229140669686
+ ],
+ [
+ -75.3316107004699,
+ 39.57155997216815
+ ],
+ [
+ -75.32948722855471,
+ 39.55
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.65948722855471,
+ 39.66
+ ],
+ [
+ -75.6616107004699,
+ 39.63844002783184
+ ],
+ [
+ -75.6678995123806,
+ 39.617708593303135
+ ],
+ [
+ -75.6781119887719,
+ 39.59860239381649
+ ],
+ [
+ -75.69185566990332,
+ 39.58185566990331
+ ],
+ [
+ -75.70860239381649,
+ 39.5681119887719
+ ],
+ [
+ -75.72770859330313,
+ 39.557899512380594
+ ],
+ [
+ -75.74844002783183,
+ 39.551610700469894
+ ],
+ [
+ -75.77,
+ 39.54948722855471
+ ],
+ [
+ -75.79155997216816,
+ 39.551610700469894
+ ],
+ [
+ -75.81229140669686,
+ 39.557899512380594
+ ],
+ [
+ -75.8313976061835,
+ 39.5681119887719
+ ],
+ [
+ -75.84814433009667,
+ 39.58185566990331
+ ],
+ [
+ -75.86188801122809,
+ 39.59860239381649
+ ],
+ [
+ -75.87210048761939,
+ 39.617708593303135
+ ],
+ [
+ -75.8783892995301,
+ 39.63844002783184
+ ],
+ [
+ -75.88051277144528,
+ 39.66
+ ],
+ [
+ -75.8783892995301,
+ 39.68155997216815
+ ],
+ [
+ -75.87210048761939,
+ 39.70229140669686
+ ],
+ [
+ -75.86188801122809,
+ 39.7213976061835
+ ],
+ [
+ -75.84814433009667,
+ 39.73814433009668
+ ],
+ [
+ -75.8313976061835,
+ 39.75188801122809
+ ],
+ [
+ -75.81229140669686,
+ 39.7621004876194
+ ],
+ [
+ -75.79155997216816,
+ 39.7683892995301
+ ],
+ [
+ -75.77,
+ 39.77051277144528
+ ],
+ [
+ -75.74844002783183,
+ 39.7683892995301
+ ],
+ [
+ -75.72770859330313,
+ 39.7621004876194
+ ],
+ [
+ -75.70860239381649,
+ 39.75188801122809
+ ],
+ [
+ -75.69185566990332,
+ 39.73814433009668
+ ],
+ [
+ -75.6781119887719,
+ 39.7213976061835
+ ],
+ [
+ -75.6678995123806,
+ 39.70229140669686
+ ],
+ [
+ -75.6616107004699,
+ 39.68155997216815
+ ],
+ [
+ -75.65948722855471,
+ 39.66
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.32948722855471,
+ 39.11
+ ],
+ [
+ -75.3316107004699,
+ 39.088440027831844
+ ],
+ [
+ -75.3378995123806,
+ 39.06770859330314
+ ],
+ [
+ -75.3481119887719,
+ 39.048602393816495
+ ],
+ [
+ -75.36185566990332,
+ 39.031855669903315
+ ],
+ [
+ -75.3786023938165,
+ 39.018111988771906
+ ],
+ [
+ -75.39770859330314,
+ 39.0078995123806
+ ],
+ [
+ -75.41844002783183,
+ 39.0016107004699
+ ],
+ [
+ -75.44,
+ 38.99948722855471
+ ],
+ [
+ -75.46155997216816,
+ 39.0016107004699
+ ],
+ [
+ -75.48229140669686,
+ 39.0078995123806
+ ],
+ [
+ -75.5013976061835,
+ 39.018111988771906
+ ],
+ [
+ -75.51814433009667,
+ 39.031855669903315
+ ],
+ [
+ -75.53188801122809,
+ 39.048602393816495
+ ],
+ [
+ -75.5421004876194,
+ 39.06770859330314
+ ],
+ [
+ -75.5483892995301,
+ 39.088440027831844
+ ],
+ [
+ -75.55051277144528,
+ 39.11
+ ],
+ [
+ -75.5483892995301,
+ 39.131559972168155
+ ],
+ [
+ -75.5421004876194,
+ 39.15229140669686
+ ],
+ [
+ -75.53188801122809,
+ 39.171397606183504
+ ],
+ [
+ -75.51814433009667,
+ 39.188144330096684
+ ],
+ [
+ -75.5013976061835,
+ 39.20188801122809
+ ],
+ [
+ -75.48229140669686,
+ 39.2121004876194
+ ],
+ [
+ -75.46155997216816,
+ 39.2183892995301
+ ],
+ [
+ -75.44,
+ 39.220512771445286
+ ],
+ [
+ -75.41844002783183,
+ 39.2183892995301
+ ],
+ [
+ -75.39770859330314,
+ 39.2121004876194
+ ],
+ [
+ -75.3786023938165,
+ 39.20188801122809
+ ],
+ [
+ -75.36185566990332,
+ 39.188144330096684
+ ],
+ [
+ -75.3481119887719,
+ 39.171397606183504
+ ],
+ [
+ -75.3378995123806,
+ 39.15229140669686
+ ],
+ [
+ -75.3316107004699,
+ 39.131559972168155
+ ],
+ [
+ -75.32948722855471,
+ 39.11
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -74.93948722855471,
+ 39.92
+ ],
+ [
+ -74.9416107004699,
+ 39.898440027831846
+ ],
+ [
+ -74.9478995123806,
+ 39.87770859330314
+ ],
+ [
+ -74.9581119887719,
+ 39.8586023938165
+ ],
+ [
+ -74.97185566990332,
+ 39.84185566990332
+ ],
+ [
+ -74.98860239381649,
+ 39.82811198877191
+ ],
+ [
+ -75.00770859330314,
+ 39.8178995123806
+ ],
+ [
+ -75.02844002783183,
+ 39.8116107004699
+ ],
+ [
+ -75.05,
+ 39.809487228554715
+ ],
+ [
+ -75.07155997216816,
+ 39.8116107004699
+ ],
+ [
+ -75.09229140669686,
+ 39.8178995123806
+ ],
+ [
+ -75.1113976061835,
+ 39.82811198877191
+ ],
+ [
+ -75.12814433009667,
+ 39.84185566990332
+ ],
+ [
+ -75.14188801122809,
+ 39.8586023938165
+ ],
+ [
+ -75.15210048761939,
+ 39.87770859330314
+ ],
+ [
+ -75.1583892995301,
+ 39.898440027831846
+ ],
+ [
+ -75.16051277144528,
+ 39.92
+ ],
+ [
+ -75.1583892995301,
+ 39.94155997216816
+ ],
+ [
+ -75.15210048761939,
+ 39.96229140669686
+ ],
+ [
+ -75.14188801122809,
+ 39.981397606183506
+ ],
+ [
+ -75.12814433009667,
+ 39.998144330096686
+ ],
+ [
+ -75.1113976061835,
+ 40.011888011228095
+ ],
+ [
+ -75.09229140669686,
+ 40.022100487619404
+ ],
+ [
+ -75.07155997216816,
+ 40.028389299530104
+ ],
+ [
+ -75.05,
+ 40.03051277144529
+ ],
+ [
+ -75.02844002783183,
+ 40.028389299530104
+ ],
+ [
+ -75.00770859330314,
+ 40.022100487619404
+ ],
+ [
+ -74.98860239381649,
+ 40.011888011228095
+ ],
+ [
+ -74.97185566990332,
+ 39.998144330096686
+ ],
+ [
+ -74.9581119887719,
+ 39.981397606183506
+ ],
+ [
+ -74.9478995123806,
+ 39.96229140669686
+ ],
+ [
+ -74.9416107004699,
+ 39.94155997216816
+ ],
+ [
+ -74.93948722855471,
+ 39.92
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.76948722855471,
+ 39.98
+ ],
+ [
+ -75.77161070046989,
+ 39.95844002783184
+ ],
+ [
+ -75.7778995123806,
+ 39.937708593303135
+ ],
+ [
+ -75.7881119887719,
+ 39.91860239381649
+ ],
+ [
+ -75.80185566990332,
+ 39.90185566990331
+ ],
+ [
+ -75.81860239381649,
+ 39.888111988771904
+ ],
+ [
+ -75.83770859330313,
+ 39.877899512380594
+ ],
+ [
+ -75.85844002783183,
+ 39.871610700469894
+ ],
+ [
+ -75.88,
+ 39.86948722855471
+ ],
+ [
+ -75.90155997216816,
+ 39.871610700469894
+ ],
+ [
+ -75.92229140669686,
+ 39.877899512380594
+ ],
+ [
+ -75.9413976061835,
+ 39.888111988771904
+ ],
+ [
+ -75.95814433009667,
+ 39.90185566990331
+ ],
+ [
+ -75.97188801122809,
+ 39.91860239381649
+ ],
+ [
+ -75.98210048761939,
+ 39.937708593303135
+ ],
+ [
+ -75.9883892995301,
+ 39.95844002783184
+ ],
+ [
+ -75.99051277144528,
+ 39.98
+ ],
+ [
+ -75.9883892995301,
+ 40.00155997216815
+ ],
+ [
+ -75.98210048761939,
+ 40.02229140669686
+ ],
+ [
+ -75.97188801122809,
+ 40.0413976061835
+ ],
+ [
+ -75.95814433009667,
+ 40.05814433009668
+ ],
+ [
+ -75.9413976061835,
+ 40.07188801122809
+ ],
+ [
+ -75.92229140669686,
+ 40.0821004876194
+ ],
+ [
+ -75.90155997216816,
+ 40.0883892995301
+ ],
+ [
+ -75.88,
+ 40.09051277144528
+ ],
+ [
+ -75.85844002783183,
+ 40.0883892995301
+ ],
+ [
+ -75.83770859330313,
+ 40.0821004876194
+ ],
+ [
+ -75.81860239381649,
+ 40.07188801122809
+ ],
+ [
+ -75.80185566990332,
+ 40.05814433009668
+ ],
+ [
+ -75.7881119887719,
+ 40.0413976061835
+ ],
+ [
+ -75.7778995123806,
+ 40.02229140669686
+ ],
+ [
+ -75.77161070046989,
+ 40.00155997216815
+ ],
+ [
+ -75.76948722855471,
+ 39.98
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.43948722855471,
+ 39.55
+ ],
+ [
+ -75.4416107004699,
+ 39.52844002783184
+ ],
+ [
+ -75.4478995123806,
+ 39.507708593303136
+ ],
+ [
+ -75.4581119887719,
+ 39.48860239381649
+ ],
+ [
+ -75.47185566990332,
+ 39.47185566990331
+ ],
+ [
+ -75.48860239381649,
+ 39.458111988771904
+ ],
+ [
+ -75.50770859330314,
+ 39.447899512380594
+ ],
+ [
+ -75.52844002783183,
+ 39.441610700469894
+ ],
+ [
+ -75.55,
+ 39.43948722855471
+ ],
+ [
+ -75.57155997216816,
+ 39.441610700469894
+ ],
+ [
+ -75.59229140669686,
+ 39.447899512380594
+ ],
+ [
+ -75.6113976061835,
+ 39.458111988771904
+ ],
+ [
+ -75.62814433009667,
+ 39.47185566990331
+ ],
+ [
+ -75.64188801122809,
+ 39.48860239381649
+ ],
+ [
+ -75.65210048761939,
+ 39.507708593303136
+ ],
+ [
+ -75.6583892995301,
+ 39.52844002783184
+ ],
+ [
+ -75.66051277144528,
+ 39.55
+ ],
+ [
+ -75.6583892995301,
+ 39.57155997216815
+ ],
+ [
+ -75.65210048761939,
+ 39.59229140669686
+ ],
+ [
+ -75.64188801122809,
+ 39.6113976061835
+ ],
+ [
+ -75.62814433009667,
+ 39.62814433009668
+ ],
+ [
+ -75.6113976061835,
+ 39.64188801122809
+ ],
+ [
+ -75.59229140669686,
+ 39.6521004876194
+ ],
+ [
+ -75.57155997216816,
+ 39.6583892995301
+ ],
+ [
+ -75.55,
+ 39.66051277144528
+ ],
+ [
+ -75.52844002783183,
+ 39.6583892995301
+ ],
+ [
+ -75.50770859330314,
+ 39.6521004876194
+ ],
+ [
+ -75.48860239381649,
+ 39.64188801122809
+ ],
+ [
+ -75.47185566990332,
+ 39.62814433009668
+ ],
+ [
+ -75.4581119887719,
+ 39.6113976061835
+ ],
+ [
+ -75.4478995123806,
+ 39.59229140669686
+ ],
+ [
+ -75.4416107004699,
+ 39.57155997216815
+ ],
+ [
+ -75.43948722855471,
+ 39.55
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.21948722855471,
+ 39.44
+ ],
+ [
+ -75.2216107004699,
+ 39.41844002783184
+ ],
+ [
+ -75.2278995123806,
+ 39.397708593303136
+ ],
+ [
+ -75.2381119887719,
+ 39.37860239381649
+ ],
+ [
+ -75.25185566990332,
+ 39.36185566990331
+ ],
+ [
+ -75.2686023938165,
+ 39.348111988771905
+ ],
+ [
+ -75.28770859330314,
+ 39.337899512380595
+ ],
+ [
+ -75.30844002783184,
+ 39.331610700469895
+ ],
+ [
+ -75.33,
+ 39.32948722855471
+ ],
+ [
+ -75.35155997216816,
+ 39.331610700469895
+ ],
+ [
+ -75.37229140669686,
+ 39.337899512380595
+ ],
+ [
+ -75.3913976061835,
+ 39.348111988771905
+ ],
+ [
+ -75.40814433009668,
+ 39.36185566990331
+ ],
+ [
+ -75.42188801122809,
+ 39.37860239381649
+ ],
+ [
+ -75.4321004876194,
+ 39.397708593303136
+ ],
+ [
+ -75.4383892995301,
+ 39.41844002783184
+ ],
+ [
+ -75.44051277144528,
+ 39.44
+ ],
+ [
+ -75.4383892995301,
+ 39.46155997216815
+ ],
+ [
+ -75.4321004876194,
+ 39.48229140669686
+ ],
+ [
+ -75.42188801122809,
+ 39.5013976061835
+ ],
+ [
+ -75.40814433009668,
+ 39.51814433009668
+ ],
+ [
+ -75.3913976061835,
+ 39.53188801122809
+ ],
+ [
+ -75.37229140669686,
+ 39.5421004876194
+ ],
+ [
+ -75.35155997216816,
+ 39.5483892995301
+ ],
+ [
+ -75.33,
+ 39.550512771445284
+ ],
+ [
+ -75.30844002783184,
+ 39.5483892995301
+ ],
+ [
+ -75.28770859330314,
+ 39.5421004876194
+ ],
+ [
+ -75.2686023938165,
+ 39.53188801122809
+ ],
+ [
+ -75.25185566990332,
+ 39.51814433009668
+ ],
+ [
+ -75.2381119887719,
+ 39.5013976061835
+ ],
+ [
+ -75.2278995123806,
+ 39.48229140669686
+ ],
+ [
+ -75.2216107004699,
+ 39.46155997216815
+ ],
+ [
+ -75.21948722855471,
+ 39.44
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.44948722855472,
+ 39.24
+ ],
+ [
+ -75.4516107004699,
+ 39.218440027831846
+ ],
+ [
+ -75.4578995123806,
+ 39.19770859330314
+ ],
+ [
+ -75.46811198877191,
+ 39.1786023938165
+ ],
+ [
+ -75.48185566990333,
+ 39.16185566990332
+ ],
+ [
+ -75.4986023938165,
+ 39.14811198877191
+ ],
+ [
+ -75.51770859330314,
+ 39.1378995123806
+ ],
+ [
+ -75.53844002783184,
+ 39.1316107004699
+ ],
+ [
+ -75.56,
+ 39.129487228554716
+ ],
+ [
+ -75.58155997216817,
+ 39.1316107004699
+ ],
+ [
+ -75.60229140669686,
+ 39.1378995123806
+ ],
+ [
+ -75.6213976061835,
+ 39.14811198877191
+ ],
+ [
+ -75.63814433009668,
+ 39.16185566990332
+ ],
+ [
+ -75.6518880112281,
+ 39.1786023938165
+ ],
+ [
+ -75.6621004876194,
+ 39.19770859330314
+ ],
+ [
+ -75.6683892995301,
+ 39.218440027831846
+ ],
+ [
+ -75.67051277144529,
+ 39.24
+ ],
+ [
+ -75.6683892995301,
+ 39.26155997216816
+ ],
+ [
+ -75.6621004876194,
+ 39.282291406696864
+ ],
+ [
+ -75.6518880112281,
+ 39.30139760618351
+ ],
+ [
+ -75.63814433009668,
+ 39.318144330096686
+ ],
+ [
+ -75.6213976061835,
+ 39.331888011228095
+ ],
+ [
+ -75.60229140669686,
+ 39.342100487619405
+ ],
+ [
+ -75.58155997216817,
+ 39.348389299530105
+ ],
+ [
+ -75.56,
+ 39.35051277144529
+ ],
+ [
+ -75.53844002783184,
+ 39.348389299530105
+ ],
+ [
+ -75.51770859330314,
+ 39.342100487619405
+ ],
+ [
+ -75.4986023938165,
+ 39.331888011228095
+ ],
+ [
+ -75.48185566990333,
+ 39.318144330096686
+ ],
+ [
+ -75.46811198877191,
+ 39.30139760618351
+ ],
+ [
+ -75.4578995123806,
+ 39.282291406696864
+ ],
+ [
+ -75.4516107004699,
+ 39.26155997216816
+ ],
+ [
+ -75.44948722855472,
+ 39.24
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.44948722855472,
+ 39.36
+ ],
+ [
+ -75.4516107004699,
+ 39.338440027831844
+ ],
+ [
+ -75.4578995123806,
+ 39.31770859330314
+ ],
+ [
+ -75.46811198877191,
+ 39.298602393816495
+ ],
+ [
+ -75.48185566990333,
+ 39.281855669903315
+ ],
+ [
+ -75.4986023938165,
+ 39.268111988771906
+ ],
+ [
+ -75.51770859330314,
+ 39.2578995123806
+ ],
+ [
+ -75.53844002783184,
+ 39.2516107004699
+ ],
+ [
+ -75.56,
+ 39.24948722855471
+ ],
+ [
+ -75.58155997216817,
+ 39.2516107004699
+ ],
+ [
+ -75.60229140669686,
+ 39.2578995123806
+ ],
+ [
+ -75.6213976061835,
+ 39.268111988771906
+ ],
+ [
+ -75.63814433009668,
+ 39.281855669903315
+ ],
+ [
+ -75.6518880112281,
+ 39.298602393816495
+ ],
+ [
+ -75.6621004876194,
+ 39.31770859330314
+ ],
+ [
+ -75.6683892995301,
+ 39.338440027831844
+ ],
+ [
+ -75.67051277144529,
+ 39.36
+ ],
+ [
+ -75.6683892995301,
+ 39.381559972168155
+ ],
+ [
+ -75.6621004876194,
+ 39.40229140669686
+ ],
+ [
+ -75.6518880112281,
+ 39.421397606183504
+ ],
+ [
+ -75.63814433009668,
+ 39.438144330096684
+ ],
+ [
+ -75.6213976061835,
+ 39.45188801122809
+ ],
+ [
+ -75.60229140669686,
+ 39.4621004876194
+ ],
+ [
+ -75.58155997216817,
+ 39.4683892995301
+ ],
+ [
+ -75.56,
+ 39.470512771445286
+ ],
+ [
+ -75.53844002783184,
+ 39.4683892995301
+ ],
+ [
+ -75.51770859330314,
+ 39.4621004876194
+ ],
+ [
+ -75.4986023938165,
+ 39.45188801122809
+ ],
+ [
+ -75.48185566990333,
+ 39.438144330096684
+ ],
+ [
+ -75.46811198877191,
+ 39.421397606183504
+ ],
+ [
+ -75.4578995123806,
+ 39.40229140669686
+ ],
+ [
+ -75.4516107004699,
+ 39.381559972168155
+ ],
+ [
+ -75.44948722855472,
+ 39.36
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.833,
+ 39.284
+ ]
+ },
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 25
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.6,
+ 39.984
+ ]
+ },
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 23
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.221,
+ 39.125
+ ]
+ },
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 29
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.358,
+ 39.987
+ ]
+ },
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 12
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.9221,
+ 39.27
+ ]
+ },
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 11
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.534,
+ 39.123
+ ]
+ },
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 49
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.21,
+ 39.12
+ ]
+ },
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 50
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.22,
+ 39.33
+ ]
+ },
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 90
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.44,
+ 39.55
+ ]
+ },
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 22
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.77,
+ 39.66
+ ]
+ },
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 99
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.44,
+ 39.11
+ ]
+ },
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 55
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.05,
+ 39.92
+ ]
+ },
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 41
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.88,
+ 39.98
+ ]
+ },
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 52
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.55,
+ 39.55
+ ]
+ },
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 143
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.33,
+ 39.44
+ ]
+ },
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 76
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.56,
+ 39.24
+ ]
+ },
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 18
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.56,
+ 39.36
+ ]
+ },
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 52
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/out/GeometryCollection.geojson b/packages/turf-buffer/test/fixtures/out/GeometryCollection.geojson
new file mode 100644
index 0000000000..2c6d1a5e1e
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/out/GeometryCollection.geojson
@@ -0,0 +1,733 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [
+ 69.2578125,
+ 33.99826692298249
+ ],
+ [
+ 68.89588626122296,
+ 34.03391354615142
+ ],
+ [
+ 68.54786864483154,
+ 34.13948353592068
+ ],
+ [
+ 68.22713377265315,
+ 34.31091989678779
+ ],
+ [
+ 67.9460073059554,
+ 34.54163442554722
+ ],
+ [
+ 67.71529277719597,
+ 34.822760892244965
+ ],
+ [
+ 67.54385641632886,
+ 35.143495764423356
+ ],
+ [
+ 67.4382864265596,
+ 35.49151338081477
+ ],
+ [
+ 67.40263980339067,
+ 35.85343961959182
+ ],
+ [
+ 67.40263980339067,
+ 38.496593518947556
+ ],
+ [
+ 67.4382864265596,
+ 38.8585197577246
+ ],
+ [
+ 67.54385641632886,
+ 39.20653737411602
+ ],
+ [
+ 67.71529277719597,
+ 39.52727224629441
+ ],
+ [
+ 67.9460073059554,
+ 39.80839871299215
+ ],
+ [
+ 68.22713377265315,
+ 40.039113241751586
+ ],
+ [
+ 68.54786864483154,
+ 40.21054960261869
+ ],
+ [
+ 68.89588626122296,
+ 40.316119592387956
+ ],
+ [
+ 69.2578125,
+ 40.351766215556886
+ ],
+ [
+ 72.421875,
+ 40.351766215556886
+ ],
+ [
+ 72.78380123877704,
+ 40.316119592387956
+ ],
+ [
+ 73.13181885516846,
+ 40.21054960261869
+ ],
+ [
+ 73.45255372734685,
+ 40.039113241751586
+ ],
+ [
+ 73.7336801940446,
+ 39.80839871299215
+ ],
+ [
+ 73.96439472280403,
+ 39.52727224629441
+ ],
+ [
+ 74.13583108367114,
+ 39.20653737411602
+ ],
+ [
+ 74.2414010734404,
+ 38.8585197577246
+ ],
+ [
+ 74.27704769660933,
+ 38.496593518947556
+ ],
+ [
+ 74.27704769660933,
+ 35.85343961959182
+ ],
+ [
+ 74.2414010734404,
+ 35.49151338081477
+ ],
+ [
+ 74.13583108367114,
+ 35.143495764423356
+ ],
+ [
+ 73.96439472280403,
+ 34.822760892244965
+ ],
+ [
+ 73.7336801940446,
+ 34.54163442554722
+ ],
+ [
+ 73.45255372734685,
+ 34.31091989678779
+ ],
+ [
+ 73.13181885516846,
+ 34.13948353592068
+ ],
+ [
+ 72.78380123877704,
+ 34.03391354615142
+ ],
+ [
+ 72.421875,
+ 33.99826692298249
+ ],
+ [
+ 69.2578125,
+ 33.99826692298249
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ 64.19159847785934,
+ 29.248063243796576
+ ],
+ [
+ 64.15595185469041,
+ 28.88613700501953
+ ],
+ [
+ 64.05038186492114,
+ 28.538119388628118
+ ],
+ [
+ 63.87894550405404,
+ 28.217384516449727
+ ],
+ [
+ 63.6482309752946,
+ 27.936258049751984
+ ],
+ [
+ 63.36710450859686,
+ 27.705543520992546
+ ],
+ [
+ 63.04636963641847,
+ 27.534107160125444
+ ],
+ [
+ 62.69835202002705,
+ 27.428537170356176
+ ],
+ [
+ 62.33642578125001,
+ 27.392890547187243
+ ],
+ [
+ 61.97449954247296,
+ 27.428537170356176
+ ],
+ [
+ 61.626481926081546,
+ 27.534107160125444
+ ],
+ [
+ 61.305747053903154,
+ 27.705543520992546
+ ],
+ [
+ 61.02462058720541,
+ 27.936258049751984
+ ],
+ [
+ 60.79390605844598,
+ 28.217384516449727
+ ],
+ [
+ 60.62246969757887,
+ 28.538119388628118
+ ],
+ [
+ 60.51689970780961,
+ 28.886137005019535
+ ],
+ [
+ 60.48125308464068,
+ 29.248063243796576
+ ],
+ [
+ 60.51689970780961,
+ 29.60998948257362
+ ],
+ [
+ 60.62246969757887,
+ 29.958007098965037
+ ],
+ [
+ 60.79390605844598,
+ 30.27874197114343
+ ],
+ [
+ 61.02462058720542,
+ 30.55986843784117
+ ],
+ [
+ 61.30574705390316,
+ 30.790582966600606
+ ],
+ [
+ 61.62648192608155,
+ 30.96201932746771
+ ],
+ [
+ 61.97449954247297,
+ 31.06758931723698
+ ],
+ [
+ 62.336425781250014,
+ 31.10323594040591
+ ],
+ [
+ 62.69835202002706,
+ 31.067589317236976
+ ],
+ [
+ 63.04636963641847,
+ 30.962019327467708
+ ],
+ [
+ 63.36710450859686,
+ 30.790582966600603
+ ],
+ [
+ 63.6482309752946,
+ 30.559868437841164
+ ],
+ [
+ 63.87894550405404,
+ 30.278741971143422
+ ],
+ [
+ 64.05038186492115,
+ 29.958007098965027
+ ],
+ [
+ 64.15595185469041,
+ 29.609989482573614
+ ],
+ [
+ 64.19159847785934,
+ 29.248063243796576
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ 60.61005550910932,
+ 32.45415593941475
+ ],
+ [
+ 60.57440888594039,
+ 32.0922297006377
+ ],
+ [
+ 60.46883889617113,
+ 31.74421208424629
+ ],
+ [
+ 60.29740253530402,
+ 31.423477212067898
+ ],
+ [
+ 60.06668800654459,
+ 31.142350745370155
+ ],
+ [
+ 59.785561539846846,
+ 30.911636216610717
+ ],
+ [
+ 59.464826667668454,
+ 30.740199855743615
+ ],
+ [
+ 59.11680905127704,
+ 30.634629865974347
+ ],
+ [
+ 58.75488281249999,
+ 30.598983242805414
+ ],
+ [
+ 58.39295657372295,
+ 30.634629865974347
+ ],
+ [
+ 58.04493895733153,
+ 30.740199855743615
+ ],
+ [
+ 57.72420408515314,
+ 30.911636216610717
+ ],
+ [
+ 57.4430776184554,
+ 31.142350745370155
+ ],
+ [
+ 57.21236308969596,
+ 31.423477212067898
+ ],
+ [
+ 57.04092672882886,
+ 31.74421208424629
+ ],
+ [
+ 56.93535673905959,
+ 32.0922297006377
+ ],
+ [
+ 56.89971011589066,
+ 32.45415593941475
+ ],
+ [
+ 56.93535673905959,
+ 32.81608217819179
+ ],
+ [
+ 57.04092672882886,
+ 33.16409979458321
+ ],
+ [
+ 57.21236308969596,
+ 33.4848346667616
+ ],
+ [
+ 57.443077618455405,
+ 33.76596113345934
+ ],
+ [
+ 57.72420408515315,
+ 33.99667566221878
+ ],
+ [
+ 58.04493895733154,
+ 34.16811202308588
+ ],
+ [
+ 58.392956573722955,
+ 34.27368201285515
+ ],
+ [
+ 58.7548828125,
+ 34.30932863602408
+ ],
+ [
+ 59.116809051277045,
+ 34.27368201285515
+ ],
+ [
+ 59.464826667668454,
+ 34.168112023085875
+ ],
+ [
+ 59.785561539846846,
+ 33.99667566221877
+ ],
+ [
+ 60.06668800654459,
+ 33.765961133459335
+ ],
+ [
+ 60.29740253530402,
+ 33.48483466676159
+ ],
+ [
+ 60.46883889617113,
+ 33.1640997945832
+ ],
+ [
+ 60.57440888594039,
+ 32.816082178191785
+ ],
+ [
+ 60.61005550910932,
+ 32.45415593941475
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ 54.15186607946649,
+ 41.88227188961051
+ ],
+ [
+ 54.32330376808138,
+ 42.19300839674751
+ ],
+ [
+ 54.550775430552385,
+ 42.465413794487716
+ ],
+ [
+ 54.825956721536855,
+ 42.68951938352432
+ ],
+ [
+ 55.13877735767242,
+ 42.85712400026582
+ ],
+ [
+ 55.47778964047561,
+ 42.96209413913343
+ ],
+ [
+ 55.83058738586709,
+ 43.00058840873313
+ ],
+ [
+ 56.18425992956082,
+ 42.97119810790901
+ ],
+ [
+ 56.37685639740538,
+ 42.916960993435495
+ ],
+ [
+ 56.3811739119003,
+ 42.92189486913371
+ ],
+ [
+ 56.65594449669674,
+ 43.13674878491552
+ ],
+ [
+ 56.966075356620095,
+ 43.296373122406244
+ ],
+ [
+ 57.30060352835964,
+ 43.39512524495939
+ ],
+ [
+ 57.64770361642233,
+ 43.42951431681397
+ ],
+ [
+ 57.99510581466402,
+ 43.398324702308564
+ ],
+ [
+ 58.330529637504085,
+ 43.30265893796462
+ ],
+ [
+ 58.642118028652646,
+ 43.14589875839848
+ ],
+ [
+ 58.91885650183426,
+ 42.93358555377555
+ ],
+ [
+ 59.15096249710342,
+ 42.673224484573055
+ ],
+ [
+ 59.61238827835342,
+ 42.045576843663945
+ ],
+ [
+ 59.7980453682054,
+ 41.7328585534308
+ ],
+ [
+ 59.919126797192796,
+ 41.389929156013466
+ ],
+ [
+ 59.97097947390289,
+ 41.029967235837674
+ ],
+ [
+ 59.95161072904901,
+ 40.666805927626804
+ ],
+ [
+ 59.86176489263378,
+ 40.31440131679219
+ ],
+ [
+ 59.704894689764515,
+ 39.986296114897435
+ ],
+ [
+ 59.487028554363654,
+ 39.69509922084782
+ ],
+ [
+ 59.21653895983392,
+ 39.45200116797659
+ ],
+ [
+ 58.903820669600776,
+ 39.26634407812461
+ ],
+ [
+ 58.56089127218344,
+ 39.145262649137216
+ ],
+ [
+ 58.20092935200765,
+ 39.093409972427125
+ ],
+ [
+ 58.156199227066246,
+ 39.09579559654975
+ ],
+ [
+ 58.106335901646425,
+ 39.02664362323956
+ ],
+ [
+ 57.87553121332966,
+ 38.76310813344301
+ ],
+ [
+ 57.59929977736042,
+ 38.54765987442549
+ ],
+ [
+ 57.28749136132262,
+ 38.38798122770245
+ ],
+ [
+ 56.95122432478274,
+ 38.28976596072224
+ ],
+ [
+ 56.60248916456611,
+ 38.25651620042256
+ ],
+ [
+ 56.25640857123886,
+ 38.289164017553084
+ ],
+ [
+ 55.98818715600418,
+ 38.15115386074385
+ ],
+ [
+ 55.63855870664097,
+ 38.051047759758326
+ ],
+ [
+ 55.27611853841829,
+ 38.02107429620544
+ ],
+ [
+ 54.91479502374214,
+ 38.06238533348021
+ ],
+ [
+ 54.56847362264896,
+ 38.17339331158765
+ ],
+ [
+ 54.25046327236349,
+ 38.34983225618311
+ ],
+ [
+ 53.97298493230494,
+ 38.58492171757387
+ ],
+ [
+ 53.74670193947011,
+ 38.869627339598374
+ ],
+ [
+ 53.58031022237268,
+ 39.19300804486697
+ ],
+ [
+ 53.48020412138716,
+ 39.54263649423018
+ ],
+ [
+ 53.450230657834275,
+ 39.90507666245286
+ ],
+ [
+ 53.49154169510904,
+ 40.26640017712902
+ ],
+ [
+ 53.60254967321649,
+ 40.61272157822219
+ ],
+ [
+ 54.15186607946649,
+ 41.88227188961051
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "GeometryCollection",
+ "geometries": [
+ {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.2578125,
+ 35.85343961959182
+ ],
+ [
+ 69.2578125,
+ 38.496593518947556
+ ],
+ [
+ 72.421875,
+ 38.496593518947556
+ ],
+ [
+ 72.421875,
+ 35.85343961959182
+ ],
+ [
+ 69.2578125,
+ 35.85343961959182
+ ]
+ ]
+ ]
+ },
+ {
+ "type": "LineString",
+ "coordinates": [
+ [
+ 55.30517578124999,
+ 39.87601941962116
+ ],
+ [
+ 55.85449218749999,
+ 41.14556973100947
+ ],
+ [
+ 56.6015625,
+ 40.111688665595956
+ ],
+ [
+ 57.65624999999999,
+ 41.57436130598913
+ ],
+ [
+ 58.11767578124999,
+ 40.94671366508002
+ ]
+ ]
+ },
+ {
+ "type": "Point",
+ "coordinates": [
+ 62.33642578125001,
+ 29.248063243796576
+ ]
+ },
+ {
+ "type": "Point",
+ "coordinates": [
+ 58.75488281249999,
+ 32.45415593941475
+ ]
+ }
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/out/LineString.geojson b/packages/turf-buffer/test/fixtures/out/LineString.geojson
new file mode 100644
index 0000000000..eb6786823e
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/out/LineString.geojson
@@ -0,0 +1,373 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.2448975333952,
+ 44.66839110644526
+ ],
+ [
+ -92.22067508943952,
+ 44.65833948396703
+ ],
+ [
+ -92.1985484151199,
+ 44.644262119540954
+ ],
+ [
+ -92.17918021654228,
+ 44.62658063799984
+ ],
+ [
+ -92.16315058194192,
+ 44.605824609472926
+ ],
+ [
+ -92.1474574466441,
+ 44.58139355326879
+ ],
+ [
+ -92.08740234375,
+ 44.58139355326879
+ ],
+ [
+ -92.05628588407329,
+ 44.578164421256545
+ ],
+ [
+ -92.02649556425997,
+ 44.568614646296574
+ ],
+ [
+ -91.99930100595273,
+ 44.5531512264019
+ ],
+ [
+ -91.89493088876523,
+ 44.47857217260761
+ ],
+ [
+ -91.8898077877786,
+ 44.474745573486075
+ ],
+ [
+ -91.82938298309108,
+ 44.427594046769244
+ ],
+ [
+ -91.80344734315821,
+ 44.40174357536054
+ ],
+ [
+ -91.75545908442402,
+ 44.34066181266506
+ ],
+ [
+ -91.7131378975031,
+ 44.29009930804506
+ ],
+ [
+ -91.51924113137596,
+ 44.20182197171982
+ ],
+ [
+ -91.49817644033304,
+ 44.190127119178236
+ ],
+ [
+ -91.21253190908304,
+ 44.00035869263518
+ ],
+ [
+ -91.18830386241036,
+ 43.98035184682601
+ ],
+ [
+ -91.16872268442147,
+ 43.955778495541075
+ ],
+ [
+ -91.15463024001399,
+ 43.927695135068596
+ ],
+ [
+ -91.14663241379176,
+ 43.89730916954955
+ ],
+ [
+ -91.06972811691676,
+ 43.40027600507555
+ ],
+ [
+ -91.06808516837,
+ 43.370615165459306
+ ],
+ [
+ -91.07226033137087,
+ 43.341203727198256
+ ],
+ [
+ -91.08209315674672,
+ 43.313171955370635
+ ],
+ [
+ -91.09720577453265,
+ 43.287597095247385
+ ],
+ [
+ -91.11701741530243,
+ 43.26546197436049
+ ],
+ [
+ -91.14076672881174,
+ 43.24761723299213
+ ],
+ [
+ -91.16754104226122,
+ 43.234748634545625
+ ],
+ [
+ -91.19631143380018,
+ 43.2273507120425
+ ],
+ [
+ -91.22597227341642,
+ 43.225707763495734
+ ],
+ [
+ -91.25538371167748,
+ 43.2298829264966
+ ],
+ [
+ -91.2834154835051,
+ 43.23971575187245
+ ],
+ [
+ -91.30899034362835,
+ 43.25482836965839
+ ],
+ [
+ -91.33112546451524,
+ 43.27464001042816
+ ],
+ [
+ -91.3489702058836,
+ 43.29838932393748
+ ],
+ [
+ -91.3618388043301,
+ 43.32516363738694
+ ],
+ [
+ -91.36923672683324,
+ 43.35393402892591
+ ],
+ [
+ -91.43591985029913,
+ 43.784907657449345
+ ],
+ [
+ -91.65582004318112,
+ 43.93099872181216
+ ],
+ [
+ -91.87004109518654,
+ 44.02852930075656
+ ],
+ [
+ -91.89902681446583,
+ 44.04586090884024
+ ],
+ [
+ -91.92345413936208,
+ 44.06918176558517
+ ],
+ [
+ -91.98937210811208,
+ 44.147936116347864
+ ],
+ [
+ -91.99232902402927,
+ 44.151582124746874
+ ],
+ [
+ -92.03037288115783,
+ 44.20000617501339
+ ],
+ [
+ -92.07373549207114,
+ 44.23384349261109
+ ],
+ [
+ -92.13597978288163,
+ 44.2783209775257
+ ],
+ [
+ -92.230224609375,
+ 44.2783209775257
+ ],
+ [
+ -92.26032494183768,
+ 44.281340544023784
+ ],
+ [
+ -92.2892256942293,
+ 44.29027890558491
+ ],
+ [
+ -92.31577509300553,
+ 44.30477984420354
+ ],
+ [
+ -92.33891507245528,
+ 44.324265458057475
+ ],
+ [
+ -92.35772344149558,
+ 44.34795919246647
+ ],
+ [
+ -92.38857217431816,
+ 44.39598446664603
+ ],
+ [
+ -92.5341552009798,
+ 44.44209056219231
+ ],
+ [
+ -92.56145973088407,
+ 44.45379215752689
+ ],
+ [
+ -92.58595674390058,
+ 44.47059575951981
+ ],
+ [
+ -92.6067048335572,
+ 44.49185561517004
+ ],
+ [
+ -92.62290666240408,
+ 44.51675472014762
+ ],
+ [
+ -92.63393960324471,
+ 44.54433621581182
+ ],
+ [
+ -92.63937966634995,
+ 44.57354016075217
+ ],
+ [
+ -92.63901779314548,
+ 44.60324426374235
+ ],
+ [
+ -92.63286789021562,
+ 44.632307012762716
+ ],
+ [
+ -92.62116629488104,
+ 44.659611542666994
+ ],
+ [
+ -92.60436269288812,
+ 44.68410855568351
+ ],
+ [
+ -92.58310283723789,
+ 44.70485664534012
+ ],
+ [
+ -92.55820373226031,
+ 44.721058474187
+ ],
+ [
+ -92.5306222365961,
+ 44.73209141502764
+ ],
+ [
+ -92.50141829165577,
+ 44.73753147813288
+ ],
+ [
+ -92.47171418866557,
+ 44.73716960492841
+ ],
+ [
+ -92.4426514396452,
+ 44.73101970199854
+ ],
+ [
+ -92.2448975333952,
+ 44.66839110644526
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [
+ -92.4884033203125,
+ 44.58655513209543
+ ],
+ [
+ -92.2906494140625,
+ 44.52392653654215
+ ],
+ [
+ -92.230224609375,
+ 44.429857265397246
+ ],
+ [
+ -92.08740234375,
+ 44.429857265397246
+ ],
+ [
+ -91.9830322265625,
+ 44.35527821160296
+ ],
+ [
+ -91.92260742187499,
+ 44.308126684886126
+ ],
+ [
+ -91.8731689453125,
+ 44.24519901522129
+ ],
+ [
+ -91.8072509765625,
+ 44.166444664458595
+ ],
+ [
+ -91.58203125,
+ 44.06390660801779
+ ],
+ [
+ -91.29638671875,
+ 43.874138181474734
+ ],
+ [
+ -91.219482421875,
+ 43.37710501700073
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/out/MultiLineString.geojson b/packages/turf-buffer/test/fixtures/out/MultiLineString.geojson
new file mode 100644
index 0000000000..c7b12c1d6b
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/out/MultiLineString.geojson
@@ -0,0 +1,495 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [
+ 89.88288803825886,
+ 15.247009323635544
+ ],
+ [
+ 97.3828387571505,
+ 16.046312838480542
+ ],
+ [
+ 98.68340842661729,
+ 16.056716270334803
+ ],
+ [
+ 99.96101762343974,
+ 15.813191247542456
+ ],
+ [
+ 101.16656854267545,
+ 15.325096300159002
+ ],
+ [
+ 102.25373253857893,
+ 14.611188643285587
+ ],
+ [
+ 103.18073050847622,
+ 13.69890334781183
+ ],
+ [
+ 103.91193844025058,
+ 12.6232990260273
+ ],
+ [
+ 104.4192564231501,
+ 11.425710548812326
+ ],
+ [
+ 104.68318851159913,
+ 10.152160569730919
+ ],
+ [
+ 104.69359194345338,
+ 8.851590900264124
+ ],
+ [
+ 104.45006692066104,
+ 7.573981703441676
+ ],
+ [
+ 103.96197197327758,
+ 6.368430784205971
+ ],
+ [
+ 103.24806431640417,
+ 5.281266788302489
+ ],
+ [
+ 102.3357790209304,
+ 4.354268818405209
+ ],
+ [
+ 101.26017469914588,
+ 3.623060886630835
+ ],
+ [
+ 100.0625862219309,
+ 3.1157429037313227
+ ],
+ [
+ 98.7890362428495,
+ 2.851810815282299
+ ],
+ [
+ 75.9374737428495,
+ 0.4164169159675204
+ ],
+ [
+ 74.65142278751057,
+ 0.40471676492397535
+ ],
+ [
+ 73.38727738751484,
+ 0.6413607188553581
+ ],
+ [
+ 72.19254024793521,
+ 1.117456424120289
+ ],
+ [
+ 71.11210592439895,
+ 1.8151136650254287
+ ],
+ [
+ 70.18657382344722,
+ 2.708116623234698
+ ],
+ [
+ 69.45072260141744,
+ 3.7629089877785122
+ ],
+ [
+ 68.93220328925729,
+ 4.939854898251707
+ ],
+ [
+ 68.65050025162938,
+ 6.194728338824039
+ ],
+ [
+ 68.61619902427562,
+ 7.480375016206539
+ ],
+ [
+ 68.83058854206584,
+ 8.748484273299283
+ ],
+ [
+ 69.2856127047806,
+ 9.951404455442866
+ ],
+ [
+ 69.96417310063711,
+ 11.043933513380317
+ ],
+ [
+ 91.05792310063711,
+ 38.62730710195784
+ ],
+ [
+ 91.94545436329865,
+ 39.57803206446264
+ ],
+ [
+ 93.0014092006986,
+ 40.337340353567235
+ ],
+ [
+ 94.18520786062199,
+ 40.87605217754634
+ ],
+ [
+ 95.45135762444991,
+ 41.173465143117504
+ ],
+ [
+ 96.7512010668234,
+ 41.21814983680495
+ ],
+ [
+ 98.03478593321266,
+ 41.00838905088972
+ ],
+ [
+ 99.25278477704504,
+ 40.55224377473934
+ ],
+ [
+ 100.35839058581368,
+ 39.86724341550705
+ ],
+ [
+ 101.30911554831847,
+ 38.97971215284552
+ ],
+ [
+ 102.06842383742307,
+ 37.92375731544557
+ ],
+ [
+ 102.60713566140217,
+ 36.73995865552217
+ ],
+ [
+ 102.90454862697334,
+ 35.47380889169426
+ ],
+ [
+ 102.94923332066078,
+ 34.17396544932077
+ ],
+ [
+ 102.73947253474554,
+ 32.890380582931506
+ ],
+ [
+ 102.28332725859516,
+ 31.672381739099123
+ ],
+ [
+ 101.59832689936289,
+ 30.566775930330493
+ ],
+ [
+ 89.88288803825886,
+ 15.247009323635544
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ 61.297065967014525,
+ 44.299491710684826
+ ],
+ [
+ 63.87089346804917,
+ 43.4875970064952
+ ],
+ [
+ 65.02054907409064,
+ 43.00185656412343
+ ],
+ [
+ 66.05889425047828,
+ 42.30940361660237
+ ],
+ [
+ 66.94918544465882,
+ 41.43474175083786
+ ],
+ [
+ 67.65991823784657,
+ 40.40882231611326
+ ],
+ [
+ 68.16594218071916,
+ 39.26794915966783
+ ],
+ [
+ 68.44935078344938,
+ 38.052493955328075
+ ],
+ [
+ 70.55872578344938,
+ 22.508756745331905
+ ],
+ [
+ 70.60645665455219,
+ 21.209021595205126
+ ],
+ [
+ 70.39970464137673,
+ 19.92494866052454
+ ],
+ [
+ 69.94641510784149,
+ 18.705884144053524
+ ],
+ [
+ 69.2640077165125,
+ 17.598676011500807
+ ],
+ [
+ 68.37870700074008,
+ 16.645873650470904
+ ],
+ [
+ 67.32453457054899,
+ 15.884092721360489
+ ],
+ [
+ 66.14200168124478,
+ 15.342608038063595
+ ],
+ [
+ 64.87655240859131,
+ 15.04222855329122
+ ],
+ [
+ 63.57681725846452,
+ 14.994497682188412
+ ],
+ [
+ 62.292744323783936,
+ 15.201249695363867
+ ],
+ [
+ 61.07367980731292,
+ 15.654539228899118
+ ],
+ [
+ 59.9664716747602,
+ 16.336946620228105
+ ],
+ [
+ 59.013669313730304,
+ 17.222247336000528
+ ],
+ [
+ 58.25188838461988,
+ 18.276419766191616
+ ],
+ [
+ 57.71040370132299,
+ 19.458952655495835
+ ],
+ [
+ 57.41002421655062,
+ 20.7244019281493
+ ],
+ [
+ 55.86645294551307,
+ 32.098797757201666
+ ],
+ [
+ 36.324419031950825,
+ 38.263186721550404
+ ],
+ [
+ 35.12692514590036,
+ 38.77494089739276
+ ],
+ [
+ 34.05246288057046,
+ 39.51074982911518
+ ],
+ [
+ 33.14242803899046,
+ 40.44226500920125
+ ],
+ [
+ 32.43188152954906,
+ 41.53359795635394
+ ],
+ [
+ 31.948198574529176,
+ 42.74270289085862
+ ],
+ [
+ 31.710014025037935,
+ 44.02299663215551
+ ],
+ [
+ 31.726504416179,
+ 45.32515330883476
+ ],
+ [
+ 31.997034422724514,
+ 46.59900473627001
+ ],
+ [
+ 32.51118133628737,
+ 47.79547324604957
+ ],
+ [
+ 33.249136620961984,
+ 48.86846250109416
+ ],
+ [
+ 34.18246907670108,
+ 49.77663344903532
+ ],
+ [
+ 35.27522020803645,
+ 50.48499699170647
+ ],
+ [
+ 36.4852895968776,
+ 50.96626200997596
+ ],
+ [
+ 63.9071645968776,
+ 58.85857505074535
+ ],
+ [
+ 65.18627991364818,
+ 59.0940611499831
+ ],
+ [
+ 66.4867584472057,
+ 59.07547943081052
+ ],
+ [
+ 67.7586235368223,
+ 58.80354397827467
+ ],
+ [
+ 68.95299812037418,
+ 58.28870511931334
+ ],
+ [
+ 70.0239830524284,
+ 57.55074782255147
+ ],
+ [
+ 70.93042098266143,
+ 56.618031373052375
+ ],
+ [
+ 71.63747800975062,
+ 55.52639954089692
+ ],
+ [
+ 72.11798232866713,
+ 54.317803125200626
+ ],
+ [
+ 72.35346842790487,
+ 53.03868780843005
+ ],
+ [
+ 72.3348867087323,
+ 51.73820927487253
+ ],
+ [
+ 72.06295125619644,
+ 50.466344185255934
+ ],
+ [
+ 71.54811239723512,
+ 49.27196960170406
+ ],
+ [
+ 70.81015510047324,
+ 48.20098466964982
+ ],
+ [
+ 69.87743865097416,
+ 47.294546739416795
+ ],
+ [
+ 68.78580681881868,
+ 46.587489712327596
+ ],
+ [
+ 67.57721040312241,
+ 46.1069853934111
+ ],
+ [
+ 61.297065967014525,
+ 44.299491710684826
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "MultiLineString",
+ "coordinates": [
+ [
+ [
+ 65.7421875,
+ 52.482780222078226
+ ],
+ [
+ 38.3203125,
+ 44.59046718130883
+ ],
+ [
+ 61.87499999999999,
+ 37.16031654673677
+ ],
+ [
+ 63.984375,
+ 21.616579336740603
+ ]
+ ],
+ [
+ [
+ 96.328125,
+ 34.59704151614417
+ ],
+ [
+ 75.234375,
+ 7.013667927566642
+ ],
+ [
+ 98.0859375,
+ 9.44906182688142
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/out/MultiPoint.geojson b/packages/turf-buffer/test/fixtures/out/MultiPoint.geojson
new file mode 100644
index 0000000000..98d8accfc3
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/out/MultiPoint.geojson
@@ -0,0 +1,447 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [
+ 86.57737477963222,
+ 47.26432008025478
+ ],
+ [
+ 86.57389902122947,
+ 47.22903011296545
+ ],
+ [
+ 86.56360531746739,
+ 47.19509631932821
+ ],
+ [
+ 86.54688924960881,
+ 47.16382275600224
+ ],
+ [
+ 86.52439320676703,
+ 47.136411248487754
+ ],
+ [
+ 86.49698169925253,
+ 47.113915205645974
+ ],
+ [
+ 86.46570813592658,
+ 47.09719913778738
+ ],
+ [
+ 86.43177434228933,
+ 47.086905434025304
+ ],
+ [
+ 86.396484375,
+ 47.083429675622554
+ ],
+ [
+ 86.36119440771067,
+ 47.086905434025304
+ ],
+ [
+ 86.32726061407342,
+ 47.09719913778738
+ ],
+ [
+ 86.29598705074747,
+ 47.113915205645974
+ ],
+ [
+ 86.26857554323297,
+ 47.136411248487754
+ ],
+ [
+ 86.24607950039119,
+ 47.16382275600224
+ ],
+ [
+ 86.22936343253261,
+ 47.19509631932821
+ ],
+ [
+ 86.21906972877053,
+ 47.22903011296545
+ ],
+ [
+ 86.21559397036778,
+ 47.26432008025478
+ ],
+ [
+ 86.21906972877053,
+ 47.29961004754411
+ ],
+ [
+ 86.22936343253261,
+ 47.333543841181346
+ ],
+ [
+ 86.24607950039119,
+ 47.36481740450731
+ ],
+ [
+ 86.26857554323297,
+ 47.3922289120218
+ ],
+ [
+ 86.29598705074747,
+ 47.41472495486358
+ ],
+ [
+ 86.32726061407342,
+ 47.431441022722176
+ ],
+ [
+ 86.36119440771067,
+ 47.44173472648425
+ ],
+ [
+ 86.396484375,
+ 47.445210484887
+ ],
+ [
+ 86.43177434228933,
+ 47.44173472648425
+ ],
+ [
+ 86.46570813592658,
+ 47.431441022722176
+ ],
+ [
+ 86.49698169925253,
+ 47.41472495486358
+ ],
+ [
+ 86.52439320676703,
+ 47.3922289120218
+ ],
+ [
+ 86.54688924960881,
+ 47.36481740450731
+ ],
+ [
+ 86.56360531746739,
+ 47.333543841181346
+ ],
+ [
+ 86.57389902122947,
+ 47.29961004754411
+ ],
+ [
+ 86.57737477963222,
+ 47.26432008025478
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ 85.40733083431972,
+ 46.464349400461124
+ ],
+ [
+ 85.40385507591697,
+ 46.429059433171794
+ ],
+ [
+ 85.39356137215489,
+ 46.395125639534555
+ ],
+ [
+ 85.37684530429631,
+ 46.36385207620859
+ ],
+ [
+ 85.35434926145453,
+ 46.3364405686941
+ ],
+ [
+ 85.32693775394003,
+ 46.31394452585232
+ ],
+ [
+ 85.29566419061408,
+ 46.297228457993725
+ ],
+ [
+ 85.26173039697683,
+ 46.28693475423165
+ ],
+ [
+ 85.2264404296875,
+ 46.2834589958289
+ ],
+ [
+ 85.19115046239817,
+ 46.28693475423165
+ ],
+ [
+ 85.15721666876092,
+ 46.297228457993725
+ ],
+ [
+ 85.12594310543497,
+ 46.31394452585232
+ ],
+ [
+ 85.09853159792047,
+ 46.3364405686941
+ ],
+ [
+ 85.07603555507869,
+ 46.36385207620859
+ ],
+ [
+ 85.05931948722011,
+ 46.395125639534555
+ ],
+ [
+ 85.04902578345803,
+ 46.429059433171794
+ ],
+ [
+ 85.04555002505528,
+ 46.464349400461124
+ ],
+ [
+ 85.04902578345803,
+ 46.499639367750454
+ ],
+ [
+ 85.05931948722011,
+ 46.53357316138769
+ ],
+ [
+ 85.07603555507869,
+ 46.56484672471366
+ ],
+ [
+ 85.09853159792047,
+ 46.59225823222815
+ ],
+ [
+ 85.12594310543497,
+ 46.61475427506993
+ ],
+ [
+ 85.15721666876092,
+ 46.63147034292852
+ ],
+ [
+ 85.19115046239817,
+ 46.6417640466906
+ ],
+ [
+ 85.2264404296875,
+ 46.64523980509335
+ ],
+ [
+ 85.26173039697683,
+ 46.6417640466906
+ ],
+ [
+ 85.29566419061408,
+ 46.63147034292852
+ ],
+ [
+ 85.32693775394003,
+ 46.61475427506993
+ ],
+ [
+ 85.35434926145453,
+ 46.59225823222815
+ ],
+ [
+ 85.37684530429631,
+ 46.56484672471366
+ ],
+ [
+ 85.39356137215489,
+ 46.53357316138769
+ ],
+ [
+ 85.40385507591697,
+ 46.499639367750454
+ ],
+ [
+ 85.40733083431972,
+ 46.464349400461124
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ 84.20432790463222,
+ 47.040182144806664
+ ],
+ [
+ 84.20085214622947,
+ 47.004892177517334
+ ],
+ [
+ 84.19055844246739,
+ 46.970958383880095
+ ],
+ [
+ 84.17384237460881,
+ 46.93968482055413
+ ],
+ [
+ 84.15134633176703,
+ 46.91227331303964
+ ],
+ [
+ 84.12393482425253,
+ 46.88977727019786
+ ],
+ [
+ 84.09266126092658,
+ 46.873061202339265
+ ],
+ [
+ 84.05872746728933,
+ 46.86276749857719
+ ],
+ [
+ 84.0234375,
+ 46.85929174017444
+ ],
+ [
+ 83.98814753271067,
+ 46.86276749857719
+ ],
+ [
+ 83.95421373907342,
+ 46.873061202339265
+ ],
+ [
+ 83.92294017574747,
+ 46.88977727019786
+ ],
+ [
+ 83.89552866823297,
+ 46.91227331303964
+ ],
+ [
+ 83.87303262539119,
+ 46.93968482055413
+ ],
+ [
+ 83.85631655753261,
+ 46.970958383880095
+ ],
+ [
+ 83.84602285377053,
+ 47.004892177517334
+ ],
+ [
+ 83.84254709536778,
+ 47.040182144806664
+ ],
+ [
+ 83.84602285377053,
+ 47.075472112095994
+ ],
+ [
+ 83.85631655753261,
+ 47.10940590573323
+ ],
+ [
+ 83.87303262539119,
+ 47.1406794690592
+ ],
+ [
+ 83.89552866823297,
+ 47.16809097657369
+ ],
+ [
+ 83.92294017574747,
+ 47.19058701941547
+ ],
+ [
+ 83.95421373907342,
+ 47.20730308727406
+ ],
+ [
+ 83.98814753271067,
+ 47.21759679103614
+ ],
+ [
+ 84.0234375,
+ 47.22107254943889
+ ],
+ [
+ 84.05872746728933,
+ 47.21759679103614
+ ],
+ [
+ 84.09266126092658,
+ 47.20730308727406
+ ],
+ [
+ 84.12393482425253,
+ 47.19058701941547
+ ],
+ [
+ 84.15134633176703,
+ 47.16809097657369
+ ],
+ [
+ 84.17384237460881,
+ 47.1406794690592
+ ],
+ [
+ 84.19055844246739,
+ 47.10940590573323
+ ],
+ [
+ 84.20085214622947,
+ 47.075472112095994
+ ],
+ [
+ 84.20432790463222,
+ 47.040182144806664
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "MultiPoint",
+ "coordinates": [
+ [
+ 84.0234375,
+ 47.040182144806664
+ ],
+ [
+ 85.2264404296875,
+ 46.464349400461124
+ ],
+ [
+ 86.396484375,
+ 47.26432008025478
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/out/MultiPolygon.geojson b/packages/turf-buffer/test/fixtures/out/MultiPolygon.geojson
new file mode 100644
index 0000000000..62e3e6d827
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/out/MultiPolygon.geojson
@@ -0,0 +1,371 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [
+ -87.78054555610964,
+ 43.698862127221666
+ ],
+ [
+ -87.5415929193909,
+ 43.469784494414945
+ ],
+ [
+ -87.5287064788649,
+ 43.454820884003304
+ ],
+ [
+ -87.51889652878273,
+ 43.43768218903063
+ ],
+ [
+ -87.51252017343437,
+ 43.41899229661647
+ ],
+ [
+ -87.50980952652381,
+ 43.39943156096294
+ ],
+ [
+ -87.5108632617071,
+ 43.37971203692851
+ ],
+ [
+ -87.51564302064898,
+ 43.36055155962655
+ ],
+ [
+ -87.5239748093526,
+ 43.34264761360956
+ ],
+ [
+ -87.53555533193324,
+ 43.32665194285962
+ ],
+ [
+ -87.54996303127191,
+ 43.31314682583874
+ ],
+ [
+ -87.56667343464453,
+ 43.30262387924067
+ ],
+ [
+ -87.58507824571092,
+ 43.29546616203533
+ ],
+ [
+ -87.96685314805467,
+ 43.187599333978376
+ ],
+ [
+ -87.98764401481517,
+ 43.183961417782164
+ ],
+ [
+ -88.0087405791395,
+ 43.1846168173656
+ ],
+ [
+ -88.02926553474185,
+ 43.18953827776122
+ ],
+ [
+ -88.04836534583848,
+ 43.19852113871848
+ ],
+ [
+ -88.06524574166211,
+ 43.21119184555517
+ ],
+ [
+ -88.07920474642494,
+ 43.227023483529045
+ ],
+ [
+ -88.0896618711699,
+ 43.24535768972873
+ ],
+ [
+ -88.09618225355975,
+ 43.265432031271956
+ ],
+ [
+ -88.09849474174398,
+ 43.286411711281474
+ ],
+ [
+ -88.0965031702812,
+ 43.3074242841371
+ ],
+ [
+ -88.09029035920486,
+ 43.327595936360794
+ ],
+ [
+ -87.94746809357986,
+ 43.66454039722447
+ ],
+ [
+ -87.93792695396158,
+ 43.68210430091376
+ ],
+ [
+ -87.92518769306533,
+ 43.69750674519508
+ ],
+ [
+ -87.90972541004318,
+ 43.71017330991346
+ ],
+ [
+ -87.89211675668153,
+ 43.719631607054666
+ ],
+ [
+ -87.87301843169703,
+ 43.725528898026674
+ ],
+ [
+ -87.85314268975503,
+ 43.72764524872473
+ ],
+ [
+ -87.83323077857946,
+ 43.72590173177382
+ ],
+ [
+ -87.81402529479291,
+ 43.72036337005334
+ ],
+ [
+ -87.79624248945083,
+ 43.711236711727985
+ ],
+ [
+ -87.78054555610964,
+ 43.698862127221666
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -88.692626953125,
+ 42.84688912756838
+ ],
+ [
+ -88.71281931784497,
+ 42.848877901906754
+ ],
+ [
+ -88.73223570131276,
+ 42.85476779743936
+ ],
+ [
+ -88.75012994280054,
+ 42.864332468783964
+ ],
+ [
+ -88.76581437664314,
+ 42.877204350984734
+ ],
+ [
+ -88.7786862588439,
+ 42.89288878482733
+ ],
+ [
+ -88.78825093018851,
+ 42.91078302631511
+ ],
+ [
+ -88.79414082572112,
+ 42.9301994097829
+ ],
+ [
+ -88.79612960005949,
+ 42.95039177450287
+ ],
+ [
+ -88.79612960005949,
+ 43.27520565244538
+ ],
+ [
+ -88.79414082572112,
+ 43.29539801716535
+ ],
+ [
+ -88.78825093018851,
+ 43.31481440063314
+ ],
+ [
+ -88.7786862588439,
+ 43.33270864212092
+ ],
+ [
+ -88.76581437664314,
+ 43.348393075963514
+ ],
+ [
+ -88.75012994280054,
+ 43.361264958164284
+ ],
+ [
+ -88.73223570131276,
+ 43.37082962950889
+ ],
+ [
+ -88.71281931784497,
+ 43.376719525041494
+ ],
+ [
+ -88.692626953125,
+ 43.378708299379866
+ ],
+ [
+ -88.25592041015625,
+ 43.378708299379866
+ ],
+ [
+ -88.23572804543628,
+ 43.376719525041494
+ ],
+ [
+ -88.21631166196849,
+ 43.37082962950889
+ ],
+ [
+ -88.19841742048071,
+ 43.361264958164284
+ ],
+ [
+ -88.18273298663811,
+ 43.348393075963514
+ ],
+ [
+ -88.16986110443735,
+ 43.33270864212092
+ ],
+ [
+ -88.16029643309274,
+ 43.31481440063314
+ ],
+ [
+ -88.15440653756013,
+ 43.29539801716535
+ ],
+ [
+ -88.15241776322176,
+ 43.27520565244538
+ ],
+ [
+ -88.15241776322176,
+ 42.95039177450287
+ ],
+ [
+ -88.15440653756013,
+ 42.9301994097829
+ ],
+ [
+ -88.16029643309274,
+ 42.91078302631511
+ ],
+ [
+ -88.16986110443735,
+ 42.89288878482733
+ ],
+ [
+ -88.18273298663811,
+ 42.877204350984734
+ ],
+ [
+ -88.19841742048071,
+ 42.864332468783964
+ ],
+ [
+ -88.21631166196849,
+ 42.85476779743936
+ ],
+ [
+ -88.23572804543628,
+ 42.848877901906754
+ ],
+ [
+ -88.25592041015625,
+ 42.84688912756838
+ ],
+ [
+ -88.692626953125,
+ 42.84688912756838
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [
+ -88.692626953125,
+ 42.95039177450287
+ ],
+ [
+ -88.692626953125,
+ 43.27520565244538
+ ],
+ [
+ -88.25592041015625,
+ 43.27520565244538
+ ],
+ [
+ -88.25592041015625,
+ 42.95039177450287
+ ],
+ [
+ -88.692626953125,
+ 42.95039177450287
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -87.8521728515625,
+ 43.624147145668076
+ ],
+ [
+ -87.9949951171875,
+ 43.2872026848044
+ ],
+ [
+ -87.61322021484375,
+ 43.395069512861355
+ ],
+ [
+ -87.8521728515625,
+ 43.624147145668076
+ ]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/out/Point.geojson b/packages/turf-buffer/test/fixtures/out/Point.geojson
new file mode 100644
index 0000000000..1d0481afd5
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/out/Point.geojson
@@ -0,0 +1,166 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -75.39855313636365,
+ 39.4
+ ],
+ [
+ -75.39858093744272,
+ 39.39971773090727
+ ],
+ [
+ -75.39866327230004,
+ 39.39944630925747
+ ],
+ [
+ -75.39879697685322,
+ 39.3991961656324
+ ],
+ [
+ -75.39897691291128,
+ 39.39897691291127
+ ],
+ [
+ -75.3991961656324,
+ 39.39879697685322
+ ],
+ [
+ -75.39944630925748,
+ 39.39866327230003
+ ],
+ [
+ -75.39971773090727,
+ 39.3985809374427
+ ],
+ [
+ -75.4,
+ 39.39855313636364
+ ],
+ [
+ -75.40028226909274,
+ 39.3985809374427
+ ],
+ [
+ -75.40055369074253,
+ 39.39866327230003
+ ],
+ [
+ -75.40080383436761,
+ 39.39879697685322
+ ],
+ [
+ -75.40102308708873,
+ 39.39897691291127
+ ],
+ [
+ -75.40120302314679,
+ 39.3991961656324
+ ],
+ [
+ -75.40133672769997,
+ 39.39944630925747
+ ],
+ [
+ -75.4014190625573,
+ 39.39971773090727
+ ],
+ [
+ -75.40144686363637,
+ 39.4
+ ],
+ [
+ -75.4014190625573,
+ 39.40028226909273
+ ],
+ [
+ -75.40133672769997,
+ 39.40055369074253
+ ],
+ [
+ -75.40120302314679,
+ 39.4008038343676
+ ],
+ [
+ -75.40102308708873,
+ 39.401023087088724
+ ],
+ [
+ -75.40080383436761,
+ 39.40120302314678
+ ],
+ [
+ -75.40055369074253,
+ 39.40133672769997
+ ],
+ [
+ -75.40028226909274,
+ 39.401419062557295
+ ],
+ [
+ -75.4,
+ 39.40144686363636
+ ],
+ [
+ -75.39971773090727,
+ 39.401419062557295
+ ],
+ [
+ -75.39944630925748,
+ 39.40133672769997
+ ],
+ [
+ -75.3991961656324,
+ 39.40120302314678
+ ],
+ [
+ -75.39897691291128,
+ 39.401023087088724
+ ],
+ [
+ -75.39879697685322,
+ 39.4008038343676
+ ],
+ [
+ -75.39866327230004,
+ 39.40055369074253
+ ],
+ [
+ -75.39858093744272,
+ 39.40028226909273
+ ],
+ [
+ -75.39855313636365,
+ 39.4
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.4,
+ 39.4
+ ]
+ },
+ "properties": {
+ "name": "Location A",
+ "category": "Store"
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/fixtures/out/Polygon.geojson b/packages/turf-buffer/test/fixtures/out/Polygon.geojson
new file mode 100644
index 0000000000..f5f58284f7
--- /dev/null
+++ b/packages/turf-buffer/test/fixtures/out/Polygon.geojson
@@ -0,0 +1,247 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.96409507234401,
+ 32.734395522497685
+ ],
+ [
+ -79.97108195079794,
+ 32.733742700618336
+ ],
+ [
+ -79.97667608493435,
+ 32.73380015093783
+ ],
+ [
+ -79.98213914581838,
+ 32.735005390769906
+ ],
+ [
+ -79.98723817636603,
+ 32.73730702600368
+ ],
+ [
+ -79.99175574255771,
+ 32.74060690978635
+ ],
+ [
+ -79.99549920530902,
+ 32.74476432772361
+ ],
+ [
+ -79.99830893503041,
+ 32.749601998254775
+ ],
+ [
+ -80.00006511858845,
+ 32.754913632333455
+ ],
+ [
+ -80.0006928684047,
+ 32.76047273005193
+ ],
+ [
+ -80.00137951391251,
+ 32.836660348185866
+ ],
+ [
+ -80.00079866508233,
+ 32.84248959827322
+ ],
+ [
+ -79.99897830715686,
+ 32.84805770737484
+ ],
+ [
+ -79.9461066030553,
+ 32.96509752123827
+ ],
+ [
+ -79.94332384029835,
+ 32.969883561061096
+ ],
+ [
+ -79.93962626292472,
+ 32.97400398183004
+ ],
+ [
+ -79.9351682808937,
+ 32.97728671574529
+ ],
+ [
+ -79.93013605848384,
+ 32.97959467661255
+ ],
+ [
+ -79.92473974011648,
+ 32.98083148453017
+ ],
+ [
+ -79.91920467477428,
+ 32.98094549069113
+ ],
+ [
+ -79.91376200548089,
+ 32.97993193422502
+ ],
+ [
+ -79.8100785338012,
+ 32.94938966024565
+ ],
+ [
+ -79.80497776540491,
+ 32.947302739446926
+ ],
+ [
+ -79.8004048726217,
+ 32.94422674720931
+ ],
+ [
+ -79.7965490933572,
+ 32.940288975895974
+ ],
+ [
+ -79.79356998954023,
+ 32.93565238047472
+ ],
+ [
+ -79.79159084404527,
+ 32.93050883502801
+ ],
+ [
+ -79.79069355893438,
+ 32.92507119251655
+ ],
+ [
+ -79.77833393979375,
+ 32.724845424432274
+ ],
+ [
+ -79.7785277147107,
+ 32.719539252324545
+ ],
+ [
+ -79.77975272154414,
+ 32.71437278647125
+ ],
+ [
+ -79.78196190502055,
+ 32.709544482470584
+ ],
+ [
+ -79.78507040542328,
+ 32.70523980636181
+ ],
+ [
+ -79.78895881824558,
+ 32.70162411045663
+ ],
+ [
+ -79.79347778078677,
+ 32.698836281784246
+ ],
+ [
+ -79.7984537095103,
+ 32.69698340712749
+ ],
+ [
+ -79.80369546777857,
+ 32.696136659578144
+ ],
+ [
+ -79.80900170784201,
+ 32.696328564618085
+ ],
+ [
+ -79.94152429084983,
+ 32.714234520704736
+ ],
+ [
+ -79.94663009249861,
+ 32.71543681988353
+ ],
+ [
+ -79.95140849676417,
+ 32.717600517289995
+ ],
+ [
+ -79.95568037026158,
+ 32.720644499979535
+ ],
+ [
+ -79.95928556849124,
+ 32.72445465476862
+ ],
+ [
+ -79.96208893935501,
+ 32.72888814612331
+ ],
+ [
+ -79.96398538975397,
+ 32.733778770794686
+ ],
+ [
+ -79.96409507234401,
+ 32.734395522497685
+ ]
+ ]
+ ]
+ },
+ "properties": {
+ "fill": "#000",
+ "fill-opacity": 0.3,
+ "stroke": "#0ff"
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.92141723632812,
+ 32.953944317478246
+ ],
+ [
+ -79.97428894042969,
+ 32.83690450361482
+ ],
+ [
+ -79.97360229492188,
+ 32.76071688548088
+ ],
+ [
+ -79.93034362792969,
+ 32.76475877693074
+ ],
+ [
+ -79.93789672851562,
+ 32.74108223150125
+ ],
+ [
+ -79.80537414550781,
+ 32.7231762754146
+ ],
+ [
+ -79.81773376464844,
+ 32.923402043498875
+ ],
+ [
+ -79.92141723632812,
+ 32.953944317478246
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-buffer/test/test.js b/packages/turf-buffer/test/test.js
new file mode 100644
index 0000000000..9c610584d4
--- /dev/null
+++ b/packages/turf-buffer/test/test.js
@@ -0,0 +1,44 @@
+var test = require('tape');
+var buffer = require('../');
+var fs = require('fs');
+var glob = require('glob');
+var featurecollection = require('turf-helpers').featureCollection;
+var getBbox = require('turf-bbox');
+var point = require('turf-helpers').point;
+var distance = require('turf-distance');
+var normalize = require('geojson-normalize');
+
+test('buffer', function(t){
+ var fixtures = glob.sync(__dirname+'/fixtures/in/*.geojson');
+ fixtures.forEach(function(path){
+ var fixture = JSON.parse(fs.readFileSync(path));
+ var bbox = getBbox(fixture);
+ var width = distance(
+ point(bbox.slice(0,2)),
+ point(bbox.slice(2,5)),
+ 'miles');
+ if (!width) width = 1;
+ var buffered = buffer(fixture, width * 0.1, 'miles');
+
+ buffered = normalize(buffered);
+ buffered.features = buffered.features.map(function(f) {
+ f.properties = {
+ 'fill': '#000',
+ 'fill-opacity': 0.3,
+ 'stroke': '#0ff'
+ };
+ return f;
+ });
+
+ buffered.features = buffered.features.concat(normalize(fixture).features);
+ if (process.env.REGEN) {
+ fs.writeFileSync(
+ __dirname+'/fixtures/out/'+path.split('/')[path.split('/').length-1],
+ JSON.stringify(buffered, null, 2));
+ }
+ var expected = JSON.parse(fs.readFileSync(
+ __dirname+'/fixtures/out/'+path.split('/')[path.split('/').length-1]));
+ t.deepEqual(expected, buffered);
+ });
+ t.end();
+});
diff --git a/packages/turf-center/.npmignore b/packages/turf-center/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-center/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-center/LICENSE b/packages/turf-center/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-center/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-center/README.md b/packages/turf-center/README.md
new file mode 100644
index 0000000000..90bc772914
--- /dev/null
+++ b/packages/turf-center/README.md
@@ -0,0 +1,144 @@
+# turf-center
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-center.png)](http://travis-ci.org/Turfjs/turf-center)
+
+turf center module
+
+
+### `turf.center(features)`
+
+Takes a FeatureCollection and returns the absolute center point of all features.
+
+
+### Parameters
+
+| parameter | type | description |
+| ---------- | ----------------- | -------------- |
+| `features` | FeatureCollection | input features |
+
+
+### Example
+
+```js
+var features = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.522259, 35.4691]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.502754, 35.463455]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.508269, 35.463245]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.516809, 35.465779]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.515372, 35.467072]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.509363, 35.463053]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.511123, 35.466601]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.518547, 35.469327]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.519706, 35.469659]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.517839, 35.466998]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.508678, 35.464942]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-97.514914, 35.463453]
+ }
+ }
+ ]
+};
+
+var centerPt = turf.center(features);
+centerPt.properties['marker-size'] = 'large';
+centerPt.properties['marker-color'] = '#000';
+
+var resultFeatures = features.features.concat(centerPt);
+var result = {
+ "type": "FeatureCollection",
+ "features": resultFeatures
+};
+
+//=result
+```
+
+
+**Returns** `Feature.`, a Point feature at the absolute center point of all input features
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-center
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-center/bench.js b/packages/turf-center/bench.js
new file mode 100644
index 0000000000..fe3a1436dc
--- /dev/null
+++ b/packages/turf-center/bench.js
@@ -0,0 +1,22 @@
+var center = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var boxFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/box.geojson'));
+var blockFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/block.geojson'));
+
+var suite = new Benchmark.Suite('turf-center');
+suite
+ .add('turf-center#simple',function () {
+ center(boxFC);
+ })
+ .add('turf-center#complex',function () {
+ center(blockFC);
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
diff --git a/packages/turf-center/index.js b/packages/turf-center/index.js
new file mode 100644
index 0000000000..f4a1f33ffe
--- /dev/null
+++ b/packages/turf-center/index.js
@@ -0,0 +1,122 @@
+var bbox = require('turf-bbox'),
+ point = require('turf-helpers').point;
+
+/**
+ * Takes a {@link FeatureCollection} and returns the absolute center point of all features.
+ *
+ * @name center
+ * @category measurement
+ * @param {FeatureCollection} features input features
+ * @return {Feature} a Point feature at the
+ * absolute center point of all input features
+ * @example
+ * var features = {
+ * "type": "FeatureCollection",
+ * "features": [
+ * {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.522259, 35.4691]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.502754, 35.463455]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.508269, 35.463245]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.516809, 35.465779]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.515372, 35.467072]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.509363, 35.463053]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.511123, 35.466601]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.518547, 35.469327]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.519706, 35.469659]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.517839, 35.466998]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.508678, 35.464942]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-97.514914, 35.463453]
+ * }
+ * }
+ * ]
+ * };
+ *
+ * var centerPt = turf.center(features);
+ * centerPt.properties['marker-size'] = 'large';
+ * centerPt.properties['marker-color'] = '#000';
+ *
+ * var resultFeatures = features.features.concat(centerPt);
+ * var result = {
+ * "type": "FeatureCollection",
+ * "features": resultFeatures
+ * };
+ *
+ * //=result
+ */
+
+module.exports = function (layer) {
+ var ext = bbox(layer);
+ var x = (ext[0] + ext[2]) / 2;
+ var y = (ext[1] + ext[3]) / 2;
+ return point([x, y]);
+};
diff --git a/packages/turf-center/package.json b/packages/turf-center/package.json
new file mode 100644
index 0000000000..15f7e2d337
--- /dev/null
+++ b/packages/turf-center/package.json
@@ -0,0 +1,35 @@
+{
+ "name": "turf-center",
+ "version": "3.0.5",
+ "description": "turf center module",
+ "main": "index.js",
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-center.git"
+ },
+ "keywords": [
+ "centroid",
+ "geojson",
+ "gis",
+ "geospatial",
+ "geo",
+ "turf"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-center/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-center",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0"
+ },
+ "dependencies": {
+ "turf-bbox": "^3.0.1",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-center/test.js b/packages/turf-center/test.js
new file mode 100644
index 0000000000..ff34f0cd25
--- /dev/null
+++ b/packages/turf-center/test.js
@@ -0,0 +1,25 @@
+var test = require('tape');
+var center = require('./');
+var fs = require('fs');
+
+var boxFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/box.geojson'));
+var blockFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/block.geojson'));
+
+test('center', function(t){
+ var boxFcCenter = center(boxFC);
+ boxFcCenter.properties['marker-color'] = '#f0f';
+ t.ok(boxFcCenter, 'should return the proper center for a FeatureCollection');
+ t.deepEqual(boxFcCenter.geometry.coordinates, [65.56640625, 43.59448261855401]);
+
+ var blockFcCenter = center(blockFC.features[0]);
+ blockFcCenter.properties['marker-color'] = '#f0f';
+ t.ok(blockFcCenter, 'should return the proper center for a FeatureCollection');
+ t.deepEqual(blockFcCenter.geometry.coordinates, [ -114.02911397119072, 51.050271120392566]);
+
+ boxFC.features.push(boxFcCenter);
+ blockFC.features.push(blockFcCenter);
+ fs.writeFileSync(__dirname+'/test/out/box_out.geojson', JSON.stringify(boxFC,null,2));
+ fs.writeFileSync(__dirname+'/test/out/block_out.geojson', JSON.stringify(blockFC,null,2));
+
+ t.end();
+});
diff --git a/packages/turf-center/test/in/block.geojson b/packages/turf-center/test/in/block.geojson
new file mode 100644
index 0000000000..134f89784a
--- /dev/null
+++ b/packages/turf-center/test/in/block.geojson
@@ -0,0 +1,2076 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "NAME": "BAD!",
+ "id": 2
+ },
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [
+ -114.02853848727915,
+ 51.05222733916341,
+ 0
+ ],
+ [
+ -114.02853676996496,
+ 51.05222956633674,
+ 0
+ ],
+ [
+ -114.0284782312623,
+ 51.05223293467901,
+ 0
+ ],
+ [
+ -114.0284143755573,
+ 51.052241335831816,
+ 0
+ ],
+ [
+ -114.02835656968043,
+ 51.052248940790804,
+ 0
+ ],
+ [
+ -114.02828534111467,
+ 51.05227323299448,
+ 0
+ ],
+ [
+ -114.0282156710913,
+ 51.05229699258692,
+ 0
+ ],
+ [
+ -114.0281962336843,
+ 51.0523277610035,
+ 0
+ ],
+ [
+ -114.02815900050712,
+ 51.05235879710403,
+ 0
+ ],
+ [
+ -114.02813959317129,
+ 51.052366330669564,
+ 0
+ ],
+ [
+ -114.02810655562794,
+ 51.052365963747086,
+ 0
+ ],
+ [
+ -114.02687798671556,
+ 51.05235233033196,
+ 0
+ ],
+ [
+ -114.02681641023835,
+ 51.0523516468729,
+ 0
+ ],
+ [
+ -114.02619436981905,
+ 51.05234473728991,
+ 0
+ ],
+ [
+ -114.02590810605851,
+ 51.05234155670112,
+ 0
+ ],
+ [
+ -114.02582271173839,
+ 51.05234060650583,
+ 0
+ ],
+ [
+ -114.02581967798437,
+ 51.05234056762124,
+ 0
+ ],
+ [
+ -114.02579801668524,
+ 51.052340322489854,
+ 0
+ ],
+ [
+ -114.02579800949681,
+ 51.05234022000866,
+ 0
+ ],
+ [
+ -114.02579756134502,
+ 51.05233712224951,
+ 0
+ ],
+ [
+ -114.02579649758837,
+ 51.05231961949656,
+ 0
+ ],
+ [
+ -114.02579627559044,
+ 51.05230769018514,
+ 0
+ ],
+ [
+ -114.02579972340646,
+ 51.05229825021657,
+ 0
+ ],
+ [
+ -114.02580315703548,
+ 51.052291516157204,
+ 0
+ ],
+ [
+ -114.02580864319621,
+ 51.05228495244925,
+ 0
+ ],
+ [
+ -114.02581834152556,
+ 51.052281534213236,
+ 0
+ ],
+ [
+ -114.0258333304282,
+ 51.05228148595286,
+ 0
+ ],
+ [
+ -114.0258501053066,
+ 51.05228189577139,
+ 0
+ ],
+ [
+ -114.02585929068253,
+ 51.05228196565738,
+ 0
+ ],
+ [
+ -114.02585936675247,
+ 51.05219062107913,
+ 0
+ ],
+ [
+ -114.02585882417081,
+ 51.052087113542605,
+ 0
+ ],
+ [
+ -114.02585864554656,
+ 51.05201991541086,
+ 0
+ ],
+ [
+ -114.02585845900856,
+ 51.051941066600264,
+ 0
+ ],
+ [
+ -114.02585840413089,
+ 51.051842521278104,
+ 0
+ ],
+ [
+ -114.02585893303171,
+ 51.05177036066027,
+ 0
+ ],
+ [
+ -114.02585819012062,
+ 51.05171433687466,
+ 0
+ ],
+ [
+ -114.02585814803447,
+ 51.051638760287,
+ 0
+ ],
+ [
+ -114.02585832860497,
+ 51.05157883475622,
+ 0
+ ],
+ [
+ -114.02585858204594,
+ 51.05152426708346,
+ 0
+ ],
+ [
+ -114.02585868836341,
+ 51.05145906460062,
+ 0
+ ],
+ [
+ -114.02585872827828,
+ 51.051402681049964,
+ 0
+ ],
+ [
+ -114.02585891738224,
+ 51.05135552092149,
+ 0
+ ],
+ [
+ -114.02585966418636,
+ 51.051313538749746,
+ 0
+ ],
+ [
+ -114.02585943637429,
+ 51.05128862827753,
+ 0
+ ],
+ [
+ -114.02585964520746,
+ 51.051279458713765,
+ 0
+ ],
+ [
+ -114.0258599227359,
+ 51.05126814958072,
+ 0
+ ],
+ [
+ -114.02586111644571,
+ 51.05125777517606,
+ 0
+ ],
+ [
+ -114.02586236331656,
+ 51.051245539887,
+ 0
+ ],
+ [
+ -114.02586314048085,
+ 51.05123246865757,
+ 0
+ ],
+ [
+ -114.02586376129662,
+ 51.051220368352745,
+ 0
+ ],
+ [
+ -114.0258648107258,
+ 51.05120702737131,
+ 0
+ ],
+ [
+ -114.02586726534908,
+ 51.05118659318722,
+ 0
+ ],
+ [
+ -114.0258700640584,
+ 51.05116424411576,
+ 0
+ ],
+ [
+ -114.02587349962914,
+ 51.05113556613796,
+ 0
+ ],
+ [
+ -114.02587553127502,
+ 51.0511213799048,
+ 0
+ ],
+ [
+ -114.02587797416493,
+ 51.05110294144136,
+ 0
+ ],
+ [
+ -114.02587972028591,
+ 51.05108826982617,
+ 0
+ ],
+ [
+ -114.02588330321605,
+ 51.05106810508318,
+ 0
+ ],
+ [
+ -114.02588834981965,
+ 51.05103831202199,
+ 0
+ ],
+ [
+ -114.0258950768062,
+ 51.05100387090113,
+ 0
+ ],
+ [
+ -114.02590174436081,
+ 51.05096517765356,
+ 0
+ ],
+ [
+ -114.02591885738768,
+ 51.05088489562782,
+ 0
+ ],
+ [
+ -114.02594094628232,
+ 51.050776070120975,
+ 0
+ ],
+ [
+ -114.025951983753,
+ 51.05072200347114,
+ 0
+ ],
+ [
+ -114.02597162011031,
+ 51.050617080040205,
+ 0
+ ],
+ [
+ -114.0259994545431,
+ 51.050476735266955,
+ 0
+ ],
+ [
+ -114.0260273756664,
+ 51.050341226936204,
+ 0
+ ],
+ [
+ -114.02605311914421,
+ 51.05021400760727,
+ 0
+ ],
+ [
+ -114.02608987071933,
+ 51.05003203838802,
+ 0
+ ],
+ [
+ -114.02611764641966,
+ 51.049892493671095,
+ 0
+ ],
+ [
+ -114.02615480981105,
+ 51.04971078503134,
+ 0
+ ],
+ [
+ -114.02618301698372,
+ 51.04957579798556,
+ 0
+ ],
+ [
+ -114.02620206017127,
+ 51.04948047565529,
+ 0
+ ],
+ [
+ -114.02620469006344,
+ 51.049465246470035,
+ 0
+ ],
+ [
+ -114.02620859998908,
+ 51.049443724189494,
+ 0
+ ],
+ [
+ -114.02621295182708,
+ 51.049421833230866,
+ 0
+ ],
+ [
+ -114.02621908662641,
+ 51.04940031045083,
+ 0
+ ],
+ [
+ -114.02622286616618,
+ 51.049375219277586,
+ 0
+ ],
+ [
+ -114.0262275742883,
+ 51.04935287875192,
+ 0
+ ],
+ [
+ -114.026231553306,
+ 51.049329990016304,
+ 0
+ ],
+ [
+ -114.02623626004808,
+ 51.04930522226438,
+ 0
+ ],
+ [
+ -114.02624075458581,
+ 51.04928099394336,
+ 0
+ ],
+ [
+ -114.0262463749725,
+ 51.04926031631113,
+ 0
+ ],
+ [
+ -114.02625122539195,
+ 51.049237445358266,
+ 0
+ ],
+ [
+ -114.02625586360266,
+ 51.049215104846645,
+ 0
+ ],
+ [
+ -114.02626055409311,
+ 51.0491893841859,
+ 0
+ ],
+ [
+ -114.02626476390105,
+ 51.04916609984871,
+ 0
+ ],
+ [
+ -114.02626911522896,
+ 51.04914339981167,
+ 0
+ ],
+ [
+ -114.02627501805078,
+ 51.04911529660006,
+ 0
+ ],
+ [
+ -114.02628122143842,
+ 51.049091607276104,
+ 0
+ ],
+ [
+ -114.02628507355737,
+ 51.049068862401796,
+ 0
+ ],
+ [
+ -114.02628956858115,
+ 51.04904557799908,
+ 0
+ ],
+ [
+ -114.02629413432885,
+ 51.04902378587484,
+ 0
+ ],
+ [
+ -114.02630119381803,
+ 51.049000815534995,
+ 0
+ ],
+ [
+ -114.0263088968188,
+ 51.0489783844334,
+ 0
+ ],
+ [
+ -114.02631653031078,
+ 51.04895662757635,
+ 0
+ ],
+ [
+ -114.02632494703467,
+ 51.048935329018384,
+ 0
+ ],
+ [
+ -114.02633314762629,
+ 51.04891267305969,
+ 0
+ ],
+ [
+ -114.02634728207038,
+ 51.048886590677014,
+ 0
+ ],
+ [
+ -114.0263606327145,
+ 51.04886411334974,
+ 0
+ ],
+ [
+ -114.02636961847627,
+ 51.0488428596085,
+ 0
+ ],
+ [
+ -114.02638396943712,
+ 51.04882140688156,
+ 0
+ ],
+ [
+ -114.02639454054278,
+ 51.048801681034,
+ 0
+ ],
+ [
+ -114.02640616643501,
+ 51.048783438252045,
+ 0
+ ],
+ [
+ -114.02641859465822,
+ 51.04876664263357,
+ 0
+ ],
+ [
+ -114.0264325161235,
+ 51.04874740147032,
+ 0
+ ],
+ [
+ -114.02644616976673,
+ 51.04872870873929,
+ 0
+ ],
+ [
+ -114.02646064801543,
+ 51.0487105102549,
+ 0
+ ],
+ [
+ -114.02648071597413,
+ 51.048685694063245,
+ 0
+ ],
+ [
+ -114.02649821814065,
+ 51.04866825901578,
+ 0
+ ],
+ [
+ -114.02651813064908,
+ 51.04864601391472,
+ 0
+ ],
+ [
+ -114.02653819800861,
+ 51.048625243090314,
+ 0
+ ],
+ [
+ -114.02655469129894,
+ 51.04860939045524,
+ 0
+ ],
+ [
+ -114.02657347862952,
+ 51.04859235964199,
+ 0
+ ],
+ [
+ -114.02659440380143,
+ 51.04857285616423,
+ 0
+ ],
+ [
+ -114.02661431882035,
+ 51.04855763202293,
+ 0
+ ],
+ [
+ -114.02664610668305,
+ 51.04853230970824,
+ 0
+ ],
+ [
+ -114.02666317202666,
+ 51.04851933363995,
+ 0
+ ],
+ [
+ -114.02668009352848,
+ 51.048506726180804,
+ 0
+ ],
+ [
+ -114.02670273114173,
+ 51.04848915508388,
+ 0
+ ],
+ [
+ -114.02672251806953,
+ 51.04847451528545,
+ 0
+ ],
+ [
+ -114.02674287662042,
+ 51.04846189804154,
+ 0
+ ],
+ [
+ -114.02676480195989,
+ 51.04844581939018,
+ 0
+ ],
+ [
+ -114.02679057792847,
+ 51.04842968591376,
+ 0
+ ],
+ [
+ -114.02681221880559,
+ 51.04841500072638,
+ 0
+ ],
+ [
+ -114.02683321760675,
+ 51.04840229342244,
+ 0
+ ],
+ [
+ -114.02686071972396,
+ 51.04838706749661,
+ 0
+ ],
+ [
+ -114.02688464400437,
+ 51.04837508767899,
+ 0
+ ],
+ [
+ -114.02691642312023,
+ 51.048357289694074,
+ 0
+ ],
+ [
+ -114.02694171760552,
+ 51.0483447611757,
+ 0
+ ],
+ [
+ -114.02696508634044,
+ 51.04833399508281,
+ 0
+ ],
+ [
+ -114.02698828470739,
+ 51.04832457748371,
+ 0
+ ],
+ [
+ -114.0270177113926,
+ 51.048310654586835,
+ 0
+ ],
+ [
+ -114.02704672850066,
+ 51.04829875446605,
+ 0
+ ],
+ [
+ -114.02707635779358,
+ 51.04828749246693,
+ 0
+ ],
+ [
+ -114.0271094371159,
+ 51.048274018187065,
+ 0
+ ],
+ [
+ -114.02713808223585,
+ 51.048262612564876,
+ 0
+ ],
+ [
+ -114.02716715575033,
+ 51.04825215974717,
+ 0
+ ],
+ [
+ -114.02719630079716,
+ 51.04824211144332,
+ 0
+ ],
+ [
+ -114.02722952507284,
+ 51.04823273641156,
+ 0
+ ],
+ [
+ -114.02725895332134,
+ 51.048221699156,
+ 0
+ ],
+ [
+ -114.02730244410789,
+ 51.048209121365566,
+ 0
+ ],
+ [
+ -114.0273377376304,
+ 51.04819961097369,
+ 0
+ ],
+ [
+ -114.02737832053319,
+ 51.04818964984588,
+ 0
+ ],
+ [
+ -114.02742132801097,
+ 51.04817986792973,
+ 0
+ ],
+ [
+ -114.02745525009777,
+ 51.04817134669412,
+ 0
+ ],
+ [
+ -114.02749175599986,
+ 51.04816457783792,
+ 0
+ ],
+ [
+ -114.02752476730626,
+ 51.04815700970751,
+ 0
+ ],
+ [
+ -114.02756069023121,
+ 51.04815082529929,
+ 0
+ ],
+ [
+ -114.02759805215476,
+ 51.048144649530066,
+ 0
+ ],
+ [
+ -114.02763534407065,
+ 51.04814067624877,
+ 0
+ ],
+ [
+ -114.02766871273377,
+ 51.04813693761727,
+ 0
+ ],
+ [
+ -114.02770315318804,
+ 51.048132057026805,
+ 0
+ ],
+ [
+ -114.02774058732561,
+ 51.04812745439721,
+ 0
+ ],
+ [
+ -114.02777087582707,
+ 51.04812434574852,
+ 0
+ ],
+ [
+ -114.02780824101153,
+ 51.04812131631608,
+ 0
+ ],
+ [
+ -114.02784788636181,
+ 51.04811783684204,
+ 0
+ ],
+ [
+ -114.02788603421416,
+ 51.048116704030896,
+ 0
+ ],
+ [
+ -114.02792726371291,
+ 51.04811507603595,
+ 0
+ ],
+ [
+ -114.02796356058656,
+ 51.048114258282176,
+ 0
+ ],
+ [
+ -114.02800292237168,
+ 51.04811357462882,
+ 0
+ ],
+ [
+ -114.02804472338866,
+ 51.048113699452486,
+ 0
+ ],
+ [
+ -114.02808451254727,
+ 51.048114588871506,
+ 0
+ ],
+ [
+ -114.02812145230853,
+ 51.048115613808505,
+ 0
+ ],
+ [
+ -114.02815981694795,
+ 51.04811686313372,
+ 0
+ ],
+ [
+ -114.0281949019305,
+ 51.04811897625145,
+ 0
+ ],
+ [
+ -114.02823162574009,
+ 51.04812134966491,
+ 0
+ ],
+ [
+ -114.02827856526983,
+ 51.048126201760645,
+ 0
+ ],
+ [
+ -114.02831630202962,
+ 51.048129168224456,
+ 0
+ ],
+ [
+ -114.02835324395353,
+ 51.04813370807131,
+ 0
+ ],
+ [
+ -114.02838888560497,
+ 51.04813887750327,
+ 0
+ ],
+ [
+ -114.02842461442559,
+ 51.048144316595,
+ 0
+ ],
+ [
+ -114.02845533748949,
+ 51.0481498917405,
+ 0
+ ],
+ [
+ -114.02848914075189,
+ 51.04815492674351,
+ 0
+ ],
+ [
+ -114.02852742445803,
+ 51.04816365542149,
+ 0
+ ],
+ [
+ -114.02856130001973,
+ 51.04817027257808,
+ 0
+ ],
+ [
+ -114.02859323758891,
+ 51.04817715090109,
+ 0
+ ],
+ [
+ -114.02862289028492,
+ 51.04818376907282,
+ 0
+ ],
+ [
+ -114.02865790922901,
+ 51.048191995082675,
+ 0
+ ],
+ [
+ -114.02869098622651,
+ 51.04820100366507,
+ 0
+ ],
+ [
+ -114.02872149914566,
+ 51.04821027357033,
+ 0
+ ],
+ [
+ -114.02875401998463,
+ 51.04821931823046,
+ 0
+ ],
+ [
+ -114.02878267768185,
+ 51.04822661083593,
+ 0
+ ],
+ [
+ -114.02881376004055,
+ 51.04823646490915,
+ 0
+ ],
+ [
+ -114.02884598351626,
+ 51.048246588384266,
+ 0
+ ],
+ [
+ -114.02887872040445,
+ 51.04825896814533,
+ 0
+ ],
+ [
+ -114.02890744981237,
+ 51.04826683604506,
+ 0
+ ],
+ [
+ -114.02893644946191,
+ 51.048278092998174,
+ 0
+ ],
+ [
+ -114.02896411196517,
+ 51.04829029419689,
+ 0
+ ],
+ [
+ -114.02899383965875,
+ 51.0483026207329,
+ 0
+ ],
+ [
+ -114.02902014480057,
+ 51.048313060268356,
+ 0
+ ],
+ [
+ -114.02904744965836,
+ 51.04832571102243,
+ 0
+ ],
+ [
+ -114.02908718049365,
+ 51.048342457994316,
+ 0
+ ],
+ [
+ -114.02911683859624,
+ 51.04835514410533,
+ 0
+ ],
+ [
+ -114.02914820582886,
+ 51.04836644536462,
+ 0
+ ],
+ [
+ -114.02917879322769,
+ 51.04838044372838,
+ 0
+ ],
+ [
+ -114.02920616805801,
+ 51.04839083800616,
+ 0
+ ],
+ [
+ -114.02923397197547,
+ 51.048403173951314,
+ 0
+ ],
+ [
+ -114.02925962058258,
+ 51.048414917107394,
+ 0
+ ],
+ [
+ -114.02928885081802,
+ 51.04842743247692,
+ 0
+ ],
+ [
+ -114.02931694007137,
+ 51.048439858228086,
+ 0
+ ],
+ [
+ -114.029344959281,
+ 51.04845200530849,
+ 0
+ ],
+ [
+ -114.02937318972737,
+ 51.04846438606194,
+ 0
+ ],
+ [
+ -114.02939884057287,
+ 51.048475050419526,
+ 0
+ ],
+ [
+ -114.02943099326443,
+ 51.04848778976147,
+ 0
+ ],
+ [
+ -114.02946129539886,
+ 51.04850148247215,
+ 0
+ ],
+ [
+ -114.0294878865649,
+ 51.04851282080263,
+ 0
+ ],
+ [
+ -114.02951875631501,
+ 51.04852421198492,
+ 0
+ ],
+ [
+ -114.02954877102479,
+ 51.048536628204126,
+ 0
+ ],
+ [
+ -114.02957928383657,
+ 51.048549592662944,
+ 0
+ ],
+ [
+ -114.0296143788171,
+ 51.048564533692854,
+ 0
+ ],
+ [
+ -114.02964546236733,
+ 51.048577857578834,
+ 0
+ ],
+ [
+ -114.02967727659963,
+ 51.048591900449125,
+ 0
+ ],
+ [
+ -114.02970914532203,
+ 51.04860414535139,
+ 0
+ ],
+ [
+ -114.02973987337491,
+ 51.04861679507299,
+ 0
+ ],
+ [
+ -114.02977017264777,
+ 51.04863020003275,
+ 0
+ ],
+ [
+ -114.02980462539149,
+ 51.04864424219623,
+ 0
+ ],
+ [
+ -114.02983464031875,
+ 51.04865675722873,
+ 0
+ ],
+ [
+ -114.02986551140584,
+ 51.04866994626428,
+ 0
+ ],
+ [
+ -114.02989524034233,
+ 51.048681238751335,
+ 0
+ ],
+ [
+ -114.02992668085797,
+ 51.04869496700867,
+ 0
+ ],
+ [
+ -114.02995605595795,
+ 51.04870820135187,
+ 0
+ ],
+ [
+ -114.02998906679755,
+ 51.04872201908715,
+ 0
+ ],
+ [
+ -114.03001859587327,
+ 51.04873511852917,
+ 0
+ ],
+ [
+ -114.030048454211,
+ 51.0487479032386,
+ 0
+ ],
+ [
+ -114.03008183707304,
+ 51.04876130732452,
+ 0
+ ],
+ [
+ -114.03011277867645,
+ 51.048773057920066,
+ 0
+ ],
+ [
+ -114.03014735684239,
+ 51.04878665046351,
+ 0
+ ],
+ [
+ -114.03017694661057,
+ 51.04880083760669,
+ 0
+ ],
+ [
+ -114.03020854346936,
+ 51.04881348698037,
+ 0
+ ],
+ [
+ -114.03023855928801,
+ 51.048827035727136,
+ 0
+ ],
+ [
+ -114.03027228502171,
+ 51.048841167837665,
+ 0
+ ],
+ [
+ -114.03030237215697,
+ 51.048854671600914,
+ 0
+ ],
+ [
+ -114.03033238808244,
+ 51.048868301231025,
+ 0
+ ],
+ [
+ -114.03036384307258,
+ 51.048879781934886,
+ 0
+ ],
+ [
+ -114.03039350240236,
+ 51.048893285785695,
+ 0
+ ],
+ [
+ -114.03043066267523,
+ 51.04890768664903,
+ 0
+ ],
+ [
+ -114.03045802727134,
+ 51.048921146132216,
+ 0
+ ],
+ [
+ -114.03049005433945,
+ 51.04893496398188,
+ 0
+ ],
+ [
+ -114.0305209974321,
+ 51.04894864725988,
+ 0
+ ],
+ [
+ -114.03055101381368,
+ 51.048962780258265,
+ 0
+ ],
+ [
+ -114.03058395170703,
+ 51.04897573483026,
+ 0
+ ],
+ [
+ -114.03061054348382,
+ 51.04898717179129,
+ 0
+ ],
+ [
+ -114.03064412709462,
+ 51.04900170836907,
+ 0
+ ],
+ [
+ -114.03067579834867,
+ 51.04901647018224,
+ 0
+ ],
+ [
+ -114.0307079528051,
+ 51.04902862483912,
+ 0
+ ],
+ [
+ -114.03073746905599,
+ 51.04904113977001,
+ 0
+ ],
+ [
+ -114.03077184777871,
+ 51.049052340913256,
+ 0
+ ],
+ [
+ -114.03080507035048,
+ 51.04906426152926,
+ 0
+ ],
+ [
+ -114.03083780984642,
+ 51.04907461805083,
+ 0
+ ],
+ [
+ -114.0308693201412,
+ 51.049083078055524,
+ 0
+ ],
+ [
+ -114.03090525018804,
+ 51.04909147395508,
+ 0
+ ],
+ [
+ -114.03094276508233,
+ 51.049098224304075,
+ 0
+ ],
+ [
+ -114.03097799502146,
+ 51.04910253903072,
+ 0
+ ],
+ [
+ -114.03101564789533,
+ 51.04910658341202,
+ 0
+ ],
+ [
+ -114.03105043564396,
+ 51.04910864181284,
+ 0
+ ],
+ [
+ -114.03108616299468,
+ 51.0491103044054,
+ 0
+ ],
+ [
+ -114.03112031982798,
+ 51.0491115538778,
+ 0
+ ],
+ [
+ -114.03115533275208,
+ 51.04911122990987,
+ 0
+ ],
+ [
+ -114.03119040232504,
+ 51.04911031259442,
+ 0
+ ],
+ [
+ -114.03122434493513,
+ 51.04910900002152,
+ 0
+ ],
+ [
+ -114.03125194012043,
+ 51.04910643057436,
+ 0
+ ],
+ [
+ -114.031280005554,
+ 51.04910327666265,
+ 0
+ ],
+ [
+ -114.03130791515862,
+ 51.04909957441257,
+ 0
+ ],
+ [
+ -114.03133605061346,
+ 51.04909663622205,
+ 0
+ ],
+ [
+ -114.03134998325449,
+ 51.049094708684436,
+ 0
+ ],
+ [
+ -114.03136384589534,
+ 51.049092610359125,
+ 0
+ ],
+ [
+ -114.03137764850716,
+ 51.04909032326404,
+ 0
+ ],
+ [
+ -114.03139969715932,
+ 51.04908770133251,
+ 0
+ ],
+ [
+ -114.0314102716212,
+ 51.04909708376582,
+ 0
+ ],
+ [
+ -114.03140561370377,
+ 51.04910558030906,
+ 0
+ ],
+ [
+ -114.03140105420438,
+ 51.049114094805105,
+ 0
+ ],
+ [
+ -114.03139668157162,
+ 51.04912266318917,
+ 0
+ ],
+ [
+ -114.03139255284134,
+ 51.04913126746639,
+ 0
+ ],
+ [
+ -114.03138904885711,
+ 51.04913997945245,
+ 0
+ ],
+ [
+ -114.03138601841793,
+ 51.04914876322902,
+ 0
+ ],
+ [
+ -114.03138337023518,
+ 51.04915760084123,
+ 0
+ ],
+ [
+ -114.03138122268362,
+ 51.049166492257335,
+ 0
+ ],
+ [
+ -114.03137960284914,
+ 51.049175419490574,
+ 0
+ ],
+ [
+ -114.03137842659235,
+ 51.04918439155336,
+ 0
+ ],
+ [
+ -114.03137793205845,
+ 51.049193363433076,
+ 0
+ ],
+ [
+ -114.03137909334225,
+ 51.0492023348683,
+ 0
+ ],
+ [
+ -114.03138036871034,
+ 51.0492112882934,
+ 0
+ ],
+ [
+ -114.03138298605445,
+ 51.04922012449168,
+ 0
+ ],
+ [
+ -114.03138790197198,
+ 51.04923460562089,
+ 0
+ ],
+ [
+ -114.0314056405684,
+ 51.0492528589902,
+ 0
+ ],
+ [
+ -114.03141409351934,
+ 51.04926740209584,
+ 0
+ ],
+ [
+ -114.0314239587166,
+ 51.04928028172177,
+ 0
+ ],
+ [
+ -114.0314362623644,
+ 51.04929473389317,
+ 0
+ ],
+ [
+ -114.03144954876505,
+ 51.0493093206447,
+ 0
+ ],
+ [
+ -114.03146499089326,
+ 51.049322872995866,
+ 0
+ ],
+ [
+ -114.03147993292038,
+ 51.04933714465775,
+ 0
+ ],
+ [
+ -114.0314970981892,
+ 51.04934898849251,
+ 0
+ ],
+ [
+ -114.03151460605481,
+ 51.04936127272896,
+ 0
+ ],
+ [
+ -114.03153533838,
+ 51.04937536302779,
+ 0
+ ],
+ [
+ -114.03155377269448,
+ 51.049386757025495,
+ 0
+ ],
+ [
+ -114.03157272053764,
+ 51.049398276737676,
+ 0
+ ],
+ [
+ -114.03159266686292,
+ 51.04940998496115,
+ 0
+ ],
+ [
+ -114.03161274338014,
+ 51.04942646669052,
+ 0
+ ],
+ [
+ -114.03163140865799,
+ 51.04944187003122,
+ 0
+ ],
+ [
+ -114.0316524293767,
+ 51.04945838745707,
+ 0
+ ],
+ [
+ -114.03166659175567,
+ 51.04947950048739,
+ 0
+ ],
+ [
+ -114.03168655522009,
+ 51.04949742958037,
+ 0
+ ],
+ [
+ -114.0317386298107,
+ 51.04954457555382,
+ 0
+ ],
+ [
+ -114.03178816624411,
+ 51.049592297536435,
+ 0
+ ],
+ [
+ -114.0318420030987,
+ 51.04964875633963,
+ 0
+ ],
+ [
+ -114.03190141158716,
+ 51.04972077481197,
+ 0
+ ],
+ [
+ -114.03193984165651,
+ 51.049773605923775,
+ 0
+ ],
+ [
+ -114.03196306244281,
+ 51.049805469950996,
+ 0
+ ],
+ [
+ -114.03198650881785,
+ 51.0498376449562,
+ 0
+ ],
+ [
+ -114.03203282990202,
+ 51.049896011547446,
+ 0
+ ],
+ [
+ -114.03206273255188,
+ 51.049929777746655,
+ 0
+ ],
+ [
+ -114.03211903308572,
+ 51.04998397932216,
+ 0
+ ],
+ [
+ -114.0321417673102,
+ 51.050002833516196,
+ 0
+ ],
+ [
+ -114.03214340565177,
+ 51.05005996276889,
+ 0
+ ],
+ [
+ -114.03214340613589,
+ 51.05006066216941,
+ 0
+ ],
+ [
+ -114.03214343638108,
+ 51.050114659843594,
+ 0
+ ],
+ [
+ -114.03214394451605,
+ 51.0509826742242,
+ 0
+ ],
+ [
+ -114.0321440300913,
+ 51.05098267420069,
+ 0
+ ],
+ [
+ -114.03243090892511,
+ 51.05098344987792,
+ 0
+ ],
+ [
+ -114.03243151757532,
+ 51.05224905163713,
+ 0
+ ],
+ [
+ -114.032431666791,
+ 51.05229728145252,
+ 0
+ ],
+ [
+ -114.03242614704902,
+ 51.05229730995309,
+ 0
+ ],
+ [
+ -114.03240271157375,
+ 51.05229727959429,
+ 0
+ ],
+ [
+ -114.03231115761226,
+ 51.052297162002105,
+ 0
+ ],
+ [
+ -114.03221411385385,
+ 51.05229706203286,
+ 0
+ ],
+ [
+ -114.03214666302782,
+ 51.052297196570464,
+ 0
+ ],
+ [
+ -114.0321406155454,
+ 51.052297209021184,
+ 0
+ ],
+ [
+ -114.03206437987821,
+ 51.05229692430863,
+ 0
+ ],
+ [
+ -114.03198483529414,
+ 51.052296765408975,
+ 0
+ ],
+ [
+ -114.03190564759434,
+ 51.052297057641766,
+ 0
+ ],
+ [
+ -114.03183581598613,
+ 51.05229676204216,
+ 0
+ ],
+ [
+ -114.03181611879371,
+ 51.05229667750816,
+ 0
+ ],
+ [
+ -114.03179545396533,
+ 51.052297787968044,
+ 0
+ ],
+ [
+ -114.03178026432005,
+ 51.05229836834011,
+ 0
+ ],
+ [
+ -114.03176310687206,
+ 51.052299657635025,
+ 0
+ ],
+ [
+ -114.03174544852384,
+ 51.052300552414664,
+ 0
+ ],
+ [
+ -114.03173251130141,
+ 51.05230157805901,
+ 0
+ ],
+ [
+ -114.03173088683995,
+ 51.05230170795197,
+ 0
+ ],
+ [
+ -114.03171872294138,
+ 51.052303132528465,
+ 0
+ ],
+ [
+ -114.0317062727797,
+ 51.052305176573114,
+ 0
+ ],
+ [
+ -114.03169410638768,
+ 51.05230712974333,
+ 0
+ ],
+ [
+ -114.03168371002754,
+ 51.052309083331494,
+ 0
+ ],
+ [
+ -114.03167534040197,
+ 51.052310992319875,
+ 0
+ ],
+ [
+ -114.03166260524632,
+ 51.052313431085906,
+ 0
+ ],
+ [
+ -114.03165494657607,
+ 51.05231631077014,
+ 0
+ ],
+ [
+ -114.0316448955852,
+ 51.052320664516934,
+ 0
+ ],
+ [
+ -114.03163357239124,
+ 51.052325098615746,
+ 0
+ ],
+ [
+ -114.03162513334337,
+ 51.05232979353399,
+ 0
+ ],
+ [
+ -114.03161683404629,
+ 51.052334452455,
+ 0
+ ],
+ [
+ -114.0316122001268,
+ 51.052336719118166,
+ 0
+ ],
+ [
+ -114.0316077672479,
+ 51.052338887738806,
+ 0
+ ],
+ [
+ -114.03159968183073,
+ 51.05234345670353,
+ 0
+ ],
+ [
+ -114.03159308245922,
+ 51.05234779962398,
+ 0
+ ],
+ [
+ -114.03158534062413,
+ 51.05235214465077,
+ 0
+ ],
+ [
+ -114.03157902574958,
+ 51.052357467373206,
+ 0
+ ],
+ [
+ -114.03157332260321,
+ 51.05236256698497,
+ 0
+ ],
+ [
+ -114.03156797842057,
+ 51.05236908507752,
+ 0
+ ],
+ [
+ -114.0315638478943,
+ 51.052375424845636,
+ 0
+ ],
+ [
+ -114.03156095684872,
+ 51.052381807429605,
+ 0
+ ],
+ [
+ -114.0315579379799,
+ 51.05238899103217,
+ 0
+ ],
+ [
+ -114.03155661540872,
+ 51.05239470885211,
+ 0
+ ],
+ [
+ -114.03155354033326,
+ 51.052426226746675,
+ 0
+ ],
+ [
+ -114.03140692875641,
+ 51.05242704204568,
+ 0
+ ],
+ [
+ -114.03109434333611,
+ 51.05242618259666,
+ 0
+ ],
+ [
+ -114.03099679715106,
+ 51.05242592892508,
+ 0
+ ],
+ [
+ -114.03049700395792,
+ 51.05242454832461,
+ 0
+ ],
+ [
+ -114.03049179234094,
+ 51.052424669247564,
+ 0
+ ],
+ [
+ -114.03032216093632,
+ 51.05242866615632,
+ 0
+ ],
+ [
+ -114.0303147657952,
+ 51.052418079081654,
+ 0
+ ],
+ [
+ -114.0303083701916,
+ 51.0524092159759,
+ 0
+ ],
+ [
+ -114.03030160293811,
+ 51.052399104293805,
+ 0
+ ],
+ [
+ -114.03029499309167,
+ 51.05238759017401,
+ 0
+ ],
+ [
+ -114.03028795195023,
+ 51.05237522304094,
+ 0
+ ],
+ [
+ -114.03028161321775,
+ 51.052363878755806,
+ 0
+ ],
+ [
+ -114.03027632697857,
+ 51.05235235530224,
+ 0
+ ],
+ [
+ -114.03027111296149,
+ 51.05234003174444,
+ 0
+ ],
+ [
+ -114.03026782779891,
+ 51.05233285070666,
+ 0
+ ],
+ [
+ -114.03026478545218,
+ 51.05232619820152,
+ 0
+ ],
+ [
+ -114.03026132806981,
+ 51.05231738107878,
+ 0
+ ],
+ [
+ -114.03026027250785,
+ 51.05231503413577,
+ 0
+ ],
+ [
+ -114.03025885694883,
+ 51.052309622689826,
+ 0
+ ],
+ [
+ -114.03025632761477,
+ 51.052302269752325,
+ 0
+ ],
+ [
+ -114.03025392525983,
+ 51.05229278621787,
+ 0
+ ],
+ [
+ -114.03025132228451,
+ 51.05228404888217,
+ 0
+ ],
+ [
+ -114.03024857895944,
+ 51.05227443058999,
+ 0
+ ],
+ [
+ -114.03024702066236,
+ 51.0522688483761,
+ 0
+ ],
+ [
+ -114.0302459587251,
+ 51.052261090521114,
+ 0
+ ],
+ [
+ -114.03024511612611,
+ 51.052257234148556,
+ 0
+ ],
+ [
+ -114.03023006867089,
+ 51.052257149042994,
+ 0
+ ],
+ [
+ -114.03022707628061,
+ 51.05225710936311,
+ 0
+ ],
+ [
+ -114.03022608297,
+ 51.05224302542302,
+ 0
+ ],
+ [
+ -114.03022599369775,
+ 51.05224173182518,
+ 0
+ ],
+ [
+ -114.03022351429739,
+ 51.05222342939293,
+ 0
+ ],
+ [
+ -114.03022088961353,
+ 51.05220104566444,
+ 0
+ ],
+ [
+ -114.03019334667272,
+ 51.05220133146383,
+ 0
+ ],
+ [
+ -114.0301515006613,
+ 51.05220128922641,
+ 0
+ ],
+ [
+ -114.03011662633426,
+ 51.05220119843134,
+ 0
+ ],
+ [
+ -114.0301160122537,
+ 51.05220220274149,
+ 0
+ ],
+ [
+ -114.03007342109171,
+ 51.05219899269019,
+ 0
+ ],
+ [
+ -114.03004416158298,
+ 51.05221577143951,
+ 0
+ ],
+ [
+ -114.02997631832292,
+ 51.05223088260091,
+ 0
+ ],
+ [
+ -114.02990447722985,
+ 51.052235093809244,
+ 0
+ ],
+ [
+ -114.02979271808536,
+ 51.05223428450657,
+ 0
+ ],
+ [
+ -114.02958118642908,
+ 51.052232750647036,
+ 0
+ ],
+ [
+ -114.029275179558,
+ 51.05223053171497,
+ 0
+ ],
+ [
+ -114.02909285569545,
+ 51.05222920900182,
+ 0
+ ],
+ [
+ -114.02871525003529,
+ 51.05222871534896,
+ 0
+ ],
+ [
+ -114.02871526541152,
+ 51.05222820922389,
+ 0
+ ],
+ [
+ -114.0287124595658,
+ 51.05222767951961,
+ 0
+ ],
+ [
+ -114.02853848727915,
+ 51.05222733916341,
+ 0
+ ]
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-center/test/in/box.geojson b/packages/turf-center/test/in/box.geojson
new file mode 100644
index 0000000000..717952c76e
--- /dev/null
+++ b/packages/turf-center/test/in/box.geojson
@@ -0,0 +1,36 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 60.46875,
+ 39.90973623453719
+ ],
+ [
+ 60.46875,
+ 47.27922900257082
+ ],
+ [
+ 70.6640625,
+ 47.27922900257082
+ ],
+ [
+ 70.6640625,
+ 39.90973623453719
+ ],
+ [
+ 60.46875,
+ 39.90973623453719
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-center/test/out/block_out.geojson b/packages/turf-center/test/out/block_out.geojson
new file mode 100644
index 0000000000..96c356063c
--- /dev/null
+++ b/packages/turf-center/test/out/block_out.geojson
@@ -0,0 +1,2089 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "NAME": "BAD!",
+ "id": 2
+ },
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [
+ -114.02853848727915,
+ 51.05222733916341,
+ 0
+ ],
+ [
+ -114.02853676996496,
+ 51.05222956633674,
+ 0
+ ],
+ [
+ -114.0284782312623,
+ 51.05223293467901,
+ 0
+ ],
+ [
+ -114.0284143755573,
+ 51.052241335831816,
+ 0
+ ],
+ [
+ -114.02835656968043,
+ 51.052248940790804,
+ 0
+ ],
+ [
+ -114.02828534111467,
+ 51.05227323299448,
+ 0
+ ],
+ [
+ -114.0282156710913,
+ 51.05229699258692,
+ 0
+ ],
+ [
+ -114.0281962336843,
+ 51.0523277610035,
+ 0
+ ],
+ [
+ -114.02815900050712,
+ 51.05235879710403,
+ 0
+ ],
+ [
+ -114.02813959317129,
+ 51.052366330669564,
+ 0
+ ],
+ [
+ -114.02810655562794,
+ 51.052365963747086,
+ 0
+ ],
+ [
+ -114.02687798671556,
+ 51.05235233033196,
+ 0
+ ],
+ [
+ -114.02681641023835,
+ 51.0523516468729,
+ 0
+ ],
+ [
+ -114.02619436981905,
+ 51.05234473728991,
+ 0
+ ],
+ [
+ -114.02590810605851,
+ 51.05234155670112,
+ 0
+ ],
+ [
+ -114.02582271173839,
+ 51.05234060650583,
+ 0
+ ],
+ [
+ -114.02581967798437,
+ 51.05234056762124,
+ 0
+ ],
+ [
+ -114.02579801668524,
+ 51.052340322489854,
+ 0
+ ],
+ [
+ -114.02579800949681,
+ 51.05234022000866,
+ 0
+ ],
+ [
+ -114.02579756134502,
+ 51.05233712224951,
+ 0
+ ],
+ [
+ -114.02579649758837,
+ 51.05231961949656,
+ 0
+ ],
+ [
+ -114.02579627559044,
+ 51.05230769018514,
+ 0
+ ],
+ [
+ -114.02579972340646,
+ 51.05229825021657,
+ 0
+ ],
+ [
+ -114.02580315703548,
+ 51.052291516157204,
+ 0
+ ],
+ [
+ -114.02580864319621,
+ 51.05228495244925,
+ 0
+ ],
+ [
+ -114.02581834152556,
+ 51.052281534213236,
+ 0
+ ],
+ [
+ -114.0258333304282,
+ 51.05228148595286,
+ 0
+ ],
+ [
+ -114.0258501053066,
+ 51.05228189577139,
+ 0
+ ],
+ [
+ -114.02585929068253,
+ 51.05228196565738,
+ 0
+ ],
+ [
+ -114.02585936675247,
+ 51.05219062107913,
+ 0
+ ],
+ [
+ -114.02585882417081,
+ 51.052087113542605,
+ 0
+ ],
+ [
+ -114.02585864554656,
+ 51.05201991541086,
+ 0
+ ],
+ [
+ -114.02585845900856,
+ 51.051941066600264,
+ 0
+ ],
+ [
+ -114.02585840413089,
+ 51.051842521278104,
+ 0
+ ],
+ [
+ -114.02585893303171,
+ 51.05177036066027,
+ 0
+ ],
+ [
+ -114.02585819012062,
+ 51.05171433687466,
+ 0
+ ],
+ [
+ -114.02585814803447,
+ 51.051638760287,
+ 0
+ ],
+ [
+ -114.02585832860497,
+ 51.05157883475622,
+ 0
+ ],
+ [
+ -114.02585858204594,
+ 51.05152426708346,
+ 0
+ ],
+ [
+ -114.02585868836341,
+ 51.05145906460062,
+ 0
+ ],
+ [
+ -114.02585872827828,
+ 51.051402681049964,
+ 0
+ ],
+ [
+ -114.02585891738224,
+ 51.05135552092149,
+ 0
+ ],
+ [
+ -114.02585966418636,
+ 51.051313538749746,
+ 0
+ ],
+ [
+ -114.02585943637429,
+ 51.05128862827753,
+ 0
+ ],
+ [
+ -114.02585964520746,
+ 51.051279458713765,
+ 0
+ ],
+ [
+ -114.0258599227359,
+ 51.05126814958072,
+ 0
+ ],
+ [
+ -114.02586111644571,
+ 51.05125777517606,
+ 0
+ ],
+ [
+ -114.02586236331656,
+ 51.051245539887,
+ 0
+ ],
+ [
+ -114.02586314048085,
+ 51.05123246865757,
+ 0
+ ],
+ [
+ -114.02586376129662,
+ 51.051220368352745,
+ 0
+ ],
+ [
+ -114.0258648107258,
+ 51.05120702737131,
+ 0
+ ],
+ [
+ -114.02586726534908,
+ 51.05118659318722,
+ 0
+ ],
+ [
+ -114.0258700640584,
+ 51.05116424411576,
+ 0
+ ],
+ [
+ -114.02587349962914,
+ 51.05113556613796,
+ 0
+ ],
+ [
+ -114.02587553127502,
+ 51.0511213799048,
+ 0
+ ],
+ [
+ -114.02587797416493,
+ 51.05110294144136,
+ 0
+ ],
+ [
+ -114.02587972028591,
+ 51.05108826982617,
+ 0
+ ],
+ [
+ -114.02588330321605,
+ 51.05106810508318,
+ 0
+ ],
+ [
+ -114.02588834981965,
+ 51.05103831202199,
+ 0
+ ],
+ [
+ -114.0258950768062,
+ 51.05100387090113,
+ 0
+ ],
+ [
+ -114.02590174436081,
+ 51.05096517765356,
+ 0
+ ],
+ [
+ -114.02591885738768,
+ 51.05088489562782,
+ 0
+ ],
+ [
+ -114.02594094628232,
+ 51.050776070120975,
+ 0
+ ],
+ [
+ -114.025951983753,
+ 51.05072200347114,
+ 0
+ ],
+ [
+ -114.02597162011031,
+ 51.050617080040205,
+ 0
+ ],
+ [
+ -114.0259994545431,
+ 51.050476735266955,
+ 0
+ ],
+ [
+ -114.0260273756664,
+ 51.050341226936204,
+ 0
+ ],
+ [
+ -114.02605311914421,
+ 51.05021400760727,
+ 0
+ ],
+ [
+ -114.02608987071933,
+ 51.05003203838802,
+ 0
+ ],
+ [
+ -114.02611764641966,
+ 51.049892493671095,
+ 0
+ ],
+ [
+ -114.02615480981105,
+ 51.04971078503134,
+ 0
+ ],
+ [
+ -114.02618301698372,
+ 51.04957579798556,
+ 0
+ ],
+ [
+ -114.02620206017127,
+ 51.04948047565529,
+ 0
+ ],
+ [
+ -114.02620469006344,
+ 51.049465246470035,
+ 0
+ ],
+ [
+ -114.02620859998908,
+ 51.049443724189494,
+ 0
+ ],
+ [
+ -114.02621295182708,
+ 51.049421833230866,
+ 0
+ ],
+ [
+ -114.02621908662641,
+ 51.04940031045083,
+ 0
+ ],
+ [
+ -114.02622286616618,
+ 51.049375219277586,
+ 0
+ ],
+ [
+ -114.0262275742883,
+ 51.04935287875192,
+ 0
+ ],
+ [
+ -114.026231553306,
+ 51.049329990016304,
+ 0
+ ],
+ [
+ -114.02623626004808,
+ 51.04930522226438,
+ 0
+ ],
+ [
+ -114.02624075458581,
+ 51.04928099394336,
+ 0
+ ],
+ [
+ -114.0262463749725,
+ 51.04926031631113,
+ 0
+ ],
+ [
+ -114.02625122539195,
+ 51.049237445358266,
+ 0
+ ],
+ [
+ -114.02625586360266,
+ 51.049215104846645,
+ 0
+ ],
+ [
+ -114.02626055409311,
+ 51.0491893841859,
+ 0
+ ],
+ [
+ -114.02626476390105,
+ 51.04916609984871,
+ 0
+ ],
+ [
+ -114.02626911522896,
+ 51.04914339981167,
+ 0
+ ],
+ [
+ -114.02627501805078,
+ 51.04911529660006,
+ 0
+ ],
+ [
+ -114.02628122143842,
+ 51.049091607276104,
+ 0
+ ],
+ [
+ -114.02628507355737,
+ 51.049068862401796,
+ 0
+ ],
+ [
+ -114.02628956858115,
+ 51.04904557799908,
+ 0
+ ],
+ [
+ -114.02629413432885,
+ 51.04902378587484,
+ 0
+ ],
+ [
+ -114.02630119381803,
+ 51.049000815534995,
+ 0
+ ],
+ [
+ -114.0263088968188,
+ 51.0489783844334,
+ 0
+ ],
+ [
+ -114.02631653031078,
+ 51.04895662757635,
+ 0
+ ],
+ [
+ -114.02632494703467,
+ 51.048935329018384,
+ 0
+ ],
+ [
+ -114.02633314762629,
+ 51.04891267305969,
+ 0
+ ],
+ [
+ -114.02634728207038,
+ 51.048886590677014,
+ 0
+ ],
+ [
+ -114.0263606327145,
+ 51.04886411334974,
+ 0
+ ],
+ [
+ -114.02636961847627,
+ 51.0488428596085,
+ 0
+ ],
+ [
+ -114.02638396943712,
+ 51.04882140688156,
+ 0
+ ],
+ [
+ -114.02639454054278,
+ 51.048801681034,
+ 0
+ ],
+ [
+ -114.02640616643501,
+ 51.048783438252045,
+ 0
+ ],
+ [
+ -114.02641859465822,
+ 51.04876664263357,
+ 0
+ ],
+ [
+ -114.0264325161235,
+ 51.04874740147032,
+ 0
+ ],
+ [
+ -114.02644616976673,
+ 51.04872870873929,
+ 0
+ ],
+ [
+ -114.02646064801543,
+ 51.0487105102549,
+ 0
+ ],
+ [
+ -114.02648071597413,
+ 51.048685694063245,
+ 0
+ ],
+ [
+ -114.02649821814065,
+ 51.04866825901578,
+ 0
+ ],
+ [
+ -114.02651813064908,
+ 51.04864601391472,
+ 0
+ ],
+ [
+ -114.02653819800861,
+ 51.048625243090314,
+ 0
+ ],
+ [
+ -114.02655469129894,
+ 51.04860939045524,
+ 0
+ ],
+ [
+ -114.02657347862952,
+ 51.04859235964199,
+ 0
+ ],
+ [
+ -114.02659440380143,
+ 51.04857285616423,
+ 0
+ ],
+ [
+ -114.02661431882035,
+ 51.04855763202293,
+ 0
+ ],
+ [
+ -114.02664610668305,
+ 51.04853230970824,
+ 0
+ ],
+ [
+ -114.02666317202666,
+ 51.04851933363995,
+ 0
+ ],
+ [
+ -114.02668009352848,
+ 51.048506726180804,
+ 0
+ ],
+ [
+ -114.02670273114173,
+ 51.04848915508388,
+ 0
+ ],
+ [
+ -114.02672251806953,
+ 51.04847451528545,
+ 0
+ ],
+ [
+ -114.02674287662042,
+ 51.04846189804154,
+ 0
+ ],
+ [
+ -114.02676480195989,
+ 51.04844581939018,
+ 0
+ ],
+ [
+ -114.02679057792847,
+ 51.04842968591376,
+ 0
+ ],
+ [
+ -114.02681221880559,
+ 51.04841500072638,
+ 0
+ ],
+ [
+ -114.02683321760675,
+ 51.04840229342244,
+ 0
+ ],
+ [
+ -114.02686071972396,
+ 51.04838706749661,
+ 0
+ ],
+ [
+ -114.02688464400437,
+ 51.04837508767899,
+ 0
+ ],
+ [
+ -114.02691642312023,
+ 51.048357289694074,
+ 0
+ ],
+ [
+ -114.02694171760552,
+ 51.0483447611757,
+ 0
+ ],
+ [
+ -114.02696508634044,
+ 51.04833399508281,
+ 0
+ ],
+ [
+ -114.02698828470739,
+ 51.04832457748371,
+ 0
+ ],
+ [
+ -114.0270177113926,
+ 51.048310654586835,
+ 0
+ ],
+ [
+ -114.02704672850066,
+ 51.04829875446605,
+ 0
+ ],
+ [
+ -114.02707635779358,
+ 51.04828749246693,
+ 0
+ ],
+ [
+ -114.0271094371159,
+ 51.048274018187065,
+ 0
+ ],
+ [
+ -114.02713808223585,
+ 51.048262612564876,
+ 0
+ ],
+ [
+ -114.02716715575033,
+ 51.04825215974717,
+ 0
+ ],
+ [
+ -114.02719630079716,
+ 51.04824211144332,
+ 0
+ ],
+ [
+ -114.02722952507284,
+ 51.04823273641156,
+ 0
+ ],
+ [
+ -114.02725895332134,
+ 51.048221699156,
+ 0
+ ],
+ [
+ -114.02730244410789,
+ 51.048209121365566,
+ 0
+ ],
+ [
+ -114.0273377376304,
+ 51.04819961097369,
+ 0
+ ],
+ [
+ -114.02737832053319,
+ 51.04818964984588,
+ 0
+ ],
+ [
+ -114.02742132801097,
+ 51.04817986792973,
+ 0
+ ],
+ [
+ -114.02745525009777,
+ 51.04817134669412,
+ 0
+ ],
+ [
+ -114.02749175599986,
+ 51.04816457783792,
+ 0
+ ],
+ [
+ -114.02752476730626,
+ 51.04815700970751,
+ 0
+ ],
+ [
+ -114.02756069023121,
+ 51.04815082529929,
+ 0
+ ],
+ [
+ -114.02759805215476,
+ 51.048144649530066,
+ 0
+ ],
+ [
+ -114.02763534407065,
+ 51.04814067624877,
+ 0
+ ],
+ [
+ -114.02766871273377,
+ 51.04813693761727,
+ 0
+ ],
+ [
+ -114.02770315318804,
+ 51.048132057026805,
+ 0
+ ],
+ [
+ -114.02774058732561,
+ 51.04812745439721,
+ 0
+ ],
+ [
+ -114.02777087582707,
+ 51.04812434574852,
+ 0
+ ],
+ [
+ -114.02780824101153,
+ 51.04812131631608,
+ 0
+ ],
+ [
+ -114.02784788636181,
+ 51.04811783684204,
+ 0
+ ],
+ [
+ -114.02788603421416,
+ 51.048116704030896,
+ 0
+ ],
+ [
+ -114.02792726371291,
+ 51.04811507603595,
+ 0
+ ],
+ [
+ -114.02796356058656,
+ 51.048114258282176,
+ 0
+ ],
+ [
+ -114.02800292237168,
+ 51.04811357462882,
+ 0
+ ],
+ [
+ -114.02804472338866,
+ 51.048113699452486,
+ 0
+ ],
+ [
+ -114.02808451254727,
+ 51.048114588871506,
+ 0
+ ],
+ [
+ -114.02812145230853,
+ 51.048115613808505,
+ 0
+ ],
+ [
+ -114.02815981694795,
+ 51.04811686313372,
+ 0
+ ],
+ [
+ -114.0281949019305,
+ 51.04811897625145,
+ 0
+ ],
+ [
+ -114.02823162574009,
+ 51.04812134966491,
+ 0
+ ],
+ [
+ -114.02827856526983,
+ 51.048126201760645,
+ 0
+ ],
+ [
+ -114.02831630202962,
+ 51.048129168224456,
+ 0
+ ],
+ [
+ -114.02835324395353,
+ 51.04813370807131,
+ 0
+ ],
+ [
+ -114.02838888560497,
+ 51.04813887750327,
+ 0
+ ],
+ [
+ -114.02842461442559,
+ 51.048144316595,
+ 0
+ ],
+ [
+ -114.02845533748949,
+ 51.0481498917405,
+ 0
+ ],
+ [
+ -114.02848914075189,
+ 51.04815492674351,
+ 0
+ ],
+ [
+ -114.02852742445803,
+ 51.04816365542149,
+ 0
+ ],
+ [
+ -114.02856130001973,
+ 51.04817027257808,
+ 0
+ ],
+ [
+ -114.02859323758891,
+ 51.04817715090109,
+ 0
+ ],
+ [
+ -114.02862289028492,
+ 51.04818376907282,
+ 0
+ ],
+ [
+ -114.02865790922901,
+ 51.048191995082675,
+ 0
+ ],
+ [
+ -114.02869098622651,
+ 51.04820100366507,
+ 0
+ ],
+ [
+ -114.02872149914566,
+ 51.04821027357033,
+ 0
+ ],
+ [
+ -114.02875401998463,
+ 51.04821931823046,
+ 0
+ ],
+ [
+ -114.02878267768185,
+ 51.04822661083593,
+ 0
+ ],
+ [
+ -114.02881376004055,
+ 51.04823646490915,
+ 0
+ ],
+ [
+ -114.02884598351626,
+ 51.048246588384266,
+ 0
+ ],
+ [
+ -114.02887872040445,
+ 51.04825896814533,
+ 0
+ ],
+ [
+ -114.02890744981237,
+ 51.04826683604506,
+ 0
+ ],
+ [
+ -114.02893644946191,
+ 51.048278092998174,
+ 0
+ ],
+ [
+ -114.02896411196517,
+ 51.04829029419689,
+ 0
+ ],
+ [
+ -114.02899383965875,
+ 51.0483026207329,
+ 0
+ ],
+ [
+ -114.02902014480057,
+ 51.048313060268356,
+ 0
+ ],
+ [
+ -114.02904744965836,
+ 51.04832571102243,
+ 0
+ ],
+ [
+ -114.02908718049365,
+ 51.048342457994316,
+ 0
+ ],
+ [
+ -114.02911683859624,
+ 51.04835514410533,
+ 0
+ ],
+ [
+ -114.02914820582886,
+ 51.04836644536462,
+ 0
+ ],
+ [
+ -114.02917879322769,
+ 51.04838044372838,
+ 0
+ ],
+ [
+ -114.02920616805801,
+ 51.04839083800616,
+ 0
+ ],
+ [
+ -114.02923397197547,
+ 51.048403173951314,
+ 0
+ ],
+ [
+ -114.02925962058258,
+ 51.048414917107394,
+ 0
+ ],
+ [
+ -114.02928885081802,
+ 51.04842743247692,
+ 0
+ ],
+ [
+ -114.02931694007137,
+ 51.048439858228086,
+ 0
+ ],
+ [
+ -114.029344959281,
+ 51.04845200530849,
+ 0
+ ],
+ [
+ -114.02937318972737,
+ 51.04846438606194,
+ 0
+ ],
+ [
+ -114.02939884057287,
+ 51.048475050419526,
+ 0
+ ],
+ [
+ -114.02943099326443,
+ 51.04848778976147,
+ 0
+ ],
+ [
+ -114.02946129539886,
+ 51.04850148247215,
+ 0
+ ],
+ [
+ -114.0294878865649,
+ 51.04851282080263,
+ 0
+ ],
+ [
+ -114.02951875631501,
+ 51.04852421198492,
+ 0
+ ],
+ [
+ -114.02954877102479,
+ 51.048536628204126,
+ 0
+ ],
+ [
+ -114.02957928383657,
+ 51.048549592662944,
+ 0
+ ],
+ [
+ -114.0296143788171,
+ 51.048564533692854,
+ 0
+ ],
+ [
+ -114.02964546236733,
+ 51.048577857578834,
+ 0
+ ],
+ [
+ -114.02967727659963,
+ 51.048591900449125,
+ 0
+ ],
+ [
+ -114.02970914532203,
+ 51.04860414535139,
+ 0
+ ],
+ [
+ -114.02973987337491,
+ 51.04861679507299,
+ 0
+ ],
+ [
+ -114.02977017264777,
+ 51.04863020003275,
+ 0
+ ],
+ [
+ -114.02980462539149,
+ 51.04864424219623,
+ 0
+ ],
+ [
+ -114.02983464031875,
+ 51.04865675722873,
+ 0
+ ],
+ [
+ -114.02986551140584,
+ 51.04866994626428,
+ 0
+ ],
+ [
+ -114.02989524034233,
+ 51.048681238751335,
+ 0
+ ],
+ [
+ -114.02992668085797,
+ 51.04869496700867,
+ 0
+ ],
+ [
+ -114.02995605595795,
+ 51.04870820135187,
+ 0
+ ],
+ [
+ -114.02998906679755,
+ 51.04872201908715,
+ 0
+ ],
+ [
+ -114.03001859587327,
+ 51.04873511852917,
+ 0
+ ],
+ [
+ -114.030048454211,
+ 51.0487479032386,
+ 0
+ ],
+ [
+ -114.03008183707304,
+ 51.04876130732452,
+ 0
+ ],
+ [
+ -114.03011277867645,
+ 51.048773057920066,
+ 0
+ ],
+ [
+ -114.03014735684239,
+ 51.04878665046351,
+ 0
+ ],
+ [
+ -114.03017694661057,
+ 51.04880083760669,
+ 0
+ ],
+ [
+ -114.03020854346936,
+ 51.04881348698037,
+ 0
+ ],
+ [
+ -114.03023855928801,
+ 51.048827035727136,
+ 0
+ ],
+ [
+ -114.03027228502171,
+ 51.048841167837665,
+ 0
+ ],
+ [
+ -114.03030237215697,
+ 51.048854671600914,
+ 0
+ ],
+ [
+ -114.03033238808244,
+ 51.048868301231025,
+ 0
+ ],
+ [
+ -114.03036384307258,
+ 51.048879781934886,
+ 0
+ ],
+ [
+ -114.03039350240236,
+ 51.048893285785695,
+ 0
+ ],
+ [
+ -114.03043066267523,
+ 51.04890768664903,
+ 0
+ ],
+ [
+ -114.03045802727134,
+ 51.048921146132216,
+ 0
+ ],
+ [
+ -114.03049005433945,
+ 51.04893496398188,
+ 0
+ ],
+ [
+ -114.0305209974321,
+ 51.04894864725988,
+ 0
+ ],
+ [
+ -114.03055101381368,
+ 51.048962780258265,
+ 0
+ ],
+ [
+ -114.03058395170703,
+ 51.04897573483026,
+ 0
+ ],
+ [
+ -114.03061054348382,
+ 51.04898717179129,
+ 0
+ ],
+ [
+ -114.03064412709462,
+ 51.04900170836907,
+ 0
+ ],
+ [
+ -114.03067579834867,
+ 51.04901647018224,
+ 0
+ ],
+ [
+ -114.0307079528051,
+ 51.04902862483912,
+ 0
+ ],
+ [
+ -114.03073746905599,
+ 51.04904113977001,
+ 0
+ ],
+ [
+ -114.03077184777871,
+ 51.049052340913256,
+ 0
+ ],
+ [
+ -114.03080507035048,
+ 51.04906426152926,
+ 0
+ ],
+ [
+ -114.03083780984642,
+ 51.04907461805083,
+ 0
+ ],
+ [
+ -114.0308693201412,
+ 51.049083078055524,
+ 0
+ ],
+ [
+ -114.03090525018804,
+ 51.04909147395508,
+ 0
+ ],
+ [
+ -114.03094276508233,
+ 51.049098224304075,
+ 0
+ ],
+ [
+ -114.03097799502146,
+ 51.04910253903072,
+ 0
+ ],
+ [
+ -114.03101564789533,
+ 51.04910658341202,
+ 0
+ ],
+ [
+ -114.03105043564396,
+ 51.04910864181284,
+ 0
+ ],
+ [
+ -114.03108616299468,
+ 51.0491103044054,
+ 0
+ ],
+ [
+ -114.03112031982798,
+ 51.0491115538778,
+ 0
+ ],
+ [
+ -114.03115533275208,
+ 51.04911122990987,
+ 0
+ ],
+ [
+ -114.03119040232504,
+ 51.04911031259442,
+ 0
+ ],
+ [
+ -114.03122434493513,
+ 51.04910900002152,
+ 0
+ ],
+ [
+ -114.03125194012043,
+ 51.04910643057436,
+ 0
+ ],
+ [
+ -114.031280005554,
+ 51.04910327666265,
+ 0
+ ],
+ [
+ -114.03130791515862,
+ 51.04909957441257,
+ 0
+ ],
+ [
+ -114.03133605061346,
+ 51.04909663622205,
+ 0
+ ],
+ [
+ -114.03134998325449,
+ 51.049094708684436,
+ 0
+ ],
+ [
+ -114.03136384589534,
+ 51.049092610359125,
+ 0
+ ],
+ [
+ -114.03137764850716,
+ 51.04909032326404,
+ 0
+ ],
+ [
+ -114.03139969715932,
+ 51.04908770133251,
+ 0
+ ],
+ [
+ -114.0314102716212,
+ 51.04909708376582,
+ 0
+ ],
+ [
+ -114.03140561370377,
+ 51.04910558030906,
+ 0
+ ],
+ [
+ -114.03140105420438,
+ 51.049114094805105,
+ 0
+ ],
+ [
+ -114.03139668157162,
+ 51.04912266318917,
+ 0
+ ],
+ [
+ -114.03139255284134,
+ 51.04913126746639,
+ 0
+ ],
+ [
+ -114.03138904885711,
+ 51.04913997945245,
+ 0
+ ],
+ [
+ -114.03138601841793,
+ 51.04914876322902,
+ 0
+ ],
+ [
+ -114.03138337023518,
+ 51.04915760084123,
+ 0
+ ],
+ [
+ -114.03138122268362,
+ 51.049166492257335,
+ 0
+ ],
+ [
+ -114.03137960284914,
+ 51.049175419490574,
+ 0
+ ],
+ [
+ -114.03137842659235,
+ 51.04918439155336,
+ 0
+ ],
+ [
+ -114.03137793205845,
+ 51.049193363433076,
+ 0
+ ],
+ [
+ -114.03137909334225,
+ 51.0492023348683,
+ 0
+ ],
+ [
+ -114.03138036871034,
+ 51.0492112882934,
+ 0
+ ],
+ [
+ -114.03138298605445,
+ 51.04922012449168,
+ 0
+ ],
+ [
+ -114.03138790197198,
+ 51.04923460562089,
+ 0
+ ],
+ [
+ -114.0314056405684,
+ 51.0492528589902,
+ 0
+ ],
+ [
+ -114.03141409351934,
+ 51.04926740209584,
+ 0
+ ],
+ [
+ -114.0314239587166,
+ 51.04928028172177,
+ 0
+ ],
+ [
+ -114.0314362623644,
+ 51.04929473389317,
+ 0
+ ],
+ [
+ -114.03144954876505,
+ 51.0493093206447,
+ 0
+ ],
+ [
+ -114.03146499089326,
+ 51.049322872995866,
+ 0
+ ],
+ [
+ -114.03147993292038,
+ 51.04933714465775,
+ 0
+ ],
+ [
+ -114.0314970981892,
+ 51.04934898849251,
+ 0
+ ],
+ [
+ -114.03151460605481,
+ 51.04936127272896,
+ 0
+ ],
+ [
+ -114.03153533838,
+ 51.04937536302779,
+ 0
+ ],
+ [
+ -114.03155377269448,
+ 51.049386757025495,
+ 0
+ ],
+ [
+ -114.03157272053764,
+ 51.049398276737676,
+ 0
+ ],
+ [
+ -114.03159266686292,
+ 51.04940998496115,
+ 0
+ ],
+ [
+ -114.03161274338014,
+ 51.04942646669052,
+ 0
+ ],
+ [
+ -114.03163140865799,
+ 51.04944187003122,
+ 0
+ ],
+ [
+ -114.0316524293767,
+ 51.04945838745707,
+ 0
+ ],
+ [
+ -114.03166659175567,
+ 51.04947950048739,
+ 0
+ ],
+ [
+ -114.03168655522009,
+ 51.04949742958037,
+ 0
+ ],
+ [
+ -114.0317386298107,
+ 51.04954457555382,
+ 0
+ ],
+ [
+ -114.03178816624411,
+ 51.049592297536435,
+ 0
+ ],
+ [
+ -114.0318420030987,
+ 51.04964875633963,
+ 0
+ ],
+ [
+ -114.03190141158716,
+ 51.04972077481197,
+ 0
+ ],
+ [
+ -114.03193984165651,
+ 51.049773605923775,
+ 0
+ ],
+ [
+ -114.03196306244281,
+ 51.049805469950996,
+ 0
+ ],
+ [
+ -114.03198650881785,
+ 51.0498376449562,
+ 0
+ ],
+ [
+ -114.03203282990202,
+ 51.049896011547446,
+ 0
+ ],
+ [
+ -114.03206273255188,
+ 51.049929777746655,
+ 0
+ ],
+ [
+ -114.03211903308572,
+ 51.04998397932216,
+ 0
+ ],
+ [
+ -114.0321417673102,
+ 51.050002833516196,
+ 0
+ ],
+ [
+ -114.03214340565177,
+ 51.05005996276889,
+ 0
+ ],
+ [
+ -114.03214340613589,
+ 51.05006066216941,
+ 0
+ ],
+ [
+ -114.03214343638108,
+ 51.050114659843594,
+ 0
+ ],
+ [
+ -114.03214394451605,
+ 51.0509826742242,
+ 0
+ ],
+ [
+ -114.0321440300913,
+ 51.05098267420069,
+ 0
+ ],
+ [
+ -114.03243090892511,
+ 51.05098344987792,
+ 0
+ ],
+ [
+ -114.03243151757532,
+ 51.05224905163713,
+ 0
+ ],
+ [
+ -114.032431666791,
+ 51.05229728145252,
+ 0
+ ],
+ [
+ -114.03242614704902,
+ 51.05229730995309,
+ 0
+ ],
+ [
+ -114.03240271157375,
+ 51.05229727959429,
+ 0
+ ],
+ [
+ -114.03231115761226,
+ 51.052297162002105,
+ 0
+ ],
+ [
+ -114.03221411385385,
+ 51.05229706203286,
+ 0
+ ],
+ [
+ -114.03214666302782,
+ 51.052297196570464,
+ 0
+ ],
+ [
+ -114.0321406155454,
+ 51.052297209021184,
+ 0
+ ],
+ [
+ -114.03206437987821,
+ 51.05229692430863,
+ 0
+ ],
+ [
+ -114.03198483529414,
+ 51.052296765408975,
+ 0
+ ],
+ [
+ -114.03190564759434,
+ 51.052297057641766,
+ 0
+ ],
+ [
+ -114.03183581598613,
+ 51.05229676204216,
+ 0
+ ],
+ [
+ -114.03181611879371,
+ 51.05229667750816,
+ 0
+ ],
+ [
+ -114.03179545396533,
+ 51.052297787968044,
+ 0
+ ],
+ [
+ -114.03178026432005,
+ 51.05229836834011,
+ 0
+ ],
+ [
+ -114.03176310687206,
+ 51.052299657635025,
+ 0
+ ],
+ [
+ -114.03174544852384,
+ 51.052300552414664,
+ 0
+ ],
+ [
+ -114.03173251130141,
+ 51.05230157805901,
+ 0
+ ],
+ [
+ -114.03173088683995,
+ 51.05230170795197,
+ 0
+ ],
+ [
+ -114.03171872294138,
+ 51.052303132528465,
+ 0
+ ],
+ [
+ -114.0317062727797,
+ 51.052305176573114,
+ 0
+ ],
+ [
+ -114.03169410638768,
+ 51.05230712974333,
+ 0
+ ],
+ [
+ -114.03168371002754,
+ 51.052309083331494,
+ 0
+ ],
+ [
+ -114.03167534040197,
+ 51.052310992319875,
+ 0
+ ],
+ [
+ -114.03166260524632,
+ 51.052313431085906,
+ 0
+ ],
+ [
+ -114.03165494657607,
+ 51.05231631077014,
+ 0
+ ],
+ [
+ -114.0316448955852,
+ 51.052320664516934,
+ 0
+ ],
+ [
+ -114.03163357239124,
+ 51.052325098615746,
+ 0
+ ],
+ [
+ -114.03162513334337,
+ 51.05232979353399,
+ 0
+ ],
+ [
+ -114.03161683404629,
+ 51.052334452455,
+ 0
+ ],
+ [
+ -114.0316122001268,
+ 51.052336719118166,
+ 0
+ ],
+ [
+ -114.0316077672479,
+ 51.052338887738806,
+ 0
+ ],
+ [
+ -114.03159968183073,
+ 51.05234345670353,
+ 0
+ ],
+ [
+ -114.03159308245922,
+ 51.05234779962398,
+ 0
+ ],
+ [
+ -114.03158534062413,
+ 51.05235214465077,
+ 0
+ ],
+ [
+ -114.03157902574958,
+ 51.052357467373206,
+ 0
+ ],
+ [
+ -114.03157332260321,
+ 51.05236256698497,
+ 0
+ ],
+ [
+ -114.03156797842057,
+ 51.05236908507752,
+ 0
+ ],
+ [
+ -114.0315638478943,
+ 51.052375424845636,
+ 0
+ ],
+ [
+ -114.03156095684872,
+ 51.052381807429605,
+ 0
+ ],
+ [
+ -114.0315579379799,
+ 51.05238899103217,
+ 0
+ ],
+ [
+ -114.03155661540872,
+ 51.05239470885211,
+ 0
+ ],
+ [
+ -114.03155354033326,
+ 51.052426226746675,
+ 0
+ ],
+ [
+ -114.03140692875641,
+ 51.05242704204568,
+ 0
+ ],
+ [
+ -114.03109434333611,
+ 51.05242618259666,
+ 0
+ ],
+ [
+ -114.03099679715106,
+ 51.05242592892508,
+ 0
+ ],
+ [
+ -114.03049700395792,
+ 51.05242454832461,
+ 0
+ ],
+ [
+ -114.03049179234094,
+ 51.052424669247564,
+ 0
+ ],
+ [
+ -114.03032216093632,
+ 51.05242866615632,
+ 0
+ ],
+ [
+ -114.0303147657952,
+ 51.052418079081654,
+ 0
+ ],
+ [
+ -114.0303083701916,
+ 51.0524092159759,
+ 0
+ ],
+ [
+ -114.03030160293811,
+ 51.052399104293805,
+ 0
+ ],
+ [
+ -114.03029499309167,
+ 51.05238759017401,
+ 0
+ ],
+ [
+ -114.03028795195023,
+ 51.05237522304094,
+ 0
+ ],
+ [
+ -114.03028161321775,
+ 51.052363878755806,
+ 0
+ ],
+ [
+ -114.03027632697857,
+ 51.05235235530224,
+ 0
+ ],
+ [
+ -114.03027111296149,
+ 51.05234003174444,
+ 0
+ ],
+ [
+ -114.03026782779891,
+ 51.05233285070666,
+ 0
+ ],
+ [
+ -114.03026478545218,
+ 51.05232619820152,
+ 0
+ ],
+ [
+ -114.03026132806981,
+ 51.05231738107878,
+ 0
+ ],
+ [
+ -114.03026027250785,
+ 51.05231503413577,
+ 0
+ ],
+ [
+ -114.03025885694883,
+ 51.052309622689826,
+ 0
+ ],
+ [
+ -114.03025632761477,
+ 51.052302269752325,
+ 0
+ ],
+ [
+ -114.03025392525983,
+ 51.05229278621787,
+ 0
+ ],
+ [
+ -114.03025132228451,
+ 51.05228404888217,
+ 0
+ ],
+ [
+ -114.03024857895944,
+ 51.05227443058999,
+ 0
+ ],
+ [
+ -114.03024702066236,
+ 51.0522688483761,
+ 0
+ ],
+ [
+ -114.0302459587251,
+ 51.052261090521114,
+ 0
+ ],
+ [
+ -114.03024511612611,
+ 51.052257234148556,
+ 0
+ ],
+ [
+ -114.03023006867089,
+ 51.052257149042994,
+ 0
+ ],
+ [
+ -114.03022707628061,
+ 51.05225710936311,
+ 0
+ ],
+ [
+ -114.03022608297,
+ 51.05224302542302,
+ 0
+ ],
+ [
+ -114.03022599369775,
+ 51.05224173182518,
+ 0
+ ],
+ [
+ -114.03022351429739,
+ 51.05222342939293,
+ 0
+ ],
+ [
+ -114.03022088961353,
+ 51.05220104566444,
+ 0
+ ],
+ [
+ -114.03019334667272,
+ 51.05220133146383,
+ 0
+ ],
+ [
+ -114.0301515006613,
+ 51.05220128922641,
+ 0
+ ],
+ [
+ -114.03011662633426,
+ 51.05220119843134,
+ 0
+ ],
+ [
+ -114.0301160122537,
+ 51.05220220274149,
+ 0
+ ],
+ [
+ -114.03007342109171,
+ 51.05219899269019,
+ 0
+ ],
+ [
+ -114.03004416158298,
+ 51.05221577143951,
+ 0
+ ],
+ [
+ -114.02997631832292,
+ 51.05223088260091,
+ 0
+ ],
+ [
+ -114.02990447722985,
+ 51.052235093809244,
+ 0
+ ],
+ [
+ -114.02979271808536,
+ 51.05223428450657,
+ 0
+ ],
+ [
+ -114.02958118642908,
+ 51.052232750647036,
+ 0
+ ],
+ [
+ -114.029275179558,
+ 51.05223053171497,
+ 0
+ ],
+ [
+ -114.02909285569545,
+ 51.05222920900182,
+ 0
+ ],
+ [
+ -114.02871525003529,
+ 51.05222871534896,
+ 0
+ ],
+ [
+ -114.02871526541152,
+ 51.05222820922389,
+ 0
+ ],
+ [
+ -114.0287124595658,
+ 51.05222767951961,
+ 0
+ ],
+ [
+ -114.02853848727915,
+ 51.05222733916341,
+ 0
+ ]
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -114.02911397119072,
+ 51.050271120392566
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-center/test/out/box_out.geojson b/packages/turf-center/test/out/box_out.geojson
new file mode 100644
index 0000000000..90beb831c3
--- /dev/null
+++ b/packages/turf-center/test/out/box_out.geojson
@@ -0,0 +1,49 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 60.46875,
+ 39.90973623453719
+ ],
+ [
+ 60.46875,
+ 47.27922900257082
+ ],
+ [
+ 70.6640625,
+ 47.27922900257082
+ ],
+ [
+ 70.6640625,
+ 39.90973623453719
+ ],
+ [
+ 60.46875,
+ 39.90973623453719
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 65.56640625,
+ 43.59448261855401
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/.npmignore b/packages/turf-centroid/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-centroid/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-centroid/LICENSE b/packages/turf-centroid/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-centroid/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-centroid/README.md b/packages/turf-centroid/README.md
new file mode 100644
index 0000000000..6d83d4c8c3
--- /dev/null
+++ b/packages/turf-centroid/README.md
@@ -0,0 +1,67 @@
+# turf-centroid
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-centroid.png)](http://travis-ci.org/Turfjs/turf-centroid)
+
+turf centroid module
+
+
+### `turf.centroid(features)`
+
+Takes one or more features and calculates the centroid using the arithmetic mean of all vertices.
+This lessens the effect of small islands and artifacts when calculating
+the centroid of a set of polygons.
+
+
+### Parameters
+
+| parameter | type | description |
+| ---------- | -------------------------- | -------------- |
+| `features` | Feature\,FeatureCollection | input features |
+
+
+### Example
+
+```js
+var poly = {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[
+ [105.818939,21.004714],
+ [105.818939,21.061754],
+ [105.890007,21.061754],
+ [105.890007,21.004714],
+ [105.818939,21.004714]
+ ]]
+ }
+};
+
+var centroidPt = turf.centroid(poly);
+
+var result = {
+ "type": "FeatureCollection",
+ "features": [poly, centroidPt]
+};
+
+//=result
+```
+
+
+**Returns** `Feature.`, the centroid of the input features
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-centroid
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-centroid/bench.js b/packages/turf-centroid/bench.js
new file mode 100644
index 0000000000..a126e214e6
--- /dev/null
+++ b/packages/turf-centroid/bench.js
@@ -0,0 +1,22 @@
+var centroid = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var boxFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/box.geojson'));
+var blockFC = JSON.parse(fs.readFileSync(__dirname+'/test/in/block.geojson'));
+
+var suite = new Benchmark.Suite('turf-centroid');
+suite
+ .add('turf-centroid#simple',function () {
+ centroid(boxFC);
+ })
+ .add('turf-centroid#complex',function () {
+ centroid(blockFC);
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
diff --git a/packages/turf-centroid/index.js b/packages/turf-centroid/index.js
new file mode 100644
index 0000000000..8d01157ca4
--- /dev/null
+++ b/packages/turf-centroid/index.js
@@ -0,0 +1,47 @@
+var each = require('turf-meta').coordEach;
+var point = require('turf-helpers').point;
+
+/**
+ * Takes one or more features and calculates the centroid using
+ * the mean of all vertices.
+ * This lessens the effect of small islands and artifacts when calculating
+ * the centroid of a set of polygons.
+ *
+ * @name centroid
+ * @category measurement
+ * @param {(Feature|FeatureCollection)} features input features
+ * @return {Feature} the centroid of the input features
+ * @example
+ * var poly = {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Polygon",
+ * "coordinates": [[
+ * [105.818939,21.004714],
+ * [105.818939,21.061754],
+ * [105.890007,21.061754],
+ * [105.890007,21.004714],
+ * [105.818939,21.004714]
+ * ]]
+ * }
+ * };
+ *
+ * var centroidPt = turf.centroid(poly);
+ *
+ * var result = {
+ * "type": "FeatureCollection",
+ * "features": [poly, centroidPt]
+ * };
+ *
+ * //=result
+ */
+module.exports = function (features) {
+ var xSum = 0, ySum = 0, len = 0;
+ each(features, function (coord) {
+ xSum += coord[0];
+ ySum += coord[1];
+ len++;
+ }, true);
+ return point([xSum / len, ySum / len]);
+};
diff --git a/packages/turf-centroid/package.json b/packages/turf-centroid/package.json
new file mode 100644
index 0000000000..30cff417ef
--- /dev/null
+++ b/packages/turf-centroid/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "turf-centroid",
+ "version": "3.0.5",
+ "description": "turf centroid module",
+ "main": "index.js",
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-centroid.git"
+ },
+ "keywords": [
+ "turf",
+ "geojson",
+ "geo",
+ "gis"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-centroid/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-centroid",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0"
+ },
+ "dependencies": {
+ "geojson-fixtures": "^0.5.0",
+ "turf-meta": "^3.0.1",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-centroid/test.js b/packages/turf-centroid/test.js
new file mode 100644
index 0000000000..a99652fe46
--- /dev/null
+++ b/packages/turf-centroid/test.js
@@ -0,0 +1,2 @@
+var geojsonFixtures = require('geojson-fixtures/helper');
+geojsonFixtures(require('tape'), 'all', require('./'), __dirname + '/test');
diff --git a/packages/turf-centroid/test/geometrycollection-0-0.output.json b/packages/turf-centroid/test/geometrycollection-0-0.output.json
new file mode 100644
index 0000000000..7c09698209
--- /dev/null
+++ b/packages/turf-centroid/test/geometrycollection-0-0.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0.3333333333333333
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/geometrycollection-xyz-0-6.output.json b/packages/turf-centroid/test/geometrycollection-xyz-0-6.output.json
new file mode 100644
index 0000000000..7c09698209
--- /dev/null
+++ b/packages/turf-centroid/test/geometrycollection-xyz-0-6.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0.3333333333333333
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/geometrycollection-xyz.output.json b/packages/turf-centroid/test/geometrycollection-xyz.output.json
new file mode 100644
index 0000000000..7c09698209
--- /dev/null
+++ b/packages/turf-centroid/test/geometrycollection-xyz.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0.3333333333333333
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/geometrycollection.output.json b/packages/turf-centroid/test/geometrycollection.output.json
new file mode 100644
index 0000000000..7c09698209
--- /dev/null
+++ b/packages/turf-centroid/test/geometrycollection.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0.3333333333333333
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/idaho-1-1.output.json b/packages/turf-centroid/test/idaho-1-1.output.json
new file mode 100644
index 0000000000..b23920f53f
--- /dev/null
+++ b/packages/turf-centroid/test/idaho-1-1.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -114.90205150775371,
+ 44.64485392522374
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multilinestring-0-5.output.json b/packages/turf-centroid/test/multilinestring-0-5.output.json
new file mode 100644
index 0000000000..06e97b867d
--- /dev/null
+++ b/packages/turf-centroid/test/multilinestring-0-5.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.5,
+ 1.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multilinestring-xyz-0-11.output.json b/packages/turf-centroid/test/multilinestring-xyz-0-11.output.json
new file mode 100644
index 0000000000..06e97b867d
--- /dev/null
+++ b/packages/turf-centroid/test/multilinestring-xyz-0-11.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.5,
+ 1.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multilinestring-xyz.output.json b/packages/turf-centroid/test/multilinestring-xyz.output.json
new file mode 100644
index 0000000000..06e97b867d
--- /dev/null
+++ b/packages/turf-centroid/test/multilinestring-xyz.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.5,
+ 1.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multilinestring.output.json b/packages/turf-centroid/test/multilinestring.output.json
new file mode 100644
index 0000000000..06e97b867d
--- /dev/null
+++ b/packages/turf-centroid/test/multilinestring.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.5,
+ 1.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multipoint-0-3.output.json b/packages/turf-centroid/test/multipoint-0-3.output.json
new file mode 100644
index 0000000000..ec4a92bed4
--- /dev/null
+++ b/packages/turf-centroid/test/multipoint-0-3.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.5,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multipoint-xyz-0-9.output.json b/packages/turf-centroid/test/multipoint-xyz-0-9.output.json
new file mode 100644
index 0000000000..ec4a92bed4
--- /dev/null
+++ b/packages/turf-centroid/test/multipoint-xyz-0-9.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.5,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multipoint-xyz.output.json b/packages/turf-centroid/test/multipoint-xyz.output.json
new file mode 100644
index 0000000000..ec4a92bed4
--- /dev/null
+++ b/packages/turf-centroid/test/multipoint-xyz.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.5,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multipoint.output.json b/packages/turf-centroid/test/multipoint.output.json
new file mode 100644
index 0000000000..ec4a92bed4
--- /dev/null
+++ b/packages/turf-centroid/test/multipoint.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.5,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multipolygon-0-4.output.json b/packages/turf-centroid/test/multipolygon-0-4.output.json
new file mode 100644
index 0000000000..a511827274
--- /dev/null
+++ b/packages/turf-centroid/test/multipolygon-0-4.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.16666666666667,
+ 1.1666666666666667
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multipolygon-xyz-0-10.output.json b/packages/turf-centroid/test/multipolygon-xyz-0-10.output.json
new file mode 100644
index 0000000000..a511827274
--- /dev/null
+++ b/packages/turf-centroid/test/multipolygon-xyz-0-10.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.16666666666667,
+ 1.1666666666666667
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multipolygon-xyz.output.json b/packages/turf-centroid/test/multipolygon-xyz.output.json
new file mode 100644
index 0000000000..a511827274
--- /dev/null
+++ b/packages/turf-centroid/test/multipolygon-xyz.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.16666666666667,
+ 1.1666666666666667
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/multipolygon.output.json b/packages/turf-centroid/test/multipolygon.output.json
new file mode 100644
index 0000000000..a511827274
--- /dev/null
+++ b/packages/turf-centroid/test/multipolygon.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101.16666666666667,
+ 1.1666666666666667
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/one-1-0.output.json b/packages/turf-centroid/test/one-1-0.output.json
new file mode 100644
index 0000000000..13b99bdf5d
--- /dev/null
+++ b/packages/turf-centroid/test/one-1-0.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/one-2-0.output.json b/packages/turf-centroid/test/one-2-0.output.json
new file mode 100644
index 0000000000..ec4a92bed4
--- /dev/null
+++ b/packages/turf-centroid/test/one-2-0.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.5,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/point-0-2.output.json b/packages/turf-centroid/test/point-0-2.output.json
new file mode 100644
index 0000000000..c9bb8a0866
--- /dev/null
+++ b/packages/turf-centroid/test/point-0-2.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/point-xyz-0-8.output.json b/packages/turf-centroid/test/point-xyz-0-8.output.json
new file mode 100644
index 0000000000..c9bb8a0866
--- /dev/null
+++ b/packages/turf-centroid/test/point-xyz-0-8.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/point-xyz.output.json b/packages/turf-centroid/test/point-xyz.output.json
new file mode 100644
index 0000000000..c9bb8a0866
--- /dev/null
+++ b/packages/turf-centroid/test/point-xyz.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/point.output.json b/packages/turf-centroid/test/point.output.json
new file mode 100644
index 0000000000..c9bb8a0866
--- /dev/null
+++ b/packages/turf-centroid/test/point.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/polygon-0-1.output.json b/packages/turf-centroid/test/polygon-0-1.output.json
new file mode 100644
index 0000000000..ec4a92bed4
--- /dev/null
+++ b/packages/turf-centroid/test/polygon-0-1.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.5,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/polygon-xyz-0-7.output.json b/packages/turf-centroid/test/polygon-xyz-0-7.output.json
new file mode 100644
index 0000000000..ec4a92bed4
--- /dev/null
+++ b/packages/turf-centroid/test/polygon-xyz-0-7.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.5,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/polygon-xyz.output.json b/packages/turf-centroid/test/polygon-xyz.output.json
new file mode 100644
index 0000000000..ec4a92bed4
--- /dev/null
+++ b/packages/turf-centroid/test/polygon-xyz.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.5,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-centroid/test/polygon.output.json b/packages/turf-centroid/test/polygon.output.json
new file mode 100644
index 0000000000..ec4a92bed4
--- /dev/null
+++ b/packages/turf-centroid/test/polygon.output.json
@@ -0,0 +1,11 @@
+{
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.5,
+ 0.5
+ ]
+ },
+ "properties": {}
+}
\ No newline at end of file
diff --git a/packages/turf-collect/.npmignore b/packages/turf-collect/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-collect/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-collect/LICENSE b/packages/turf-collect/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-collect/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-collect/README.md b/packages/turf-collect/README.md
new file mode 100644
index 0000000000..24e18984b8
--- /dev/null
+++ b/packages/turf-collect/README.md
@@ -0,0 +1,181 @@
+# turf-aggregate
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-aggregate.png)](http://travis-ci.org/Turfjs/turf-aggregate)
+
+turf aggregate module
+
+
+### `turf.aggregate(polygons, points, aggregations)`
+
+Calculates a series of aggregations for a set of Point|points within a set of Polygon|polygons. Sum, average, count, min, max, and deviation are supported.
+
+
+### Parameters
+
+| parameter | type | description |
+| -------------- | ------------------------------ | ------------------------------------------ |
+| `polygons` | FeatureCollection\.\ | polygons with values on which to aggregate |
+| `points` | FeatureCollection\.\ | points to be aggregated |
+| `aggregations` | Array | an array of aggregation objects |
+
+
+### Example
+
+```js
+var polygons = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[
+ [1.669921, 48.632908],
+ [1.669921, 49.382372],
+ [3.636474, 49.382372],
+ [3.636474, 48.632908],
+ [1.669921, 48.632908]
+ ]]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[
+ [2.230224, 47.85003],
+ [2.230224, 48.611121],
+ [4.361572, 48.611121],
+ [4.361572, 47.85003],
+ [2.230224, 47.85003]
+ ]]
+ }
+ }
+ ]
+};
+var points = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "population": 200
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.054443,49.138596]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "population": 600
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.065185,48.850258]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "population": 100
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.329101,48.79239]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "population": 200
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [2.614746,48.334343]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "population": 300
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [3.416748,48.056053]
+ }
+ }
+ ]
+};
+var aggregations = [
+ {
+ aggregation: 'sum',
+ inField: 'population',
+ outField: 'pop_sum'
+ },
+ {
+ aggregation: 'average',
+ inField: 'population',
+ outField: 'pop_avg'
+ },
+ {
+ aggregation: 'median',
+ inField: 'population',
+ outField: 'pop_median'
+ },
+ {
+ aggregation: 'min',
+ inField: 'population',
+ outField: 'pop_min'
+ },
+ {
+ aggregation: 'max',
+ inField: 'population',
+ outField: 'pop_max'
+ },
+ {
+ aggregation: 'deviation',
+ inField: 'population',
+ outField: 'pop_deviation'
+ },
+ {
+ aggregation: 'variance',
+ inField: 'population',
+ outField: 'pop_variance'
+ },
+ {
+ aggregation: 'count',
+ inField: '',
+ outField: 'point_count'
+ }
+];
+
+var aggregated = turf.aggregate(
+ polygons, points, aggregations);
+
+var result = turf.featurecollection(
+ points.features.concat(aggregated.features));
+
+//=result
+```
+
+
+**Returns** `FeatureCollection.`, polygons with properties listed based on `outField` values in `aggregations`
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-aggregate
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-collect/bench.js b/packages/turf-collect/bench.js
new file mode 100644
index 0000000000..94ce6c769c
--- /dev/null
+++ b/packages/turf-collect/bench.js
@@ -0,0 +1,71 @@
+var aggregate = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+var polygon = require('turf-helpers').polygon;
+var point = require('turf-helpers').point;
+var featurecollection = require('turf-helpers').featureCollection;
+
+var poly1 = polygon([[[0,0],[10,0],[10,10],[0,10]]])
+var poly2 = polygon([[[10,0],[20,10],[20,20], [20,0]]])
+var polyFC = featurecollection([poly1, poly2])
+var pt1 = point(5,5, {population: 200})
+var pt2 = point(1,3, {population: 600})
+var pt3 = point(14,2, {population: 100})
+var pt4 = point(13,1, {population: 200})
+var pt5 = point(19,7, {population: 300})
+var aggregations = [
+ {
+ aggregation: 'sum',
+ inField: 'population',
+ outField: 'pop_sum'
+ },
+ {
+ aggregation: 'average',
+ inField: 'population',
+ outField: 'pop_avg'
+ },
+ {
+ aggregation: 'median',
+ inField: 'population',
+ outField: 'pop_median'
+ },
+ {
+ aggregation: 'min',
+ inField: 'population',
+ outField: 'pop_min'
+ },
+ {
+ aggregation: 'max',
+ inField: 'population',
+ outField: 'pop_max'
+ },
+ {
+ aggregation: 'deviation',
+ inField: 'population',
+ outField: 'pop_deviation'
+ },
+ {
+ aggregation: 'variance',
+ inField: 'population',
+ outField: 'pop_variance'
+ },
+ {
+ aggregation: 'count',
+ inField: '',
+ outField: 'point_count'
+ }
+ ]
+
+var ptFC = featurecollection([pt1, pt2, pt3, pt4, pt5])
+var suite = new Benchmark.Suite('turf-aggregate');
+suite
+ .add('turf-aggregate',function() {
+ aggregate(polyFC, ptFC, aggregations)
+ })
+ .on('cycle', function(event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function() {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-collect/index.js b/packages/turf-collect/index.js
new file mode 100644
index 0000000000..56a33b53fe
--- /dev/null
+++ b/packages/turf-collect/index.js
@@ -0,0 +1,171 @@
+var inside = require('turf-inside');
+
+/**
+ * Joins attributes FeatureCollection of polygons with a FeatureCollection of
+ * points. Given an `inProperty` on points and an `outProperty` for polygons,
+ * this finds every point that lies within each polygon, collects the `inProperty`
+ * values from those points, and adds them as an array to `outProperty` on the
+ * polygon.
+ *
+ * @name collect
+ * @category aggregation
+ * @param {FeatureCollection} polygons polygons with values on which to aggregate
+ * @param {FeatureCollection} points points to be aggregated
+ * @param {Array} aggregations an array of aggregation objects
+ * @return {FeatureCollection} polygons with properties listed based on `outField` values in `aggregations`
+ * @example
+ * var polygons = {
+ * "type": "FeatureCollection",
+ * "features": [
+ * {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Polygon",
+ * "coordinates": [[
+ * [1.669921, 48.632908],
+ * [1.669921, 49.382372],
+ * [3.636474, 49.382372],
+ * [3.636474, 48.632908],
+ * [1.669921, 48.632908]
+ * ]]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Polygon",
+ * "coordinates": [[
+ * [2.230224, 47.85003],
+ * [2.230224, 48.611121],
+ * [4.361572, 48.611121],
+ * [4.361572, 47.85003],
+ * [2.230224, 47.85003]
+ * ]]
+ * }
+ * }
+ * ]
+ * };
+ * var points = {
+ * "type": "FeatureCollection",
+ * "features": [
+ * {
+ * "type": "Feature",
+ * "properties": {
+ * "population": 200
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [2.054443,49.138596]
+ * }
+ * },
+ * {
+ * "type": "Feature",
+ * "properties": {
+ * "population": 600
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [3.065185,48.850258]
+ * }
+ * },
+ * {
+ * "type": "Feature",
+ * "properties": {
+ * "population": 100
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [2.329101,48.79239]
+ * }
+ * },
+ * {
+ * "type": "Feature",
+ * "properties": {
+ * "population": 200
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [2.614746,48.334343]
+ * }
+ * },
+ * {
+ * "type": "Feature",
+ * "properties": {
+ * "population": 300
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [3.416748,48.056053]
+ * }
+ * }
+ * ]
+ * };
+ * var aggregations = [
+ * {
+ * aggregation: 'sum',
+ * inField: 'population',
+ * outField: 'pop_sum'
+ * },
+ * {
+ * aggregation: 'average',
+ * inField: 'population',
+ * outField: 'pop_avg'
+ * },
+ * {
+ * aggregation: 'median',
+ * inField: 'population',
+ * outField: 'pop_median'
+ * },
+ * {
+ * aggregation: 'min',
+ * inField: 'population',
+ * outField: 'pop_min'
+ * },
+ * {
+ * aggregation: 'max',
+ * inField: 'population',
+ * outField: 'pop_max'
+ * },
+ * {
+ * aggregation: 'deviation',
+ * inField: 'population',
+ * outField: 'pop_deviation'
+ * },
+ * {
+ * aggregation: 'variance',
+ * inField: 'population',
+ * outField: 'pop_variance'
+ * },
+ * {
+ * aggregation: 'count',
+ * inField: '',
+ * outField: 'point_count'
+ * }
+ * ];
+ *
+ * var aggregated = turf.aggregate(
+ * polygons, points, statsProperty);
+ *
+ * var result = turf.featurecollection(
+ * points.features.concat(aggregated.features));
+ *
+ * //=result
+ */
+module.exports = function collect(polyFC, ptFC, inProperty, outProperty) {
+ polyFC.features.forEach(function (poly) {
+ var values = ptFC.features.filter(function (pt) {
+ return inside(pt, poly);
+ }).map(function (pt) {
+ return pt.properties[inProperty];
+ });
+
+ if (!poly.properties) {
+ poly.properties = {};
+ }
+
+ poly.properties[outProperty] = values;
+ });
+
+ return polyFC;
+};
diff --git a/packages/turf-collect/package.json b/packages/turf-collect/package.json
new file mode 100644
index 0000000000..999f403e18
--- /dev/null
+++ b/packages/turf-collect/package.json
@@ -0,0 +1,35 @@
+{
+ "name": "turf-collect",
+ "version": "3.0.5",
+ "description": "turf aggregate module",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-aggregate.git"
+ },
+ "keywords": [
+ "turf",
+ "aggregate",
+ "points",
+ "geojson",
+ "polygons",
+ "stats"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-aggregate/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-aggregate",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0",
+ "turf-helpers": "^3.0.5"
+ },
+ "dependencies": {
+ "turf-inside": "^3.0.5"
+ }
+}
diff --git a/packages/turf-collect/test.js b/packages/turf-collect/test.js
new file mode 100644
index 0000000000..eadbfa0074
--- /dev/null
+++ b/packages/turf-collect/test.js
@@ -0,0 +1,21 @@
+var aggregate = require('./');
+var test = require('tape');
+var polygon = require('turf-helpers').polygon;
+var point = require('turf-helpers').point;
+var featurecollection = require('turf-helpers').featureCollection;
+
+test('aggregate', function(t){
+ var poly1 = polygon([[[0,0],[10,0],[10,10],[0,10],[0,0]]]);
+ var poly2 = polygon([[[10,0],[20,10],[20,20],[20,0],[10,0]]]);
+ var polyFC = featurecollection([poly1, poly2]);
+ var pt1 = point([5,5], {population: 200});
+ var pt2 = point([1,3], {population: 600});
+ var pt3 = point([14,2], {population: 100});
+ var pt4 = point([13,1], {population: 200});
+ var pt5 = point([19,7], {population: 300});
+ var ptFC = featurecollection([pt1, pt2, pt3, pt4, pt5]);
+ var aggregated = aggregate(polyFC, ptFC, 'population', 'values');
+ t.deepEqual(aggregated.features[0].properties.values, [200, 600]);
+ t.deepEqual(aggregated.features[1].properties.values, [100, 200, 300]);
+ t.end();
+});
diff --git a/packages/turf-combine/.npmignore b/packages/turf-combine/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-combine/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-combine/LICENSE b/packages/turf-combine/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-combine/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-combine/README.md b/packages/turf-combine/README.md
new file mode 100644
index 0000000000..bf70d55fa2
--- /dev/null
+++ b/packages/turf-combine/README.md
@@ -0,0 +1,66 @@
+# turf-combine
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-combine.png)](http://travis-ci.org/Turfjs/turf-combine)
+
+turf combine module
+
+
+### `turf.combine(fc)`
+
+Combines a FeatureCollection of Point, LineString, or Polygon features into MultiPoint, MultiLineString, or MultiPolygon features.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | ----------------------------------------------- | ------------------------------- |
+| `fc` | FeatureCollection\.\ | a FeatureCollection of any type |
+
+
+### Example
+
+```js
+var fc = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [19.026432, 47.49134]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [19.074497, 47.509548]
+ }
+ }
+ ]
+};
+
+var combined = turf.combine(fc);
+
+//=combined
+```
+
+
+**Returns** `FeatureCollection.`, a FeatureCollection of corresponding type to input
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-combine
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-combine/bench.js b/packages/turf-combine/bench.js
new file mode 100644
index 0000000000..c359ba47e5
--- /dev/null
+++ b/packages/turf-combine/bench.js
@@ -0,0 +1,62 @@
+var combine = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+var point = require('turf-helpers').point;
+var linestring = require('turf-helpers').lineString;
+var polygon = require('turf-helpers').polygon;
+var featurecollection = require('turf-helpers').featureCollection;
+
+// MultiPoint
+var pt1 = point(50, 51)
+var pt2 = point(100, 101)
+
+// MultiLineString
+var l1 = linestring([
+[102.0,
+-10.0],
+[130.0,
+4.0]])
+var l2 = linestring([
+[40.0,
+-20.0],
+[150.0,
+18.0]])
+
+// MultiPolygon
+var p1 = polygon( [
+ [
+ [20.0,0.0],
+ [101.0,0.0],
+ [101.0,1.0],
+ [100.0,1.0],
+ [100.0,0.0]
+ ]
+])
+var p2 = polygon([
+ [
+ [30.0,0.0],
+ [102.0,0.0],
+ [103.0,1.0]
+ ]
+])
+
+
+
+var suite = new Benchmark.Suite('turf-combine');
+suite
+ .add('turf-combine#point',function() {
+ combine(featurecollection([pt1, pt2]))
+ })
+ .add('turf-combine#line',function() {
+ combine(featurecollection([l1, l2]))
+ })
+ .add('turf-combine#polygon',function() {
+ combine(featurecollection([p1, p2]))
+ })
+ .on('cycle', function(event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function() {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-combine/index.js b/packages/turf-combine/index.js
new file mode 100644
index 0000000000..d8ea6af769
--- /dev/null
+++ b/packages/turf-combine/index.js
@@ -0,0 +1,90 @@
+var meta = require('turf-meta');
+
+/**
+ * Combines a {@link FeatureCollection} of {@link Point},
+ * {@link LineString}, or {@link Polygon} features
+ * into {@link MultiPoint}, {@link MultiLineString}, or
+ * {@link MultiPolygon} features.
+ *
+ * @name combine
+ * @category misc
+ * @param {FeatureCollection<(Point|LineString|Polygon)>} fc a FeatureCollection of any type
+ * @return {FeatureCollection<(MultiPoint|MultiLineString|MultiPolygon)>} a FeatureCollection of corresponding type to input
+ * @example
+ * var fc = {
+ * "type": "FeatureCollection",
+ * "features": [
+ * {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [19.026432, 47.49134]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [19.074497, 47.509548]
+ * }
+ * }
+ * ]
+ * };
+ *
+ * var combined = turf.combine(fc);
+ *
+ * //=combined
+ */
+
+module.exports = function (fc) {
+ var groups = {
+ MultiPoint: {coordinates: [], properties: []},
+ MultiLineString: {coordinates: [], properties: []},
+ MultiPolygon: {coordinates: [], properties: []}
+ };
+
+ var multiMapping = Object.keys(groups).reduce(function (memo, item) {
+ memo[item.replace('Multi', '')] = item;
+ return memo;
+ }, {});
+
+ function addToGroup(feature, key, multi) {
+ if (!multi) {
+ groups[key].coordinates.push(feature.geometry.coordinates);
+ } else {
+ groups[key].coordinates = groups[key].coordinates.concat(feature.geometry.coordinates);
+ }
+ groups[key].properties.push(feature.properties);
+ }
+
+ meta.featureEach(fc, function (feature) {
+ if (!feature.geometry) return;
+ if (groups[feature.geometry.type]) {
+ addToGroup(feature, feature.geometry.type, true);
+ } else if (multiMapping[feature.geometry.type]) {
+ addToGroup(feature, multiMapping[feature.geometry.type], false);
+ }
+ });
+
+ return {
+ type: 'FeatureCollection',
+ features: Object.keys(groups)
+ .filter(function (key) {
+ return groups[key].coordinates.length;
+ })
+ .sort()
+ .map(function (key) {
+ return {
+ type: 'Feature',
+ properties: {
+ collectedProperties: groups[key].properties
+ },
+ geometry: {
+ type: key,
+ coordinates: groups[key].coordinates
+ }
+ };
+ })
+ };
+};
diff --git a/packages/turf-combine/package.json b/packages/turf-combine/package.json
new file mode 100644
index 0000000000..3ac3463a70
--- /dev/null
+++ b/packages/turf-combine/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "turf-combine",
+ "version": "3.0.5",
+ "description": "turf combine module",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-combine.git"
+ },
+ "keywords": [
+ "turf",
+ "geojson",
+ "multipoint",
+ "multipolygon",
+ "combine"
+ ],
+ "dependencies": {
+ "turf-meta": "^3.0.1"
+ },
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-combine/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-combine",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-combine/test.js b/packages/turf-combine/test.js
new file mode 100644
index 0000000000..451a0ec971
--- /dev/null
+++ b/packages/turf-combine/test.js
@@ -0,0 +1,210 @@
+var test = require('tape'),
+ point = require('turf-helpers').point,
+ multipoint = require('turf-helpers').multiPoint,
+ linestring = require('turf-helpers').lineString,
+ multilinestring = require('turf-helpers').multiLineString,
+ polygon = require('turf-helpers').polygon,
+ multipolygon = require('turf-helpers').multiPolygon,
+ featurecollection = require('turf-helpers').featureCollection;
+
+var combine = require('./')
+
+test('combine -- points', function(t) {
+ // MultiPoint
+ var pt1 = point([50, 51])
+ var pt2 = point([100, 101])
+
+ var multiPt = combine(featurecollection([pt1, pt2]))
+
+ t.ok(multiPt, 'should combine two Points into a MultiPoint')
+ t.deepEqual(multiPt.features[0].geometry.coordinates, [[50, 51], [100, 101]])
+ t.end();
+});
+
+test('combine -- mixed multipoint & point', function(t) {
+ // MultiPoint
+ var pt1 = point([50, 51])
+ var pt2 = multipoint([[100, 101], [101, 102]])
+
+ var multiPt = combine(featurecollection([pt1, pt2]))
+
+ t.ok(multiPt, 'should combine Points + MultiPoint into a MultiPoint')
+ t.deepEqual(multiPt.features[0].geometry.coordinates, [[50, 51], [100, 101], [101, 102]])
+ t.end();
+});
+
+test('combine -- linestrings', function(t) {
+ // MultiLineString
+ var l1 = linestring([
+ [102.0,
+ -10.0],
+ [130.0,
+ 4.0]])
+ var l2 = linestring([
+ [40.0,
+ -20.0],
+ [150.0,
+ 18.0]])
+
+ var multiLine = combine(featurecollection([l1, l2]))
+
+ t.ok(multiLine, 'should combine two LineStrings into a MultiLineString')
+ t.equal(multiLine.features[0].geometry.type, 'MultiLineString')
+ t.deepEqual(multiLine.features[0].geometry.coordinates, [[[102, -10], [130, 4]], [[40, -20], [150, 18]]])
+ t.end();
+});
+
+test('combine -- mixed multilinestring & linestring', function(t) {
+ // MultiLineString
+ var l1 = linestring([
+ [102.0, -10.0],
+ [130.0, 4.0]
+ ]);
+ var l2 = multilinestring([
+ [
+ [40.0, -20.0],
+ [150.0, 18.0]
+ ],
+ [
+ [50, -10],
+ [160, 28]
+ ]
+ ]);
+
+ var multiLine = combine(featurecollection([l1, l2]))
+
+ t.ok(multiLine, 'should combine LineString + MultiLineString into a MultiLineString')
+ t.equal(multiLine.features[0].geometry.type, 'MultiLineString')
+ t.deepEqual(multiLine.features[0].geometry.coordinates, [[[102, -10], [130, 4]], [[40, -20], [150, 18]], [[50, -10], [160, 28]]])
+ t.end();
+});
+
+test('combine -- polygons', function(t) {
+ // MultiPolygon
+ var p1 = polygon( [
+ [
+ [20.0,0.0],
+ [101.0,0.0],
+ [101.0,1.0],
+ [100.0,1.0],
+ [100.0,0.0],
+ [20.0,0.0]
+ ]
+ ])
+ var p2 = polygon([
+ [
+ [30.0,0.0],
+ [102.0,0.0],
+ [103.0,1.0],
+ [30.0,0.0]
+ ]
+ ])
+ var multiPoly = combine(featurecollection([p1, p2]))
+
+ t.ok(multiPoly, 'should combine two Polygons into a MultiPolygon')
+ t.equal(multiPoly.features[0].geometry.type, 'MultiPolygon')
+ t.deepEqual(multiPoly.features[0].geometry.coordinates,
+ [[[[20,0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0],[20,0]]],
+ [[[30.0,0.0],[102.0,0.0],[103.0,1.0],[30.0,0.0]]]])
+
+ t.end()
+});
+
+test('combine -- polygons', function(t) {
+ // MultiPolygon
+ var p1 = polygon( [
+ [
+ [20.0,0.0],
+ [101.0,0.0],
+ [101.0,1.0],
+ [100.0,1.0],
+ [100.0,0.0],
+ [20.0,0.0]
+ ]
+ ]);
+ var p2 = multipolygon([
+ [[
+ [30.0,0.0],
+ [102.0,0.0],
+ [103.0,1.0],
+ [30.0,0.0]
+ ]],
+ [
+ [
+ [20.0,5.0],
+ [92.0,5.0],
+ [93.0,6.0],
+ [20.0,5.0]
+ ],
+ [
+ [25, 5],
+ [30, 5],
+ [30, 5.5],
+ [25, 5]
+ ]
+ ]
+ ]);
+ var multiPoly = combine(featurecollection([p1, p2]))
+
+ t.ok(multiPoly, 'should combine two Polygon + MultiPolygon into a MultiPolygon')
+ t.equal(multiPoly.features[0].geometry.type, 'MultiPolygon')
+ t.deepEqual(multiPoly.features[0].geometry.coordinates,
+ [[[[20,0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0],[20,0]]],
+ [[[30.0,0.0],[102.0,0.0],[103.0,1.0],[30.0,0.0]]],
+ [[[20.0,5.0],[92.0,5.0],[93.0,6.0],[20.0,5.0]],
+ [[25, 5],[30, 5],[30, 5.5],[25, 5]]]
+ ])
+
+ t.end()
+});
+
+test('combine -- heterogenous', function(t) {
+ // MultiPolygon
+ var p1 = polygon( [
+ [
+ [20.0,0.0],
+ [101.0,0.0],
+ [101.0,1.0],
+ [100.0,1.0],
+ [100.0,0.0],
+ [20.0,0.0]
+ ]
+ ]);
+ var p2 = multipolygon([
+ [[
+ [30.0,0.0],
+ [102.0,0.0],
+ [103.0,1.0],
+ [30.0,0.0]
+ ]],
+ [
+ [
+ [20.0,5.0],
+ [92.0,5.0],
+ [93.0,6.0],
+ [20.0,5.0]
+ ],
+ [
+ [25, 5],
+ [30, 5],
+ [30, 5.5],
+ [25, 5]
+ ]
+ ]
+ ]);
+ var pt1 = point([50, 51])
+ var multiPoly = combine(featurecollection([p1, p2, pt1]))
+
+ t.ok(multiPoly, 'should combine two Polygon + MultiPolygon into a MultiPolygon')
+ t.equal(multiPoly.features[0].geometry.type, 'MultiPoint')
+
+ t.equal(multiPoly.features[1].geometry.type, 'MultiPolygon')
+ t.deepEqual(multiPoly.features[1].geometry.coordinates,
+ [[[[20,0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0],[20,0]]],
+ [[[30.0,0.0],[102.0,0.0],[103.0,1.0],[30.0,0.0]]],
+ [[[20.0,5.0],[92.0,5.0],[93.0,6.0],[20.0,5.0]],
+ [[25, 5],[30, 5],[30, 5.5],[25, 5]]]
+ ])
+
+ t.end()
+});
diff --git a/packages/turf-concave/.npmignore b/packages/turf-concave/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-concave/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-concave/README.md b/packages/turf-concave/README.md
new file mode 100644
index 0000000000..4fe60e7d5f
--- /dev/null
+++ b/packages/turf-concave/README.md
@@ -0,0 +1,104 @@
+# turf-concave
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-concave.png)](http://travis-ci.org/Turfjs/turf-concave)
+
+turf concave module
+
+
+### `turf.concave(points, maxEdge, units)`
+
+Takes a set of Point|points and returns a concave hull polygon.
+
+Internally, this uses [turf-tin](https://github.com/Turfjs/turf-tin) to generate geometries.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | ---------------------------- | ------------------------------------------------------------------------------- |
+| `points` | FeatureCollection\.\ | input points |
+| `maxEdge` | Number | the size of an edge necessary for part of the hull to become concave (in miles) |
+| `units` | String | used for maxEdge distance (miles or kilometers) |
+
+
+### Example
+
+```js
+var points = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-63.601226, 44.642643]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-63.591442, 44.651436]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-63.580799, 44.648749]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-63.573589, 44.641788]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-63.587665, 44.64533]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-63.595218, 44.64765]
+ }
+ }
+ ]
+};
+
+var hull = turf.concave(points, 1, 'miles');
+
+var resultFeatures = points.features.concat(hull);
+var result = {
+ "type": "FeatureCollection",
+ "features": resultFeatures
+};
+
+//=result
+```
+
+
+**Returns** `Feature.`, a concave hull
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-concave
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-concave/bench.js b/packages/turf-concave/bench.js
new file mode 100644
index 0000000000..b17d485bb6
--- /dev/null
+++ b/packages/turf-concave/bench.js
@@ -0,0 +1,22 @@
+var concave = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var pts1 = JSON.parse(fs.readFileSync(__dirname+'/test/in/pts1.geojson'));
+var pts2 = JSON.parse(fs.readFileSync(__dirname+'/test/in/pts2.geojson'));
+
+var suite = new Benchmark.Suite('turf-concave');
+suite
+ .add('turf-concave#simple',function () {
+ concave(pts1, 2.5, 'miles');
+ })
+ .add('turf-concave#complex',function () {
+ concave(pts2, 2.5, 'miles');
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
diff --git a/packages/turf-concave/index.js b/packages/turf-concave/index.js
new file mode 100644
index 0000000000..d5ce51958f
--- /dev/null
+++ b/packages/turf-concave/index.js
@@ -0,0 +1,118 @@
+// 1. run tin on points
+// 2. calculate lenth of all edges and area of all triangles
+// 3. remove triangles that fail the max length test
+// 4. buffer the results slightly
+// 5. merge the results
+var tin = require('turf-tin');
+var union = require('turf-union');
+var distance = require('turf-distance');
+
+/**
+ * Takes a set of {@link Point|points} and returns a concave hull polygon.
+ *
+ * Internally, this uses [turf-tin](https://github.com/Turfjs/turf-tin) to generate geometries.
+ *
+ * @module concave
+ * @category transformation
+ * @param {FeatureCollection} points input points
+ * @param {Number} maxEdge the size of an edge necessary for part of the
+ * hull to become concave (in miles)
+ * @param {String} units used for maxEdge distance (miles or kilometers)
+ * @returns {Feature} a concave hull
+ * @throws {Error} if maxEdge parameter is missing
+ * @throws {Error} if units parameter is missing
+ * @example
+ * var points = {
+ * "type": "FeatureCollection",
+ * "features": [
+ * {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-63.601226, 44.642643]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-63.591442, 44.651436]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-63.580799, 44.648749]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-63.573589, 44.641788]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-63.587665, 44.64533]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-63.595218, 44.64765]
+ * }
+ * }
+ * ]
+ * };
+ *
+ * var hull = turf.concave(points, 1, 'miles');
+ *
+ * var resultFeatures = points.features.concat(hull);
+ * var result = {
+ * "type": "FeatureCollection",
+ * "features": resultFeatures
+ * };
+ *
+ * //=result
+ */
+
+
+module.exports = function (points, maxEdge, units) {
+ if (typeof maxEdge !== 'number') throw new Error('maxEdge parameter is required');
+ if (typeof units !== 'string') throw new Error('units parameter is required');
+
+ var tinPolys = tin(points);
+ var filteredPolys = tinPolys.features.filter(filterTriangles);
+ tinPolys.features = filteredPolys;
+
+ function filterTriangles(triangle) {
+ var pt1 = triangle.geometry.coordinates[0][0];
+ var pt2 = triangle.geometry.coordinates[0][1];
+ var pt3 = triangle.geometry.coordinates[0][2];
+ var dist1 = distance(pt1, pt2, units);
+ var dist2 = distance(pt2, pt3, units);
+ var dist3 = distance(pt1, pt3, units);
+ return (dist1 <= maxEdge && dist2 <= maxEdge && dist3 <= maxEdge);
+ }
+
+ return merge(tinPolys);
+};
+
+function merge(polygons) {
+ var merged = JSON.parse(JSON.stringify(polygons.features[0])),
+ features = polygons.features;
+
+ for (var i = 0, len = features.length; i < len; i++) {
+ var poly = features[i];
+ if (poly.geometry) {
+ merged = union(merged, poly);
+ }
+ }
+ return merged;
+}
diff --git a/packages/turf-concave/package.json b/packages/turf-concave/package.json
new file mode 100644
index 0000000000..99789190e6
--- /dev/null
+++ b/packages/turf-concave/package.json
@@ -0,0 +1,35 @@
+{
+ "name": "turf-concave",
+ "version": "3.0.5",
+ "description": "turf concave module",
+ "main": "index.js",
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/Turfjs/turf-concave.git"
+ },
+ "keywords": [
+ "turf",
+ "gis",
+ "geometry"
+ ],
+ "author": "Morgan Herlocker",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-concave/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-concave",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "glob": "~4.3.5",
+ "tape": "~3.5.0"
+ },
+ "dependencies": {
+ "turf-meta": "^3.0.1",
+ "turf-tin": "^3.0.5",
+ "turf-union": "^3.0.1",
+ "turf-distance": "^3.0.5"
+ }
+}
diff --git a/packages/turf-concave/test.js b/packages/turf-concave/test.js
new file mode 100644
index 0000000000..a6010bc3bc
--- /dev/null
+++ b/packages/turf-concave/test.js
@@ -0,0 +1,36 @@
+var concave = require('./');
+var test = require('tape');
+var fs = require('fs');
+
+var pts1 = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/pts1.geojson'));
+var pts2 = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/pts2.geojson'));
+
+test('concave', function(t){
+ var pts1HullMiles = concave(pts1, 5.5, 'miles');
+ var pts1HullKilometers = concave(pts1, 5.5 * 1.60934, 'kilometers');
+ t.ok(pts1HullMiles, 'computes hull');
+ t.equal(pts1HullMiles.type, 'Feature');
+ t.deepEqual(pts1HullMiles, pts1HullKilometers, 'miles and km should return the same result');
+
+ var pts2HullMiles = concave(pts2, 2, 'miles');
+ var pts2HullKilometers = concave(pts2, 2 * 1.60934, 'kilometers');
+ t.ok(pts2HullMiles, 'computes hull');
+ t.equal(pts2HullMiles.type, 'Feature');
+ t.deepEqual(pts2HullMiles, pts2HullKilometers, 'miles and km should return the same result');
+
+ // output results
+ pts1.features = pts1.features.map(stylePt);
+ pts1.features.push(pts1HullMiles);
+ pts2.features = pts2.features.map(stylePt);
+ pts2.features.push(pts2HullMiles);
+ fs.writeFileSync(__dirname+'/test/fixtures/out/pts1_out.geojson', JSON.stringify(pts1,null,2));
+ fs.writeFileSync(__dirname+'/test/fixtures/out/pts2_out.geojson', JSON.stringify(pts2,null,2));
+
+ t.end();
+});
+
+function stylePt(pt){
+ pt.properties['marker-color'] = '#f0f';
+ pt.properties['marker-size'] = 'small';
+ return pt;
+}
diff --git a/packages/turf-concave/test/fixtures/in/pts1.geojson b/packages/turf-concave/test/fixtures/in/pts1.geojson
new file mode 100644
index 0000000000..21b440cad2
--- /dev/null
+++ b/packages/turf-concave/test/fixtures/in/pts1.geojson
@@ -0,0 +1,148 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.40898132324217,
+ 37.77505678240509
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.43095397949219,
+ 37.74411415606583
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.44331359863283,
+ 37.726194088705576
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.47833251953125,
+ 37.73651223296987
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.4103546142578,
+ 37.72184917678752
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.41790771484375,
+ 37.74682893940135
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.53395080566405,
+ 37.83690319650768
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.51541137695311,
+ 37.83473402375478
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.49069213867188,
+ 37.837445479729666
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.52639770507812,
+ 37.83473402375478
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.62527465820311,
+ 37.89327929625019
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.60467529296875,
+ 37.902490518640995
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.58682250976562,
+ 37.895988598965644
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-concave/test/fixtures/in/pts2.geojson b/packages/turf-concave/test/fixtures/in/pts2.geojson
new file mode 100644
index 0000000000..5a41f30da1
--- /dev/null
+++ b/packages/turf-concave/test/fixtures/in/pts2.geojson
@@ -0,0 +1,150 @@
+{
+"type": "FeatureCollection",
+"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
+
+"features": [
+{ "type": "Feature", "properties": { "OBJECTID_1": 51, "OBJECTID_2": 25, "OBJECTID": 49.0, "PRECINCT_N": 7.0, "FACILITY_D": "Recreation Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_49", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hardy Recreation Center", "ADDRESS": "4500 Q STREET NW", "ADDRESS_ID": 284929 }, "geometry": { "type": "Point", "coordinates": [ -77.084981183092964, 38.909915833213795 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 52, "OBJECTID_2": 26, "OBJECTID": 50.0, "PRECINCT_N": 5.0, "FACILITY_D": "Large Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_50", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Georgetown Community Library", "ADDRESS": "3260 R STREET NW", "ADDRESS_ID": 295142 }, "geometry": { "type": "Point", "coordinates": [ -77.066007305842078, 38.913434229544386 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 53, "OBJECTID_2": 27, "OBJECTID": 51.0, "PRECINCT_N": 76.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_51", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Bethesda Baptist Church", "ADDRESS": "1808 CAPITOL AVENUE NE", "ADDRESS_ID": 155925 }, "geometry": { "type": "Point", "coordinates": [ -76.98614224512842, 38.911020521048734 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 54, "OBJECTID_2": 28, "OBJECTID": 52.0, "PRECINCT_N": 15.0, "FACILITY_D": "Community Room (Lower Level)", "ACCESSIBLE": "Yes - Use side entrance on P Street", "GIS_ID": "plp_52", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Foundry United Methodist Church", "ADDRESS": "1500 16TH STREET NW", "ADDRESS_ID": 243309 }, "geometry": { "type": "Point", "coordinates": [ -77.036879490722725, 38.910033613313317 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 55, "OBJECTID_2": 29, "OBJECTID": 53.0, "PRECINCT_N": 14.0, "FACILITY_D": "Guild Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_53", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Thomas' Episcopal Parish", "ADDRESS": "1772 CHURCH STREET NW", "ADDRESS_ID": 225918 }, "geometry": { "type": "Point", "coordinates": [ -77.041041176671854, 38.910212212295264 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 56, "OBJECTID_2": 30, "OBJECTID": 54.0, "PRECINCT_N": 16.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance at the rear of the church. Use entrance on R St. side of church.", "GIS_ID": "plp_54", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "15th Street Presbyterian Church", "ADDRESS": "1701 15TH STREET NW", "ADDRESS_ID": 240136 }, "geometry": { "type": "Point", "coordinates": [ -77.03417962817295, 38.912811255258127 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 57, "OBJECTID_2": 31, "OBJECTID": 55.0, "PRECINCT_N": 18.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_55", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Kennedy Recreation Center", "ADDRESS": "1401 7TH STREET NW", "ADDRESS_ID": 279127 }, "geometry": { "type": "Point", "coordinates": [ -77.021536456247759, 38.908989778469483 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 58, "OBJECTID_2": 32, "OBJECTID": 56.0, "PRECINCT_N": 17.0, "FACILITY_D": "Exhibit Rooms", "ACCESSIBLE": "Yes", "GIS_ID": "plp_56", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "The Charles Sumner School Museum and Archives", "ADDRESS": "1201 17th STREET NW\r\n1201 17TH STREET NW", "ADDRESS_ID": 301200 }, "geometry": { "type": "Point", "coordinates": [ -77.038222905521806, 38.905977334681452 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 59, "OBJECTID_2": 33, "OBJECTID": 57.0, "PRECINCT_N": 4.0, "FACILITY_D": "Large Meeting Room (2nd Floor)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_57", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "West End Public Library", "ADDRESS": "1101 24TH STREET NW", "ADDRESS_ID": 218248 }, "geometry": { "type": "Point", "coordinates": [ -77.05109790160472, 38.904019151364736 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 60, "OBJECTID_2": 34, "OBJECTID": 58.0, "PRECINCT_N": 77.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_58", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Delta Towers Apartments", "ADDRESS": "1400 FLORIDA AVENUE NE", "ADDRESS_ID": 65280 }, "geometry": { "type": "Point", "coordinates": [ -76.984331916380768, 38.900557364972023 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 61, "OBJECTID_2": 35, "OBJECTID": 59.0, "PRECINCT_N": 129.0, "FACILITY_D": "Main Lobby", "ACCESSIBLE": "Yes", "GIS_ID": "plp_59", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Martin Luther King Library", "ADDRESS": "901 G STREET NW", "ADDRESS_ID": 239815 }, "geometry": { "type": "Point", "coordinates": [ -77.02476626008324, 38.898691330337449 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 62, "OBJECTID_2": 36, "OBJECTID": 60.0, "PRECINCT_N": 82.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_60", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Sherwood Recreation Center", "ADDRESS": "640 10TH STREET NE", "ADDRESS_ID": 301075 }, "geometry": { "type": "Point", "coordinates": [ -76.993016818542159, 38.898545289067677 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 63, "OBJECTID_2": 37, "OBJECTID": 61.0, "PRECINCT_N": 3.0, "FACILITY_D": "Dining Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_61", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Mary's Court", "ADDRESS": "725 24TH STREET NW", "ADDRESS_ID": 242350 }, "geometry": { "type": "Point", "coordinates": [ -77.051147709627202, 38.898862835793516 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 64, "OBJECTID_2": 38, "OBJECTID": 62.0, "PRECINCT_N": 1.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_62", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Walker-Jones EC", "ADDRESS": "1125 NEW JERSEY AVENUE NW", "ADDRESS_ID": 307735 }, "geometry": { "type": "Point", "coordinates": [ -77.013915692345691, 38.90419164723351 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 65, "OBJECTID_2": 39, "OBJECTID": 64.0, "PRECINCT_N": 10.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_64", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Horace Mann Community Center", "ADDRESS": "4430 NEWARK STREET NW", "ADDRESS_ID": 294597 }, "geometry": { "type": "Point", "coordinates": [ -77.087826188256471, 38.934291971694272 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 66, "OBJECTID_2": 40, "OBJECTID": 65.0, "PRECINCT_N": 19.0, "FACILITY_D": "Gym\/Armory", "ACCESSIBLE": "Yes", "GIS_ID": "plp_65", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Dunbar Senior High School", "ADDRESS": "1301 NEW JERSEY AVENUE NW", "ADDRESS_ID": 279021 }, "geometry": { "type": "Point", "coordinates": [ -77.014693855315954, 38.908523216218732 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 67, "OBJECTID_2": 41, "OBJECTID": 66.0, "PRECINCT_N": 20.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_66", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Washington Metropolitan High School", "ADDRESS": "300 BRYANT STREET NW", "ADDRESS_ID": 294475 }, "geometry": { "type": "Point", "coordinates": [ -77.015557008963071, 38.920441293733219 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 68, "OBJECTID_2": 42, "OBJECTID": 67.0, "PRECINCT_N": 21.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_67", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Vermont Avenue Baptist Church", "ADDRESS": "1630 VERMONT AVENUE NW", "ADDRESS_ID": 243277 }, "geometry": { "type": "Point", "coordinates": [ -77.028781227702837, 38.911825717245286 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 69, "OBJECTID_2": 43, "OBJECTID": 68.0, "PRECINCT_N": 22.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible entrance located on V Street.", "GIS_ID": "plp_68", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Garnet-Patterson Middle School", "ADDRESS": "2001 10TH STREET NW", "ADDRESS_ID": 294533 }, "geometry": { "type": "Point", "coordinates": [ -77.025748782113368, 38.917544774486181 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 70, "OBJECTID_2": 44, "OBJECTID": 69.0, "PRECINCT_N": 24.0, "FACILITY_D": "Living Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_69", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Marie Reed Learning Center", "ADDRESS": "2200 CHAMPLAIN STREET NW", "ADDRESS_ID": 235577 }, "geometry": { "type": "Point", "coordinates": [ -77.04052994742716, 38.919167306666537 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 71, "OBJECTID_2": 45, "OBJECTID": 71.0, "PRECINCT_N": 27.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_71", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Eaton Elementary School", "ADDRESS": "3301 LOWELL STREET NW", "ADDRESS_ID": 294562 }, "geometry": { "type": "Point", "coordinates": [ -77.065821132685912, 38.932726738826823 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 72, "OBJECTID_2": 46, "OBJECTID": 72.0, "PRECINCT_N": 29.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_72", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "2nd District Police Station", "ADDRESS": "3320 IDAHO AVENUE NW", "ADDRESS_ID": 222229 }, "geometry": { "type": "Point", "coordinates": [ -77.074838057652229, 38.934845831784592 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 73, "OBJECTID_2": 47, "OBJECTID": 73.0, "PRECINCT_N": 30.0, "FACILITY_D": "Multi-Purpose Room (on Albemarle St.)", "ACCESSIBLE": "Yes - Accessible entrance at side of school, nearest to Wisconsin Ave.", "GIS_ID": "plp_73", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Janney Elementary School", "ADDRESS": "4130 ALBEMARLE STREET NW", "ADDRESS_ID": 285713 }, "geometry": { "type": "Point", "coordinates": [ -77.080994819731956, 38.947550087065927 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 74, "OBJECTID_2": 48, "OBJECTID": 74.0, "PRECINCT_N": 33.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use rear entrance on Ellicott St.", "GIS_ID": "plp_74", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Ben Murch Elementary School", "ADDRESS": "4810 36TH STREET NW", "ADDRESS_ID": 294602 }, "geometry": { "type": "Point", "coordinates": [ -77.07007920338755, 38.952933189596607 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 75, "OBJECTID_2": 49, "OBJECTID": 75.0, "PRECINCT_N": 35.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_75", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "H.D. Cooke Elementary School", "ADDRESS": "2525 17TH STREET NW", "ADDRESS_ID": 235863 }, "geometry": { "type": "Point", "coordinates": [ -77.038813828001906, 38.923931654217967 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 76, "OBJECTID_2": 50, "OBJECTID": 76.0, "PRECINCT_N": 37.0, "FACILITY_D": "Community Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_76", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Banneker Community Recreation Center", "ADDRESS": "2500 GEORGIA AVENUE NW", "ADDRESS_ID": 232292 }, "geometry": { "type": "Point", "coordinates": [ -77.022579801385916, 38.922697600945042 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 77, "OBJECTID_2": 51, "OBJECTID": 77.0, "PRECINCT_N": 38.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_77", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Cesar Chavez Prep Charter Middle School", "ADDRESS": "770 KENYON STREET NW", "ADDRESS_ID": 285409 }, "geometry": { "type": "Point", "coordinates": [ -77.025887356034701, 38.929619476288885 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 78, "OBJECTID_2": 52, "OBJECTID": 78.0, "PRECINCT_N": 40.0, "FACILITY_D": "Assembly Hall", "ACCESSIBLE": "Yes - Use entrance on Newton Street.", "GIS_ID": "plp_78", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Bancroft Elementary School", "ADDRESS": "1755 NEWTON STREET NW", "ADDRESS_ID": 294528 }, "geometry": { "type": "Point", "coordinates": [ -77.040553449803028, 38.934318023511061 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 79, "OBJECTID_2": 53, "OBJECTID": 79.0, "PRECINCT_N": 46.0, "FACILITY_D": "Classroom", "ACCESSIBLE": "Yes", "GIS_ID": "plp_79", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "E.L. Haynes Public Charter School @ Clark", "ADDRESS": "4501 KANSAS AVENUE NW", "ADDRESS_ID": 284930 }, "geometry": { "type": "Point", "coordinates": [ -77.022416369914765, 38.94560156110601 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 80, "OBJECTID_2": 54, "OBJECTID": 80.0, "PRECINCT_N": 47.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible ramped entrance off of alley.", "GIS_ID": "plp_80", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Powell Elementary School", "ADDRESS": "1350 UPSHUR STREET NW", "ADDRESS_ID": 255302 }, "geometry": { "type": "Point", "coordinates": [ -77.031227415751488, 38.941534009869706 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 81, "OBJECTID_2": 55, "OBJECTID": 81.0, "PRECINCT_N": 48.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use south entrance on 13th St.", "GIS_ID": "plp_81", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Sharpe Health School", "ADDRESS": "4300 13TH STREET NW", "ADDRESS_ID": 255254 }, "geometry": { "type": "Point", "coordinates": [ -77.030468336673792, 38.943474325156487 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 82, "OBJECTID_2": 56, "OBJECTID": 82.0, "PRECINCT_N": 49.0, "FACILITY_D": "Science Room", "ACCESSIBLE": "Yes - Accessible entrance located on Rock Creek Church Road.", "GIS_ID": "plp_82", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Raymond Elementary School", "ADDRESS": "915 SPRING ROAD NW", "ADDRESS_ID": 226682 }, "geometry": { "type": "Point", "coordinates": [ -77.026432654256809, 38.935810871763174 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 83, "OBJECTID_2": 57, "OBJECTID": 83.0, "PRECINCT_N": 51.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use parking lot entrance on Northampton St.", "GIS_ID": "plp_83", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Lafayette Elementary School", "ADDRESS": "5701 BROAD BRANCH ROAD NW", "ADDRESS_ID": 294611 }, "geometry": { "type": "Point", "coordinates": [ -77.06803711636698, 38.966627220648277 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 84, "OBJECTID_2": 58, "OBJECTID": 84.0, "PRECINCT_N": 53.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_84", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Brightwood Elementary School", "ADDRESS": "1300 NICHOLSON STREET NW", "ADDRESS_ID": 294515 }, "geometry": { "type": "Point", "coordinates": [ -77.030688851988643, 38.960535392858461 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 85, "OBJECTID_2": 59, "OBJECTID": 85.0, "PRECINCT_N": 54.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use entrance located at 14th & Farragut Streets.", "GIS_ID": "plp_85", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "West Elementary School", "ADDRESS": "1338 FARRAGUT STREET NW", "ADDRESS_ID": 294517 }, "geometry": { "type": "Point", "coordinates": [ -77.032253049830672, 38.951367080952416 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 86, "OBJECTID_2": 60, "OBJECTID": 86.0, "PRECINCT_N": 55.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_86", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Barnard Elementary School", "ADDRESS": "430 DECATUR STREET NW", "ADDRESS_ID": 248305 }, "geometry": { "type": "Point", "coordinates": [ -77.017777080008301, 38.948230614415095 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 87, "OBJECTID_2": 61, "OBJECTID": 87.0, "PRECINCT_N": 56.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_87", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Truesdell Elementary School", "ADDRESS": "800 INGRAHAM STREET NW", "ADDRESS_ID": 294497 }, "geometry": { "type": "Point", "coordinates": [ -77.025071570135182, 38.953968358095487 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 88, "OBJECTID_2": 62, "OBJECTID": 88.0, "PRECINCT_N": 57.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_88", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hattie Holmes Wellness Center", "ADDRESS": "324 KENNEDY STREET NW", "ADDRESS_ID": 307575 }, "geometry": { "type": "Point", "coordinates": [ -77.017112348141424, 38.956388773368296 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 89, "OBJECTID_2": 63, "OBJECTID": 90.0, "PRECINCT_N": 59.0, "FACILITY_D": "Armory", "ACCESSIBLE": "Yes", "GIS_ID": "plp_90", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Coolidge Senior High School", "ADDRESS": "6315 5TH STREET NW", "ADDRESS_ID": 294615 }, "geometry": { "type": "Point", "coordinates": [ -77.01957835173927, 38.967284239673525 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 90, "OBJECTID_2": 64, "OBJECTID": 91.0, "PRECINCT_N": 62.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use ramped entrance on 14th Street.", "GIS_ID": "plp_91", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Shepherd Elementary School", "ADDRESS": "7800 14TH STREET NW", "ADDRESS_ID": 256319 }, "geometry": { "type": "Point", "coordinates": [ -77.03399523386544, 38.984602950032162 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 91, "OBJECTID_2": 65, "OBJECTID": 92.0, "PRECINCT_N": 63.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_92", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Takoma Community Center", "ADDRESS": "300 VAN BUREN STREET NW", "ADDRESS_ID": 296168 }, "geometry": { "type": "Point", "coordinates": [ -77.018051676182949, 38.968886691314118 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 92, "OBJECTID_2": 66, "OBJECTID": 93.0, "PRECINCT_N": 64.0, "FACILITY_D": "Recreation Area", "ACCESSIBLE": "Yes - Use rear entrance on 2nd St.", "GIS_ID": "plp_93", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Rabaut - Administrative Building", "ADDRESS": "100 PEABODY STREET NW", "ADDRESS_ID": 277545 }, "geometry": { "type": "Point", "coordinates": [ -77.012867448323647, 38.962164521997181 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 93, "OBJECTID_2": 67, "OBJECTID": 94.0, "PRECINCT_N": 65.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_94", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "LaSalle Elementary School", "ADDRESS": "501 RIGGS ROAD NE", "ADDRESS_ID": 294489 }, "geometry": { "type": "Point", "coordinates": [ -76.999882538481089, 38.959971809983642 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 94, "OBJECTID_2": 68, "OBJECTID": 95.0, "PRECINCT_N": 66.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance next to parking lot on Hamilton Street.", "GIS_ID": "plp_95", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "UDC Community College @ Backus", "ADDRESS": "5171 SOUTH DAKOTA AVENUE NE", "ADDRESS_ID": 294607 }, "geometry": { "type": "Point", "coordinates": [ -76.997267383153954, 38.953340525729047 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 95, "OBJECTID_2": 69, "OBJECTID": 96.0, "PRECINCT_N": 67.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible entrance next to the parking lot on 14th Street", "GIS_ID": "plp_96", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Bunker Hill Elementary School", "ADDRESS": "1401 MICHIGAN AVENUE NE", "ADDRESS_ID": 286131 }, "geometry": { "type": "Point", "coordinates": [ -76.98499562999821, 38.942012135008142 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 96, "OBJECTID_2": 70, "OBJECTID": 97.0, "PRECINCT_N": 68.0, "FACILITY_D": "Reception Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_97", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Francis Hall", "ADDRESS": "1340 QUINCY STREET NE", "ADDRESS_ID": 66591 }, "geometry": { "type": "Point", "coordinates": [ -76.986529583871643, 38.9375726751204 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 97, "OBJECTID_2": 71, "OBJECTID": 98.0, "PRECINCT_N": 69.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_98", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hyde Public Charter School @ Taft", "ADDRESS": "1800 PERRY STREET NE", "ADDRESS_ID": 294529 }, "geometry": { "type": "Point", "coordinates": [ -76.978595514953696, 38.936796147384342 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 98, "OBJECTID_2": 72, "OBJECTID": 99.0, "PRECINCT_N": 70.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance on Monroe Street.", "GIS_ID": "plp_99", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Burroughs Elementary School", "ADDRESS": "1820 MONROE STREET NE", "ADDRESS_ID": 294530 }, "geometry": { "type": "Point", "coordinates": [ -76.978456370398874, 38.933502326896445 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 99, "OBJECTID_2": 73, "OBJECTID": 100.0, "PRECINCT_N": 73.0, "FACILITY_D": "Library (Lower Level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_100", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "M.M. Bethune Day Academy @ Slowe", "ADDRESS": "1404 JACKSON STREET NE", "ADDRESS_ID": 294522 }, "geometry": { "type": "Point", "coordinates": [ -76.986864622728547, 38.929605590082105 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 100, "OBJECTID_2": 74, "OBJECTID": 101.0, "PRECINCT_N": 74.0, "FACILITY_D": "Multipurpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_101", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Shaed Elementary School", "ADDRESS": "301 DOUGLAS STREET NE", "ADDRESS_ID": 294477 }, "geometry": { "type": "Point", "coordinates": [ -77.002538318002209, 38.923654687421774 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 101, "OBJECTID_2": 75, "OBJECTID": 102.0, "PRECINCT_N": 78.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_102", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Trinidad Recreation Center", "ADDRESS": "1310 CHILDRESS STREET NE", "ADDRESS_ID": 68509 }, "geometry": { "type": "Point", "coordinates": [ -76.982734368763062, 38.906442359837776 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 102, "OBJECTID_2": 76, "OBJECTID": 103.0, "PRECINCT_N": 81.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_103", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Miner Elementary School", "ADDRESS": "601 15TH STREET NE", "ADDRESS_ID": 289548 }, "geometry": { "type": "Point", "coordinates": [ -76.982904313087829, 38.897375682182471 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 103, "OBJECTID_2": 77, "OBJECTID": 104.0, "PRECINCT_N": 79.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_104", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Browne Junior High School", "ADDRESS": "850 26TH STREET NE", "ADDRESS_ID": 294501 }, "geometry": { "type": "Point", "coordinates": [ -76.970667052474028, 38.902598549008218 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 104, "OBJECTID_2": 78, "OBJECTID": 105.0, "PRECINCT_N": 83.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance located on 7th Street.", "GIS_ID": "plp_105", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "J.O. Wilson Elementary School", "ADDRESS": "660 K STREET NE", "ADDRESS_ID": 288841 }, "geometry": { "type": "Point", "coordinates": [ -76.996589027486436, 38.90275766582991 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 105, "OBJECTID_2": 79, "OBJECTID": 106.0, "PRECINCT_N": 84.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_106", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Stuart-Hobson Middle School", "ADDRESS": "410 E STREET NE", "ADDRESS_ID": 294483 }, "geometry": { "type": "Point", "coordinates": [ -77.000004386249671, 38.896297370808789 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 106, "OBJECTID_2": 80, "OBJECTID": 107.0, "PRECINCT_N": 85.0, "FACILITY_D": "Auditorium (A-Level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_107", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "The Specialty Hospital of Washington", "ADDRESS": "700 CONSTITUTION AVENUE NE", "ADDRESS_ID": 295162 }, "geometry": { "type": "Point", "coordinates": [ -76.995356592112472, 38.892321795813096 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 107, "OBJECTID_2": 81, "OBJECTID": 108.0, "PRECINCT_N": 86.0, "FACILITY_D": "Recreation Room (lower level)", "ACCESSIBLE": "Yes - Accessible - side entrance, next to the parking lot.", "GIS_ID": "plp_108", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Eliot Junior High School", "ADDRESS": "1830 CONSTITUTION AVENUE NE", "ADDRESS_ID": 286499 }, "geometry": { "type": "Point", "coordinates": [ -76.978977913437262, 38.892431159766303 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 108, "OBJECTID_2": 82, "OBJECTID": 109.0, "PRECINCT_N": 87.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes = Use entrance at the rear of the school, next to the parking lot.", "GIS_ID": "plp_109", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Payne Elementary School", "ADDRESS": "305 15TH STREET SE", "ADDRESS_ID": 294478 }, "geometry": { "type": "Point", "coordinates": [ -76.98419490800174, 38.885132314488203 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 109, "OBJECTID_2": 83, "OBJECTID": 110.0, "PRECINCT_N": 89.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_110", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "William H. Rumsey Aquatic Center", "ADDRESS": "635 NORTH CAROLINA AVENUE SE", "ADDRESS_ID": 295159 }, "geometry": { "type": "Point", "coordinates": [ -76.997028705938774, 38.886585046654147 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 110, "OBJECTID_2": 84, "OBJECTID": 111.0, "PRECINCT_N": 91.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_111", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Watkins Elementary School", "ADDRESS": "420 12TH STREET SE", "ADDRESS_ID": 294486 }, "geometry": { "type": "Point", "coordinates": [ -76.989996763548163, 38.883466674788586 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 111, "OBJECTID_2": 85, "OBJECTID": 113.0, "PRECINCT_N": 92.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_113", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Kenilworth Elementary School", "ADDRESS": "1300 44TH STREET NE", "ADDRESS_ID": 294516 }, "geometry": { "type": "Point", "coordinates": [ -76.940484939136297, 38.908228732598651 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 112, "OBJECTID_2": 86, "OBJECTID": 114.0, "PRECINCT_N": 93.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance at the rear of the school.", "GIS_ID": "plp_114", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Houston Elementary School", "ADDRESS": "1100 50TH PLACE NE", "ADDRESS_ID": 156316 }, "geometry": { "type": "Point", "coordinates": [ -76.9299476407989, 38.905414987198981 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 113, "OBJECTID_2": 87, "OBJECTID": 115.0, "PRECINCT_N": 94.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_115", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Merritt Education Center", "ADDRESS": "5002 HAYES STREET NE", "ADDRESS_ID": 294606 }, "geometry": { "type": "Point", "coordinates": [ -76.930131189589616, 38.900230067255841 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 114, "OBJECTID_2": 88, "OBJECTID": 116.0, "PRECINCT_N": 95.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes -Use entrance located at 57th & Eads Streets.", "GIS_ID": "plp_116", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Drew Elementary School", "ADDRESS": "5500 EADS STREET NE", "ADDRESS_ID": 294609 }, "geometry": { "type": "Point", "coordinates": [ -76.922708043967461, 38.896192887555607 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 115, "OBJECTID_2": 89, "OBJECTID": 117.0, "PRECINCT_N": 100.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_117", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Thomas Elementary School", "ADDRESS": "650 ANACOSTIA AVENUE NE", "ADDRESS_ID": 294493 }, "geometry": { "type": "Point", "coordinates": [ -76.952110905321987, 38.901278637588895 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 116, "OBJECTID_2": 90, "OBJECTID": 118.0, "PRECINCT_N": 98.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use rear entrance of the school.", "GIS_ID": "plp_118", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Smothers Elementary School", "ADDRESS": "4400 BROOKS STREET NE", "ADDRESS_ID": 294596 }, "geometry": { "type": "Point", "coordinates": [ -76.938468638784286, 38.893553701828701 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 117, "OBJECTID_2": 91, "OBJECTID": 120.0, "PRECINCT_N": 103.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Use ground level entrance.", "GIS_ID": "plp_120", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Plummer Elementary School", "ADDRESS": "4601 TEXAS AVENUE SE", "ADDRESS_ID": 19536 }, "geometry": { "type": "Point", "coordinates": [ -76.939934669841293, 38.8872398636938 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 118, "OBJECTID_2": 92, "OBJECTID": 121.0, "PRECINCT_N": 104.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes- Use ground level entrance.", "GIS_ID": "plp_121", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Nalle Elementary School", "ADDRESS": "219 50TH STREET SE", "ADDRESS_ID": 294474 }, "geometry": { "type": "Point", "coordinates": [ -76.930796499569979, 38.885954085228562 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 119, "OBJECTID_2": 93, "OBJECTID": 122.0, "PRECINCT_N": 105.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Use entrance located on D Street.", "GIS_ID": "plp_122", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "CW Harris Elementary School", "ADDRESS": "301 53RD STREET SE", "ADDRESS_ID": 289801 }, "geometry": { "type": "Point", "coordinates": [ -76.926115493732041, 38.883598497883369 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 120, "OBJECTID_2": 94, "OBJECTID": 123.0, "PRECINCT_N": 106.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible rear entrance, next to the parking lot.", "GIS_ID": "plp_123", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Davis Elementary School", "ADDRESS": "4430 H STREET SE", "ADDRESS_ID": 294598 }, "geometry": { "type": "Point", "coordinates": [ -76.937616302328593, 38.879067951063831 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 121, "OBJECTID_2": 95, "OBJECTID": 124.0, "PRECINCT_N": 107.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_124", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Sousa Middle School", "ADDRESS": "3650 ELY PLACE SE", "ADDRESS_ID": 294584 }, "geometry": { "type": "Point", "coordinates": [ -76.953161747717687, 38.883908000174614 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 122, "OBJECTID_2": 96, "OBJECTID": 125.0, "PRECINCT_N": 142.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_125", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Jefferson Junior High School", "ADDRESS": "801 7TH STREET SW", "ADDRESS_ID": 276812 }, "geometry": { "type": "Point", "coordinates": [ -77.022910654604146, 38.879870599424763 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 123, "OBJECTID_2": 97, "OBJECTID": 126.0, "PRECINCT_N": 140.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_126", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Anacostia Senior High School", "ADDRESS": "1601 16TH STREET SE", "ADDRESS_ID": 155922 }, "geometry": { "type": "Point", "coordinates": [ -76.983077248298486, 38.870083725754895 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 124, "OBJECTID_2": 98, "OBJECTID": 127.0, "PRECINCT_N": 139.0, "FACILITY_D": "Community Service Area", "ACCESSIBLE": "Yes", "GIS_ID": "plp_127", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Thurgood Marshall Elementary", "ADDRESS": "3100 FORT LINCOLN DRIVE NE", "ADDRESS_ID": 294553 }, "geometry": { "type": "Point", "coordinates": [ -76.957633696697528, 38.927305943770008 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 1, "OBJECTID_2": 101, "OBJECTID": 130.0, "PRECINCT_N": 131.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_130", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Van Ness Elementary School", "ADDRESS": "1150 5TH STREET SE", "ADDRESS_ID": 294508 }, "geometry": { "type": "Point", "coordinates": [ -76.999244002225964, 38.87679611768769 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 2, "OBJECTID_2": 102, "OBJECTID": 131.0, "PRECINCT_N": 125.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_131", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hendley Elementary School", "ADDRESS": "425 CHESAPEAKE STREET SE", "ADDRESS_ID": 24445 }, "geometry": { "type": "Point", "coordinates": [ -76.999184840242322, 38.828985580495711 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 3, "OBJECTID_2": 103, "OBJECTID": 132.0, "PRECINCT_N": 126.0, "FACILITY_D": "Library", "ACCESSIBLE": "Yes", "GIS_ID": "plp_132", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "W.B. Patterson Elementary School", "ADDRESS": "4399 SOUTH CAPITOL TERRACE SW", "ADDRESS_ID": 301073 }, "geometry": { "type": "Point", "coordinates": [ -77.008475600194785, 38.826981192201202 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 4, "OBJECTID_2": 104, "OBJECTID": 133.0, "PRECINCT_N": 123.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_133", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Martin Luther King Elementary School", "ADDRESS": "600 ALABAMA AVENUE SE", "ADDRESS_ID": 294492 }, "geometry": { "type": "Point", "coordinates": [ -76.997583187909655, 38.843386565863888 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 5, "OBJECTID_2": 105, "OBJECTID": 135.0, "PRECINCT_N": 121.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_135", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "National Collegiate Prep @ Draper", "ADDRESS": "908 WAHLER PLACE SE", "ADDRESS_ID": 294502 }, "geometry": { "type": "Point", "coordinates": [ -76.992268817990308, 38.834327886510565 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 6, "OBJECTID_2": 106, "OBJECTID": 136.0, "PRECINCT_N": 120.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes - Use side Entrance", "GIS_ID": "plp_136", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Malcolm X Elementary School", "ADDRESS": "1351 ALABAMA AVENUE SE", "ADDRESS_ID": 289201 }, "geometry": { "type": "Point", "coordinates": [ -76.986212854490333, 38.844973623092343 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 7, "OBJECTID_2": 107, "OBJECTID": 137.0, "PRECINCT_N": 118.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_137", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Garnet C. Wilkinson Elementary School", "ADDRESS": "2330 POMEROY ROAD SE", "ADDRESS_ID": 294542 }, "geometry": { "type": "Point", "coordinates": [ -76.985550422151263, 38.856844389461791 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 8, "OBJECTID_2": 108, "OBJECTID": 138.0, "PRECINCT_N": 119.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_138", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Excel Academy PCS @ Birney", "ADDRESS": "2501 MARTIN LUTHER KING JR AVENUE SE", "ADDRESS_ID": 278172 }, "geometry": { "type": "Point", "coordinates": [ -76.99535456253949, 38.859761758349642 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 9, "OBJECTID_2": 109, "OBJECTID": 139.0, "PRECINCT_N": 117.0, "FACILITY_D": "Main Lobby", "ACCESSIBLE": "Yes - Use ramped entrance on Stanton Road.", "GIS_ID": "plp_139", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Douglas Community Recreation Center", "ADDRESS": "1898 STANTON TERRACE SE", "ADDRESS_ID": 286513 }, "geometry": { "type": "Point", "coordinates": [ -76.977761548811543, 38.852636229366837 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 10, "OBJECTID_2": 110, "OBJECTID": 140.0, "PRECINCT_N": 114.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_140", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Union Temple Baptist Church", "ADDRESS": "1225 W STREET SE", "ADDRESS_ID": 70732 }, "geometry": { "type": "Point", "coordinates": [ -76.988939737432986, 38.864499675202886 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 11, "OBJECTID_2": 111, "OBJECTID": 141.0, "PRECINCT_N": 113.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_141", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Senior Wellness Center", "ADDRESS": "3001 ALABAMA AVENUE SE", "ADDRESS_ID": 289473 }, "geometry": { "type": "Point", "coordinates": [ -76.964116112055365, 38.860502954486471 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 12, "OBJECTID_2": 112, "OBJECTID": 142.0, "PRECINCT_N": 112.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_142", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Anacostia Public Library", "ADDRESS": "1800 GOOD HOPE ROAD SE", "ADDRESS_ID": 53560 }, "geometry": { "type": "Point", "coordinates": [ -76.978485420182579, 38.865896402057949 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 13, "OBJECTID_2": 113, "OBJECTID": 2.0, "PRECINCT_N": 99.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_2", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Smothers Elementary School", "ADDRESS": "4400 BROOKS STREET NE", "ADDRESS_ID": 294596 }, "geometry": { "type": "Point", "coordinates": [ -76.938468638784286, 38.893553701828701 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 14, "OBJECTID_2": 114, "OBJECTID": 3.0, "PRECINCT_N": 97.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_3", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Kelly Miller Middle School", "ADDRESS": "301 49TH STREET NE", "ADDRESS_ID": 294476 }, "geometry": { "type": "Point", "coordinates": [ -76.932456126905393, 38.893314974927328 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 15, "OBJECTID_2": 115, "OBJECTID": 4.0, "PRECINCT_N": 130.0, "FACILITY_D": "Multi-Purpose Room (lower level)", "ACCESSIBLE": "Yes - Use west entrance.", "GIS_ID": "plp_4", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Lutheran Church of the Reformation", "ADDRESS": "212 EAST CAPITOL STREET NE", "ADDRESS_ID": 286648 }, "geometry": { "type": "Point", "coordinates": [ -77.002857667709918, 38.890112459701982 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 16, "OBJECTID_2": 116, "OBJECTID": 112.0, "PRECINCT_N": 90.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_112", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Tyler Elementary School", "ADDRESS": "1001 G STREET SE", "ADDRESS_ID": 294505 }, "geometry": { "type": "Point", "coordinates": [ -76.992041656836633, 38.881084023669693 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 17, "OBJECTID_2": 117, "OBJECTID": 119.0, "PRECINCT_N": 101.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_119", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "River Terrace Elementary School", "ADDRESS": "420 34TH STREET NE", "ADDRESS_ID": 294485 }, "geometry": { "type": "Point", "coordinates": [ -76.957807551091278, 38.895428461353752 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 18, "OBJECTID_2": 118, "OBJECTID": 134.0, "PRECINCT_N": 122.0, "FACILITY_D": "Armory", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_134", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Ballou Senior High School", "ADDRESS": "3401 4TH STREET SE", "ADDRESS_ID": 294567 }, "geometry": { "type": "Point", "coordinates": [ -77.000975257588308, 38.839382331531922 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 19, "OBJECTID_2": 119, "OBJECTID": 1.0, "PRECINCT_N": 2.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_1", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "The School Without Walls", "ADDRESS": "2130 G STREET NW", "ADDRESS_ID": 242528 }, "geometry": { "type": "Point", "coordinates": [ -77.048186465638153, 38.898123787570832 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 20, "OBJECTID_2": 120, "OBJECTID": 40.0, "PRECINCT_N": 72.0, "FACILITY_D": "Community Room (1st floor)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_40", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Langdon Park Recreation Center", "ADDRESS": "2901 20TH STREET NE", "ADDRESS_ID": 287283 }, "geometry": { "type": "Point", "coordinates": [ -76.975788486876453, 38.926822413922125 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 21, "OBJECTID_2": 121, "OBJECTID": 29.0, "PRECINCT_N": 34.0, "FACILITY_D": "Gymnasium (lower level)", "ACCESSIBLE": "Yes - Use ramped entrance.", "GIS_ID": "plp_29", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Edmund Burke School", "ADDRESS": "2955 UPTON STREET NW", "ADDRESS_ID": 284536 }, "geometry": { "type": "Point", "coordinates": [ -77.061628156880005, 38.942361327729408 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 22, "OBJECTID_2": 122, "OBJECTID": 30.0, "PRECINCT_N": 45.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_30", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "MPD - Regional Operation Command (North)", "ADDRESS": "801 SHEPHERD STREET NW", "ADDRESS_ID": 252510 }, "geometry": { "type": "Point", "coordinates": [ -77.023810447712307, 38.940088934414405 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 23, "OBJECTID_2": 123, "OBJECTID": 31.0, "PRECINCT_N": 8.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_31", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Palisades Recreation Center", "ADDRESS": "5100 SHERIER PLACE NW", "ADDRESS_ID": 268352 }, "geometry": { "type": "Point", "coordinates": [ -77.102634605747866, 38.924441924850953 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 24, "OBJECTID_2": 124, "OBJECTID": 32.0, "PRECINCT_N": 41.0, "FACILITY_D": "Great Hall", "ACCESSIBLE": "Yes - Use entrance on Oak Street.", "GIS_ID": "plp_32", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Trinity AME Zion Church", "ADDRESS": "3505 16TH STREET NW", "ADDRESS_ID": 234593 }, "geometry": { "type": "Point", "coordinates": [ -77.036080424552495, 38.934550552844456 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 25, "OBJECTID_2": 125, "OBJECTID": 33.0, "PRECINCT_N": 43.0, "FACILITY_D": "Recreation Area", "ACCESSIBLE": "Yes", "GIS_ID": "plp_33", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Park View Recreation Center", "ADDRESS": "693 OTIS PLACE NW", "ADDRESS_ID": 295160 }, "geometry": { "type": "Point", "coordinates": [ -77.021350314279189, 38.935002875205896 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 26, "OBJECTID_2": 126, "OBJECTID": 34.0, "PRECINCT_N": 42.0, "FACILITY_D": "Dining Room (lower level)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_34", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Mt. Rona Baptist Church", "ADDRESS": "3431 13TH STREET NW", "ADDRESS_ID": 230950 }, "geometry": { "type": "Point", "coordinates": [ -77.029452852579396, 38.932240970226857 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 27, "OBJECTID_2": 1, "OBJECTID": 5.0, "PRECINCT_N": 80.0, "FACILITY_D": "Quander Room", "ACCESSIBLE": "Yes - Accessible entrance rear of Church.", "GIS_ID": "plp_5", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Benedict the Moor Church", "ADDRESS": "320 21ST STREET NE", "ADDRESS_ID": 287504 }, "geometry": { "type": "Point", "coordinates": [ -76.975457535682949, 38.894225931293576 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 28, "OBJECTID_2": 2, "OBJECTID": 6.0, "PRECINCT_N": 102.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_6", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Benning Public Library", "ADDRESS": "3935 BENNING ROAD NE", "ADDRESS_ID": 295144 }, "geometry": { "type": "Point", "coordinates": [ -76.947759549614048, 38.89419424144954 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 29, "OBJECTID_2": 3, "OBJECTID": 7.0, "PRECINCT_N": 96.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_7", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Hughes Memorial United Methodist Church", "ADDRESS": "25 53RD STREET NE", "ADDRESS_ID": 287077 }, "geometry": { "type": "Point", "coordinates": [ -76.925776919030255, 38.890534557241999 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 30, "OBJECTID_2": 4, "OBJECTID": 8.0, "PRECINCT_N": 88.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_8", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Thankful Baptist Church", "ADDRESS": "1401 INDEPENDENCE AVENUE SE", "ADDRESS_ID": 65107 }, "geometry": { "type": "Point", "coordinates": [ -76.98528389471295, 38.887379306202888 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 31, "OBJECTID_2": 5, "OBJECTID": 9.0, "PRECINCT_N": 132.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_9", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "DC Center for Therapeutic Recreation", "ADDRESS": "3030 G STREET SE", "ADDRESS_ID": 288770 }, "geometry": { "type": "Point", "coordinates": [ -76.963203222616286, 38.880871575493281 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 32, "OBJECTID_2": 6, "OBJECTID": 10.0, "PRECINCT_N": 128.0, "FACILITY_D": "Junior Church Hall", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_10", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Friendship Baptist Church", "ADDRESS": "900 DELAWARE AVENUE SW", "ADDRESS_ID": 276854 }, "geometry": { "type": "Point", "coordinates": [ -77.012497934269035, 38.878918819849204 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 33, "OBJECTID_2": 7, "OBJECTID": 11.0, "PRECINCT_N": 111.0, "FACILITY_D": "John Bailey Room", "ACCESSIBLE": "Yes - Use the Center for Employment Training entrance for ground level access (2815", "GIS_ID": "plp_11", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Francis Xavier Church", "ADDRESS": "2800 PENNSYLVANIA AVENUE SE", "ADDRESS_ID": 44697 }, "geometry": { "type": "Point", "coordinates": [ -76.967509922797618, 38.872519727803635 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 34, "OBJECTID_2": 8, "OBJECTID": 12.0, "PRECINCT_N": 108.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes - Accessible - rear entrance, near parking lot.", "GIS_ID": "plp_12", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Pennsylvania Avenue Baptist Church", "ADDRESS": "3000 PENNSYLVANIA AVENUE SE", "ADDRESS_ID": 42549 }, "geometry": { "type": "Point", "coordinates": [ -76.963813000815662, 38.871129274649782 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 35, "OBJECTID_2": 9, "OBJECTID": 13.0, "PRECINCT_N": 127.0, "FACILITY_D": "Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_13", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "King Greenleaf Recreation Center", "ADDRESS": "201 N STREET SW", "ADDRESS_ID": 52917 }, "geometry": { "type": "Point", "coordinates": [ -77.012792499594184, 38.875015810745062 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 36, "OBJECTID_2": 10, "OBJECTID": 14.0, "PRECINCT_N": 109.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_14", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Randle-Highlands Elementary School", "ADDRESS": "1650 30TH STREET SE", "ADDRESS_ID": 156337 }, "geometry": { "type": "Point", "coordinates": [ -76.964356281775736, 38.870091403187843 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 37, "OBJECTID_2": 11, "OBJECTID": 16.0, "PRECINCT_N": 134.0, "FACILITY_D": "Multipurpose Room", "ACCESSIBLE": "Yes - Use rear entrance, adjacent to parking lot.", "GIS_ID": "plp_16", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Allen AME Church", "ADDRESS": "2498 ALABAMA AVENUE SE", "ADDRESS_ID": 46843 }, "geometry": { "type": "Point", "coordinates": [ -76.970282941213242, 38.856884832198325 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 38, "OBJECTID_2": 12, "OBJECTID": 17.0, "PRECINCT_N": 115.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_17", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Seventh District Police Station", "ADDRESS": "2455 ALABAMA AVENUE SE", "ADDRESS_ID": 278162 }, "geometry": { "type": "Point", "coordinates": [ -76.969521397067084, 38.853355764139451 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 39, "OBJECTID_2": 13, "OBJECTID": 18.0, "PRECINCT_N": 116.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_18", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "New Image Community Baptist Church", "ADDRESS": "1839 ALABAMA AVENUE SE", "ADDRESS_ID": 54816 }, "geometry": { "type": "Point", "coordinates": [ -76.977839930327974, 38.847658633098888 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 40, "OBJECTID_2": 14, "OBJECTID": 19.0, "PRECINCT_N": 124.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_19", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Convenant Baptist Church", "ADDRESS": "3845 SOUTH CAPITOL STREET SW", "ADDRESS_ID": 301907 }, "geometry": { "type": "Point", "coordinates": [ -77.00866130403007, 38.83401036254331 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 41, "OBJECTID_2": 15, "OBJECTID": 20.0, "PRECINCT_N": 61.0, "FACILITY_D": "Multi-purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_20", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Fort Stevens Recreation Center", "ADDRESS": "1327 VAN BUREN STREET NW", "ADDRESS_ID": 290152 }, "geometry": { "type": "Point", "coordinates": [ -77.031090800845547, 38.970269148593538 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 42, "OBJECTID_2": 16, "OBJECTID": 21.0, "PRECINCT_N": 50.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes - Accessible rear entrance next to the parking lot.", "GIS_ID": "plp_21", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Chevy Chase Community Center", "ADDRESS": "5601 CONNECTICUT AVENUE NW", "ADDRESS_ID": 263959 }, "geometry": { "type": "Point", "coordinates": [ -77.075108613262955, 38.965158421273387 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 43, "OBJECTID_2": 17, "OBJECTID": 22.0, "PRECINCT_N": 52.0, "FACILITY_D": "Roth Gymnasium Bldg.", "ACCESSIBLE": "Yes - Access from parking lot.", "GIS_ID": "plp_22", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. John's College High School", "ADDRESS": "2607 MILITARY ROAD NW", "ADDRESS_ID": 259840 }, "geometry": { "type": "Point", "coordinates": [ -77.055204940372292, 38.962417220863394 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 44, "OBJECTID_2": 18, "OBJECTID": 24.0, "PRECINCT_N": 60.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_24", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Church of the Nativity Youth Center", "ADDRESS": "6000 GEORGIA AVENUE NW", "ADDRESS_ID": 253197 }, "geometry": { "type": "Point", "coordinates": [ -77.028226985088239, 38.962848161689173 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 45, "OBJECTID_2": 19, "OBJECTID": 25.0, "PRECINCT_N": 138.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_25", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Capital Memorial Adventist Church", "ADDRESS": "3150 CHESAPEAKE STREET NW", "ADDRESS_ID": 284592 }, "geometry": { "type": "Point", "coordinates": [ -77.06396319555985, 38.950203225069913 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 46, "OBJECTID_2": 20, "OBJECTID": 26.0, "PRECINCT_N": 31.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes - Accessible entrance located on 42nd St.", "GIS_ID": "plp_26", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Columba's Episcopal Church", "ADDRESS": "4201 ALBEMARLE STREET NW", "ADDRESS_ID": 301545 }, "geometry": { "type": "Point", "coordinates": [ -77.08244680641738, 38.948217666726201 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 47, "OBJECTID_2": 21, "OBJECTID": 27.0, "PRECINCT_N": 44.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_27", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "North Capitol at Plymouth", "ADDRESS": "5233 NORTH CAPTIOL STREET NE", "ADDRESS_ID": 298101 }, "geometry": { "type": "Point", "coordinates": [ -77.00866515707142, 38.954067744263412 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 48, "OBJECTID_2": 22, "OBJECTID": 28.0, "PRECINCT_N": 9.0, "FACILITY_D": "Vestry Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_28", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Metropolitan Memorial United Methodist Church", "ADDRESS": "3401 NEBRASKA AVENUE NW", "ADDRESS_ID": 298676 }, "geometry": { "type": "Point", "coordinates": [ -77.087799340484636, 38.934959237025218 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 49, "OBJECTID_2": 23, "OBJECTID": 47.0, "PRECINCT_N": 75.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_47", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "McKinley Technology Senior High School", "ADDRESS": "151 T STREET NE", "ADDRESS_ID": 296345 }, "geometry": { "type": "Point", "coordinates": [ -77.004122439059401, 38.915219785761813 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 50, "OBJECTID_2": 24, "OBJECTID": 48.0, "PRECINCT_N": 141.0, "FACILITY_D": "North Lobby", "ACCESSIBLE": "Yes", "GIS_ID": "plp_48", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Frank D. Reeves Municipal Center", "ADDRESS": "2000 14TH STREET NW", "ADDRESS_ID": 239976 }, "geometry": { "type": "Point", "coordinates": [ -77.032403524076486, 38.917444026973975 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 125, "OBJECTID_2": 99, "OBJECTID": 128.0, "PRECINCT_N": 137.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.", "GIS_ID": "plp_128", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Garrison Elementary School", "ADDRESS": "1200 S STREET NW", "ADDRESS_ID": 294509 }, "geometry": { "type": "Point", "coordinates": [ -77.028612550392012, 38.913900958245385 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 126, "OBJECTID_2": 100, "OBJECTID": 129.0, "PRECINCT_N": 133.0, "FACILITY_D": "Library", "ACCESSIBLE": "Yes - Accessible entrance rear of school", "GIS_ID": "plp_129", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Orr Elementary School", "ADDRESS": "2200 MINNESOTA AVENUE SE", "ADDRESS_ID": 294539 }, "geometry": { "type": "Point", "coordinates": [ -76.974484011563916, 38.871796823975465 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 127, "OBJECTID_2": 127, "OBJECTID": 35.0, "PRECINCT_N": 71.0, "FACILITY_D": "Upper Fellowship Hall", "ACCESSIBLE": "Yes - Accessible entrance on Bladensburg Road", "GIS_ID": "plp_35", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Mt. Horeb Baptist Church", "ADDRESS": "3015 EARL PLACE NE", "ADDRESS_ID": 287380 }, "geometry": { "type": "Point", "coordinates": [ -76.962575827800578, 38.928281639524052 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 128, "OBJECTID_2": 128, "OBJECTID": 36.0, "PRECINCT_N": 28.0, "FACILITY_D": "Parish Center (near Klingle Place)", "ACCESSIBLE": "Yes", "GIS_ID": "plp_36", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Church of the Annunciation Parish", "ADDRESS": "3810 MASSACHUSETTS AVENUE NW", "ADDRESS_ID": 263608 }, "geometry": { "type": "Point", "coordinates": [ -77.075817469590191, 38.930148719361682 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 129, "OBJECTID_2": 129, "OBJECTID": 37.0, "PRECINCT_N": 136.0, "FACILITY_D": "Conference Room", "ACCESSIBLE": "Yes - Use side entrance from parking lot", "GIS_ID": "plp_37", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Leading Age", "ADDRESS": "2519 CONNECTICUT AVENUE NW", "ADDRESS_ID": 284405 }, "geometry": { "type": "Point", "coordinates": [ -77.050817099689468, 38.923171900472795 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 130, "OBJECTID_2": 130, "OBJECTID": 38.0, "PRECINCT_N": 12.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_38", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St Sophia's Greek Orthodox Cathederal Church", "ADDRESS": "3600 MASSACHUSETTS AVENUE NW", "ADDRESS_ID": 262638 }, "geometry": { "type": "Point", "coordinates": [ -77.071174182052317, 38.926724696389051 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 131, "OBJECTID_2": 131, "OBJECTID": 39.0, "PRECINCT_N": 39.0, "FACILITY_D": "Auditorium", "ACCESSIBLE": "Yes", "GIS_ID": "plp_39", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Bell Multicultural High School", "ADDRESS": "3101 16th Street NW", "ADDRESS_ID": 234375 }, "geometry": { "type": "Point", "coordinates": [ -77.035851518793763, 38.929540334081075 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 132, "OBJECTID_2": 132, "OBJECTID": 41.0, "PRECINCT_N": 36.0, "FACILITY_D": "Community Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_41", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Latin American Youth Center", "ADDRESS": "1419 COLUMBIA ROAD NW", "ADDRESS_ID": 234363 }, "geometry": { "type": "Point", "coordinates": [ -77.033357815907635, 38.927766394492799 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 133, "OBJECTID_2": 133, "OBJECTID": 42.0, "PRECINCT_N": 135.0, "FACILITY_D": "Church Hall", "ACCESSIBLE": "Yes - Use ramped entrance on Rhode Island Avenue.", "GIS_ID": "plp_42", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Mt. Bethel Baptist Church", "ADDRESS": "1901 1ST STREET NW", "ADDRESS_ID": 227421 }, "geometry": { "type": "Point", "coordinates": [ -77.01182725241577, 38.916136758622002 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 134, "OBJECTID_2": 134, "OBJECTID": 43.0, "PRECINCT_N": 11.0, "FACILITY_D": "Union Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_43", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "International Union of Operating Engineer", "ADDRESS": "2461 WISCONSIN AVENUE NW", "ADDRESS_ID": 284395 }, "geometry": { "type": "Point", "coordinates": [ -77.072501975359245, 38.92234916933058 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 135, "OBJECTID_2": 135, "OBJECTID": 44.0, "PRECINCT_N": 23.0, "FACILITY_D": "Library and Computer Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_44", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Loughran Community Center", "ADDRESS": "2500 14TH STREET NW", "ADDRESS_ID": 234200 }, "geometry": { "type": "Point", "coordinates": [ -77.032362118987933, 38.921998738498395 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 136, "OBJECTID_2": 136, "OBJECTID": 45.0, "PRECINCT_N": 25.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_45", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Goodwill Baptist Church", "ADDRESS": "1862 KALORAMA ROAD NW", "ADDRESS_ID": 235475 }, "geometry": { "type": "Point", "coordinates": [ -77.043826034297922, 38.919316646134163 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 137, "OBJECTID_2": 137, "OBJECTID": 46.0, "PRECINCT_N": 13.0, "FACILITY_D": "Fellowship Hall", "ACCESSIBLE": "Yes", "GIS_ID": "plp_46", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Goodwill Baptist Church", "ADDRESS": "1862 KALORAMA ROAD NW", "ADDRESS_ID": 235475 }, "geometry": { "type": "Point", "coordinates": [ -77.043826034297922, 38.919316646134163 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 138, "OBJECTID_2": 138, "OBJECTID": 143.0, "PRECINCT_N": 143.0, "FACILITY_D": "Church Hall\/Meeting Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_143", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Chinese Community Church", "ADDRESS": "500 I STREET NW", "ADDRESS_ID": 238945 }, "geometry": { "type": "Point", "coordinates": [ -77.019133548822794, 38.900621429714505 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 139, "OBJECTID_2": 139, "OBJECTID": 15.0, "PRECINCT_N": 110.0, "FACILITY_D": "Multi-Purpose Room", "ACCESSIBLE": "Yes", "GIS_ID": "plp_15", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "St. Timothy's Episcopal Church", "ADDRESS": "3601 ALABAMA AVENUE SE", "ADDRESS_ID": 33104 }, "geometry": { "type": "Point", "coordinates": [ -76.956092288786962, 38.862989239014041 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 140, "OBJECTID_2": 140, "OBJECTID": 23.0, "PRECINCT_N": 32.0, "FACILITY_D": "Fellowship Hall (1st Floor)", "ACCESSIBLE": "Yes - Use Connecticut Ave. entrance", "GIS_ID": "plp_23", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Wesley Methodist Church", "ADDRESS": "5312 CONNECTICUT AVENUE NW", "ADDRESS_ID": 301282 }, "geometry": { "type": "Point", "coordinates": [ -77.07264987664179, 38.959324066446086 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 141, "OBJECTID_2": 141, "OBJECTID": 63.0, "PRECINCT_N": 6.0, "FACILITY_D": "Gallery", "ACCESSIBLE": "Yes", "GIS_ID": "plp_63", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Duke Ellington School of the Arts", "ADDRESS": "3500 R STREET NW", "ADDRESS_ID": 294569 }, "geometry": { "type": "Point", "coordinates": [ -77.070307562295099, 38.913446044424617 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 142, "OBJECTID_2": 142, "OBJECTID": 70.0, "PRECINCT_N": 26.0, "FACILITY_D": "Gymnasium", "ACCESSIBLE": "Yes - Use ramped entrance on 27th Street", "GIS_ID": "plp_70", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Oyster Elementary School", "ADDRESS": "2801 CALVERT STREET NW", "ADDRESS_ID": 275944 }, "geometry": { "type": "Point", "coordinates": [ -77.057203378566399, 38.923595492962626 ] } },
+{ "type": "Feature", "properties": { "OBJECTID_1": 143, "OBJECTID_2": 143, "OBJECTID": 89.0, "PRECINCT_N": 58.0, "FACILITY_D": "Community Room.", "ACCESSIBLE": "Yes - Ground level at Georgia. Avenue & Quackenbos Street.", "GIS_ID": "plp_89", "WEB_URL": "http:\/\/www.dcboee.org\/election_info\/pollplaces\/", "NAME": "Fourth District Police Station", "ADDRESS": "6001 GEORGIA AVENUE NW", "ADDRESS_ID": 243485 }, "geometry": { "type": "Point", "coordinates": [ -77.027410983594336, 38.963125449653411 ] } }
+]
+}
\ No newline at end of file
diff --git a/packages/turf-concave/test/fixtures/out/pts1_out.geojson b/packages/turf-concave/test/fixtures/out/pts1_out.geojson
new file mode 100644
index 0000000000..c0bacd50c7
--- /dev/null
+++ b/packages/turf-concave/test/fixtures/out/pts1_out.geojson
@@ -0,0 +1,264 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.40898132324217,
+ 37.77505678240509
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.43095397949219,
+ 37.74411415606583
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.44331359863283,
+ 37.726194088705576
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.47833251953125,
+ 37.73651223296987
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.4103546142578,
+ 37.72184917678752
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.41790771484375,
+ 37.74682893940135
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.53395080566405,
+ 37.83690319650768
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.51541137695311,
+ 37.83473402375478
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.49069213867188,
+ 37.837445479729666
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.52639770507812,
+ 37.83473402375478
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.62527465820311,
+ 37.89327929625019
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.60467529296875,
+ 37.902490518640995
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -122.58682250976562,
+ 37.895988598965644
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "MultiPolygon",
+ "coordinates": [
+ [
+ [
+ [
+ -122.62527465820311,
+ 37.89327929625019
+ ],
+ [
+ -122.60467529296875,
+ 37.902490518640995
+ ],
+ [
+ -122.58682250976562,
+ 37.895988598965644
+ ],
+ [
+ -122.62527465820311,
+ 37.89327929625019
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -122.52639770507812,
+ 37.83473402375478
+ ],
+ [
+ -122.53395080566405,
+ 37.83690319650768
+ ],
+ [
+ -122.51541137695311,
+ 37.83473402375478
+ ],
+ [
+ -122.52639770507812,
+ 37.83473402375478
+ ]
+ ]
+ ],
+ [
+ [
+ [
+ -122.44331359863283,
+ 37.726194088705576
+ ],
+ [
+ -122.47833251953125,
+ 37.73651223296987
+ ],
+ [
+ -122.43095397949219,
+ 37.74411415606583
+ ],
+ [
+ -122.40898132324217,
+ 37.77505678240509
+ ],
+ [
+ -122.4103546142578,
+ 37.72184917678752
+ ],
+ [
+ -122.44331359863283,
+ 37.726194088705576
+ ]
+ ]
+ ]
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-concave/test/fixtures/out/pts2_out.geojson b/packages/turf-concave/test/fixtures/out/pts2_out.geojson
new file mode 100644
index 0000000000..24bfcf7acd
--- /dev/null
+++ b/packages/turf-concave/test/fixtures/out/pts2_out.geojson
@@ -0,0 +1,3739 @@
+{
+ "type": "FeatureCollection",
+ "crs": {
+ "type": "name",
+ "properties": {
+ "name": "urn:ogc:def:crs:OGC:1.3:CRS84"
+ }
+ },
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 51,
+ "OBJECTID_2": 25,
+ "OBJECTID": 49,
+ "PRECINCT_N": 7,
+ "FACILITY_D": "Recreation Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_49",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Hardy Recreation Center",
+ "ADDRESS": "4500 Q STREET NW",
+ "ADDRESS_ID": 284929,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.08498118309296,
+ 38.909915833213795
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 52,
+ "OBJECTID_2": 26,
+ "OBJECTID": 50,
+ "PRECINCT_N": 5,
+ "FACILITY_D": "Large Meeting Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_50",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Georgetown Community Library",
+ "ADDRESS": "3260 R STREET NW",
+ "ADDRESS_ID": 295142,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.06600730584208,
+ 38.913434229544386
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 53,
+ "OBJECTID_2": 27,
+ "OBJECTID": 51,
+ "PRECINCT_N": 76,
+ "FACILITY_D": "Community Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_51",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Bethesda Baptist Church",
+ "ADDRESS": "1808 CAPITOL AVENUE NE",
+ "ADDRESS_ID": 155925,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98614224512842,
+ 38.911020521048734
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 54,
+ "OBJECTID_2": 28,
+ "OBJECTID": 52,
+ "PRECINCT_N": 15,
+ "FACILITY_D": "Community Room (Lower Level)",
+ "ACCESSIBLE": "Yes - Use side entrance on P Street",
+ "GIS_ID": "plp_52",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Foundry United Methodist Church",
+ "ADDRESS": "1500 16TH STREET NW",
+ "ADDRESS_ID": 243309,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03687949072273,
+ 38.91003361331332
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 55,
+ "OBJECTID_2": 29,
+ "OBJECTID": 53,
+ "PRECINCT_N": 14,
+ "FACILITY_D": "Guild Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_53",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "St. Thomas' Episcopal Parish",
+ "ADDRESS": "1772 CHURCH STREET NW",
+ "ADDRESS_ID": 225918,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.04104117667185,
+ 38.910212212295264
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 56,
+ "OBJECTID_2": 30,
+ "OBJECTID": 54,
+ "PRECINCT_N": 16,
+ "FACILITY_D": "Fellowship Hall",
+ "ACCESSIBLE": "Yes - Accessible entrance at the rear of the church. Use entrance on R St. side of church.",
+ "GIS_ID": "plp_54",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "15th Street Presbyterian Church",
+ "ADDRESS": "1701 15TH STREET NW",
+ "ADDRESS_ID": 240136,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03417962817295,
+ 38.91281125525813
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 57,
+ "OBJECTID_2": 31,
+ "OBJECTID": 55,
+ "PRECINCT_N": 18,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_55",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Kennedy Recreation Center",
+ "ADDRESS": "1401 7TH STREET NW",
+ "ADDRESS_ID": 279127,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02153645624776,
+ 38.90898977846948
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 58,
+ "OBJECTID_2": 32,
+ "OBJECTID": 56,
+ "PRECINCT_N": 17,
+ "FACILITY_D": "Exhibit Rooms",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_56",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "The Charles Sumner School Museum and Archives",
+ "ADDRESS": "1201 17th STREET NW\r\n1201 17TH STREET NW",
+ "ADDRESS_ID": 301200,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0382229055218,
+ 38.90597733468145
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 59,
+ "OBJECTID_2": 33,
+ "OBJECTID": 57,
+ "PRECINCT_N": 4,
+ "FACILITY_D": "Large Meeting Room (2nd Floor)",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_57",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "West End Public Library",
+ "ADDRESS": "1101 24TH STREET NW",
+ "ADDRESS_ID": 218248,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.05109790160472,
+ 38.904019151364736
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 60,
+ "OBJECTID_2": 34,
+ "OBJECTID": 58,
+ "PRECINCT_N": 77,
+ "FACILITY_D": "Community Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_58",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Delta Towers Apartments",
+ "ADDRESS": "1400 FLORIDA AVENUE NE",
+ "ADDRESS_ID": 65280,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98433191638077,
+ 38.90055736497202
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 61,
+ "OBJECTID_2": 35,
+ "OBJECTID": 59,
+ "PRECINCT_N": 129,
+ "FACILITY_D": "Main Lobby",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_59",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Martin Luther King Library",
+ "ADDRESS": "901 G STREET NW",
+ "ADDRESS_ID": 239815,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02476626008324,
+ 38.89869133033745
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 62,
+ "OBJECTID_2": 36,
+ "OBJECTID": 60,
+ "PRECINCT_N": 82,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_60",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Sherwood Recreation Center",
+ "ADDRESS": "640 10TH STREET NE",
+ "ADDRESS_ID": 301075,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99301681854216,
+ 38.89854528906768
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 63,
+ "OBJECTID_2": 37,
+ "OBJECTID": 61,
+ "PRECINCT_N": 3,
+ "FACILITY_D": "Dining Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_61",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "St. Mary's Court",
+ "ADDRESS": "725 24TH STREET NW",
+ "ADDRESS_ID": 242350,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0511477096272,
+ 38.898862835793516
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 64,
+ "OBJECTID_2": 38,
+ "OBJECTID": 62,
+ "PRECINCT_N": 1,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_62",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Walker-Jones EC",
+ "ADDRESS": "1125 NEW JERSEY AVENUE NW",
+ "ADDRESS_ID": 307735,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01391569234569,
+ 38.90419164723351
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 65,
+ "OBJECTID_2": 39,
+ "OBJECTID": 64,
+ "PRECINCT_N": 10,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_64",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Horace Mann Community Center",
+ "ADDRESS": "4430 NEWARK STREET NW",
+ "ADDRESS_ID": 294597,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.08782618825647,
+ 38.93429197169427
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 66,
+ "OBJECTID_2": 40,
+ "OBJECTID": 65,
+ "PRECINCT_N": 19,
+ "FACILITY_D": "Gym/Armory",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_65",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Dunbar Senior High School",
+ "ADDRESS": "1301 NEW JERSEY AVENUE NW",
+ "ADDRESS_ID": 279021,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01469385531595,
+ 38.90852321621873
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 67,
+ "OBJECTID_2": 41,
+ "OBJECTID": 66,
+ "PRECINCT_N": 20,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_66",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Washington Metropolitan High School",
+ "ADDRESS": "300 BRYANT STREET NW",
+ "ADDRESS_ID": 294475,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01555700896307,
+ 38.92044129373322
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 68,
+ "OBJECTID_2": 42,
+ "OBJECTID": 67,
+ "PRECINCT_N": 21,
+ "FACILITY_D": "Fellowship Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_67",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Vermont Avenue Baptist Church",
+ "ADDRESS": "1630 VERMONT AVENUE NW",
+ "ADDRESS_ID": 243277,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02878122770284,
+ 38.911825717245286
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 69,
+ "OBJECTID_2": 43,
+ "OBJECTID": 68,
+ "PRECINCT_N": 22,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes - Accessible entrance located on V Street.",
+ "GIS_ID": "plp_68",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Garnet-Patterson Middle School",
+ "ADDRESS": "2001 10TH STREET NW",
+ "ADDRESS_ID": 294533,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02574878211337,
+ 38.91754477448618
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 70,
+ "OBJECTID_2": 44,
+ "OBJECTID": 69,
+ "PRECINCT_N": 24,
+ "FACILITY_D": "Living Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_69",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Marie Reed Learning Center",
+ "ADDRESS": "2200 CHAMPLAIN STREET NW",
+ "ADDRESS_ID": 235577,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.04052994742716,
+ 38.91916730666654
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 71,
+ "OBJECTID_2": 45,
+ "OBJECTID": 71,
+ "PRECINCT_N": 27,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_71",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Eaton Elementary School",
+ "ADDRESS": "3301 LOWELL STREET NW",
+ "ADDRESS_ID": 294562,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.06582113268591,
+ 38.93272673882682
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 72,
+ "OBJECTID_2": 46,
+ "OBJECTID": 72,
+ "PRECINCT_N": 29,
+ "FACILITY_D": "Community Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_72",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "2nd District Police Station",
+ "ADDRESS": "3320 IDAHO AVENUE NW",
+ "ADDRESS_ID": 222229,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.07483805765223,
+ 38.93484583178459
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 73,
+ "OBJECTID_2": 47,
+ "OBJECTID": 73,
+ "PRECINCT_N": 30,
+ "FACILITY_D": "Multi-Purpose Room (on Albemarle St.)",
+ "ACCESSIBLE": "Yes - Accessible entrance at side of school, nearest to Wisconsin Ave.",
+ "GIS_ID": "plp_73",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Janney Elementary School",
+ "ADDRESS": "4130 ALBEMARLE STREET NW",
+ "ADDRESS_ID": 285713,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.08099481973196,
+ 38.94755008706593
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 74,
+ "OBJECTID_2": 48,
+ "OBJECTID": 74,
+ "PRECINCT_N": 33,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes - Use rear entrance on Ellicott St.",
+ "GIS_ID": "plp_74",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Ben Murch Elementary School",
+ "ADDRESS": "4810 36TH STREET NW",
+ "ADDRESS_ID": 294602,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.07007920338755,
+ 38.95293318959661
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 75,
+ "OBJECTID_2": 49,
+ "OBJECTID": 75,
+ "PRECINCT_N": 35,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_75",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "H.D. Cooke Elementary School",
+ "ADDRESS": "2525 17TH STREET NW",
+ "ADDRESS_ID": 235863,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0388138280019,
+ 38.92393165421797
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 76,
+ "OBJECTID_2": 50,
+ "OBJECTID": 76,
+ "PRECINCT_N": 37,
+ "FACILITY_D": "Community Meeting Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_76",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Banneker Community Recreation Center",
+ "ADDRESS": "2500 GEORGIA AVENUE NW",
+ "ADDRESS_ID": 232292,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02257980138592,
+ 38.92269760094504
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 77,
+ "OBJECTID_2": 51,
+ "OBJECTID": 77,
+ "PRECINCT_N": 38,
+ "FACILITY_D": "Meeting Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_77",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Cesar Chavez Prep Charter Middle School",
+ "ADDRESS": "770 KENYON STREET NW",
+ "ADDRESS_ID": 285409,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0258873560347,
+ 38.929619476288885
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 78,
+ "OBJECTID_2": 52,
+ "OBJECTID": 78,
+ "PRECINCT_N": 40,
+ "FACILITY_D": "Assembly Hall",
+ "ACCESSIBLE": "Yes - Use entrance on Newton Street.",
+ "GIS_ID": "plp_78",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Bancroft Elementary School",
+ "ADDRESS": "1755 NEWTON STREET NW",
+ "ADDRESS_ID": 294528,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.04055344980303,
+ 38.93431802351106
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 79,
+ "OBJECTID_2": 53,
+ "OBJECTID": 79,
+ "PRECINCT_N": 46,
+ "FACILITY_D": "Classroom",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_79",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "E.L. Haynes Public Charter School @ Clark",
+ "ADDRESS": "4501 KANSAS AVENUE NW",
+ "ADDRESS_ID": 284930,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02241636991477,
+ 38.94560156110601
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 80,
+ "OBJECTID_2": 54,
+ "OBJECTID": 80,
+ "PRECINCT_N": 47,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes - Accessible ramped entrance off of alley.",
+ "GIS_ID": "plp_80",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Powell Elementary School",
+ "ADDRESS": "1350 UPSHUR STREET NW",
+ "ADDRESS_ID": 255302,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03122741575149,
+ 38.941534009869706
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 81,
+ "OBJECTID_2": 55,
+ "OBJECTID": 81,
+ "PRECINCT_N": 48,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes - Use south entrance on 13th St.",
+ "GIS_ID": "plp_81",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Sharpe Health School",
+ "ADDRESS": "4300 13TH STREET NW",
+ "ADDRESS_ID": 255254,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03046833667379,
+ 38.94347432515649
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 82,
+ "OBJECTID_2": 56,
+ "OBJECTID": 82,
+ "PRECINCT_N": 49,
+ "FACILITY_D": "Science Room",
+ "ACCESSIBLE": "Yes - Accessible entrance located on Rock Creek Church Road.",
+ "GIS_ID": "plp_82",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Raymond Elementary School",
+ "ADDRESS": "915 SPRING ROAD NW",
+ "ADDRESS_ID": 226682,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02643265425681,
+ 38.935810871763174
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 83,
+ "OBJECTID_2": 57,
+ "OBJECTID": 83,
+ "PRECINCT_N": 51,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes - Use parking lot entrance on Northampton St.",
+ "GIS_ID": "plp_83",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Lafayette Elementary School",
+ "ADDRESS": "5701 BROAD BRANCH ROAD NW",
+ "ADDRESS_ID": 294611,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.06803711636698,
+ 38.96662722064828
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 84,
+ "OBJECTID_2": 58,
+ "OBJECTID": 84,
+ "PRECINCT_N": 53,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_84",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Brightwood Elementary School",
+ "ADDRESS": "1300 NICHOLSON STREET NW",
+ "ADDRESS_ID": 294515,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03068885198864,
+ 38.96053539285846
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 85,
+ "OBJECTID_2": 59,
+ "OBJECTID": 85,
+ "PRECINCT_N": 54,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes - Use entrance located at 14th & Farragut Streets.",
+ "GIS_ID": "plp_85",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "West Elementary School",
+ "ADDRESS": "1338 FARRAGUT STREET NW",
+ "ADDRESS_ID": 294517,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03225304983067,
+ 38.951367080952416
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 86,
+ "OBJECTID_2": 60,
+ "OBJECTID": 86,
+ "PRECINCT_N": 55,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_86",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Barnard Elementary School",
+ "ADDRESS": "430 DECATUR STREET NW",
+ "ADDRESS_ID": 248305,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0177770800083,
+ 38.948230614415095
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 87,
+ "OBJECTID_2": 61,
+ "OBJECTID": 87,
+ "PRECINCT_N": 56,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_87",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Truesdell Elementary School",
+ "ADDRESS": "800 INGRAHAM STREET NW",
+ "ADDRESS_ID": 294497,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02507157013518,
+ 38.95396835809549
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 88,
+ "OBJECTID_2": 62,
+ "OBJECTID": 88,
+ "PRECINCT_N": 57,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_88",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Hattie Holmes Wellness Center",
+ "ADDRESS": "324 KENNEDY STREET NW",
+ "ADDRESS_ID": 307575,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01711234814142,
+ 38.956388773368296
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 89,
+ "OBJECTID_2": 63,
+ "OBJECTID": 90,
+ "PRECINCT_N": 59,
+ "FACILITY_D": "Armory",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_90",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Coolidge Senior High School",
+ "ADDRESS": "6315 5TH STREET NW",
+ "ADDRESS_ID": 294615,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01957835173927,
+ 38.967284239673525
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 90,
+ "OBJECTID_2": 64,
+ "OBJECTID": 91,
+ "PRECINCT_N": 62,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes - Use ramped entrance on 14th Street.",
+ "GIS_ID": "plp_91",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Shepherd Elementary School",
+ "ADDRESS": "7800 14TH STREET NW",
+ "ADDRESS_ID": 256319,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03399523386544,
+ 38.98460295003216
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 91,
+ "OBJECTID_2": 65,
+ "OBJECTID": 92,
+ "PRECINCT_N": 63,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_92",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Takoma Community Center",
+ "ADDRESS": "300 VAN BUREN STREET NW",
+ "ADDRESS_ID": 296168,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01805167618295,
+ 38.96888669131412
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 92,
+ "OBJECTID_2": 66,
+ "OBJECTID": 93,
+ "PRECINCT_N": 64,
+ "FACILITY_D": "Recreation Area",
+ "ACCESSIBLE": "Yes - Use rear entrance on 2nd St.",
+ "GIS_ID": "plp_93",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Rabaut - Administrative Building",
+ "ADDRESS": "100 PEABODY STREET NW",
+ "ADDRESS_ID": 277545,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01286744832365,
+ 38.96216452199718
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 93,
+ "OBJECTID_2": 67,
+ "OBJECTID": 94,
+ "PRECINCT_N": 65,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_94",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "LaSalle Elementary School",
+ "ADDRESS": "501 RIGGS ROAD NE",
+ "ADDRESS_ID": 294489,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99988253848109,
+ 38.95997180998364
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 94,
+ "OBJECTID_2": 68,
+ "OBJECTID": 95,
+ "PRECINCT_N": 66,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes - Accessible entrance next to parking lot on Hamilton Street.",
+ "GIS_ID": "plp_95",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "UDC Community College @ Backus",
+ "ADDRESS": "5171 SOUTH DAKOTA AVENUE NE",
+ "ADDRESS_ID": 294607,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99726738315395,
+ 38.95334052572905
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 95,
+ "OBJECTID_2": 69,
+ "OBJECTID": 96,
+ "PRECINCT_N": 67,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes - Accessible entrance next to the parking lot on 14th Street",
+ "GIS_ID": "plp_96",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Bunker Hill Elementary School",
+ "ADDRESS": "1401 MICHIGAN AVENUE NE",
+ "ADDRESS_ID": 286131,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98499562999821,
+ 38.94201213500814
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 96,
+ "OBJECTID_2": 70,
+ "OBJECTID": 97,
+ "PRECINCT_N": 68,
+ "FACILITY_D": "Reception Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_97",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "St. Francis Hall",
+ "ADDRESS": "1340 QUINCY STREET NE",
+ "ADDRESS_ID": 66591,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98652958387164,
+ 38.9375726751204
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 97,
+ "OBJECTID_2": 71,
+ "OBJECTID": 98,
+ "PRECINCT_N": 69,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_98",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Hyde Public Charter School @ Taft",
+ "ADDRESS": "1800 PERRY STREET NE",
+ "ADDRESS_ID": 294529,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.9785955149537,
+ 38.93679614738434
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 98,
+ "OBJECTID_2": 72,
+ "OBJECTID": 99,
+ "PRECINCT_N": 70,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes - Use entrance on Monroe Street.",
+ "GIS_ID": "plp_99",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Burroughs Elementary School",
+ "ADDRESS": "1820 MONROE STREET NE",
+ "ADDRESS_ID": 294530,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97845637039887,
+ 38.933502326896445
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 99,
+ "OBJECTID_2": 73,
+ "OBJECTID": 100,
+ "PRECINCT_N": 73,
+ "FACILITY_D": "Library (Lower Level)",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_100",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "M.M. Bethune Day Academy @ Slowe",
+ "ADDRESS": "1404 JACKSON STREET NE",
+ "ADDRESS_ID": 294522,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98686462272855,
+ 38.929605590082105
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 100,
+ "OBJECTID_2": 74,
+ "OBJECTID": 101,
+ "PRECINCT_N": 74,
+ "FACILITY_D": "Multipurpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_101",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Shaed Elementary School",
+ "ADDRESS": "301 DOUGLAS STREET NE",
+ "ADDRESS_ID": 294477,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.00253831800221,
+ 38.923654687421774
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 101,
+ "OBJECTID_2": 75,
+ "OBJECTID": 102,
+ "PRECINCT_N": 78,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_102",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Trinidad Recreation Center",
+ "ADDRESS": "1310 CHILDRESS STREET NE",
+ "ADDRESS_ID": 68509,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98273436876306,
+ 38.906442359837776
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 102,
+ "OBJECTID_2": 76,
+ "OBJECTID": 103,
+ "PRECINCT_N": 81,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_103",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Miner Elementary School",
+ "ADDRESS": "601 15TH STREET NE",
+ "ADDRESS_ID": 289548,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98290431308783,
+ 38.89737568218247
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 103,
+ "OBJECTID_2": 77,
+ "OBJECTID": 104,
+ "PRECINCT_N": 79,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_104",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Browne Junior High School",
+ "ADDRESS": "850 26TH STREET NE",
+ "ADDRESS_ID": 294501,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97066705247403,
+ 38.90259854900822
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 104,
+ "OBJECTID_2": 78,
+ "OBJECTID": 105,
+ "PRECINCT_N": 83,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes - Use entrance located on 7th Street.",
+ "GIS_ID": "plp_105",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "J.O. Wilson Elementary School",
+ "ADDRESS": "660 K STREET NE",
+ "ADDRESS_ID": 288841,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99658902748644,
+ 38.90275766582991
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 105,
+ "OBJECTID_2": 79,
+ "OBJECTID": 106,
+ "PRECINCT_N": 84,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_106",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Stuart-Hobson Middle School",
+ "ADDRESS": "410 E STREET NE",
+ "ADDRESS_ID": 294483,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.00000438624967,
+ 38.89629737080879
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 106,
+ "OBJECTID_2": 80,
+ "OBJECTID": 107,
+ "PRECINCT_N": 85,
+ "FACILITY_D": "Auditorium (A-Level)",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_107",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "The Specialty Hospital of Washington",
+ "ADDRESS": "700 CONSTITUTION AVENUE NE",
+ "ADDRESS_ID": 295162,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99535659211247,
+ 38.892321795813096
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 107,
+ "OBJECTID_2": 81,
+ "OBJECTID": 108,
+ "PRECINCT_N": 86,
+ "FACILITY_D": "Recreation Room (lower level)",
+ "ACCESSIBLE": "Yes - Accessible - side entrance, next to the parking lot.",
+ "GIS_ID": "plp_108",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Eliot Junior High School",
+ "ADDRESS": "1830 CONSTITUTION AVENUE NE",
+ "ADDRESS_ID": 286499,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97897791343726,
+ 38.8924311597663
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 108,
+ "OBJECTID_2": 82,
+ "OBJECTID": 109,
+ "PRECINCT_N": 87,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes = Use entrance at the rear of the school, next to the parking lot.",
+ "GIS_ID": "plp_109",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Payne Elementary School",
+ "ADDRESS": "305 15TH STREET SE",
+ "ADDRESS_ID": 294478,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98419490800174,
+ 38.8851323144882
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 109,
+ "OBJECTID_2": 83,
+ "OBJECTID": 110,
+ "PRECINCT_N": 89,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_110",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "William H. Rumsey Aquatic Center",
+ "ADDRESS": "635 NORTH CAROLINA AVENUE SE",
+ "ADDRESS_ID": 295159,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99702870593877,
+ 38.88658504665415
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 110,
+ "OBJECTID_2": 84,
+ "OBJECTID": 111,
+ "PRECINCT_N": 91,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_111",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Watkins Elementary School",
+ "ADDRESS": "420 12TH STREET SE",
+ "ADDRESS_ID": 294486,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98999676354816,
+ 38.883466674788586
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 111,
+ "OBJECTID_2": 85,
+ "OBJECTID": 113,
+ "PRECINCT_N": 92,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_113",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Kenilworth Elementary School",
+ "ADDRESS": "1300 44TH STREET NE",
+ "ADDRESS_ID": 294516,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.9404849391363,
+ 38.90822873259865
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 112,
+ "OBJECTID_2": 86,
+ "OBJECTID": 114,
+ "PRECINCT_N": 93,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes - Accessible entrance at the rear of the school.",
+ "GIS_ID": "plp_114",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Houston Elementary School",
+ "ADDRESS": "1100 50TH PLACE NE",
+ "ADDRESS_ID": 156316,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.9299476407989,
+ 38.90541498719898
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 113,
+ "OBJECTID_2": 87,
+ "OBJECTID": 115,
+ "PRECINCT_N": 94,
+ "FACILITY_D": "Community Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_115",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Merritt Education Center",
+ "ADDRESS": "5002 HAYES STREET NE",
+ "ADDRESS_ID": 294606,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.93013118958962,
+ 38.90023006725584
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 114,
+ "OBJECTID_2": 88,
+ "OBJECTID": 116,
+ "PRECINCT_N": 95,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes -Use entrance located at 57th & Eads Streets.",
+ "GIS_ID": "plp_116",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Drew Elementary School",
+ "ADDRESS": "5500 EADS STREET NE",
+ "ADDRESS_ID": 294609,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.92270804396746,
+ 38.89619288755561
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 115,
+ "OBJECTID_2": 89,
+ "OBJECTID": 117,
+ "PRECINCT_N": 100,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_117",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Thomas Elementary School",
+ "ADDRESS": "650 ANACOSTIA AVENUE NE",
+ "ADDRESS_ID": 294493,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.95211090532199,
+ 38.901278637588895
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 116,
+ "OBJECTID_2": 90,
+ "OBJECTID": 118,
+ "PRECINCT_N": 98,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes - Use rear entrance of the school.",
+ "GIS_ID": "plp_118",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Smothers Elementary School",
+ "ADDRESS": "4400 BROOKS STREET NE",
+ "ADDRESS_ID": 294596,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.93846863878429,
+ 38.8935537018287
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 117,
+ "OBJECTID_2": 91,
+ "OBJECTID": 120,
+ "PRECINCT_N": 103,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes - Use ground level entrance.",
+ "GIS_ID": "plp_120",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Plummer Elementary School",
+ "ADDRESS": "4601 TEXAS AVENUE SE",
+ "ADDRESS_ID": 19536,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.93993466984129,
+ 38.8872398636938
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 118,
+ "OBJECTID_2": 92,
+ "OBJECTID": 121,
+ "PRECINCT_N": 104,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes- Use ground level entrance.",
+ "GIS_ID": "plp_121",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Nalle Elementary School",
+ "ADDRESS": "219 50TH STREET SE",
+ "ADDRESS_ID": 294474,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.93079649956998,
+ 38.88595408522856
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 119,
+ "OBJECTID_2": 93,
+ "OBJECTID": 122,
+ "PRECINCT_N": 105,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes - Use entrance located on D Street.",
+ "GIS_ID": "plp_122",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "CW Harris Elementary School",
+ "ADDRESS": "301 53RD STREET SE",
+ "ADDRESS_ID": 289801,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.92611549373204,
+ 38.88359849788337
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 120,
+ "OBJECTID_2": 94,
+ "OBJECTID": 123,
+ "PRECINCT_N": 106,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes - Accessible rear entrance, next to the parking lot.",
+ "GIS_ID": "plp_123",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Davis Elementary School",
+ "ADDRESS": "4430 H STREET SE",
+ "ADDRESS_ID": 294598,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.93761630232859,
+ 38.87906795106383
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 121,
+ "OBJECTID_2": 95,
+ "OBJECTID": 124,
+ "PRECINCT_N": 107,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_124",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Sousa Middle School",
+ "ADDRESS": "3650 ELY PLACE SE",
+ "ADDRESS_ID": 294584,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.95316174771769,
+ 38.883908000174614
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 122,
+ "OBJECTID_2": 96,
+ "OBJECTID": 125,
+ "PRECINCT_N": 142,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_125",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Jefferson Junior High School",
+ "ADDRESS": "801 7TH STREET SW",
+ "ADDRESS_ID": 276812,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02291065460415,
+ 38.87987059942476
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 123,
+ "OBJECTID_2": 97,
+ "OBJECTID": 126,
+ "PRECINCT_N": 140,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_126",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Anacostia Senior High School",
+ "ADDRESS": "1601 16TH STREET SE",
+ "ADDRESS_ID": 155922,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98307724829849,
+ 38.870083725754895
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 124,
+ "OBJECTID_2": 98,
+ "OBJECTID": 127,
+ "PRECINCT_N": 139,
+ "FACILITY_D": "Community Service Area",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_127",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Thurgood Marshall Elementary",
+ "ADDRESS": "3100 FORT LINCOLN DRIVE NE",
+ "ADDRESS_ID": 294553,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.95763369669753,
+ 38.92730594377001
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 1,
+ "OBJECTID_2": 101,
+ "OBJECTID": 130,
+ "PRECINCT_N": 131,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_130",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Van Ness Elementary School",
+ "ADDRESS": "1150 5TH STREET SE",
+ "ADDRESS_ID": 294508,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99924400222596,
+ 38.87679611768769
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 2,
+ "OBJECTID_2": 102,
+ "OBJECTID": 131,
+ "PRECINCT_N": 125,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_131",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Hendley Elementary School",
+ "ADDRESS": "425 CHESAPEAKE STREET SE",
+ "ADDRESS_ID": 24445,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99918484024232,
+ 38.82898558049571
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 3,
+ "OBJECTID_2": 103,
+ "OBJECTID": 132,
+ "PRECINCT_N": 126,
+ "FACILITY_D": "Library",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_132",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "W.B. Patterson Elementary School",
+ "ADDRESS": "4399 SOUTH CAPITOL TERRACE SW",
+ "ADDRESS_ID": 301073,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.00847560019479,
+ 38.8269811922012
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 4,
+ "OBJECTID_2": 104,
+ "OBJECTID": 133,
+ "PRECINCT_N": 123,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_133",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Martin Luther King Elementary School",
+ "ADDRESS": "600 ALABAMA AVENUE SE",
+ "ADDRESS_ID": 294492,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99758318790965,
+ 38.84338656586389
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 5,
+ "OBJECTID_2": 105,
+ "OBJECTID": 135,
+ "PRECINCT_N": 121,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_135",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "National Collegiate Prep @ Draper",
+ "ADDRESS": "908 WAHLER PLACE SE",
+ "ADDRESS_ID": 294502,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99226881799031,
+ 38.834327886510565
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 6,
+ "OBJECTID_2": 106,
+ "OBJECTID": 136,
+ "PRECINCT_N": 120,
+ "FACILITY_D": "Meeting Room",
+ "ACCESSIBLE": "Yes - Use side Entrance",
+ "GIS_ID": "plp_136",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Malcolm X Elementary School",
+ "ADDRESS": "1351 ALABAMA AVENUE SE",
+ "ADDRESS_ID": 289201,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98621285449033,
+ 38.84497362309234
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 7,
+ "OBJECTID_2": 107,
+ "OBJECTID": 137,
+ "PRECINCT_N": 118,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_137",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Garnet C. Wilkinson Elementary School",
+ "ADDRESS": "2330 POMEROY ROAD SE",
+ "ADDRESS_ID": 294542,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98555042215126,
+ 38.85684438946179
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 8,
+ "OBJECTID_2": 108,
+ "OBJECTID": 138,
+ "PRECINCT_N": 119,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_138",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Excel Academy PCS @ Birney",
+ "ADDRESS": "2501 MARTIN LUTHER KING JR AVENUE SE",
+ "ADDRESS_ID": 278172,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99535456253949,
+ 38.85976175834964
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 9,
+ "OBJECTID_2": 109,
+ "OBJECTID": 139,
+ "PRECINCT_N": 117,
+ "FACILITY_D": "Main Lobby",
+ "ACCESSIBLE": "Yes - Use ramped entrance on Stanton Road.",
+ "GIS_ID": "plp_139",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Douglas Community Recreation Center",
+ "ADDRESS": "1898 STANTON TERRACE SE",
+ "ADDRESS_ID": 286513,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97776154881154,
+ 38.85263622936684
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 10,
+ "OBJECTID_2": 110,
+ "OBJECTID": 140,
+ "PRECINCT_N": 114,
+ "FACILITY_D": "Church Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_140",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Union Temple Baptist Church",
+ "ADDRESS": "1225 W STREET SE",
+ "ADDRESS_ID": 70732,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98893973743299,
+ 38.864499675202886
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 11,
+ "OBJECTID_2": 111,
+ "OBJECTID": 141,
+ "PRECINCT_N": 113,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_141",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Senior Wellness Center",
+ "ADDRESS": "3001 ALABAMA AVENUE SE",
+ "ADDRESS_ID": 289473,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.96411611205536,
+ 38.86050295448647
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 12,
+ "OBJECTID_2": 112,
+ "OBJECTID": 142,
+ "PRECINCT_N": 112,
+ "FACILITY_D": "Meeting Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_142",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Anacostia Public Library",
+ "ADDRESS": "1800 GOOD HOPE ROAD SE",
+ "ADDRESS_ID": 53560,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97848542018258,
+ 38.86589640205795
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 13,
+ "OBJECTID_2": 113,
+ "OBJECTID": 2,
+ "PRECINCT_N": 99,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_2",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Smothers Elementary School",
+ "ADDRESS": "4400 BROOKS STREET NE",
+ "ADDRESS_ID": 294596,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.93846863878429,
+ 38.8935537018287
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 14,
+ "OBJECTID_2": 114,
+ "OBJECTID": 3,
+ "PRECINCT_N": 97,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_3",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Kelly Miller Middle School",
+ "ADDRESS": "301 49TH STREET NE",
+ "ADDRESS_ID": 294476,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.9324561269054,
+ 38.89331497492733
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 15,
+ "OBJECTID_2": 115,
+ "OBJECTID": 4,
+ "PRECINCT_N": 130,
+ "FACILITY_D": "Multi-Purpose Room (lower level)",
+ "ACCESSIBLE": "Yes - Use west entrance.",
+ "GIS_ID": "plp_4",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Lutheran Church of the Reformation",
+ "ADDRESS": "212 EAST CAPITOL STREET NE",
+ "ADDRESS_ID": 286648,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.00285766770992,
+ 38.89011245970198
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 16,
+ "OBJECTID_2": 116,
+ "OBJECTID": 112,
+ "PRECINCT_N": 90,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_112",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Tyler Elementary School",
+ "ADDRESS": "1001 G STREET SE",
+ "ADDRESS_ID": 294505,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.99204165683663,
+ 38.88108402366969
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 17,
+ "OBJECTID_2": 117,
+ "OBJECTID": 119,
+ "PRECINCT_N": 101,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_119",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "River Terrace Elementary School",
+ "ADDRESS": "420 34TH STREET NE",
+ "ADDRESS_ID": 294485,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.95780755109128,
+ 38.89542846135375
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 18,
+ "OBJECTID_2": 118,
+ "OBJECTID": 134,
+ "PRECINCT_N": 122,
+ "FACILITY_D": "Armory",
+ "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.",
+ "GIS_ID": "plp_134",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Ballou Senior High School",
+ "ADDRESS": "3401 4TH STREET SE",
+ "ADDRESS_ID": 294567,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.00097525758831,
+ 38.83938233153192
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 19,
+ "OBJECTID_2": 119,
+ "OBJECTID": 1,
+ "PRECINCT_N": 2,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_1",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "The School Without Walls",
+ "ADDRESS": "2130 G STREET NW",
+ "ADDRESS_ID": 242528,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.04818646563815,
+ 38.89812378757083
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 20,
+ "OBJECTID_2": 120,
+ "OBJECTID": 40,
+ "PRECINCT_N": 72,
+ "FACILITY_D": "Community Room (1st floor)",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_40",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Langdon Park Recreation Center",
+ "ADDRESS": "2901 20TH STREET NE",
+ "ADDRESS_ID": 287283,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97578848687645,
+ 38.926822413922125
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 21,
+ "OBJECTID_2": 121,
+ "OBJECTID": 29,
+ "PRECINCT_N": 34,
+ "FACILITY_D": "Gymnasium (lower level)",
+ "ACCESSIBLE": "Yes - Use ramped entrance.",
+ "GIS_ID": "plp_29",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Edmund Burke School",
+ "ADDRESS": "2955 UPTON STREET NW",
+ "ADDRESS_ID": 284536,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.06162815688,
+ 38.94236132772941
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 22,
+ "OBJECTID_2": 122,
+ "OBJECTID": 30,
+ "PRECINCT_N": 45,
+ "FACILITY_D": "Community Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_30",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "MPD - Regional Operation Command (North)",
+ "ADDRESS": "801 SHEPHERD STREET NW",
+ "ADDRESS_ID": 252510,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02381044771231,
+ 38.940088934414405
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 23,
+ "OBJECTID_2": 123,
+ "OBJECTID": 31,
+ "PRECINCT_N": 8,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_31",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Palisades Recreation Center",
+ "ADDRESS": "5100 SHERIER PLACE NW",
+ "ADDRESS_ID": 268352,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.10263460574787,
+ 38.92444192485095
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 24,
+ "OBJECTID_2": 124,
+ "OBJECTID": 32,
+ "PRECINCT_N": 41,
+ "FACILITY_D": "Great Hall",
+ "ACCESSIBLE": "Yes - Use entrance on Oak Street.",
+ "GIS_ID": "plp_32",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Trinity AME Zion Church",
+ "ADDRESS": "3505 16TH STREET NW",
+ "ADDRESS_ID": 234593,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0360804245525,
+ 38.934550552844456
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 25,
+ "OBJECTID_2": 125,
+ "OBJECTID": 33,
+ "PRECINCT_N": 43,
+ "FACILITY_D": "Recreation Area",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_33",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Park View Recreation Center",
+ "ADDRESS": "693 OTIS PLACE NW",
+ "ADDRESS_ID": 295160,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02135031427919,
+ 38.935002875205896
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 26,
+ "OBJECTID_2": 126,
+ "OBJECTID": 34,
+ "PRECINCT_N": 42,
+ "FACILITY_D": "Dining Room (lower level)",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_34",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Mt. Rona Baptist Church",
+ "ADDRESS": "3431 13TH STREET NW",
+ "ADDRESS_ID": 230950,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0294528525794,
+ 38.93224097022686
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 27,
+ "OBJECTID_2": 1,
+ "OBJECTID": 5,
+ "PRECINCT_N": 80,
+ "FACILITY_D": "Quander Room",
+ "ACCESSIBLE": "Yes - Accessible entrance rear of Church.",
+ "GIS_ID": "plp_5",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "St. Benedict the Moor Church",
+ "ADDRESS": "320 21ST STREET NE",
+ "ADDRESS_ID": 287504,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97545753568295,
+ 38.894225931293576
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 28,
+ "OBJECTID_2": 2,
+ "OBJECTID": 6,
+ "PRECINCT_N": 102,
+ "FACILITY_D": "Meeting Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_6",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Benning Public Library",
+ "ADDRESS": "3935 BENNING ROAD NE",
+ "ADDRESS_ID": 295144,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.94775954961405,
+ 38.89419424144954
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 29,
+ "OBJECTID_2": 3,
+ "OBJECTID": 7,
+ "PRECINCT_N": 96,
+ "FACILITY_D": "Fellowship Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_7",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Hughes Memorial United Methodist Church",
+ "ADDRESS": "25 53RD STREET NE",
+ "ADDRESS_ID": 287077,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.92577691903026,
+ 38.890534557242
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 30,
+ "OBJECTID_2": 4,
+ "OBJECTID": 8,
+ "PRECINCT_N": 88,
+ "FACILITY_D": "Church Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_8",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Thankful Baptist Church",
+ "ADDRESS": "1401 INDEPENDENCE AVENUE SE",
+ "ADDRESS_ID": 65107,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.98528389471295,
+ 38.88737930620289
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 31,
+ "OBJECTID_2": 5,
+ "OBJECTID": 9,
+ "PRECINCT_N": 132,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_9",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "DC Center for Therapeutic Recreation",
+ "ADDRESS": "3030 G STREET SE",
+ "ADDRESS_ID": 288770,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.96320322261629,
+ 38.88087157549328
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 32,
+ "OBJECTID_2": 6,
+ "OBJECTID": 10,
+ "PRECINCT_N": 128,
+ "FACILITY_D": "Junior Church Hall",
+ "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.",
+ "GIS_ID": "plp_10",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Friendship Baptist Church",
+ "ADDRESS": "900 DELAWARE AVENUE SW",
+ "ADDRESS_ID": 276854,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01249793426904,
+ 38.878918819849204
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 33,
+ "OBJECTID_2": 7,
+ "OBJECTID": 11,
+ "PRECINCT_N": 111,
+ "FACILITY_D": "John Bailey Room",
+ "ACCESSIBLE": "Yes - Use the Center for Employment Training entrance for ground level access (2815",
+ "GIS_ID": "plp_11",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "St. Francis Xavier Church",
+ "ADDRESS": "2800 PENNSYLVANIA AVENUE SE",
+ "ADDRESS_ID": 44697,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.96750992279762,
+ 38.872519727803635
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 34,
+ "OBJECTID_2": 8,
+ "OBJECTID": 12,
+ "PRECINCT_N": 108,
+ "FACILITY_D": "Community Room",
+ "ACCESSIBLE": "Yes - Accessible - rear entrance, near parking lot.",
+ "GIS_ID": "plp_12",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Pennsylvania Avenue Baptist Church",
+ "ADDRESS": "3000 PENNSYLVANIA AVENUE SE",
+ "ADDRESS_ID": 42549,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.96381300081566,
+ 38.87112927464978
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 35,
+ "OBJECTID_2": 9,
+ "OBJECTID": 13,
+ "PRECINCT_N": 127,
+ "FACILITY_D": "Meeting Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_13",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "King Greenleaf Recreation Center",
+ "ADDRESS": "201 N STREET SW",
+ "ADDRESS_ID": 52917,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01279249959418,
+ 38.87501581074506
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 36,
+ "OBJECTID_2": 10,
+ "OBJECTID": 14,
+ "PRECINCT_N": 109,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_14",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Randle-Highlands Elementary School",
+ "ADDRESS": "1650 30TH STREET SE",
+ "ADDRESS_ID": 156337,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.96435628177574,
+ 38.87009140318784
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 37,
+ "OBJECTID_2": 11,
+ "OBJECTID": 16,
+ "PRECINCT_N": 134,
+ "FACILITY_D": "Multipurpose Room",
+ "ACCESSIBLE": "Yes - Use rear entrance, adjacent to parking lot.",
+ "GIS_ID": "plp_16",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Allen AME Church",
+ "ADDRESS": "2498 ALABAMA AVENUE SE",
+ "ADDRESS_ID": 46843,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97028294121324,
+ 38.856884832198325
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 38,
+ "OBJECTID_2": 12,
+ "OBJECTID": 17,
+ "PRECINCT_N": 115,
+ "FACILITY_D": "Community Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_17",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Seventh District Police Station",
+ "ADDRESS": "2455 ALABAMA AVENUE SE",
+ "ADDRESS_ID": 278162,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.96952139706708,
+ 38.85335576413945
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 39,
+ "OBJECTID_2": 13,
+ "OBJECTID": 18,
+ "PRECINCT_N": 116,
+ "FACILITY_D": "Fellowship Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_18",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "New Image Community Baptist Church",
+ "ADDRESS": "1839 ALABAMA AVENUE SE",
+ "ADDRESS_ID": 54816,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97783993032797,
+ 38.84765863309889
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 40,
+ "OBJECTID_2": 14,
+ "OBJECTID": 19,
+ "PRECINCT_N": 124,
+ "FACILITY_D": "Church Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_19",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Convenant Baptist Church",
+ "ADDRESS": "3845 SOUTH CAPITOL STREET SW",
+ "ADDRESS_ID": 301907,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.00866130403007,
+ 38.83401036254331
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 41,
+ "OBJECTID_2": 15,
+ "OBJECTID": 20,
+ "PRECINCT_N": 61,
+ "FACILITY_D": "Multi-purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_20",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Fort Stevens Recreation Center",
+ "ADDRESS": "1327 VAN BUREN STREET NW",
+ "ADDRESS_ID": 290152,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03109080084555,
+ 38.97026914859354
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 42,
+ "OBJECTID_2": 16,
+ "OBJECTID": 21,
+ "PRECINCT_N": 50,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes - Accessible rear entrance next to the parking lot.",
+ "GIS_ID": "plp_21",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Chevy Chase Community Center",
+ "ADDRESS": "5601 CONNECTICUT AVENUE NW",
+ "ADDRESS_ID": 263959,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.07510861326296,
+ 38.96515842127339
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 43,
+ "OBJECTID_2": 17,
+ "OBJECTID": 22,
+ "PRECINCT_N": 52,
+ "FACILITY_D": "Roth Gymnasium Bldg.",
+ "ACCESSIBLE": "Yes - Access from parking lot.",
+ "GIS_ID": "plp_22",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "St. John's College High School",
+ "ADDRESS": "2607 MILITARY ROAD NW",
+ "ADDRESS_ID": 259840,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.05520494037229,
+ 38.962417220863394
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 44,
+ "OBJECTID_2": 18,
+ "OBJECTID": 24,
+ "PRECINCT_N": 60,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_24",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Church of the Nativity Youth Center",
+ "ADDRESS": "6000 GEORGIA AVENUE NW",
+ "ADDRESS_ID": 253197,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02822698508824,
+ 38.96284816168917
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 45,
+ "OBJECTID_2": 19,
+ "OBJECTID": 25,
+ "PRECINCT_N": 138,
+ "FACILITY_D": "Fellowship Hall",
+ "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.",
+ "GIS_ID": "plp_25",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Capital Memorial Adventist Church",
+ "ADDRESS": "3150 CHESAPEAKE STREET NW",
+ "ADDRESS_ID": 284592,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.06396319555985,
+ 38.95020322506991
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 46,
+ "OBJECTID_2": 20,
+ "OBJECTID": 26,
+ "PRECINCT_N": 31,
+ "FACILITY_D": "Church Hall",
+ "ACCESSIBLE": "Yes - Accessible entrance located on 42nd St.",
+ "GIS_ID": "plp_26",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "St. Columba's Episcopal Church",
+ "ADDRESS": "4201 ALBEMARLE STREET NW",
+ "ADDRESS_ID": 301545,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.08244680641738,
+ 38.9482176667262
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 47,
+ "OBJECTID_2": 21,
+ "OBJECTID": 27,
+ "PRECINCT_N": 44,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_27",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "North Capitol at Plymouth",
+ "ADDRESS": "5233 NORTH CAPTIOL STREET NE",
+ "ADDRESS_ID": 298101,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.00866515707142,
+ 38.95406774426341
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 48,
+ "OBJECTID_2": 22,
+ "OBJECTID": 28,
+ "PRECINCT_N": 9,
+ "FACILITY_D": "Vestry Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_28",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Metropolitan Memorial United Methodist Church",
+ "ADDRESS": "3401 NEBRASKA AVENUE NW",
+ "ADDRESS_ID": 298676,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.08779934048464,
+ 38.93495923702522
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 49,
+ "OBJECTID_2": 23,
+ "OBJECTID": 47,
+ "PRECINCT_N": 75,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_47",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "McKinley Technology Senior High School",
+ "ADDRESS": "151 T STREET NE",
+ "ADDRESS_ID": 296345,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0041224390594,
+ 38.91521978576181
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 50,
+ "OBJECTID_2": 24,
+ "OBJECTID": 48,
+ "PRECINCT_N": 141,
+ "FACILITY_D": "North Lobby",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_48",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Frank D. Reeves Municipal Center",
+ "ADDRESS": "2000 14TH STREET NW",
+ "ADDRESS_ID": 239976,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03240352407649,
+ 38.917444026973975
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 125,
+ "OBJECTID_2": 99,
+ "OBJECTID": 128,
+ "PRECINCT_N": 137,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes - Accessible entrance adjacent to parking lot.",
+ "GIS_ID": "plp_128",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Garrison Elementary School",
+ "ADDRESS": "1200 S STREET NW",
+ "ADDRESS_ID": 294509,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02861255039201,
+ 38.913900958245385
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 126,
+ "OBJECTID_2": 100,
+ "OBJECTID": 129,
+ "PRECINCT_N": 133,
+ "FACILITY_D": "Library",
+ "ACCESSIBLE": "Yes - Accessible entrance rear of school",
+ "GIS_ID": "plp_129",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Orr Elementary School",
+ "ADDRESS": "2200 MINNESOTA AVENUE SE",
+ "ADDRESS_ID": 294539,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.97448401156392,
+ 38.871796823975465
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 127,
+ "OBJECTID_2": 127,
+ "OBJECTID": 35,
+ "PRECINCT_N": 71,
+ "FACILITY_D": "Upper Fellowship Hall",
+ "ACCESSIBLE": "Yes - Accessible entrance on Bladensburg Road",
+ "GIS_ID": "plp_35",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Mt. Horeb Baptist Church",
+ "ADDRESS": "3015 EARL PLACE NE",
+ "ADDRESS_ID": 287380,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.96257582780058,
+ 38.92828163952405
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 128,
+ "OBJECTID_2": 128,
+ "OBJECTID": 36,
+ "PRECINCT_N": 28,
+ "FACILITY_D": "Parish Center (near Klingle Place)",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_36",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Church of the Annunciation Parish",
+ "ADDRESS": "3810 MASSACHUSETTS AVENUE NW",
+ "ADDRESS_ID": 263608,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.07581746959019,
+ 38.93014871936168
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 129,
+ "OBJECTID_2": 129,
+ "OBJECTID": 37,
+ "PRECINCT_N": 136,
+ "FACILITY_D": "Conference Room",
+ "ACCESSIBLE": "Yes - Use side entrance from parking lot",
+ "GIS_ID": "plp_37",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Leading Age",
+ "ADDRESS": "2519 CONNECTICUT AVENUE NW",
+ "ADDRESS_ID": 284405,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.05081709968947,
+ 38.923171900472795
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 130,
+ "OBJECTID_2": 130,
+ "OBJECTID": 38,
+ "PRECINCT_N": 12,
+ "FACILITY_D": "Church Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_38",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "St Sophia's Greek Orthodox Cathederal Church",
+ "ADDRESS": "3600 MASSACHUSETTS AVENUE NW",
+ "ADDRESS_ID": 262638,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.07117418205232,
+ 38.92672469638905
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 131,
+ "OBJECTID_2": 131,
+ "OBJECTID": 39,
+ "PRECINCT_N": 39,
+ "FACILITY_D": "Auditorium",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_39",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Bell Multicultural High School",
+ "ADDRESS": "3101 16th Street NW",
+ "ADDRESS_ID": 234375,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03585151879376,
+ 38.929540334081075
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 132,
+ "OBJECTID_2": 132,
+ "OBJECTID": 41,
+ "PRECINCT_N": 36,
+ "FACILITY_D": "Community Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_41",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Latin American Youth Center",
+ "ADDRESS": "1419 COLUMBIA ROAD NW",
+ "ADDRESS_ID": 234363,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03335781590764,
+ 38.9277663944928
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 133,
+ "OBJECTID_2": 133,
+ "OBJECTID": 42,
+ "PRECINCT_N": 135,
+ "FACILITY_D": "Church Hall",
+ "ACCESSIBLE": "Yes - Use ramped entrance on Rhode Island Avenue.",
+ "GIS_ID": "plp_42",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Mt. Bethel Baptist Church",
+ "ADDRESS": "1901 1ST STREET NW",
+ "ADDRESS_ID": 227421,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.01182725241577,
+ 38.916136758622
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 134,
+ "OBJECTID_2": 134,
+ "OBJECTID": 43,
+ "PRECINCT_N": 11,
+ "FACILITY_D": "Union Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_43",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "International Union of Operating Engineer",
+ "ADDRESS": "2461 WISCONSIN AVENUE NW",
+ "ADDRESS_ID": 284395,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.07250197535924,
+ 38.92234916933058
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 135,
+ "OBJECTID_2": 135,
+ "OBJECTID": 44,
+ "PRECINCT_N": 23,
+ "FACILITY_D": "Library and Computer Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_44",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Loughran Community Center",
+ "ADDRESS": "2500 14TH STREET NW",
+ "ADDRESS_ID": 234200,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.03236211898793,
+ 38.921998738498395
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 136,
+ "OBJECTID_2": 136,
+ "OBJECTID": 45,
+ "PRECINCT_N": 25,
+ "FACILITY_D": "Fellowship Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_45",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Goodwill Baptist Church",
+ "ADDRESS": "1862 KALORAMA ROAD NW",
+ "ADDRESS_ID": 235475,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.04382603429792,
+ 38.91931664613416
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 137,
+ "OBJECTID_2": 137,
+ "OBJECTID": 46,
+ "PRECINCT_N": 13,
+ "FACILITY_D": "Fellowship Hall",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_46",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Goodwill Baptist Church",
+ "ADDRESS": "1862 KALORAMA ROAD NW",
+ "ADDRESS_ID": 235475,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.04382603429792,
+ 38.91931664613416
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 138,
+ "OBJECTID_2": 138,
+ "OBJECTID": 143,
+ "PRECINCT_N": 143,
+ "FACILITY_D": "Church Hall/Meeting Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_143",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Chinese Community Church",
+ "ADDRESS": "500 I STREET NW",
+ "ADDRESS_ID": 238945,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0191335488228,
+ 38.900621429714505
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 139,
+ "OBJECTID_2": 139,
+ "OBJECTID": 15,
+ "PRECINCT_N": 110,
+ "FACILITY_D": "Multi-Purpose Room",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_15",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "St. Timothy's Episcopal Church",
+ "ADDRESS": "3601 ALABAMA AVENUE SE",
+ "ADDRESS_ID": 33104,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.95609228878696,
+ 38.86298923901404
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 140,
+ "OBJECTID_2": 140,
+ "OBJECTID": 23,
+ "PRECINCT_N": 32,
+ "FACILITY_D": "Fellowship Hall (1st Floor)",
+ "ACCESSIBLE": "Yes - Use Connecticut Ave. entrance",
+ "GIS_ID": "plp_23",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Wesley Methodist Church",
+ "ADDRESS": "5312 CONNECTICUT AVENUE NW",
+ "ADDRESS_ID": 301282,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.07264987664179,
+ 38.95932406644609
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 141,
+ "OBJECTID_2": 141,
+ "OBJECTID": 63,
+ "PRECINCT_N": 6,
+ "FACILITY_D": "Gallery",
+ "ACCESSIBLE": "Yes",
+ "GIS_ID": "plp_63",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Duke Ellington School of the Arts",
+ "ADDRESS": "3500 R STREET NW",
+ "ADDRESS_ID": 294569,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0703075622951,
+ 38.91344604442462
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 142,
+ "OBJECTID_2": 142,
+ "OBJECTID": 70,
+ "PRECINCT_N": 26,
+ "FACILITY_D": "Gymnasium",
+ "ACCESSIBLE": "Yes - Use ramped entrance on 27th Street",
+ "GIS_ID": "plp_70",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Oyster Elementary School",
+ "ADDRESS": "2801 CALVERT STREET NW",
+ "ADDRESS_ID": 275944,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.0572033785664,
+ 38.923595492962626
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "OBJECTID_1": 143,
+ "OBJECTID_2": 143,
+ "OBJECTID": 89,
+ "PRECINCT_N": 58,
+ "FACILITY_D": "Community Room.",
+ "ACCESSIBLE": "Yes - Ground level at Georgia. Avenue & Quackenbos Street.",
+ "GIS_ID": "plp_89",
+ "WEB_URL": "http://www.dcboee.org/election_info/pollplaces/",
+ "NAME": "Fourth District Police Station",
+ "ADDRESS": "6001 GEORGIA AVENUE NW",
+ "ADDRESS_ID": 243485,
+ "marker-color": "#f0f",
+ "marker-size": "small"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -77.02741098359434,
+ 38.96312544965341
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.10263460574787,
+ 38.92444192485095
+ ],
+ [
+ -77.08244680641738,
+ 38.9482176667262
+ ],
+ [
+ -77.07510861326296,
+ 38.96515842127339
+ ],
+ [
+ -77.06803711636698,
+ 38.96662722064828
+ ],
+ [
+ -77.05520494037229,
+ 38.962417220863394
+ ],
+ [
+ -77.03399523386544,
+ 38.98460295003216
+ ],
+ [
+ -77.01805167618295,
+ 38.96888669131412
+ ],
+ [
+ -76.99988253848109,
+ 38.95997180998364
+ ],
+ [
+ -76.98499562999821,
+ 38.94201213500814
+ ],
+ [
+ -76.95763369669753,
+ 38.92730594377001
+ ],
+ [
+ -76.9404849391363,
+ 38.90822873259865
+ ],
+ [
+ -76.9299476407989,
+ 38.90541498719898
+ ],
+ [
+ -76.92270804396746,
+ 38.89619288755561
+ ],
+ [
+ -76.92611549373204,
+ 38.88359849788337
+ ],
+ [
+ -76.93761630232859,
+ 38.87906795106383
+ ],
+ [
+ -76.95609228878696,
+ 38.86298923901404
+ ],
+ [
+ -76.96952139706708,
+ 38.85335576413945
+ ],
+ [
+ -76.99226881799031,
+ 38.834327886510565
+ ],
+ [
+ -76.99918484024232,
+ 38.82898558049571
+ ],
+ [
+ -77.00847560019479,
+ 38.8269811922012
+ ],
+ [
+ -77.00866130403007,
+ 38.83401036254331
+ ],
+ [
+ -77.00097525758831,
+ 38.83938233153192
+ ],
+ [
+ -76.99535456253949,
+ 38.85976175834964
+ ],
+ [
+ -77.01279249959418,
+ 38.87501581074506
+ ],
+ [
+ -77.02291065460415,
+ 38.87987059942476
+ ],
+ [
+ -77.04818646563815,
+ 38.89812378757083
+ ],
+ [
+ -77.0511477096272,
+ 38.898862835793516
+ ],
+ [
+ -77.08498118309296,
+ 38.909915833213795
+ ],
+ [
+ -77.10263460574787,
+ 38.92444192485095
+ ]
+ ],
+ [
+ [
+ -76.99726738315395,
+ 38.95334052572905
+ ],
+ [
+ -77.00866515707142,
+ 38.95406774426341
+ ],
+ [
+ -77.0177770800083,
+ 38.948230614415095
+ ],
+ [
+ -77.00253831800221,
+ 38.923654687421774
+ ],
+ [
+ -76.98652958387164,
+ 38.9375726751204
+ ],
+ [
+ -76.99726738315395,
+ 38.95334052572905
+ ]
+ ]
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-convex/.npmignore b/packages/turf-convex/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-convex/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-convex/README.md b/packages/turf-convex/README.md
new file mode 100644
index 0000000000..66740010ff
--- /dev/null
+++ b/packages/turf-convex/README.md
@@ -0,0 +1,105 @@
+# turf-convex
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-convex.png)](http://travis-ci.org/Turfjs/turf-convex)
+
+
+
+
+### `turf.convex(input)`
+
+Takes a set of Point|points and returns a
+[convex hull](http://en.wikipedia.org/wiki/Convex_hull) polygon.
+
+Internally this uses
+the [convex-hull](https://github.com/mikolalysenko/convex-hull) module that
+implements a [monotone chain hull](http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain).
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | ---------------------------- | ------------ |
+| `input` | FeatureCollection\.\ | input points |
+
+
+### Example
+
+```js
+var points = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [10.195312, 43.755225]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [10.404052, 43.8424511]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [10.579833, 43.659924]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [10.360107, 43.516688]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [10.14038, 43.588348]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [10.195312, 43.755225]
+ }
+ }
+ ]
+};
+
+var hull = turf.convex(points);
+
+var resultFeatures = points.features.concat(hull);
+var result = {
+ "type": "FeatureCollection",
+ "features": resultFeatures
+};
+
+//=result
+```
+
+
+**Returns** `Feature.`, a convex hull
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-convex
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-convex/bench.js b/packages/turf-convex/bench.js
new file mode 100644
index 0000000000..3ebbe864fd
--- /dev/null
+++ b/packages/turf-convex/bench.js
@@ -0,0 +1,17 @@
+var convex = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var fc = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/elevation1.geojson'));
+var suite = new Benchmark.Suite('turf-convex');
+suite
+ .add('turf-convex',function () {
+ convex(fc);
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-convex/index.js b/packages/turf-convex/index.js
new file mode 100644
index 0000000000..ea4d704d9a
--- /dev/null
+++ b/packages/turf-convex/index.js
@@ -0,0 +1,90 @@
+var each = require('turf-meta').coordEach,
+ convexHull = require('convex-hull'),
+ polygon = require('turf-helpers').polygon;
+
+/**
+ * Takes a set of {@link Point|points} and returns a
+ * [convex hull](http://en.wikipedia.org/wiki/Convex_hull) polygon.
+ *
+ * Internally this uses
+ * the [convex-hull](https://github.com/mikolalysenko/convex-hull) module that
+ * implements a [monotone chain hull](http://en.wikibooks.org/wiki/Algorithm_Implementation/Geometry/Convex_hull/Monotone_chain).
+ *
+ * @name convex
+ * @category transformation
+ * @param {FeatureCollection} input input points
+ * @returns {Feature} a convex hull
+ * @example
+ * var points = {
+ * "type": "FeatureCollection",
+ * "features": [
+ * {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [10.195312, 43.755225]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [10.404052, 43.8424511]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [10.579833, 43.659924]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [10.360107, 43.516688]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [10.14038, 43.588348]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [10.195312, 43.755225]
+ * }
+ * }
+ * ]
+ * };
+ *
+ * var hull = turf.convex(points);
+ *
+ * var resultFeatures = points.features.concat(hull);
+ * var result = {
+ * "type": "FeatureCollection",
+ * "features": resultFeatures
+ * };
+ *
+ * //=result
+ */
+module.exports = function (fc) {
+ var points = [];
+ each(fc, function (coord) { points.push(coord); });
+ var hull = convexHull(points);
+ if (hull.length > 0) {
+ var ring = [];
+ for (var i = 0; i < hull.length; i++) {
+ ring.push(points[hull[i][0]]);
+ }
+ ring.push(points[hull[hull.length - 1][1]]);
+ return polygon([ring]);
+ }
+ return undefined;
+};
diff --git a/packages/turf-convex/package.json b/packages/turf-convex/package.json
new file mode 100644
index 0000000000..7abea44af9
--- /dev/null
+++ b/packages/turf-convex/package.json
@@ -0,0 +1,36 @@
+{
+ "name": "turf-convex",
+ "version": "3.0.5",
+ "description": "",
+ "main": "index.js",
+ "directories": {
+ "test": "test"
+ },
+ "scripts": {
+ "test": "tape test/*.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/Turfjs/turf-convex.git"
+ },
+ "keywords": [
+ "turf",
+ "gis"
+ ],
+ "author": "Morgan Herlocker",
+ "license": "ISC",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-convex/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-convex",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "glob": "~4.3.5",
+ "tape": "~3.5.0"
+ },
+ "dependencies": {
+ "convex-hull": "^1.0.3",
+ "turf-meta": "^3.0.1",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-convex/test/convex.js b/packages/turf-convex/test/convex.js
new file mode 100644
index 0000000000..8cc23134f1
--- /dev/null
+++ b/packages/turf-convex/test/convex.js
@@ -0,0 +1,16 @@
+var convex = require('../'),
+ test = require('tape'),
+ glob = require('glob'),
+ fs = require('fs');
+
+test('convex hull', function(t){
+ t.deepEqual(convex({ type: 'FeatureCollection', features: [] }),
+ undefined, 'corner case: undefined hull');
+ glob.sync(__dirname + '/fixtures/in/*.geojson').forEach(function(input) {
+ var fcs = JSON.parse(fs.readFileSync(input));
+ var output = convex(fcs);
+ if (process.env.UPDATE) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output));
+ t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input);
+ });
+ t.end();
+});
diff --git a/packages/turf-convex/test/fixtures/in/elevation1.geojson b/packages/turf-convex/test/fixtures/in/elevation1.geojson
new file mode 100644
index 0000000000..966478da70
--- /dev/null
+++ b/packages/turf-convex/test/fixtures/in/elevation1.geojson
@@ -0,0 +1,141 @@
+ {
+ "type": "FeatureCollection",
+ "features": [
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.833, 39.284]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 25
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.6, 39.984]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 23
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.221, 39.125]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 29
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.358, 39.987]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 12
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.9221, 39.27]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 11
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.534, 39.123]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 49
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.21, 39.12]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 50
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.22, 39.33]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 90
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.44, 39.55]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 22
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.77, 39.66]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 99
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.44, 39.11]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 55
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.05, 39.92]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 41
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.88, 39.98]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 52
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.55, 39.55]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 143
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.33, 39.44]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 76
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.56, 39.24]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 18
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.56, 39.36]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 52
+ }
+ }
+ ]
+ }
\ No newline at end of file
diff --git a/packages/turf-convex/test/fixtures/in/elevation2.geojson b/packages/turf-convex/test/fixtures/in/elevation2.geojson
new file mode 100644
index 0000000000..b6996be4ac
--- /dev/null
+++ b/packages/turf-convex/test/fixtures/in/elevation2.geojson
@@ -0,0 +1,60 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -75.1300048828125,
+ 40.157885249506506
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -74.5587158203125,
+ 39.816975090490004
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.06109619140625,
+ 40.0759697987031
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -76.21490478515625,
+ 39.60145584096999
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ -74.77020263671875,
+ 39.35766163717121
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-convex/test/fixtures/in/elevation3.geojson b/packages/turf-convex/test/fixtures/in/elevation3.geojson
new file mode 100644
index 0000000000..966478da70
--- /dev/null
+++ b/packages/turf-convex/test/fixtures/in/elevation3.geojson
@@ -0,0 +1,141 @@
+ {
+ "type": "FeatureCollection",
+ "features": [
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.833, 39.284]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 25
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.6, 39.984]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 23
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.221, 39.125]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 29
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.358, 39.987]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 12
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.9221, 39.27]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 11
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.534, 39.123]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 49
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.21, 39.12]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 50
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.22, 39.33]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 90
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.44, 39.55]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 22
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.77, 39.66]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 99
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.44, 39.11]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 55
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.05, 39.92]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 41
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.88, 39.98]},
+ "properties": {
+ "name": "Location A",
+ "category": "Store",
+ "elevation": 52
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [-75.55, 39.55]},
+ "properties": {
+ "name": "Location B",
+ "category": "House",
+ "elevation": 143
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.33, 39.44]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 76
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.56, 39.24]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 18
+ }
+ },
+ { "type": "Feature",
+ "geometry": {"type": "Point", "coordinates": [ -75.56, 39.36]},
+ "properties": {
+ "name": "Location C",
+ "category": "Office",
+ "elevation": 52
+ }
+ }
+ ]
+ }
\ No newline at end of file
diff --git a/packages/turf-convex/test/fixtures/out/elevation1.geojson b/packages/turf-convex/test/fixtures/out/elevation1.geojson
new file mode 100644
index 0000000000..fa70f4a98c
--- /dev/null
+++ b/packages/turf-convex/test/fixtures/out/elevation1.geojson
@@ -0,0 +1 @@
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.534,39.123],[-75.9221,39.27],[-75.88,39.98],[-75.6,39.984],[-75.358,39.987],[-75.05,39.92],[-75.21,39.12],[-75.44,39.11],[-75.534,39.123]]]},"properties":{}}
\ No newline at end of file
diff --git a/packages/turf-convex/test/fixtures/out/elevation2.geojson b/packages/turf-convex/test/fixtures/out/elevation2.geojson
new file mode 100644
index 0000000000..19c43c68e3
--- /dev/null
+++ b/packages/turf-convex/test/fixtures/out/elevation2.geojson
@@ -0,0 +1 @@
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-74.77020263671875,39.35766163717121],[-76.21490478515625,39.60145584096999],[-76.06109619140625,40.0759697987031],[-75.1300048828125,40.157885249506506],[-74.5587158203125,39.816975090490004],[-74.77020263671875,39.35766163717121]]]},"properties":{}}
\ No newline at end of file
diff --git a/packages/turf-convex/test/fixtures/out/elevation3.geojson b/packages/turf-convex/test/fixtures/out/elevation3.geojson
new file mode 100644
index 0000000000..fa70f4a98c
--- /dev/null
+++ b/packages/turf-convex/test/fixtures/out/elevation3.geojson
@@ -0,0 +1 @@
+{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-75.534,39.123],[-75.9221,39.27],[-75.88,39.98],[-75.6,39.984],[-75.358,39.987],[-75.05,39.92],[-75.21,39.12],[-75.44,39.11],[-75.534,39.123]]]},"properties":{}}
\ No newline at end of file
diff --git a/packages/turf-destination/.npmignore b/packages/turf-destination/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-destination/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-destination/LICENSE b/packages/turf-destination/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-destination/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-destination/README.md b/packages/turf-destination/README.md
new file mode 100644
index 0000000000..33cdd8c7de
--- /dev/null
+++ b/packages/turf-destination/README.md
@@ -0,0 +1,68 @@
+# turf-destination
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-destination.png)](http://travis-ci.org/Turfjs/turf-destination)
+
+turf destination module
+
+
+### `turf.destination(start, distance, bearing, units)`
+
+Takes a Point and calculates the location of a destination point given a distance in degrees, radians, miles, or kilometers; and bearing in degrees. This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature.
+
+
+### Parameters
+
+| parameter | type | description |
+| ---------- | ------------------ | -------------------------------------- |
+| `start` | Feature\.\ | starting point |
+| `distance` | Number | distance from the starting point |
+| `bearing` | Number | ranging from -180 to 180 |
+| `units` | String | miles, kilometers, degrees, or radians |
+
+
+### Example
+
+```js
+var point = {
+ "type": "Feature",
+ "properties": {
+ "marker-color": "#0f0"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75.343, 39.984]
+ }
+};
+var distance = 50;
+var bearing = 90;
+var units = 'miles';
+
+var destination = turf.destination(point, distance, bearing, units);
+destination.properties['marker-color'] = '#f00';
+
+var result = {
+ "type": "FeatureCollection",
+ "features": [point, destination]
+};
+
+//=result
+```
+
+
+**Returns** `Feature.`, destination point
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-destination
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-destination/bench.js b/packages/turf-destination/bench.js
new file mode 100644
index 0000000000..c1bf39518f
--- /dev/null
+++ b/packages/turf-destination/bench.js
@@ -0,0 +1,23 @@
+var destination = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var pt1 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.0, 39.0]}
+ };
+var dist = 100;
+var bear = 180;
+
+var suite = new Benchmark.Suite('turf-destination');
+suite
+ .add('turf-destination',function () {
+ destination(pt1, dist, bear, 'kilometers');
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-destination/index.js b/packages/turf-destination/index.js
new file mode 100644
index 0000000000..b2454e335b
--- /dev/null
+++ b/packages/turf-destination/index.js
@@ -0,0 +1,60 @@
+//http://en.wikipedia.org/wiki/Haversine_formula
+//http://www.movable-type.co.uk/scripts/latlong.html
+var getCoord = require('turf-invariant').getCoord;
+var helpers = require('turf-helpers');
+var point = helpers.point;
+var distanceToRadians = helpers.distanceToRadians;
+
+/**
+ * Takes a {@link Point} and calculates the location of a destination point given a distance in degrees, radians, miles, or kilometers; and bearing in degrees. This uses the [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula) to account for global curvature.
+ *
+ * @name destination
+ * @category measurement
+ * @param {Feature} start starting point
+ * @param {Number} distance distance from the starting point
+ * @param {Number} bearing ranging from -180 to 180
+ * @param {String=kilometers} units miles, kilometers, degrees, or radians
+ * @returns {Feature} destination point
+ * @example
+ * var point = {
+ * "type": "Feature",
+ * "properties": {
+ * "marker-color": "#0f0"
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-75.343, 39.984]
+ * }
+ * };
+ * var distance = 50;
+ * var bearing = 90;
+ * var units = 'miles';
+ *
+ * var destination = turf.destination(point, distance, bearing, units);
+ * destination.properties['marker-color'] = '#f00';
+ *
+ * var result = {
+ * "type": "FeatureCollection",
+ * "features": [point, destination]
+ * };
+ *
+ * //=result
+ */
+module.exports = function (point1, distance, bearing, units) {
+ var degrees2radians = Math.PI / 180;
+ var radians2degrees = 180 / Math.PI;
+ var coordinates1 = getCoord(point1);
+ var longitude1 = degrees2radians * coordinates1[0];
+ var latitude1 = degrees2radians * coordinates1[1];
+ var bearing_rad = degrees2radians * bearing;
+
+ var radians = distanceToRadians(distance, units);
+
+ var latitude2 = Math.asin(Math.sin(latitude1) * Math.cos(radians) +
+ Math.cos(latitude1) * Math.sin(radians) * Math.cos(bearing_rad));
+ var longitude2 = longitude1 + Math.atan2(Math.sin(bearing_rad) *
+ Math.sin(radians) * Math.cos(latitude1),
+ Math.cos(radians) - Math.sin(latitude1) * Math.sin(latitude2));
+
+ return point([radians2degrees * longitude2, radians2degrees * latitude2]);
+};
diff --git a/packages/turf-destination/package.json b/packages/turf-destination/package.json
new file mode 100644
index 0000000000..6730e91023
--- /dev/null
+++ b/packages/turf-destination/package.json
@@ -0,0 +1,36 @@
+{
+ "name": "turf-destination",
+ "version": "3.0.5",
+ "description": "turf destination module",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-destination.git"
+ },
+ "keywords": [
+ "turf",
+ "distance",
+ "destination",
+ "bearing",
+ "miles",
+ "km"
+ ],
+ "author": "jvrousseau",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-destination/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-destination",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0",
+ "turf-distance": "^3.0.5"
+ },
+ "dependencies": {
+ "turf-helpers": "^3.0.5",
+ "turf-invariant": "^3.0.1"
+ }
+}
diff --git a/packages/turf-destination/test.js b/packages/turf-destination/test.js
new file mode 100644
index 0000000000..4d15637e46
--- /dev/null
+++ b/packages/turf-destination/test.js
@@ -0,0 +1,16 @@
+var test = require('tape');
+var distance = require('turf-distance');
+var destination = require('./');
+
+test('destination', function(t){
+ var pt1 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.0, 39.0]}
+ };
+ var dist = 100;
+ var bear = 180;
+
+ var pt2 = destination(pt1, dist, bear, 'kilometers');
+ t.deepEqual(pt2, { geometry: { coordinates: [ -75, 38.10096062273525 ], type: 'Point' }, properties: {}, type: 'Feature' }, 'returns the correct point');
+ t.end();
+});
diff --git a/packages/turf-difference/.npmignore b/packages/turf-difference/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-difference/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-difference/README.md b/packages/turf-difference/README.md
new file mode 100644
index 0000000000..a08d944892
--- /dev/null
+++ b/packages/turf-difference/README.md
@@ -0,0 +1,88 @@
+# turf-difference
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-difference.png)](http://travis-ci.org/Turfjs/turf-difference)
+
+[Turf](http://turfjs.org/) difference module
+
+
+### `turf.difference(poly1, poly2)`
+
+Finds the difference between two Polygon|polygons by clipping the second
+polygon from the first.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | -------------------- | ------------------------------------------ |
+| `poly1` | Feature\.\ | input Polygon feaure |
+| `poly2` | Feature\.\ | Polygon feature to difference from `poly1` |
+
+
+### Example
+
+```js
+var poly1 = {
+ "type": "Feature",
+ "properties": {
+ "fill": "#0f0"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[
+ [-46.738586, -23.596711],
+ [-46.738586, -23.458207],
+ [-46.560058, -23.458207],
+ [-46.560058, -23.596711],
+ [-46.738586, -23.596711]
+ ]]
+ }
+};
+var poly2 = {
+ "type": "Feature",
+ "properties": {
+ "fill": "#00f"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[
+ [-46.650009, -23.631314],
+ [-46.650009, -23.5237],
+ [-46.509246, -23.5237],
+ [-46.509246, -23.631314],
+ [-46.650009, -23.631314]
+ ]]
+ }
+};
+
+var differenced = turf.difference(poly1, poly2);
+differenced.properties.fill = '#f00';
+
+var polygons = {
+ "type": "FeatureCollection",
+ "features": [poly1, poly2]
+};
+
+//=polygons
+
+//=differenced
+```
+
+
+**Returns** `Feature.`, a Polygon feature showing the area of `poly1` excluding the area of `poly2`
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-difference
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-difference/bench.js b/packages/turf-difference/bench.js
new file mode 100644
index 0000000000..5e186fe8a1
--- /dev/null
+++ b/packages/turf-difference/bench.js
@@ -0,0 +1,22 @@
+var difference = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var clip = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/differencedHole.geojson'));
+var hole = JSON.parse(fs.readFileSync(__dirname+'/test/fixtures/in/differencedFC.geojson'));
+
+var suite = new Benchmark.Suite('turf-difference');
+suite
+ .add('turf-difference#clip',function () {
+ difference(clip[0], clip[1]);
+ })
+ .add('turf-difference#hole',function () {
+ difference(hole[0], hole[1]);
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-difference/index.js b/packages/turf-difference/index.js
new file mode 100644
index 0000000000..d93fafbb85
--- /dev/null
+++ b/packages/turf-difference/index.js
@@ -0,0 +1,95 @@
+// depend on jsts for now https://github.com/bjornharrtell/jsts/blob/master/examples/overlay.html
+var jsts = require('jsts');
+
+/**
+ * Finds the difference between two {@link Polygon|polygons} by clipping the second
+ * polygon from the first.
+ *
+ * @name difference
+ * @category transformation
+ * @param {Feature} poly1 input Polygon feaure
+ * @param {Feature} poly2 Polygon feature to difference from `poly1`
+ * @return {Feature} a Polygon feature showing the area of `poly1` excluding the area of `poly2`
+ * @example
+ * var poly1 = {
+ * "type": "Feature",
+ * "properties": {
+ * "fill": "#0f0"
+ * },
+ * "geometry": {
+ * "type": "Polygon",
+ * "coordinates": [[
+ * [-46.738586, -23.596711],
+ * [-46.738586, -23.458207],
+ * [-46.560058, -23.458207],
+ * [-46.560058, -23.596711],
+ * [-46.738586, -23.596711]
+ * ]]
+ * }
+ * };
+ * var poly2 = {
+ * "type": "Feature",
+ * "properties": {
+ * "fill": "#00f"
+ * },
+ * "geometry": {
+ * "type": "Polygon",
+ * "coordinates": [[
+ * [-46.650009, -23.631314],
+ * [-46.650009, -23.5237],
+ * [-46.509246, -23.5237],
+ * [-46.509246, -23.631314],
+ * [-46.650009, -23.631314]
+ * ]]
+ * }
+ * };
+ *
+ * var differenced = turf.difference(poly1, poly2);
+ * differenced.properties.fill = '#f00';
+ *
+ * var polygons = {
+ * "type": "FeatureCollection",
+ * "features": [poly1, poly2]
+ * };
+ *
+ * //=polygons
+ *
+ * //=differenced
+ */
+
+module.exports = function (p1, p2) {
+ var poly1 = JSON.parse(JSON.stringify(p1));
+ var poly2 = JSON.parse(JSON.stringify(p2));
+ if (poly1.type !== 'Feature') {
+ poly1 = {
+ type: 'Feature',
+ properties: {},
+ geometry: poly1
+ };
+ }
+ if (poly2.type !== 'Feature') {
+ poly2 = {
+ type: 'Feature',
+ properties: {},
+ geometry: poly2
+ };
+ }
+
+ var reader = new jsts.io.GeoJSONReader();
+ var a = reader.read(JSON.stringify(poly1.geometry));
+ var b = reader.read(JSON.stringify(poly2.geometry));
+ var differenced = a.difference(b);
+
+ if (differenced.isEmpty()) return undefined;
+
+ var writer = new jsts.io.GeoJSONWriter();
+ var geojsonGeometry = writer.write(differenced);
+
+ poly1.geometry = differenced;
+
+ return {
+ type: 'Feature',
+ properties: poly1.properties,
+ geometry: geojsonGeometry
+ };
+};
diff --git a/packages/turf-difference/package.json b/packages/turf-difference/package.json
new file mode 100644
index 0000000000..f560a97a0f
--- /dev/null
+++ b/packages/turf-difference/package.json
@@ -0,0 +1,32 @@
+{
+ "name": "turf-difference",
+ "version": "3.0.5",
+ "description": "[Turf](http://turfjs.org/) difference module",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test/*.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/Turfjs/turf-difference.git"
+ },
+ "keywords": [
+ "turf",
+ "gis"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-difference/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-difference",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "glob": "~5.0.5",
+ "tape": "~4.0.0"
+ },
+ "dependencies": {
+ "jsts": "1.1.1",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-difference/test/fixtures/full.geojson b/packages/turf-difference/test/fixtures/full.geojson
new file mode 100644
index 0000000000..45424558a9
--- /dev/null
+++ b/packages/turf-difference/test/fixtures/full.geojson
@@ -0,0 +1,64 @@
+[
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 101.18408203124999,
+ 32.95336814579932
+ ],
+ [
+ 101.18408203124999,
+ 35.93354064249312
+ ],
+ [
+ 104.952392578125,
+ 35.93354064249312
+ ],
+ [
+ 104.952392578125,
+ 32.95336814579932
+ ],
+ [
+ 101.18408203124999,
+ 32.95336814579932
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 102.315673828125,
+ 34.06176136129718
+ ],
+ [
+ 102.315673828125,
+ 35.36217605914678
+ ],
+ [
+ 103.60107421874999,
+ 35.36217605914678
+ ],
+ [
+ 103.60107421874999,
+ 34.06176136129718
+ ],
+ [
+ 102.315673828125,
+ 34.06176136129718
+ ]
+ ]
+ ]
+ }
+ }
+]
\ No newline at end of file
diff --git a/packages/turf-difference/test/fixtures/in/Intersect1.geojson b/packages/turf-difference/test/fixtures/in/Intersect1.geojson
new file mode 100644
index 0000000000..e15ae79719
--- /dev/null
+++ b/packages/turf-difference/test/fixtures/in/Intersect1.geojson
@@ -0,0 +1,80 @@
+[
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.88571166992188,
+ 32.887659962078956
+ ],
+ [
+ -80.09788513183594,
+ 32.927436533285565
+ ],
+ [
+ -80.15350341796875,
+ 32.82825010814964
+ ],
+ [
+ -80.00312805175781,
+ 32.69428812316933
+ ],
+ [
+ -79.89395141601562,
+ 32.75551989829049
+ ],
+ [
+ -79.88571166992188,
+ 32.887659962078956
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.92141723632812,
+ 32.953944317478246
+ ],
+ [
+ -79.97428894042969,
+ 32.83690450361482
+ ],
+ [
+ -79.97360229492188,
+ 32.76071688548088
+ ],
+ [
+ -79.93034362792969,
+ 32.76475877693074
+ ],
+ [
+ -79.93789672851562,
+ 32.74108223150125
+ ],
+ [
+ -79.80537414550781,
+ 32.7231762754146
+ ],
+ [
+ -79.81773376464844,
+ 32.923402043498875
+ ],
+ [
+ -79.92141723632812,
+ 32.953944317478246
+ ]
+ ]
+ ]
+ }
+ }
+]
\ No newline at end of file
diff --git a/packages/turf-difference/test/fixtures/in/Intersect2.geojson b/packages/turf-difference/test/fixtures/in/Intersect2.geojson
new file mode 100644
index 0000000000..5d2de0c231
--- /dev/null
+++ b/packages/turf-difference/test/fixtures/in/Intersect2.geojson
@@ -0,0 +1,79 @@
+[{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.92141723632812,
+ 32.953944317478246
+ ],
+ [
+ -79.97428894042969,
+ 32.83690450361482
+ ],
+ [
+ -79.97360229492188,
+ 32.76071688548088
+ ],
+ [
+ -79.93034362792969,
+ 32.76475877693074
+ ],
+ [
+ -79.93789672851562,
+ 32.74108223150125
+ ],
+ [
+ -79.80537414550781,
+ 32.7231762754146
+ ],
+ [
+ -79.81773376464844,
+ 32.923402043498875
+ ],
+ [
+ -79.92141723632812,
+ 32.953944317478246
+ ]
+ ]
+ ]
+ }
+},
+{
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.10543823242188,
+ 32.94760622243483
+ ],
+ [
+ -80.14389038085938,
+ 32.8149783969858
+ ],
+ [
+ -80.07453918457031,
+ 32.85536439443039
+ ],
+ [
+ -79.99351501464844,
+ 32.84440429734253
+ ],
+ [
+ -79.98184204101562,
+ 32.90495631913751
+ ],
+ [
+ -80.10543823242188,
+ 32.94760622243483
+ ]
+ ]
+ ]
+ }
+}
+]
diff --git a/packages/turf-difference/test/fixtures/in/erasedFC.geojson b/packages/turf-difference/test/fixtures/in/erasedFC.geojson
new file mode 100644
index 0000000000..00c2350db4
--- /dev/null
+++ b/packages/turf-difference/test/fixtures/in/erasedFC.geojson
@@ -0,0 +1,104 @@
+[
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -97.393798828125,
+ 40.55554790286311
+ ],
+ [
+ -97.086181640625,
+ 37.80544394934274
+ ],
+ [
+ -94.801025390625,
+ 37.56199695314352
+ ],
+ [
+ -94.50439453125,
+ 39.11301365149975
+ ],
+ [
+ -94.98779296875,
+ 41.27780646738183
+ ],
+ [
+ -97.042236328125,
+ 41.27780646738183
+ ],
+ [
+ -97.393798828125,
+ 40.55554790286311
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -99.261474609375,
+ 38.87392853923629
+ ],
+ [
+ -93.438720703125,
+ 38.659777730712534
+ ],
+ [
+ -93.109130859375,
+ 39.707186656826565
+ ],
+ [
+ -93.515625,
+ 40.36328834091583
+ ],
+ [
+ -94.141845703125,
+ 40.027614437486655
+ ],
+ [
+ -95.5810546875,
+ 39.86758762451019
+ ],
+ [
+ -96.35009765625,
+ 40.212440718286466
+ ],
+ [
+ -96.64672851562499,
+ 39.90973623453719
+ ],
+ [
+ -96.910400390625,
+ 40.22082997283284
+ ],
+ [
+ -97.174072265625,
+ 39.86758762451019
+ ],
+ [
+ -98.06396484375,
+ 40.212440718286466
+ ],
+ [
+ -99.525146484375,
+ 40.04443758460859
+ ],
+ [
+ -99.261474609375,
+ 38.87392853923629
+ ]
+ ]
+ ]
+ }
+ }
+]
\ No newline at end of file
diff --git a/packages/turf-difference/test/fixtures/in/erasedHole.geojson b/packages/turf-difference/test/fixtures/in/erasedHole.geojson
new file mode 100644
index 0000000000..6222c63d1e
--- /dev/null
+++ b/packages/turf-difference/test/fixtures/in/erasedHole.geojson
@@ -0,0 +1,72 @@
+[
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -110.74218749999999,
+ 42.06560675405716
+ ],
+ [
+ -113.75244140624999,
+ 42.08191667830631
+ ],
+ [
+ -114.3896484375,
+ 38.92522904714054
+ ],
+ [
+ -109.77539062499999,
+ 38.28131307922969
+ ],
+ [
+ -108.358154296875,
+ 41.42625319507272
+ ],
+ [
+ -110.74218749999999,
+ 42.06560675405716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -110.61035156249999,
+ 41.343824581185686
+ ],
+ [
+ -112.928466796875,
+ 41.21172151054787
+ ],
+ [
+ -113.115234375,
+ 39.45316112807394
+ ],
+ [
+ -111.28051757812499,
+ 39.605688178320804
+ ],
+ [
+ -111.719970703125,
+ 40.3130432088809
+ ],
+ [
+ -110.61035156249999,
+ 41.343824581185686
+ ]
+ ]
+ ]
+ }
+ }
+]
diff --git a/packages/turf-difference/test/fixtures/out/Intersect1.geojson b/packages/turf-difference/test/fixtures/out/Intersect1.geojson
new file mode 100644
index 0000000000..d14b8587c9
--- /dev/null
+++ b/packages/turf-difference/test/fixtures/out/Intersect1.geojson
@@ -0,0 +1 @@
+{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-79.92322780260464,32.73910022106017],[-80.00312805175781,32.69428812316933],[-80.15350341796875,32.82825010814964],[-80.09788513183594,32.927436533285565],[-79.94623496447946,32.89900638172028],[-79.97428894042969,32.83690450361482],[-79.97360229492188,32.76071688548088],[-79.93034362792969,32.76475877693074],[-79.93789672851562,32.74108223150125],[-79.92322780260464,32.73910022106017]]]}}
\ No newline at end of file
diff --git a/packages/turf-difference/test/fixtures/out/Intersect2.geojson b/packages/turf-difference/test/fixtures/out/Intersect2.geojson
new file mode 100644
index 0000000000..3cf717a0f3
--- /dev/null
+++ b/packages/turf-difference/test/fixtures/out/Intersect2.geojson
@@ -0,0 +1 @@
+{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-79.92141723632812,32.953944317478246],[-79.81773376464844,32.923402043498875],[-79.80537414550781,32.7231762754146],[-79.93789672851562,32.74108223150125],[-79.93034362792969,32.76475877693074],[-79.97360229492188,32.76071688548088],[-79.97428894042969,32.83690450361482],[-79.92141723632812,32.953944317478246]]]}}
\ No newline at end of file
diff --git a/packages/turf-difference/test/fixtures/out/erasedFC.geojson b/packages/turf-difference/test/fixtures/out/erasedFC.geojson
new file mode 100644
index 0000000000..3dd7b28ae0
--- /dev/null
+++ b/packages/turf-difference/test/fixtures/out/erasedFC.geojson
@@ -0,0 +1 @@
+{"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-97.32331517009212,39.925422557169234],[-97.393798828125,40.55554790286311],[-97.042236328125,41.27780646738183],[-94.98779296875,41.27780646738183],[-94.69489339601552,39.96612061645156],[-95.5810546875,39.86758762451019],[-96.35009765625,40.212440718286466],[-96.64672851562499,39.90973623453719],[-96.910400390625,40.22082997283284],[-97.174072265625,39.86758762451019],[-97.32331517009212,39.925422557169234]]],[[[-94.5830267436204,38.70186332589932],[-94.801025390625,37.56199695314352],[-97.086181640625,37.80544394934274],[-97.1972064850395,38.79800833121208],[-94.5830267436204,38.70186332589932]]]]}}
\ No newline at end of file
diff --git a/packages/turf-difference/test/fixtures/out/erasedHole.geojson b/packages/turf-difference/test/fixtures/out/erasedHole.geojson
new file mode 100644
index 0000000000..71315bf3ee
--- /dev/null
+++ b/packages/turf-difference/test/fixtures/out/erasedHole.geojson
@@ -0,0 +1 @@
+{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-110.74218749999999,42.06560675405716],[-108.358154296875,41.42625319507272],[-109.77539062499999,38.28131307922969],[-114.3896484375,38.92522904714054],[-113.75244140624999,42.08191667830631],[-110.74218749999999,42.06560675405716]],[[-110.61035156249999,41.343824581185686],[-112.928466796875,41.21172151054787],[-113.115234375,39.45316112807394],[-111.28051757812499,39.605688178320804],[-111.719970703125,40.3130432088809],[-110.61035156249999,41.343824581185686]]]}}
\ No newline at end of file
diff --git a/packages/turf-difference/test/test.js b/packages/turf-difference/test/test.js
new file mode 100644
index 0000000000..772b92f9bd
--- /dev/null
+++ b/packages/turf-difference/test/test.js
@@ -0,0 +1,50 @@
+var difference = require('../'),
+ test = require('tape'),
+ glob = require('glob'),
+ fs = require('fs');
+
+var REGEN = process.env.REGEN;
+
+test('difference', function(t){
+ glob.sync(__dirname + '/fixtures/in/*.geojson').forEach(function(input) {
+ var features = JSON.parse(fs.readFileSync(input));
+ var before = JSON.parse(JSON.stringify(features));
+ var output = difference(features[0], features[1]);
+ if (REGEN) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output));
+ t.deepEqual(before, features, 'does not mutate data');
+ t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input);
+ });
+ t.end();
+});
+
+test('difference -- geometries', function(t){
+ glob.sync(__dirname + '/fixtures/in/*.geojson').forEach(function(input) {
+ var fcs = JSON.parse(fs.readFileSync(input));
+ var before = JSON.parse(JSON.stringify(fcs));
+ var output = difference(fcs[0].geometry, fcs[1].geometry);
+ if (REGEN) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output));
+ t.deepEqual(before, fcs, 'does not mutate data');
+ t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input);
+ });
+ t.end();
+});
+
+test('difference -- geometries', function(t){
+ glob.sync(__dirname + '/fixtures/in/*.geojson').forEach(function(input) {
+ var fcs = JSON.parse(fs.readFileSync(input));
+ var before = JSON.parse(JSON.stringify(fcs));
+ var output = difference(fcs[0].geometry, fcs[1].geometry);
+ if (REGEN) fs.writeFileSync(input.replace('/in/', '/out/'), JSON.stringify(output));
+ t.deepEqual(before, fcs, 'does not mutate data');
+ t.deepEqual(output, JSON.parse(fs.readFileSync(input.replace('/in/', '/out/'))), input);
+ });
+ t.end();
+});
+
+test('difference -- empty set', function(t) {
+ var polys = JSON.parse(fs.readFileSync(__dirname+'/fixtures/full.geojson'));
+ var result = difference(polys[1], polys[0]);
+ t.deepEqual(result, undefined);
+ t.notOk(result);
+ t.end();
+});
diff --git a/packages/turf-distance/.npmignore b/packages/turf-distance/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-distance/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-distance/LICENSE b/packages/turf-distance/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-distance/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-distance/README.md b/packages/turf-distance/README.md
new file mode 100644
index 0000000000..1e6b1852ca
--- /dev/null
+++ b/packages/turf-distance/README.md
@@ -0,0 +1,75 @@
+# turf-distance
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-distance.png)](http://travis-ci.org/Turfjs/turf-distance)
+
+turf distance module
+
+
+### `turf.distance(from, to, [units=kilometers])`
+
+Calculates the distance between two Point|points in degrees, radians,
+miles, or kilometers. This uses the
+[Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula)
+to account for global curvature.
+
+
+### Parameters
+
+| parameter | type | description |
+| -------------------- | ------------------ | --------------------------------------------------------- |
+| `from` | Feature\.\ | origin point |
+| `to` | Feature\.\ | destination point |
+| `[units=kilometers]` | String | _optional:_ can be degrees, radians, miles, or kilometers |
+
+
+### Example
+
+```js
+var point1 = {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75.343, 39.984]
+ }
+};
+var point2 = {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75.534, 39.123]
+ }
+};
+var units = "miles";
+
+var points = {
+ "type": "FeatureCollection",
+ "features": [point1, point2]
+};
+
+//=points
+
+var distance = turf.distance(point1, point2, units);
+
+//=distance
+```
+
+
+**Returns** `Number`, distance between the two points
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-distance
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-distance/bench.js b/packages/turf-distance/bench.js
new file mode 100644
index 0000000000..8acf490ea1
--- /dev/null
+++ b/packages/turf-distance/bench.js
@@ -0,0 +1,25 @@
+var distance = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var pt1 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.4, 39.4]}
+ };
+var pt2 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.534, 39.123]}
+};
+
+var suite = new Benchmark.Suite('turf-distance');
+suite
+ .add('turf-distance',function () {
+ distance(pt1, pt2, 'miles');
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-distance/index.js b/packages/turf-distance/index.js
new file mode 100644
index 0000000000..ed4e9f5ff9
--- /dev/null
+++ b/packages/turf-distance/index.js
@@ -0,0 +1,61 @@
+var getCoord = require('turf-invariant').getCoord;
+var radiansToDistance = require('turf-helpers').radiansToDistance;
+//http://en.wikipedia.org/wiki/Haversine_formula
+//http://www.movable-type.co.uk/scripts/latlong.html
+
+/**
+ * Calculates the distance between two {@link Point|points} in degrees, radians,
+ * miles, or kilometers. This uses the
+ * [Haversine formula](http://en.wikipedia.org/wiki/Haversine_formula)
+ * to account for global curvature.
+ *
+ * @name distance
+ * @category measurement
+ * @param {Feature} from origin point
+ * @param {Feature} to destination point
+ * @param {String} [units=kilometers] can be degrees, radians, miles, or kilometers
+ * @return {Number} distance between the two points
+ * @example
+ * var point1 = {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-75.343, 39.984]
+ * }
+ * };
+ * var point2 = {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-75.534, 39.123]
+ * }
+ * };
+ * var units = "miles";
+ *
+ * var points = {
+ * "type": "FeatureCollection",
+ * "features": [point1, point2]
+ * };
+ *
+ * //=points
+ *
+ * var distance = turf.distance(point1, point2, units);
+ *
+ * //=distance
+ */
+module.exports = function (point1, point2, units) {
+ var degrees2radians = Math.PI / 180;
+ var coordinates1 = getCoord(point1);
+ var coordinates2 = getCoord(point2);
+ var dLat = degrees2radians * (coordinates2[1] - coordinates1[1]);
+ var dLon = degrees2radians * (coordinates2[0] - coordinates1[0]);
+ var lat1 = degrees2radians * coordinates1[1];
+ var lat2 = degrees2radians * coordinates2[1];
+
+ var a = Math.pow(Math.sin(dLat / 2), 2) +
+ Math.pow(Math.sin(dLon / 2), 2) * Math.cos(lat1) * Math.cos(lat2);
+
+ return radiansToDistance(2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)), units);
+};
diff --git a/packages/turf-distance/package.json b/packages/turf-distance/package.json
new file mode 100644
index 0000000000..3613cc0e62
--- /dev/null
+++ b/packages/turf-distance/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "turf-distance",
+ "version": "3.0.5",
+ "description": "turf distance module",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-distance.git"
+ },
+ "keywords": [
+ "turf",
+ "distance",
+ "miles",
+ "km"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-distance/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-distance",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0"
+ },
+ "dependencies": {
+ "turf-invariant": "^3.0.1",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-distance/test.js b/packages/turf-distance/test.js
new file mode 100644
index 0000000000..c2b24a9ea3
--- /dev/null
+++ b/packages/turf-distance/test.js
@@ -0,0 +1,27 @@
+var test = require('tape');
+var distance = require('./');
+
+test('distance', function(t){
+ var pt1 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.343, 39.984]}
+ };
+ var pt2 = {
+ type: "Feature",
+ geometry: {type: "Point", coordinates: [-75.534, 39.123]}
+ };
+
+ t.equal(distance(pt1, pt2, 'miles'), 60.37218405837491, 'miles');
+ t.equal(distance(pt1, pt2, 'nauticalmiles'), 52.461979624130436, 'miles');
+ t.equal(distance(pt1, pt2, 'kilometers'), 97.15957803131901, 'kilometers');
+ t.equal(distance(pt1, pt2, 'kilometres'), 97.15957803131901, 'kilometres');
+ t.equal(distance(pt1, pt2, 'radians'), 0.015245501024842149, 'radians');
+ t.equal(distance(pt1, pt2, 'degrees'), 0.8735028650863799, 'degrees');
+ t.equal(distance(pt1, pt2), 97.15957803131901, 'default=kilometers');
+
+ t.throws(function() {
+ distance(pt1, pt2, 'blah');
+ }, 'unknown option given to units');
+
+ t.end();
+});
diff --git a/packages/turf-envelope/.npmignore b/packages/turf-envelope/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-envelope/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-envelope/LICENSE b/packages/turf-envelope/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-envelope/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-envelope/README.md b/packages/turf-envelope/README.md
new file mode 100644
index 0000000000..c15bb13910
--- /dev/null
+++ b/packages/turf-envelope/README.md
@@ -0,0 +1,85 @@
+# turf-envelope
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-envelope.png)](http://travis-ci.org/Turfjs/turf-envelope)
+
+turf envelope module
+
+
+### `turf.envelope(fc)`
+
+Takes any number of features and returns a rectangular Polygon that encompasses all vertices.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | ----------------- | -------------- |
+| `fc` | FeatureCollection | input features |
+
+
+### Example
+
+```js
+var fc = {
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {
+ "name": "Location A"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75.343, 39.984]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {
+ "name": "Location B"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75.833, 39.284]
+ }
+ }, {
+ "type": "Feature",
+ "properties": {
+ "name": "Location C"
+ },
+ "geometry": {
+ "type": "Point",
+ "coordinates": [-75.534, 39.123]
+ }
+ }
+ ]
+};
+
+var enveloped = turf.envelope(fc);
+
+var resultFeatures = fc.features.concat(enveloped);
+var result = {
+ "type": "FeatureCollection",
+ "features": resultFeatures
+};
+
+//=result
+```
+
+
+**Returns** `Feature.`, a rectangular Polygon feature that encompasses all vertices
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-envelope
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-envelope/bench.js b/packages/turf-envelope/bench.js
new file mode 100644
index 0000000000..70304c163c
--- /dev/null
+++ b/packages/turf-envelope/bench.js
@@ -0,0 +1,17 @@
+var envelope = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var fixture = require('./test/fc.js');
+var suite = new Benchmark.Suite('turf-envelope');
+suite
+ .add('turf-envelope',function () {
+ envelope(fixture);
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
diff --git a/packages/turf-envelope/index.js b/packages/turf-envelope/index.js
new file mode 100644
index 0000000000..736a35c410
--- /dev/null
+++ b/packages/turf-envelope/index.js
@@ -0,0 +1,59 @@
+var bbox = require('turf-bbox');
+var bboxPolygon = require('turf-bbox-polygon');
+
+/**
+ * Takes any number of features and returns a rectangular {@link Polygon} that encompasses all vertices.
+ *
+ * @name envelope
+ * @category measurement
+ * @param {FeatureCollection} fc input features
+ * @return {Feature} a rectangular Polygon feature that encompasses all vertices
+ * @example
+ * var fc = {
+ * "type": "FeatureCollection",
+ * "features": [
+ * {
+ * "type": "Feature",
+ * "properties": {
+ * "name": "Location A"
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-75.343, 39.984]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {
+ * "name": "Location B"
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-75.833, 39.284]
+ * }
+ * }, {
+ * "type": "Feature",
+ * "properties": {
+ * "name": "Location C"
+ * },
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [-75.534, 39.123]
+ * }
+ * }
+ * ]
+ * };
+ *
+ * var enveloped = turf.envelope(fc);
+ *
+ * var resultFeatures = fc.features.concat(enveloped);
+ * var result = {
+ * "type": "FeatureCollection",
+ * "features": resultFeatures
+ * };
+ *
+ * //=result
+ */
+
+module.exports = function (features) {
+ return bboxPolygon(bbox(features));
+};
diff --git a/packages/turf-envelope/package.json b/packages/turf-envelope/package.json
new file mode 100644
index 0000000000..f1a4b8a140
--- /dev/null
+++ b/packages/turf-envelope/package.json
@@ -0,0 +1,34 @@
+{
+ "name": "turf-envelope",
+ "version": "3.0.5",
+ "description": "turf envelope module",
+ "main": "index.js",
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-envelope.git"
+ },
+ "keywords": [
+ "turf",
+ "geojson",
+ "envelope",
+ "polygon",
+ "extent"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-envelope/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-envelope",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0"
+ },
+ "dependencies": {
+ "turf-bbox-polygon": "^3.0.5",
+ "turf-bbox": "^3.0.1"
+ }
+}
diff --git a/packages/turf-envelope/test.js b/packages/turf-envelope/test.js
new file mode 100644
index 0000000000..66a30b242c
--- /dev/null
+++ b/packages/turf-envelope/test.js
@@ -0,0 +1,13 @@
+var test = require('tape');
+var envelope = require('./');
+var fc = require('./test/geojson/fc.json');
+
+test('envelope', function(t){
+ var enveloped = envelope(fc);
+ t.ok(enveloped, 'should return a polygon that represents the bbox around a feature or feature collection');
+ t.equal(enveloped.geometry.type, 'Polygon');
+ t.deepEqual(enveloped.geometry.coordinates,
+ [ [ [ 20, -10 ], [ 130, -10 ], [ 130, 4 ], [ 20, 4 ], [ 20, -10 ] ] ] ,
+ 'positions are correct');
+ t.end();
+})
diff --git a/packages/turf-envelope/test/geojson/fc.json b/packages/turf-envelope/test/geojson/fc.json
new file mode 100644
index 0000000000..c188ff28b5
--- /dev/null
+++ b/packages/turf-envelope/test/geojson/fc.json
@@ -0,0 +1,39 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [102.0, 0.5]
+ },
+ "properties": {
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "LineString",
+ "coordinates": [
+ [102.0, -10.0], [103.0, 1.0], [104.0, 0.0], [130.0, 4.0]
+ ]
+ },
+ "properties": {
+ }
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [20.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0],
+ [100.0, 0.0]
+ ]
+ ]
+ },
+ "properties": {
+ }
+ }
+ ]
+}
diff --git a/packages/turf-explode/.npmignore b/packages/turf-explode/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-explode/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-explode/LICENSE b/packages/turf-explode/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-explode/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-explode/README.md b/packages/turf-explode/README.md
new file mode 100644
index 0000000000..f132de62f1
--- /dev/null
+++ b/packages/turf-explode/README.md
@@ -0,0 +1,65 @@
+# turf-explode
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-explode.png)](http://travis-ci.org/Turfjs/turf-explode)
+
+turf explode module
+
+
+### `turf.explode(input)`
+
+Takes a feature or set of features and returns all positions as
+Point|points.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | -------------------------- | -------------- |
+| `input` | Feature\,FeatureCollection | input features |
+
+
+### Example
+
+```js
+var poly = {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [[
+ [177.434692, -17.77517],
+ [177.402076, -17.779093],
+ [177.38079, -17.803937],
+ [177.40242, -17.826164],
+ [177.438468, -17.824857],
+ [177.454948, -17.796746],
+ [177.434692, -17.77517]
+ ]]
+ }
+};
+
+var points = turf.explode(poly);
+
+//=poly
+
+//=points
+```
+
+
+**Returns** `FeatureCollection.`, points representing the exploded input features
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-explode
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-explode/bench.js b/packages/turf-explode/bench.js
new file mode 100644
index 0000000000..c6c7673979
--- /dev/null
+++ b/packages/turf-explode/bench.js
@@ -0,0 +1,26 @@
+global.explode = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+var polygon = require('turf-helpers').polygon;
+var point = require('turf-helpers').point;
+var featurecollection = require('turf-helpers').featureCollection;
+
+global.poly = polygon([[[0,0], [0,10], [10,10] , [10,0]]]);
+var p1 = point(0,0),
+ p2 = point(0,10),
+ p3 = point(10,10),
+ p4 = point(10,0);
+var fc = featurecollection([p1,p2,p3,p4]);
+
+var suite = new Benchmark.Suite('turf-explode');
+suite
+ .add('turf-explode',function () {
+ global.explode(global.poly);
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
diff --git a/packages/turf-explode/index.js b/packages/turf-explode/index.js
new file mode 100644
index 0000000000..336b691c04
--- /dev/null
+++ b/packages/turf-explode/index.js
@@ -0,0 +1,44 @@
+var featureCollection = require('turf-helpers').featureCollection;
+var each = require('turf-meta').coordEach;
+var point = require('turf-helpers').point;
+
+/**
+ * Takes a feature or set of features and returns all positions as
+ * {@link Point|points}.
+ *
+ * @name explode
+ * @category misc
+ * @param {(Feature|FeatureCollection)} input input features
+ * @return {FeatureCollection} points representing the exploded input features
+ * @throws {Error} if it encounters an unknown geometry type
+ * @example
+ * var poly = {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Polygon",
+ * "coordinates": [[
+ * [177.434692, -17.77517],
+ * [177.402076, -17.779093],
+ * [177.38079, -17.803937],
+ * [177.40242, -17.826164],
+ * [177.438468, -17.824857],
+ * [177.454948, -17.796746],
+ * [177.434692, -17.77517]
+ * ]]
+ * }
+ * };
+ *
+ * var points = turf.explode(poly);
+ *
+ * //=poly
+ *
+ * //=points
+ */
+module.exports = function (layer) {
+ var points = [];
+ each(layer, function (coord) {
+ points.push(point(coord));
+ });
+ return featureCollection(points);
+};
diff --git a/packages/turf-explode/package.json b/packages/turf-explode/package.json
new file mode 100644
index 0000000000..c441a9322c
--- /dev/null
+++ b/packages/turf-explode/package.json
@@ -0,0 +1,35 @@
+{
+ "name": "turf-explode",
+ "version": "3.0.5",
+ "description": "turf explode module",
+ "main": "index.js",
+ "scripts": {
+ "test": "node test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-explode.git"
+ },
+ "keywords": [
+ "turf",
+ "geojson",
+ "geospatial",
+ "coordinates"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-explode/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-explode",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0",
+ "geojson-fixtures": "^0.6.1",
+ "turf-helpers": "^3.0.5"
+ },
+ "dependencies": {
+ "turf-meta": "^3.0.1",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-explode/test.js b/packages/turf-explode/test.js
new file mode 100644
index 0000000000..a99652fe46
--- /dev/null
+++ b/packages/turf-explode/test.js
@@ -0,0 +1,2 @@
+var geojsonFixtures = require('geojson-fixtures/helper');
+geojsonFixtures(require('tape'), 'all', require('./'), __dirname + '/test');
diff --git a/packages/turf-explode/test/geometrycollection-0-0.output.json b/packages/turf-explode/test/geometrycollection-0-0.output.json
new file mode 100644
index 0000000000..5acec8ccbe
--- /dev/null
+++ b/packages/turf-explode/test/geometrycollection-0-0.output.json
@@ -0,0 +1,38 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 1
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/geometrycollection-xyz-0-6.output.json b/packages/turf-explode/test/geometrycollection-xyz-0-6.output.json
new file mode 100644
index 0000000000..366c5db71b
--- /dev/null
+++ b/packages/turf-explode/test/geometrycollection-xyz-0-6.output.json
@@ -0,0 +1,41 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0,
+ 3
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0,
+ 5
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 1,
+ 8
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/multilinestring-0-5.output.json b/packages/turf-explode/test/multilinestring-0-5.output.json
new file mode 100644
index 0000000000..5628e411a7
--- /dev/null
+++ b/packages/turf-explode/test/multilinestring-0-5.output.json
@@ -0,0 +1,49 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103,
+ 3
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/multilinestring-xyz-0-11.output.json b/packages/turf-explode/test/multilinestring-xyz-0-11.output.json
new file mode 100644
index 0000000000..d211f685cf
--- /dev/null
+++ b/packages/turf-explode/test/multilinestring-xyz-0-11.output.json
@@ -0,0 +1,53 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0,
+ 5.2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1,
+ 8.1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 2,
+ 2.3
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103,
+ 3,
+ 7.4
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/multipoint-0-3.output.json b/packages/turf-explode/test/multipoint-0-3.output.json
new file mode 100644
index 0000000000..f010fb6dcc
--- /dev/null
+++ b/packages/turf-explode/test/multipoint-0-3.output.json
@@ -0,0 +1,27 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/multipoint-xyz-0-9.output.json b/packages/turf-explode/test/multipoint-xyz-0-9.output.json
new file mode 100644
index 0000000000..e706fbe5db
--- /dev/null
+++ b/packages/turf-explode/test/multipoint-xyz-0-9.output.json
@@ -0,0 +1,29 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1,
+ 2
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/multipolygon-0-4.output.json b/packages/turf-explode/test/multipolygon-0-4.output.json
new file mode 100644
index 0000000000..aa73be72e4
--- /dev/null
+++ b/packages/turf-explode/test/multipolygon-0-4.output.json
@@ -0,0 +1,170 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103,
+ 2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103,
+ 3
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 3
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.2,
+ 0.2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.8,
+ 0.2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.8,
+ 0.8
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.2,
+ 0.8
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.2,
+ 0.2
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/multipolygon-xyz-0-10.output.json b/packages/turf-explode/test/multipolygon-xyz-0-10.output.json
new file mode 100644
index 0000000000..1087e85490
--- /dev/null
+++ b/packages/turf-explode/test/multipolygon-xyz-0-10.output.json
@@ -0,0 +1,185 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 2,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103,
+ 2,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103,
+ 3,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 3,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 2,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0,
+ 2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0,
+ 2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1,
+ 2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 1,
+ 2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0,
+ 2
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.2,
+ 0.2,
+ 3
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.8,
+ 0.2,
+ 3
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.8,
+ 0.8,
+ 3
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.2,
+ 0.8,
+ 3
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100.2,
+ 0.2,
+ 3
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/one-1-0.output.json b/packages/turf-explode/test/one-1-0.output.json
new file mode 100644
index 0000000000..f1a8c25c51
--- /dev/null
+++ b/packages/turf-explode/test/one-1-0.output.json
@@ -0,0 +1,115 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 0.5
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 102,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 103,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 104,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 105,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/one-2-0.output.json b/packages/turf-explode/test/one-2-0.output.json
new file mode 100644
index 0000000000..8ba79a3db4
--- /dev/null
+++ b/packages/turf-explode/test/one-2-0.output.json
@@ -0,0 +1,60 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/point-0-2.output.json b/packages/turf-explode/test/point-0-2.output.json
new file mode 100644
index 0000000000..c828e4ad65
--- /dev/null
+++ b/packages/turf-explode/test/point-0-2.output.json
@@ -0,0 +1,16 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/point-xyz-0-8.output.json b/packages/turf-explode/test/point-xyz-0-8.output.json
new file mode 100644
index 0000000000..b7394ff53b
--- /dev/null
+++ b/packages/turf-explode/test/point-xyz-0-8.output.json
@@ -0,0 +1,17 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0,
+ 1
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/polygon-0-1.output.json b/packages/turf-explode/test/polygon-0-1.output.json
new file mode 100644
index 0000000000..8ba79a3db4
--- /dev/null
+++ b/packages/turf-explode/test/polygon-0-1.output.json
@@ -0,0 +1,60 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-explode/test/polygon-xyz-0-7.output.json b/packages/turf-explode/test/polygon-xyz-0-7.output.json
new file mode 100644
index 0000000000..445b4e41b7
--- /dev/null
+++ b/packages/turf-explode/test/polygon-xyz-0-7.output.json
@@ -0,0 +1,64 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 0
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 101,
+ 1,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 1,
+ 1
+ ]
+ },
+ "properties": {}
+ },
+ {
+ "type": "Feature",
+ "geometry": {
+ "type": "Point",
+ "coordinates": [
+ 100,
+ 0,
+ 1
+ ]
+ },
+ "properties": {}
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-flip/.npmignore b/packages/turf-flip/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-flip/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-flip/LICENSE b/packages/turf-flip/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-flip/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-flip/README.md b/packages/turf-flip/README.md
new file mode 100644
index 0000000000..b7f4a0b115
--- /dev/null
+++ b/packages/turf-flip/README.md
@@ -0,0 +1,57 @@
+# turf-flip
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-flip.png)](http://travis-ci.org/Turfjs/turf-flip)
+
+turf flip module
+
+
+### `turf.flip(input)`
+
+Takes input features and flips all of their coordinates
+from `[x, y]` to `[y, x]`.
+
+
+### Parameters
+
+| parameter | type | description |
+| --------- | -------------------------- | -------------- |
+| `input` | Feature\,FeatureCollection | input features |
+
+
+### Example
+
+```js
+var serbia = {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Point",
+ "coordinates": [20.566406, 43.421008]
+ }
+};
+
+//=serbia
+
+var saudiArabia = turf.flip(serbia);
+
+//=saudiArabia
+```
+
+
+**Returns** `Feature,FeatureCollection`, a feature or set of features of the same type as `input` with flipped coordinates
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-flip
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-flip/bench.js b/packages/turf-flip/bench.js
new file mode 100644
index 0000000000..00cb159095
--- /dev/null
+++ b/packages/turf-flip/bench.js
@@ -0,0 +1,36 @@
+var flip = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+var point = require('turf-helpers').point;
+var linestring = require('turf-helpers').lineString;
+var polygon = require('turf-helpers').polygon;
+var featurecollection = require('turf-helpers').featureCollection;
+
+var pt = point(1,0);
+var line = linestring([[1,0], [1,0]]);
+var poly = polygon([[[1,0], [1,0], [1,2]], [[.2,.2], [.3,.3],[.1,.2]]]);
+var pt1 = point(1,0);
+var pt2 = point(1,0);
+var fc = featurecollection([pt1, pt2]);
+
+var suite = new Benchmark.Suite('turf-flip');
+suite
+ .add('turf-flip#Point',function () {
+ flip(pt);
+ })
+ .add('turf-flip#LineString',function () {
+ flip(line);
+ })
+ .add('turf-flip#Polygon',function () {
+ flip(poly);
+ })
+ .add('turf-flip#FeatureCollection',function () {
+ flip(fc);
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-flip/index.js b/packages/turf-flip/index.js
new file mode 100644
index 0000000000..942286dd4a
--- /dev/null
+++ b/packages/turf-flip/index.js
@@ -0,0 +1,37 @@
+var coordEach = require('turf-meta').coordEach;
+
+/**
+ * Takes input features and flips all of their coordinates
+ * from `[x, y]` to `[y, x]`.
+ *
+ * @name flip
+ * @category misc
+ * @param {(Feature|FeatureCollection)} input input features
+ * @returns {(Feature|FeatureCollection)} a feature or set of features of the same type as `input` with flipped coordinates
+ * @example
+ * var serbia = {
+ * "type": "Feature",
+ * "properties": {},
+ * "geometry": {
+ * "type": "Point",
+ * "coordinates": [20.566406, 43.421008]
+ * }
+ * };
+ *
+ * //=serbia
+ *
+ * var saudiArabia = turf.flip(serbia);
+ *
+ * //=saudiArabia
+ */
+module.exports = function flip(input) {
+ // ensure that we don't modify features in-place and changes to the
+ // output do not change the previous feature, including changes to nested
+ // properties.
+ input = JSON.parse(JSON.stringify(input));
+
+ coordEach(input, function (coord) {
+ coord.reverse();
+ });
+ return input;
+};
diff --git a/packages/turf-flip/package.json b/packages/turf-flip/package.json
new file mode 100644
index 0000000000..bca496a667
--- /dev/null
+++ b/packages/turf-flip/package.json
@@ -0,0 +1,33 @@
+{
+ "name": "turf-flip",
+ "version": "3.0.5",
+ "description": "turf flip module",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-flip.git"
+ },
+ "keywords": [
+ "turf",
+ "geojson",
+ "coordinate",
+ "flip"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-flip/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-flip",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0",
+ "turf-helpers": "^3.0.5"
+ },
+ "dependencies": {
+ "turf-meta": "^3.0.1"
+ }
+}
diff --git a/packages/turf-flip/test.js b/packages/turf-flip/test.js
new file mode 100644
index 0000000000..7b9b26971d
--- /dev/null
+++ b/packages/turf-flip/test.js
@@ -0,0 +1,63 @@
+var test = require('tape');
+var flip = require('./');
+var point = require('turf-helpers').point;
+var linestring = require('turf-helpers').lineString;
+var polygon = require('turf-helpers').polygon;
+var featurecollection = require('turf-helpers').featureCollection;
+
+test('flip', function (t) {
+ // Point Geometry
+ var pt = point([1, 0]);
+ var flippedPt = flip(pt.geometry);
+ t.equal(flippedPt.coordinates[0], 0);
+ t.equal(flippedPt.coordinates[1], 1);
+
+ t.equal(pt.geometry.coordinates[0], 1, 'does not mutate original');
+ t.equal(pt.geometry.coordinates[1], 0, 'does not mutate original');
+
+ // Point
+ var pt2 = point([1, 0]);
+ var flippedPt2 = flip(pt2);
+
+ t.ok(flippedPt2, 'should flip a point coordinate');
+ t.equal(flippedPt2.geometry.coordinates[0], 0);
+ t.equal(flippedPt2.geometry.coordinates[1], 1);
+
+ // Line
+ var line = linestring([[1, 0], [1, 0]]);
+ var flippedLine = flip(line);
+
+ t.ok(flippedLine, 'should flip the x and ys of a linestring');
+ t.equal(flippedLine.geometry.coordinates[0][0], 0);
+ t.equal(flippedLine.geometry.coordinates[0][1], 1);
+ t.equal(flippedLine.geometry.coordinates[1][0], 0);
+ t.equal(flippedLine.geometry.coordinates[1][1], 1);
+
+ // Polygon
+ var poly = polygon([[[1, 0], [1, 0], [1, 2], [1, 0]], [[.2, .2], [.3, .3], [.1, .2], [1, 0], [.2, .2]]]);
+ var flippedPoly = flip(poly);
+
+ t.ok(flippedPoly, 'should flip the x and ys of a polygon');
+ t.equal(flippedPoly.geometry.coordinates[0][0][0], 0);
+ t.equal(flippedPoly.geometry.coordinates[0][0][1], 1);
+ t.equal(flippedPoly.geometry.coordinates[0][1][0], 0);
+ t.equal(flippedPoly.geometry.coordinates[0][1][1], 1);
+ t.equal(flippedPoly.geometry.coordinates[0][2][0], 2);
+ t.equal(flippedPoly.geometry.coordinates[0][2][1], 1);
+ t.equal(flippedPoly.geometry.coordinates[1][2][0], 0.2);
+ t.equal(flippedPoly.geometry.coordinates[1][2][1], 0.1);
+
+ // FeatureCollection
+ var pt3 = point([1, 0]);
+ var pt4 = point([1, 0]);
+ var fc = featurecollection([pt3, pt4]);
+ var flippedFC = flip(fc);
+
+ t.ok(flippedFC, 'should flip the x and ys of a featurecollection');
+ t.equal(flippedFC.features[0].geometry.coordinates[0], 0);
+ t.equal(flippedFC.features[0].geometry.coordinates[1], 1);
+ t.equal(flippedFC.features[1].geometry.coordinates[0], 0);
+ t.equal(flippedFC.features[1].geometry.coordinates[1], 1);
+
+ t.end();
+});
diff --git a/packages/turf-helpers/.npmignore b/packages/turf-helpers/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-helpers/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-helpers/CHANGELOG.md b/packages/turf-helpers/CHANGELOG.md
new file mode 100644
index 0000000000..f00ee88adb
--- /dev/null
+++ b/packages/turf-helpers/CHANGELOG.md
@@ -0,0 +1,3 @@
+# 2.0.0
+
+* Only accept `[x, y]` arrays, not as arguments
diff --git a/packages/turf-helpers/LICENSE b/packages/turf-helpers/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-helpers/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-helpers/README.md b/packages/turf-helpers/README.md
new file mode 100644
index 0000000000..2d0af2c569
--- /dev/null
+++ b/packages/turf-helpers/README.md
@@ -0,0 +1,46 @@
+# turf-point
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-point.png)](http://travis-ci.org/Turfjs/turf-point)
+
+turf point module
+
+
+### `turf.point(coordinates, properties)`
+
+Takes coordinates and properties (optional) and returns a new Point feature.
+
+
+### Parameters
+
+| parameter | type | description |
+| ------------- | ----------------- | -------------------------------------------------------------- |
+| `coordinates` | Array\.\ | longitude, latitude position (each in decimal degrees) |
+| `properties` | Object | _optional:_ an Object that is used as the Feature's properties |
+
+
+### Example
+
+```js
+var pt1 = turf.point([-75.343, 39.984]);
+
+//=pt1
+```
+
+
+**Returns** `Feature.`, a Point feature
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-point
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-helpers/bench.js b/packages/turf-helpers/bench.js
new file mode 100644
index 0000000000..2ec29b173e
--- /dev/null
+++ b/packages/turf-helpers/bench.js
@@ -0,0 +1,19 @@
+var point = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var suite = new Benchmark.Suite('turf-point');
+suite
+ .add('turf-point',function () {
+ point(5, 10, {name: 'test point'});
+ })
+ .add('turf-point#array',function () {
+ point(5, 10, {name: 'test point'});
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-helpers/index.js b/packages/turf-helpers/index.js
new file mode 100644
index 0000000000..9d7361bdca
--- /dev/null
+++ b/packages/turf-helpers/index.js
@@ -0,0 +1,331 @@
+/**
+ * Wraps a GeoJSON {@link Geometry} in a GeoJSON {@link Feature}.
+ *
+ * @name feature
+ * @category helper
+ * @param {Geometry} geometry input geometry
+ * @returns {FeatureCollection} a FeatureCollection of input features
+ * @example
+ * var geometry = {
+ * "type": "Point",
+ * "coordinates": [
+ * 67.5,
+ * 32.84267363195431
+ * ]
+ * }
+ *
+ * var feature = turf.feature(geometry);
+ *
+ * //=feature
+ */
+function feature(geometry, properties) {
+ return {
+ type: 'Feature',
+ properties: properties || {},
+ geometry: geometry
+ };
+}
+
+module.exports.feature = feature;
+
+/**
+ * Takes coordinates and properties (optional) and returns a new {@link Point} feature.
+ *
+ * @name point
+ * @category helper
+ * @param {Number[]} coordinates longitude, latitude position (each in decimal degrees)
+ * @param {Object=} properties an Object that is used as the {@link Feature}'s
+ * properties
+ * @returns {Feature} a Point feature
+ * @example
+ * var pt1 = turf.point([-75.343, 39.984]);
+ *
+ * //=pt1
+ */
+module.exports.point = function (coordinates, properties) {
+ if (!Array.isArray(coordinates)) throw new Error('Coordinates must be an array');
+ if (coordinates.length < 2) throw new Error('Coordinates must be at least 2 numbers long');
+ return feature({
+ type: 'Point',
+ coordinates: coordinates.slice()
+ }, properties);
+};
+
+/**
+ * Takes an array of LinearRings and optionally an {@link Object} with properties and returns a {@link Polygon} feature.
+ *
+ * @name polygon
+ * @category helper
+ * @param {Array>} rings an array of LinearRings
+ * @param {Object=} properties a properties object
+ * @returns {Feature} a Polygon feature
+ * @throws {Error} throw an error if a LinearRing of the polygon has too few positions
+ * or if a LinearRing of the Polygon does not have matching Positions at the
+ * beginning & end.
+ * @example
+ * var polygon = turf.polygon([[
+ * [-2.275543, 53.464547],
+ * [-2.275543, 53.489271],
+ * [-2.215118, 53.489271],
+ * [-2.215118, 53.464547],
+ * [-2.275543, 53.464547]
+ * ]], { name: 'poly1', population: 400});
+ *
+ * //=polygon
+ */
+module.exports.polygon = function (coordinates, properties) {
+
+ if (!coordinates) throw new Error('No coordinates passed');
+
+ for (var i = 0; i < coordinates.length; i++) {
+ var ring = coordinates[i];
+ for (var j = 0; j < ring[ring.length - 1].length; j++) {
+ if (ring.length < 4) {
+ throw new Error('Each LinearRing of a Polygon must have 4 or more Positions.');
+ }
+ if (ring[ring.length - 1][j] !== ring[0][j]) {
+ throw new Error('First and last Position are not equivalent.');
+ }
+ }
+ }
+
+ return feature({
+ type: 'Polygon',
+ coordinates: coordinates
+ }, properties);
+};
+
+/**
+ * Creates a {@link LineString} based on a
+ * coordinate array. Properties can be added optionally.
+ *
+ * @name lineString
+ * @category helper
+ * @param {Array>} coordinates an array of Positions
+ * @param {Object=} properties an Object of key-value pairs to add as properties
+ * @returns {Feature} a LineString feature
+ * @throws {Error} if no coordinates are passed
+ * @example
+ * var linestring1 = turf.lineString([
+ * [-21.964416, 64.148203],
+ * [-21.956176, 64.141316],
+ * [-21.93901, 64.135924],
+ * [-21.927337, 64.136673]
+ * ]);
+ * var linestring2 = turf.lineString([
+ * [-21.929054, 64.127985],
+ * [-21.912918, 64.134726],
+ * [-21.916007, 64.141016],
+ * [-21.930084, 64.14446]
+ * ], {name: 'line 1', distance: 145});
+ *
+ * //=linestring1
+ *
+ * //=linestring2
+ */
+module.exports.lineString = function (coordinates, properties) {
+ if (!coordinates) {
+ throw new Error('No coordinates passed');
+ }
+ return feature({
+ type: 'LineString',
+ coordinates: coordinates
+ }, properties);
+};
+
+/**
+ * Takes one or more {@link Feature|Features} and creates a {@link FeatureCollection}.
+ *
+ * @name featureCollection
+ * @category helper
+ * @param {Feature[]} features input features
+ * @returns {FeatureCollection} a FeatureCollection of input features
+ * @example
+ * var features = [
+ * turf.point([-75.343, 39.984], {name: 'Location A'}),
+ * turf.point([-75.833, 39.284], {name: 'Location B'}),
+ * turf.point([-75.534, 39.123], {name: 'Location C'})
+ * ];
+ *
+ * var fc = turf.featureCollection(features);
+ *
+ * //=fc
+ */
+module.exports.featureCollection = function (features) {
+ return {
+ type: 'FeatureCollection',
+ features: features
+ };
+};
+
+/**
+ * Creates a {@link Feature} based on a
+ * coordinate array. Properties can be added optionally.
+ *
+ * @name multiLineString
+ * @category helper
+ * @param {Array>} coordinates an array of Positions
+ * @param {Object=} properties an Object of key-value pairs to add as properties
+ * @returns {Feature} a MultiLineString feature
+ * @throws {Error} if no coordinates are passed
+ * @example
+ * var multiLine = turf.multilinestring([[0,0],[10,10]]);
+ *
+ * //=multiLine
+ *
+ */
+module.exports.multiLineString = function (coordinates, properties) {
+ if (!coordinates) {
+ throw new Error('No coordinates passed');
+ }
+ return feature({
+ type: 'MultiLineString',
+ coordinates: coordinates
+ }, properties);
+};
+
+/**
+ * Creates a {@link Feature} based on a
+ * coordinate array. Properties can be added optionally.
+ *
+ * @name multiPoint
+ * @category helper
+ * @param {Array>} coordinates an array of Positions
+ * @param {Object=} properties an Object of key-value pairs to add as properties
+ * @returns {Feature} a MultiPoint feature
+ * @throws {Error} if no coordinates are passed
+ * @example
+ * var multiPt = turf.multipoint([[0,0],[10,10]]);
+ *
+ * //=multiPt
+ *
+ */
+module.exports.multiPoint = function (coordinates, properties) {
+ if (!coordinates) {
+ throw new Error('No coordinates passed');
+ }
+ return feature({
+ type: 'MultiPoint',
+ coordinates: coordinates
+ }, properties);
+};
+
+
+/**
+ * Creates a {@link Feature} based on a
+ * coordinate array. Properties can be added optionally.
+ *
+ * @name multiPolygon
+ * @category helper
+ * @param {Array>} coordinates an array of Positions
+ * @param {Object=} properties an Object of key-value pairs to add as properties
+ * @returns {Feature} a multipolygon feature
+ * @throws {Error} if no coordinates are passed
+ * @example
+ * var multiPoly = turf.multipolygon([[0,0],[10,10]]);
+ *
+ * //=multiPoly
+ *
+ */
+module.exports.multiPolygon = function (coordinates, properties) {
+ if (!coordinates) {
+ throw new Error('No coordinates passed');
+ }
+ return feature({
+ type: 'MultiPolygon',
+ coordinates: coordinates
+ }, properties);
+};
+
+/**
+ * Creates a {@link Feature} based on a
+ * coordinate array. Properties can be added optionally.
+ *
+ * @name geometryCollection
+ * @category helper
+ * @param {Array<{Geometry}>} geometries an array of GeoJSON Geometries
+ * @param {Object=} properties an Object of key-value pairs to add as properties
+ * @returns {Feature} a geometrycollection feature
+ * @example
+ * var pt = {
+ * "type": "Point",
+ * "coordinates": [100, 0]
+ * };
+ * var line = {
+ * "type": "LineString",
+ * "coordinates": [ [101, 0], [102, 1] ]
+ * };
+ * var collection = turf.geometrycollection([[0,0],[10,10]]);
+ *
+ * //=collection
+ */
+module.exports.geometryCollection = function (geometries, properties) {
+ return feature({
+ type: 'GeometryCollection',
+ geometries: geometries
+ }, properties);
+};
+
+var factors = {
+ miles: 3960,
+ nauticalmiles: 3441.145,
+ degrees: 57.2957795,
+ radians: 1,
+ inches: 250905600,
+ yards: 6969600,
+ meters: 6373000,
+ metres: 6373000,
+ kilometers: 6373,
+ kilometres: 6373
+};
+
+/*
+ * Convert a distance measurement from radians to a more friendly unit.
+ *
+ * @name radiansToDistance
+ * @param {number} distance in radians across the sphere
+ * @param {string=kilometers} units: one of miles, nauticalmiles, degrees, radians,
+ * inches, yards, metres, meters, kilometres, kilometers.
+ * @returns {number} distance
+ */
+module.exports.radiansToDistance = function (radians, units) {
+ var factor = factors[units || 'kilometers'];
+ if (factor === undefined) {
+ throw new Error('Invalid unit');
+ }
+ return radians * factor;
+};
+
+/*
+ * Convert a distance measurement from a real-world unit into radians
+ *
+ * @name distanceToRadians
+ * @param {number} distance in real units
+ * @param {string=kilometers} units: one of miles, nauticalmiles, degrees, radians,
+ * inches, yards, metres, meters, kilometres, kilometers.
+ * @returns {number} radians
+ */
+module.exports.distanceToRadians = function (distance, units) {
+ var factor = factors[units || 'kilometers'];
+ if (factor === undefined) {
+ throw new Error('Invalid unit');
+ }
+ return distance / factor;
+};
+
+/*
+ * Convert a distance measurement from a real-world unit into degrees
+ *
+ * @name distanceToRadians
+ * @param {number} distance in real units
+ * @param {string=kilometers} units: one of miles, nauticalmiles, degrees, radians,
+ * inches, yards, metres, meters, kilometres, kilometers.
+ * @returns {number} degrees
+ */
+module.exports.distanceToDegrees = function (distance, units) {
+ var factor = factors[units || 'kilometers'];
+ if (factor === undefined) {
+ throw new Error('Invalid unit');
+ }
+ return (distance / factor) * 57.2958;
+};
diff --git a/packages/turf-helpers/package.json b/packages/turf-helpers/package.json
new file mode 100644
index 0000000000..ecbe14ce20
--- /dev/null
+++ b/packages/turf-helpers/package.json
@@ -0,0 +1,30 @@
+{
+ "name": "turf-helpers",
+ "version": "3.0.5",
+ "description": "turf geometries",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js"
+ },
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/Turfjs/turf-point.git"
+ },
+ "keywords": [
+ "geo",
+ "point",
+ "turf",
+ "geojson"
+ ],
+ "author": "morganherlocker",
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-point/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-point",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0"
+ },
+ "dependencies": {}
+}
diff --git a/packages/turf-helpers/test.js b/packages/turf-helpers/test.js
new file mode 100644
index 0000000000..ee43d190a9
--- /dev/null
+++ b/packages/turf-helpers/test.js
@@ -0,0 +1,305 @@
+var test = require('tape');
+var geometries = require('./');
+var radiansToDistance = require('./').radiansToDistance;
+
+var point = geometries.point;
+var polygon = geometries.polygon;
+var lineString = geometries.lineString;
+var featureCollection = geometries.featureCollection;
+var multiLineString = geometries.multiLineString;
+var multiPoint = geometries.multiPoint;
+var feature = geometries.feature;
+var multipolygon = geometries.multiPolygon;
+var geometrycollection = geometries.geometryCollection;
+
+test('point', function(t){
+ var ptArray = point([5, 10], {name: 'test point'});
+
+ t.ok(ptArray);
+ t.equal(ptArray.geometry.coordinates[0], 5);
+ t.equal(ptArray.geometry.coordinates[1], 10);
+ t.equal(ptArray.properties.name, 'test point');
+
+ t.throws(function() {
+ point('hey', 'invalid');
+ }, 'numbers required');
+
+ var noProps = point([0, 0]);
+ t.deepEqual(noProps.properties, {}, 'no props becomes {}');
+
+ t.end();
+});
+
+test('polygon', function(t){
+ var poly = polygon([[[5, 10], [20, 40], [40, 0], [5, 10]]] , {name: 'test polygon'});
+ t.ok(poly);
+ t.equal(poly.geometry.coordinates[0][0][0], 5);
+ t.equal(poly.geometry.coordinates[0][1][0], 20);
+ t.equal(poly.geometry.coordinates[0][2][0], 40);
+ t.equal(poly.properties.name, 'test polygon');
+ t.equal(poly.geometry.type, 'Polygon');
+ t.throws(function() {
+ t.equal(polygon([[[20.0,0.0],[101.0,0.0],[101.0,1.0],[100.0,1.0],[100.0,0.0]]]).message);
+ }, /First and last Position are not equivalent/, 'invalid ring - not wrapped');
+ t.throws(function() {
+ t.equal(polygon([[[20.0,0.0],[101.0,0.0]]]).message);
+ }, /Each LinearRing of a Polygon must have 4 or more Positions/, 'invalid ring - too few positions');
+ var noProperties = polygon([[[5, 10], [20, 40], [40, 0], [5, 10]]]);
+ t.deepEqual(noProperties.properties, {});
+ t.end();
+});
+
+test('lineString', function(t){
+ var line = lineString([[5, 10], [20, 40]], {name: 'test line'});
+ t.ok(line, 'creates a linestring');
+ t.equal(line.geometry.coordinates[0][0], 5);
+ t.equal(line.geometry.coordinates[1][0], 20);
+ t.equal(line.properties.name, 'test line');
+ t.throws(function() {
+ var line = lineString();
+ }, /No coordinates passed/, 'error on no coordinates');
+ var noProps = lineString([[5, 10], [20, 40]]);
+ t.deepEqual(noProps.properties, {}, 'no properties case');
+ t.end();
+});
+
+test('featureCollection', function(t){
+ t.plan(7);
+ var p1 = point([0,0], {name: 'first point'}),
+ p2 = point([0,10]),
+ p3 = point([10,10]),
+ p4 = point([10,0]);
+ var fc = featureCollection([p1,p2,p3,p4]);
+ t.ok(fc);
+ t.equal(fc.features.length, 4);
+ t.equal(fc.features[0].properties.name, 'first point');
+ t.equal(fc.type, 'FeatureCollection');
+ t.equal(fc.features[1].geometry.type, 'Point');
+ t.equal(fc.features[1].geometry.coordinates[0], 0);
+ t.equal(fc.features[1].geometry.coordinates[1], 10);
+});
+
+test('multilinestring', function(t){
+ t.deepEqual(multiLineString([[[0,0],[10,10]], [[5,0],[15,8]]]), {
+ type: "Feature",
+ properties: {},
+ geometry: {
+ type: "MultiLineString",
+ coordinates: [[[0,0],[10,10]], [[5,0],[15,8]]]
+ }
+ }, 'takes coordinates');
+
+ t.deepEqual(multiLineString([[[0,0],[10,10]], [[5,0],[15,8]]], {test: 23}), {
+ type: "Feature",
+ properties: {
+ test: 23
+ },
+ geometry: {
+ type: "MultiLineString",
+ coordinates: [[[0,0],[10,10]], [[5,0],[15,8]]]
+ }
+ }, 'takes properties');
+
+
+ t.throws(function(err){
+ multiLineString();
+ }, 'throws error with no coordinates');
+
+ t.end();
+});
+
+
+test('multiPoint', function(t){
+ t.deepEqual(multiPoint([[0,0],[10,10]]), {
+ type: "Feature",
+ properties: {},
+ geometry: {
+ type: "MultiPoint",
+ coordinates: [
+ [0,0],
+ [10,10]
+ ]
+ }
+ }, 'takes coordinates');
+
+ t.deepEqual(multiPoint([[0,0],[10,10]], {test: 23}), {
+ type: "Feature",
+ properties: {
+ test: 23
+ },
+ geometry: {
+ type: "MultiPoint",
+ coordinates: [
+ [0,0],
+ [10,10]
+ ]
+ }
+ }, 'takes properties');
+
+
+ t.throws(function(err){
+ multiPoint();
+ }, 'throws error with no coordinates');
+
+ t.end();
+});
+
+test('feature', function(t){
+ var pt = {
+ type: "Point",
+ coordinates: [
+ 67.5,
+ 32.84267363195431
+ ]
+ };
+ var line = {
+ type: "LineString",
+ coordinates: [
+ [
+ 82.96875,
+ 58.99531118795094
+ ],
+ [
+ 72.7734375,
+ 55.57834467218206
+ ],
+ [
+ 84.0234375,
+ 55.57834467218206
+ ]
+ ]
+ };
+ var polygon = {
+ type: "Polygon",
+ coordinates: [
+ [
+ [
+ 85.78125,
+ -3.513421045640032
+ ],
+ [
+ 85.78125,
+ 13.581920900545844
+ ],
+ [
+ 92.46093749999999,
+ 13.581920900545844
+ ],
+ [
+ 92.46093749999999,
+ -3.513421045640032
+ ],
+ [
+ 85.78125,
+ -3.513421045640032
+ ]
+ ]
+ ]
+ };
+
+ t.equal(feature(pt).type, 'Feature');
+ t.equal(feature(line).type, 'Feature');
+ t.equal(feature(polygon).type, 'Feature');
+ t.deepEqual(feature(pt),
+ {
+ type: "Feature",
+ properties: {},
+ geometry: {
+ type: "Point",
+ coordinates: [
+ 67.5,
+ 32.84267363195431
+ ]
+ }
+ });
+
+ t.end();
+});
+
+ test('multipolygon', function(t){
+ t.deepEqual(multipolygon([[[[94,57],[78,49],[94,43],[94,57]]],[[[93,19],[63,7],[79,0],[93,19]]]]), {
+ type: 'Feature',
+ properties: {},
+ geometry: {
+ type: 'MultiPolygon',
+ coordinates: [[[[94,57],[78,49],[94,43],[94,57]]],[[[93,19],[63,7],[79,0],[93,19]]]]
+ }
+ }, 'takes coordinates');
+
+ t.deepEqual(multipolygon([[[[94,57],[78,49],[94,43],[94,57]]],[[[93,19],[63,7],[79,0],[93,19]]]], {test: 23}), {
+ type: 'Feature',
+ properties: {
+ test: 23
+ },
+ geometry: {
+ type: 'MultiPolygon',
+ coordinates: [[[[94,57],[78,49],[94,43],[94,57]]],[[[93,19],[63,7],[79,0],[93,19]]]]
+ }
+ }, 'takes properties');
+
+
+ t.throws(function(err){
+ multipolygon();
+ }, 'throws error with no coordinates');
+
+ t.end();
+ });
+
+test('geometrycollection', function(t){
+ var pt = {
+ type: "Point",
+ coordinates: [100, 0]
+ };
+ var line = {
+ type: "LineString",
+ coordinates: [ [101, 0], [102, 1] ]
+ };
+ var gc = geometrycollection([pt, line]);
+
+ t.deepEqual(gc, {
+ type: "Feature",
+ properties: {},
+ geometry: {
+ type: "GeometryCollection",
+ geometries: [
+ {
+ type: "Point",
+ coordinates: [100, 0]
+ },
+ {
+ type: "LineString",
+ coordinates: [ [101, 0], [102, 1] ]
+ }
+ ]
+ }
+ }, 'creates a GeometryCollection');
+
+ var gcWithProps = geometrycollection([pt, line], {a: 23});
+ t.deepEqual(gcWithProps, {
+ type: "Feature",
+ properties: {a: 23},
+ geometry: {
+ type: "GeometryCollection",
+ geometries: [
+ {
+ type: "Point",
+ coordinates: [100, 0]
+ },
+ {
+ type: "LineString",
+ coordinates: [ [101, 0], [102, 1] ]
+ }
+ ]
+ }
+ }, 'creates a GeometryCollection with properties');
+
+ t.end();
+});
+
+test('radiansToDistance', function(t){
+ t.equal(radiansToDistance(1, 'radians'), 1);
+ t.equal(radiansToDistance(1, 'kilometers'), 6373);
+ t.equal(radiansToDistance(1, 'miles'), 3960);
+
+ t.end();
+});
diff --git a/packages/turf-hex-grid/.npmignore b/packages/turf-hex-grid/.npmignore
new file mode 100644
index 0000000000..bb3c08c09a
--- /dev/null
+++ b/packages/turf-hex-grid/.npmignore
@@ -0,0 +1,2 @@
+test
+coverage
diff --git a/packages/turf-hex-grid/LICENSE b/packages/turf-hex-grid/LICENSE
new file mode 100644
index 0000000000..64fb8e99a3
--- /dev/null
+++ b/packages/turf-hex-grid/LICENSE
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014 Morgan Herlocker
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
\ No newline at end of file
diff --git a/packages/turf-hex-grid/README.md b/packages/turf-hex-grid/README.md
new file mode 100644
index 0000000000..fba40db2a8
--- /dev/null
+++ b/packages/turf-hex-grid/README.md
@@ -0,0 +1,54 @@
+# turf-hex-grid
+
+[![build status](https://secure.travis-ci.org/Turfjs/turf-hex-grid.png)](http://travis-ci.org/Turfjs/turf-hex-grid)
+
+
+
+
+### `turf.hex-grid(bbox, cellWidth, units, triangles)`
+
+Takes a bounding box and a cell size in degrees and returns a FeatureCollection of flat-topped
+hexagons (Polygon features) aligned in an "odd-q" vertical grid as
+described in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/).
+
+
+### Parameters
+
+| parameter | type | description |
+| ----------- | ----------------- | ------------------------------------------------------- |
+| `bbox` | Array\.\ | bounding box in [minX, minY, maxX, maxY] order |
+| `cellWidth` | Number | width of cell in specified units |
+| `units` | String | used in calculating cellWidth ('miles' or 'kilometers') |
+| `triangles` | Boolean | generate hexgrid triangles instead of hexagons |
+
+
+### Example
+
+```js
+var bbox = [-96,31,-84,40];
+var cellWidth = 50;
+var units = 'miles';
+
+var hexgrid = turf.hexGrid(bbox, cellWidth, units);
+
+//=hexgrid
+```
+
+
+**Returns** `FeatureCollection.`, a hexagonal grid
+
+## Installation
+
+Requires [nodejs](http://nodejs.org/).
+
+```sh
+$ npm install turf-hex-grid
+```
+
+## Tests
+
+```sh
+$ npm test
+```
+
+
diff --git a/packages/turf-hex-grid/bench.js b/packages/turf-hex-grid/bench.js
new file mode 100644
index 0000000000..e29940f66a
--- /dev/null
+++ b/packages/turf-hex-grid/bench.js
@@ -0,0 +1,33 @@
+var grid = require('./');
+var Benchmark = require('benchmark');
+var fs = require('fs');
+
+var bbox = [
+ -96.6357421875,
+ 31.12819929911196,
+ -84.9462890625,
+ 40.58058466412764
+ ];
+
+var highres = grid(bbox, 100, 'miles').features.length;
+var midres = grid(bbox, 10, 'miles').features.length;
+var lowres = grid(bbox, 1, 'miles').features.length;
+
+var suite = new Benchmark.Suite('turf-hex-grid');
+suite
+ .add('turf-hex-grid -- '+highres+' cells',function () {
+ grid(bbox, 100, 'miles');
+ })
+ .add('turf-hex-grid -- '+midres+' cells',function () {
+ grid(bbox, 10, 'miles');
+ })
+ .add('turf-hex-grid -- '+lowres+' cells',function () {
+ grid(bbox, 1, 'miles');
+ })
+ .on('cycle', function (event) {
+ console.log(String(event.target));
+ })
+ .on('complete', function () {
+
+ })
+ .run();
\ No newline at end of file
diff --git a/packages/turf-hex-grid/index.js b/packages/turf-hex-grid/index.js
new file mode 100644
index 0000000000..ea6594f678
--- /dev/null
+++ b/packages/turf-hex-grid/index.js
@@ -0,0 +1,130 @@
+var point = require('turf-helpers').point;
+var polygon = require('turf-helpers').polygon;
+var distance = require('turf-distance');
+var featurecollection = require('turf-helpers').featureCollection;
+
+//Precompute cosines and sines of angles used in hexagon creation
+// for performance gain
+var cosines = [];
+var sines = [];
+for (var i = 0; i < 6; i++) {
+ var angle = 2 * Math.PI / 6 * i;
+ cosines.push(Math.cos(angle));
+ sines.push(Math.sin(angle));
+}
+
+/**
+ * Takes a bounding box and a cell size in degrees and returns a {@link FeatureCollection} of flat-topped
+ * hexagons ({@link Polygon} features) aligned in an "odd-q" vertical grid as
+ * described in [Hexagonal Grids](http://www.redblobgames.com/grids/hexagons/).
+ *
+ * @name hexGrid
+ * @category interpolation
+ * @param {Array} bbox bounding box in [minX, minY, maxX, maxY] order
+ * @param {Number} cellWidth width of cell in specified units
+ * @param {String} units used in calculating cellWidth ('miles' or 'kilometers')
+ * @return {FeatureCollection} a hexagonal grid
+ * @example
+ * var bbox = [-96,31,-84,40];
+ * var cellWidth = 50;
+ * var units = 'miles';
+ *
+ * var hexgrid = turf.hexGrid(bbox, cellWidth, units);
+ *
+ * //=hexgrid
+ */
+module.exports = function hexGrid(bbox, cell, units, triangles) {
+ var xFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[2], bbox[1]]), units));
+ var cellWidth = xFraction * (bbox[2] - bbox[0]);
+ var yFraction = cell / (distance(point([bbox[0], bbox[1]]), point([bbox[0], bbox[3]]), units));
+ var cellHeight = yFraction * (bbox[3] - bbox[1]);
+ var radius = cellWidth / 2;
+
+ var hex_width = radius * 2;
+ var hex_height = Math.sqrt(3) / 2 * cellHeight;
+
+ var box_width = bbox[2] - bbox[0];
+ var box_height = bbox[3] - bbox[1];
+
+ var x_interval = 3 / 4 * hex_width;
+ var y_interval = hex_height;
+
+ var x_span = box_width / (hex_width - radius / 2);
+ var x_count = Math.ceil(x_span);
+ if (Math.round(x_span) === x_count) {
+ x_count++;
+ }
+
+ var x_adjust = ((x_count * x_interval - radius / 2) - box_width) / 2 - radius / 2;
+
+ var y_count = Math.ceil(box_height / hex_height);
+
+ var y_adjust = (box_height - y_count * hex_height) / 2;
+
+ var hasOffsetY = y_count * hex_height - box_height > hex_height / 2;
+ if (hasOffsetY) {
+ y_adjust -= hex_height / 4;
+ }
+
+ var fc = featurecollection([]);
+ for (var x = 0; x < x_count; x++) {
+ for (var y = 0; y <= y_count; y++) {
+
+ var isOdd = x % 2 === 1;
+ if (y === 0 && isOdd) {
+ continue;
+ }
+
+ if (y === 0 && hasOffsetY) {
+ continue;
+ }
+
+ var center_x = x * x_interval + bbox[0] - x_adjust;
+ var center_y = y * y_interval + bbox[1] + y_adjust;
+
+ if (isOdd) {
+ center_y -= hex_height / 2;
+ }
+ if (triangles) {
+ fc.features.push.apply(fc.features, hexTriangles([center_x, center_y], cellWidth / 2, cellHeight / 2));
+ } else {
+ fc.features.push(hexagon([center_x, center_y], cellWidth / 2, cellHeight / 2));
+ }
+ }
+ }
+
+ return fc;
+};
+
+//Center should be [x, y]
+function hexagon(center, rx, ry) {
+ var vertices = [];
+ for (var i = 0; i < 6; i++) {
+ var x = center[0] + rx * cosines[i];
+ var y = center[1] + ry * sines[i];
+ vertices.push([x, y]);
+ }
+ //first and last vertex must be the same
+ vertices.push(vertices[0]);
+ return polygon([vertices]);
+}
+
+//Center should be [x, y]
+function hexTriangles(center, rx, ry) {
+ var triangles = [];
+ for (var i = 0; i < 6; i++) {
+ var vertices = [];
+ vertices.push(center);
+ vertices.push([
+ center[0] + rx * cosines[i],
+ center[1] + ry * sines[i]
+ ]);
+ vertices.push([
+ center[0] + rx * cosines[(i + 1) % 6],
+ center[1] + ry * sines[(i + 1) % 6]
+ ]);
+ vertices.push(center);
+ triangles.push(polygon([vertices]));
+ }
+ return triangles;
+}
diff --git a/packages/turf-hex-grid/package.json b/packages/turf-hex-grid/package.json
new file mode 100644
index 0000000000..2f69025002
--- /dev/null
+++ b/packages/turf-hex-grid/package.json
@@ -0,0 +1,45 @@
+{
+ "name": "turf-hex-grid",
+ "version": "3.0.5",
+ "description": "",
+ "main": "index.js",
+ "scripts": {
+ "test": "tape test.js",
+ "doc": "dox -r < index.js | doxme --readme > README.md"
+ },
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/Turfjs/turf-hex-grid.git"
+ },
+ "keywords": [
+ "turf",
+ "grid",
+ "hexgrid",
+ "hexbin",
+ "points",
+ "geojson"
+ ],
+ "author": "morganherlocker",
+ "contributors": [
+ "jseppi",
+ "jvail",
+ "lyzidiamond",
+ "tmcw"
+ ],
+ "license": "MIT",
+ "bugs": {
+ "url": "https://github.com/Turfjs/turf-hex-grid/issues"
+ },
+ "homepage": "https://github.com/Turfjs/turf-hex-grid",
+ "devDependencies": {
+ "benchmark": "^1.0.0",
+ "tape": "^3.5.0",
+ "turf-bbox-polygon": "^3.0.5",
+ "turf-explode": "^3.0.5",
+ "turf-inside": "^3.0.5"
+ },
+ "dependencies": {
+ "turf-distance": "^3.0.5",
+ "turf-helpers": "^3.0.5"
+ }
+}
diff --git a/packages/turf-hex-grid/test.js b/packages/turf-hex-grid/test.js
new file mode 100644
index 0000000000..3e0bc5e258
--- /dev/null
+++ b/packages/turf-hex-grid/test.js
@@ -0,0 +1,139 @@
+var test = require('tape');
+var grid = require('./');
+var fs = require('fs');
+var bboxPolygon = require('turf-bbox-polygon');
+
+test('hex-grid', function (t) {
+ var bbox1 = [
+ -96.6357421875,
+ 31.12819929911196,
+ -84.9462890625,
+ 40.58058466412764
+ ];
+ var bbox2 = [
+ -81.650390625,
+ 24.926294766395593,
+ -79.8486328125,
+ 26.43122806450644
+ ];
+ var bbox3 = [
+ -77.3876953125,
+ 38.71980474264239,
+ -76.9482421875,
+ 39.027718840211605
+ ];
+ var bbox4 = [
+ 63.6328125,
+ 11.867350911459308,
+ 75.234375,
+ 47.754097979680026
+ ];
+
+ var grid1 = grid(bbox1, 50, 'miles');
+ var grid2 = grid(bbox2, 5, 'miles');
+ var grid3 = grid(bbox3, 2, 'miles');
+ var grid4 = grid(bbox4, 50, 'kilometers');
+
+ t.ok(grid1.features.length, '50mi grid');
+ t.ok(grid2.features.length, '5mi grid');
+ t.ok(grid3.features.length, '2mi grid');
+ t.ok(grid4.features.length, '50km grid');
+
+ t.equal(
+ grid(
+ [-96.6357421875,31.12819929911196,-84.9462890625,40.58058466412764],
+ 100, 'miles')
+ .features.length,
+ 85
+ );
+
+ grid1.features.push(referencePoly(bbox1));
+ grid2.features.push(referencePoly(bbox2));
+ grid3.features.push(referencePoly(bbox3));
+ grid4.features.push(referencePoly(bbox4));
+
+ if (process.env.REGEN) {
+ fs.writeFileSync(__dirname+'/test/out/grid1.geojson', JSON.stringify(grid1,null,2));
+ fs.writeFileSync(__dirname+'/test/out/grid2.geojson', JSON.stringify(grid2,null,2));
+ fs.writeFileSync(__dirname+'/test/out/grid3.geojson', JSON.stringify(grid3,null,2));
+ fs.writeFileSync(__dirname+'/test/out/grid4.geojson', JSON.stringify(grid4,null,2));
+ }
+ t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid1.geojson')), grid1, 'grid is correct');
+ t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid2.geojson')), grid2, 'grid is correct');
+ t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid3.geojson')), grid3, 'grid is correct');
+ t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/grid4.geojson')), grid4, 'grid is correct');
+
+ t.end();
+});
+
+test('hex-tri-grid', function (t) {
+ var bbox1 = [
+ -96.6357421875,
+ 31.12819929911196,
+ -84.9462890625,
+ 40.58058466412764
+ ];
+ var bbox2 = [
+ -81.650390625,
+ 24.926294766395593,
+ -79.8486328125,
+ 26.43122806450644
+ ];
+ var bbox3 = [
+ -77.3876953125,
+ 38.71980474264239,
+ -76.9482421875,
+ 39.027718840211605
+ ];
+ var bbox4 = [
+ 63.6328125,
+ 11.867350911459308,
+ 75.234375,
+ 47.754097979680026
+ ];
+
+ var grid1 = grid(bbox1, 50, 'miles', true);
+ var grid2 = grid(bbox2, 5, 'miles', true);
+ var grid3 = grid(bbox3, 2, 'miles', true);
+ var grid4 = grid(bbox4, 50, 'kilometers', true);
+
+ t.ok(grid1.features.length, '50mi grid');
+ t.ok(grid2.features.length, '5mi grid');
+ t.ok(grid3.features.length, '2mi grid');
+ t.ok(grid4.features.length, '50km grid');
+
+ t.equal(
+ grid(
+ [-96.6357421875,31.12819929911196,-84.9462890625,40.58058466412764],
+ 100, 'miles')
+ .features.length,
+ 85
+ );
+
+ grid1.features.push(referencePoly(bbox1));
+ grid2.features.push(referencePoly(bbox2));
+ grid3.features.push(referencePoly(bbox3));
+ grid4.features.push(referencePoly(bbox4));
+
+ if (process.env.REGEN) {
+ fs.writeFileSync(__dirname+'/test/out/trigrid1.geojson', JSON.stringify(grid1,null,2));
+ fs.writeFileSync(__dirname+'/test/out/trigrid2.geojson', JSON.stringify(grid2,null,2));
+ fs.writeFileSync(__dirname+'/test/out/trigrid3.geojson', JSON.stringify(grid3,null,2));
+ fs.writeFileSync(__dirname+'/test/out/trigrid4.geojson', JSON.stringify(grid4,null,2));
+ }
+ t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/trigrid1.geojson')), grid1, 'grid is correct');
+ t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/trigrid2.geojson')), grid2, 'grid is correct');
+ t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/trigrid3.geojson')), grid3, 'grid is correct');
+ t.deepEqual(JSON.parse(fs.readFileSync(__dirname+'/test/out/trigrid4.geojson')), grid4, 'grid is correct');
+
+ t.end();
+});
+
+function referencePoly (bbox) {
+ var poly = bboxPolygon(bbox);
+ poly.properties = {
+ 'fill-opacity': 0,
+ 'stroke': '#0ff'
+ };
+ return poly;
+}
diff --git a/packages/turf-hex-grid/test/out/grid1.geojson b/packages/turf-hex-grid/test/out/grid1.geojson
new file mode 100644
index 0000000000..788bf688d3
--- /dev/null
+++ b/packages/turf-hex-grid/test/out/grid1.geojson
@@ -0,0 +1,11895 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 31.312193695474356
+ ],
+ [
+ -96.28683554254002,
+ 31.625448749691284
+ ],
+ [
+ -96.70959092081233,
+ 31.625448749691284
+ ],
+ [
+ -96.92096860994849,
+ 31.312193695474356
+ ],
+ [
+ -96.70959092081233,
+ 30.99893864125743
+ ],
+ [
+ -96.28683554254002,
+ 30.99893864125743
+ ],
+ [
+ -96.07545785340386,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ],
+ [
+ -96.28683554254002,
+ 32.251958858125136
+ ],
+ [
+ -96.70959092081233,
+ 32.251958858125136
+ ],
+ [
+ -96.92096860994849,
+ 31.938703803908208
+ ],
+ [
+ -96.70959092081233,
+ 31.62544874969128
+ ],
+ [
+ -96.28683554254002,
+ 31.62544874969128
+ ],
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 32.56521391234206
+ ],
+ [
+ -96.28683554254002,
+ 32.878468966558984
+ ],
+ [
+ -96.70959092081233,
+ 32.878468966558984
+ ],
+ [
+ -96.92096860994849,
+ 32.56521391234206
+ ],
+ [
+ -96.70959092081233,
+ 32.251958858125136
+ ],
+ [
+ -96.28683554254002,
+ 32.251958858125136
+ ],
+ [
+ -96.07545785340386,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 33.191724020775915
+ ],
+ [
+ -96.28683554254002,
+ 33.50497907499284
+ ],
+ [
+ -96.70959092081233,
+ 33.50497907499284
+ ],
+ [
+ -96.92096860994849,
+ 33.191724020775915
+ ],
+ [
+ -96.70959092081233,
+ 32.87846896655899
+ ],
+ [
+ -96.28683554254002,
+ 32.87846896655899
+ ],
+ [
+ -96.07545785340386,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 33.81823412920977
+ ],
+ [
+ -96.28683554254002,
+ 34.131489183426694
+ ],
+ [
+ -96.70959092081233,
+ 34.131489183426694
+ ],
+ [
+ -96.92096860994849,
+ 33.81823412920977
+ ],
+ [
+ -96.70959092081233,
+ 33.504979074992846
+ ],
+ [
+ -96.28683554254002,
+ 33.504979074992846
+ ],
+ [
+ -96.07545785340386,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 34.444744237643626
+ ],
+ [
+ -96.28683554254002,
+ 34.75799929186055
+ ],
+ [
+ -96.70959092081233,
+ 34.75799929186055
+ ],
+ [
+ -96.92096860994849,
+ 34.444744237643626
+ ],
+ [
+ -96.70959092081233,
+ 34.1314891834267
+ ],
+ [
+ -96.28683554254002,
+ 34.1314891834267
+ ],
+ [
+ -96.07545785340386,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 35.07125434607748
+ ],
+ [
+ -96.28683554254002,
+ 35.384509400294405
+ ],
+ [
+ -96.70959092081233,
+ 35.384509400294405
+ ],
+ [
+ -96.92096860994849,
+ 35.07125434607748
+ ],
+ [
+ -96.70959092081233,
+ 34.75799929186056
+ ],
+ [
+ -96.28683554254002,
+ 34.75799929186056
+ ],
+ [
+ -96.07545785340386,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ],
+ [
+ -96.28683554254002,
+ 36.01101950872826
+ ],
+ [
+ -96.70959092081233,
+ 36.01101950872826
+ ],
+ [
+ -96.92096860994849,
+ 35.697764454511336
+ ],
+ [
+ -96.70959092081233,
+ 35.38450940029441
+ ],
+ [
+ -96.28683554254002,
+ 35.38450940029441
+ ],
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 36.324274562945185
+ ],
+ [
+ -96.28683554254002,
+ 36.63752961716211
+ ],
+ [
+ -96.70959092081233,
+ 36.63752961716211
+ ],
+ [
+ -96.92096860994849,
+ 36.324274562945185
+ ],
+ [
+ -96.70959092081233,
+ 36.01101950872826
+ ],
+ [
+ -96.28683554254002,
+ 36.01101950872826
+ ],
+ [
+ -96.07545785340386,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 36.95078467137904
+ ],
+ [
+ -96.28683554254002,
+ 37.264039725595964
+ ],
+ [
+ -96.70959092081233,
+ 37.264039725595964
+ ],
+ [
+ -96.92096860994849,
+ 36.95078467137904
+ ],
+ [
+ -96.70959092081233,
+ 36.637529617162116
+ ],
+ [
+ -96.28683554254002,
+ 36.637529617162116
+ ],
+ [
+ -96.07545785340386,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 37.577294779812895
+ ],
+ [
+ -96.28683554254002,
+ 37.89054983402982
+ ],
+ [
+ -96.70959092081233,
+ 37.89054983402982
+ ],
+ [
+ -96.92096860994849,
+ 37.577294779812895
+ ],
+ [
+ -96.70959092081233,
+ 37.26403972559597
+ ],
+ [
+ -96.28683554254002,
+ 37.26403972559597
+ ],
+ [
+ -96.07545785340386,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 38.20380488824675
+ ],
+ [
+ -96.28683554254002,
+ 38.517059942463675
+ ],
+ [
+ -96.70959092081233,
+ 38.517059942463675
+ ],
+ [
+ -96.92096860994849,
+ 38.20380488824675
+ ],
+ [
+ -96.70959092081233,
+ 37.89054983402983
+ ],
+ [
+ -96.28683554254002,
+ 37.89054983402983
+ ],
+ [
+ -96.07545785340386,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 38.830314996680606
+ ],
+ [
+ -96.28683554254002,
+ 39.14357005089753
+ ],
+ [
+ -96.70959092081233,
+ 39.14357005089753
+ ],
+ [
+ -96.92096860994849,
+ 38.830314996680606
+ ],
+ [
+ -96.70959092081233,
+ 38.51705994246368
+ ],
+ [
+ -96.28683554254002,
+ 38.51705994246368
+ ],
+ [
+ -96.07545785340386,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 39.45682510511446
+ ],
+ [
+ -96.28683554254002,
+ 39.770080159331386
+ ],
+ [
+ -96.70959092081233,
+ 39.770080159331386
+ ],
+ [
+ -96.92096860994849,
+ 39.45682510511446
+ ],
+ [
+ -96.70959092081233,
+ 39.14357005089754
+ ],
+ [
+ -96.28683554254002,
+ 39.14357005089754
+ ],
+ [
+ -96.07545785340386,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 40.08333521354832
+ ],
+ [
+ -96.28683554254002,
+ 40.39659026776524
+ ],
+ [
+ -96.70959092081233,
+ 40.39659026776524
+ ],
+ [
+ -96.92096860994849,
+ 40.08333521354832
+ ],
+ [
+ -96.70959092081233,
+ 39.77008015933139
+ ],
+ [
+ -96.28683554254002,
+ 39.77008015933139
+ ],
+ [
+ -96.07545785340386,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.07545785340386,
+ 40.70984532198217
+ ],
+ [
+ -96.28683554254002,
+ 41.023100376199096
+ ],
+ [
+ -96.70959092081233,
+ 41.023100376199096
+ ],
+ [
+ -96.92096860994849,
+ 40.70984532198217
+ ],
+ [
+ -96.70959092081233,
+ 40.39659026776525
+ ],
+ [
+ -96.28683554254002,
+ 40.39659026776525
+ ],
+ [
+ -96.07545785340386,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 30.99893864125743
+ ],
+ [
+ -95.65270247513155,
+ 31.312193695474356
+ ],
+ [
+ -96.07545785340386,
+ 31.312193695474356
+ ],
+ [
+ -96.28683554254002,
+ 30.99893864125743
+ ],
+ [
+ -96.07545785340386,
+ 30.6856835870405
+ ],
+ [
+ -95.65270247513155,
+ 30.6856835870405
+ ],
+ [
+ -95.44132478599539,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 31.62544874969128
+ ],
+ [
+ -95.65270247513155,
+ 31.938703803908208
+ ],
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ],
+ [
+ -96.28683554254002,
+ 31.62544874969128
+ ],
+ [
+ -96.07545785340386,
+ 31.312193695474352
+ ],
+ [
+ -95.65270247513155,
+ 31.312193695474352
+ ],
+ [
+ -95.44132478599539,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 32.251958858125136
+ ],
+ [
+ -95.65270247513155,
+ 32.56521391234206
+ ],
+ [
+ -96.07545785340386,
+ 32.56521391234206
+ ],
+ [
+ -96.28683554254002,
+ 32.251958858125136
+ ],
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ],
+ [
+ -95.65270247513155,
+ 31.938703803908208
+ ],
+ [
+ -95.44132478599539,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 32.87846896655899
+ ],
+ [
+ -95.65270247513155,
+ 33.191724020775915
+ ],
+ [
+ -96.07545785340386,
+ 33.191724020775915
+ ],
+ [
+ -96.28683554254002,
+ 32.87846896655899
+ ],
+ [
+ -96.07545785340386,
+ 32.56521391234207
+ ],
+ [
+ -95.65270247513155,
+ 32.56521391234207
+ ],
+ [
+ -95.44132478599539,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 33.504979074992846
+ ],
+ [
+ -95.65270247513155,
+ 33.81823412920977
+ ],
+ [
+ -96.07545785340386,
+ 33.81823412920977
+ ],
+ [
+ -96.28683554254002,
+ 33.504979074992846
+ ],
+ [
+ -96.07545785340386,
+ 33.19172402077592
+ ],
+ [
+ -95.65270247513155,
+ 33.19172402077592
+ ],
+ [
+ -95.44132478599539,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 34.1314891834267
+ ],
+ [
+ -95.65270247513155,
+ 34.444744237643626
+ ],
+ [
+ -96.07545785340386,
+ 34.444744237643626
+ ],
+ [
+ -96.28683554254002,
+ 34.1314891834267
+ ],
+ [
+ -96.07545785340386,
+ 33.81823412920978
+ ],
+ [
+ -95.65270247513155,
+ 33.81823412920978
+ ],
+ [
+ -95.44132478599539,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 34.75799929186056
+ ],
+ [
+ -95.65270247513155,
+ 35.07125434607748
+ ],
+ [
+ -96.07545785340386,
+ 35.07125434607748
+ ],
+ [
+ -96.28683554254002,
+ 34.75799929186056
+ ],
+ [
+ -96.07545785340386,
+ 34.44474423764363
+ ],
+ [
+ -95.65270247513155,
+ 34.44474423764363
+ ],
+ [
+ -95.44132478599539,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 35.38450940029441
+ ],
+ [
+ -95.65270247513155,
+ 35.697764454511336
+ ],
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ],
+ [
+ -96.28683554254002,
+ 35.38450940029441
+ ],
+ [
+ -96.07545785340386,
+ 35.07125434607749
+ ],
+ [
+ -95.65270247513155,
+ 35.07125434607749
+ ],
+ [
+ -95.44132478599539,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 36.01101950872826
+ ],
+ [
+ -95.65270247513155,
+ 36.324274562945185
+ ],
+ [
+ -96.07545785340386,
+ 36.324274562945185
+ ],
+ [
+ -96.28683554254002,
+ 36.01101950872826
+ ],
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ],
+ [
+ -95.65270247513155,
+ 35.697764454511336
+ ],
+ [
+ -95.44132478599539,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 36.637529617162116
+ ],
+ [
+ -95.65270247513155,
+ 36.95078467137904
+ ],
+ [
+ -96.07545785340386,
+ 36.95078467137904
+ ],
+ [
+ -96.28683554254002,
+ 36.637529617162116
+ ],
+ [
+ -96.07545785340386,
+ 36.32427456294519
+ ],
+ [
+ -95.65270247513155,
+ 36.32427456294519
+ ],
+ [
+ -95.44132478599539,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 37.26403972559597
+ ],
+ [
+ -95.65270247513155,
+ 37.577294779812895
+ ],
+ [
+ -96.07545785340386,
+ 37.577294779812895
+ ],
+ [
+ -96.28683554254002,
+ 37.26403972559597
+ ],
+ [
+ -96.07545785340386,
+ 36.95078467137905
+ ],
+ [
+ -95.65270247513155,
+ 36.95078467137905
+ ],
+ [
+ -95.44132478599539,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 37.89054983402983
+ ],
+ [
+ -95.65270247513155,
+ 38.20380488824675
+ ],
+ [
+ -96.07545785340386,
+ 38.20380488824675
+ ],
+ [
+ -96.28683554254002,
+ 37.89054983402983
+ ],
+ [
+ -96.07545785340386,
+ 37.5772947798129
+ ],
+ [
+ -95.65270247513155,
+ 37.5772947798129
+ ],
+ [
+ -95.44132478599539,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 38.51705994246368
+ ],
+ [
+ -95.65270247513155,
+ 38.830314996680606
+ ],
+ [
+ -96.07545785340386,
+ 38.830314996680606
+ ],
+ [
+ -96.28683554254002,
+ 38.51705994246368
+ ],
+ [
+ -96.07545785340386,
+ 38.20380488824676
+ ],
+ [
+ -95.65270247513155,
+ 38.20380488824676
+ ],
+ [
+ -95.44132478599539,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 39.14357005089754
+ ],
+ [
+ -95.65270247513155,
+ 39.45682510511446
+ ],
+ [
+ -96.07545785340386,
+ 39.45682510511446
+ ],
+ [
+ -96.28683554254002,
+ 39.14357005089754
+ ],
+ [
+ -96.07545785340386,
+ 38.83031499668061
+ ],
+ [
+ -95.65270247513155,
+ 38.83031499668061
+ ],
+ [
+ -95.44132478599539,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 39.77008015933139
+ ],
+ [
+ -95.65270247513155,
+ 40.08333521354832
+ ],
+ [
+ -96.07545785340386,
+ 40.08333521354832
+ ],
+ [
+ -96.28683554254002,
+ 39.77008015933139
+ ],
+ [
+ -96.07545785340386,
+ 39.45682510511447
+ ],
+ [
+ -95.65270247513155,
+ 39.45682510511447
+ ],
+ [
+ -95.44132478599539,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.44132478599539,
+ 40.39659026776525
+ ],
+ [
+ -95.65270247513155,
+ 40.70984532198217
+ ],
+ [
+ -96.07545785340386,
+ 40.70984532198217
+ ],
+ [
+ -96.28683554254002,
+ 40.39659026776525
+ ],
+ [
+ -96.07545785340386,
+ 40.083335213548324
+ ],
+ [
+ -95.65270247513155,
+ 40.083335213548324
+ ],
+ [
+ -95.44132478599539,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 31.312193695474356
+ ],
+ [
+ -95.01856940772309,
+ 31.625448749691284
+ ],
+ [
+ -95.4413247859954,
+ 31.625448749691284
+ ],
+ [
+ -95.65270247513156,
+ 31.312193695474356
+ ],
+ [
+ -95.4413247859954,
+ 30.99893864125743
+ ],
+ [
+ -95.01856940772309,
+ 30.99893864125743
+ ],
+ [
+ -94.80719171858694,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ],
+ [
+ -95.01856940772309,
+ 32.251958858125136
+ ],
+ [
+ -95.4413247859954,
+ 32.251958858125136
+ ],
+ [
+ -95.65270247513156,
+ 31.938703803908208
+ ],
+ [
+ -95.4413247859954,
+ 31.62544874969128
+ ],
+ [
+ -95.01856940772309,
+ 31.62544874969128
+ ],
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 32.56521391234206
+ ],
+ [
+ -95.01856940772309,
+ 32.878468966558984
+ ],
+ [
+ -95.4413247859954,
+ 32.878468966558984
+ ],
+ [
+ -95.65270247513156,
+ 32.56521391234206
+ ],
+ [
+ -95.4413247859954,
+ 32.251958858125136
+ ],
+ [
+ -95.01856940772309,
+ 32.251958858125136
+ ],
+ [
+ -94.80719171858694,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 33.191724020775915
+ ],
+ [
+ -95.01856940772309,
+ 33.50497907499284
+ ],
+ [
+ -95.4413247859954,
+ 33.50497907499284
+ ],
+ [
+ -95.65270247513156,
+ 33.191724020775915
+ ],
+ [
+ -95.4413247859954,
+ 32.87846896655899
+ ],
+ [
+ -95.01856940772309,
+ 32.87846896655899
+ ],
+ [
+ -94.80719171858694,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 33.81823412920977
+ ],
+ [
+ -95.01856940772309,
+ 34.131489183426694
+ ],
+ [
+ -95.4413247859954,
+ 34.131489183426694
+ ],
+ [
+ -95.65270247513156,
+ 33.81823412920977
+ ],
+ [
+ -95.4413247859954,
+ 33.504979074992846
+ ],
+ [
+ -95.01856940772309,
+ 33.504979074992846
+ ],
+ [
+ -94.80719171858694,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 34.444744237643626
+ ],
+ [
+ -95.01856940772309,
+ 34.75799929186055
+ ],
+ [
+ -95.4413247859954,
+ 34.75799929186055
+ ],
+ [
+ -95.65270247513156,
+ 34.444744237643626
+ ],
+ [
+ -95.4413247859954,
+ 34.1314891834267
+ ],
+ [
+ -95.01856940772309,
+ 34.1314891834267
+ ],
+ [
+ -94.80719171858694,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 35.07125434607748
+ ],
+ [
+ -95.01856940772309,
+ 35.384509400294405
+ ],
+ [
+ -95.4413247859954,
+ 35.384509400294405
+ ],
+ [
+ -95.65270247513156,
+ 35.07125434607748
+ ],
+ [
+ -95.4413247859954,
+ 34.75799929186056
+ ],
+ [
+ -95.01856940772309,
+ 34.75799929186056
+ ],
+ [
+ -94.80719171858694,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ],
+ [
+ -95.01856940772309,
+ 36.01101950872826
+ ],
+ [
+ -95.4413247859954,
+ 36.01101950872826
+ ],
+ [
+ -95.65270247513156,
+ 35.697764454511336
+ ],
+ [
+ -95.4413247859954,
+ 35.38450940029441
+ ],
+ [
+ -95.01856940772309,
+ 35.38450940029441
+ ],
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 36.324274562945185
+ ],
+ [
+ -95.01856940772309,
+ 36.63752961716211
+ ],
+ [
+ -95.4413247859954,
+ 36.63752961716211
+ ],
+ [
+ -95.65270247513156,
+ 36.324274562945185
+ ],
+ [
+ -95.4413247859954,
+ 36.01101950872826
+ ],
+ [
+ -95.01856940772309,
+ 36.01101950872826
+ ],
+ [
+ -94.80719171858694,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 36.95078467137904
+ ],
+ [
+ -95.01856940772309,
+ 37.264039725595964
+ ],
+ [
+ -95.4413247859954,
+ 37.264039725595964
+ ],
+ [
+ -95.65270247513156,
+ 36.95078467137904
+ ],
+ [
+ -95.4413247859954,
+ 36.637529617162116
+ ],
+ [
+ -95.01856940772309,
+ 36.637529617162116
+ ],
+ [
+ -94.80719171858694,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 37.577294779812895
+ ],
+ [
+ -95.01856940772309,
+ 37.89054983402982
+ ],
+ [
+ -95.4413247859954,
+ 37.89054983402982
+ ],
+ [
+ -95.65270247513156,
+ 37.577294779812895
+ ],
+ [
+ -95.4413247859954,
+ 37.26403972559597
+ ],
+ [
+ -95.01856940772309,
+ 37.26403972559597
+ ],
+ [
+ -94.80719171858694,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 38.20380488824675
+ ],
+ [
+ -95.01856940772309,
+ 38.517059942463675
+ ],
+ [
+ -95.4413247859954,
+ 38.517059942463675
+ ],
+ [
+ -95.65270247513156,
+ 38.20380488824675
+ ],
+ [
+ -95.4413247859954,
+ 37.89054983402983
+ ],
+ [
+ -95.01856940772309,
+ 37.89054983402983
+ ],
+ [
+ -94.80719171858694,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 38.830314996680606
+ ],
+ [
+ -95.01856940772309,
+ 39.14357005089753
+ ],
+ [
+ -95.4413247859954,
+ 39.14357005089753
+ ],
+ [
+ -95.65270247513156,
+ 38.830314996680606
+ ],
+ [
+ -95.4413247859954,
+ 38.51705994246368
+ ],
+ [
+ -95.01856940772309,
+ 38.51705994246368
+ ],
+ [
+ -94.80719171858694,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 39.45682510511446
+ ],
+ [
+ -95.01856940772309,
+ 39.770080159331386
+ ],
+ [
+ -95.4413247859954,
+ 39.770080159331386
+ ],
+ [
+ -95.65270247513156,
+ 39.45682510511446
+ ],
+ [
+ -95.4413247859954,
+ 39.14357005089754
+ ],
+ [
+ -95.01856940772309,
+ 39.14357005089754
+ ],
+ [
+ -94.80719171858694,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 40.08333521354832
+ ],
+ [
+ -95.01856940772309,
+ 40.39659026776524
+ ],
+ [
+ -95.4413247859954,
+ 40.39659026776524
+ ],
+ [
+ -95.65270247513156,
+ 40.08333521354832
+ ],
+ [
+ -95.4413247859954,
+ 39.77008015933139
+ ],
+ [
+ -95.01856940772309,
+ 39.77008015933139
+ ],
+ [
+ -94.80719171858694,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.80719171858694,
+ 40.70984532198217
+ ],
+ [
+ -95.01856940772309,
+ 41.023100376199096
+ ],
+ [
+ -95.4413247859954,
+ 41.023100376199096
+ ],
+ [
+ -95.65270247513156,
+ 40.70984532198217
+ ],
+ [
+ -95.4413247859954,
+ 40.39659026776525
+ ],
+ [
+ -95.01856940772309,
+ 40.39659026776525
+ ],
+ [
+ -94.80719171858694,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 30.99893864125743
+ ],
+ [
+ -94.38443634031462,
+ 31.312193695474356
+ ],
+ [
+ -94.80719171858694,
+ 31.312193695474356
+ ],
+ [
+ -95.01856940772309,
+ 30.99893864125743
+ ],
+ [
+ -94.80719171858694,
+ 30.6856835870405
+ ],
+ [
+ -94.38443634031462,
+ 30.6856835870405
+ ],
+ [
+ -94.17305865117847,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 31.62544874969128
+ ],
+ [
+ -94.38443634031462,
+ 31.938703803908208
+ ],
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ],
+ [
+ -95.01856940772309,
+ 31.62544874969128
+ ],
+ [
+ -94.80719171858694,
+ 31.312193695474352
+ ],
+ [
+ -94.38443634031462,
+ 31.312193695474352
+ ],
+ [
+ -94.17305865117847,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 32.251958858125136
+ ],
+ [
+ -94.38443634031462,
+ 32.56521391234206
+ ],
+ [
+ -94.80719171858694,
+ 32.56521391234206
+ ],
+ [
+ -95.01856940772309,
+ 32.251958858125136
+ ],
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ],
+ [
+ -94.38443634031462,
+ 31.938703803908208
+ ],
+ [
+ -94.17305865117847,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 32.87846896655899
+ ],
+ [
+ -94.38443634031462,
+ 33.191724020775915
+ ],
+ [
+ -94.80719171858694,
+ 33.191724020775915
+ ],
+ [
+ -95.01856940772309,
+ 32.87846896655899
+ ],
+ [
+ -94.80719171858694,
+ 32.56521391234207
+ ],
+ [
+ -94.38443634031462,
+ 32.56521391234207
+ ],
+ [
+ -94.17305865117847,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 33.504979074992846
+ ],
+ [
+ -94.38443634031462,
+ 33.81823412920977
+ ],
+ [
+ -94.80719171858694,
+ 33.81823412920977
+ ],
+ [
+ -95.01856940772309,
+ 33.504979074992846
+ ],
+ [
+ -94.80719171858694,
+ 33.19172402077592
+ ],
+ [
+ -94.38443634031462,
+ 33.19172402077592
+ ],
+ [
+ -94.17305865117847,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 34.1314891834267
+ ],
+ [
+ -94.38443634031462,
+ 34.444744237643626
+ ],
+ [
+ -94.80719171858694,
+ 34.444744237643626
+ ],
+ [
+ -95.01856940772309,
+ 34.1314891834267
+ ],
+ [
+ -94.80719171858694,
+ 33.81823412920978
+ ],
+ [
+ -94.38443634031462,
+ 33.81823412920978
+ ],
+ [
+ -94.17305865117847,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 34.75799929186056
+ ],
+ [
+ -94.38443634031462,
+ 35.07125434607748
+ ],
+ [
+ -94.80719171858694,
+ 35.07125434607748
+ ],
+ [
+ -95.01856940772309,
+ 34.75799929186056
+ ],
+ [
+ -94.80719171858694,
+ 34.44474423764363
+ ],
+ [
+ -94.38443634031462,
+ 34.44474423764363
+ ],
+ [
+ -94.17305865117847,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 35.38450940029441
+ ],
+ [
+ -94.38443634031462,
+ 35.697764454511336
+ ],
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ],
+ [
+ -95.01856940772309,
+ 35.38450940029441
+ ],
+ [
+ -94.80719171858694,
+ 35.07125434607749
+ ],
+ [
+ -94.38443634031462,
+ 35.07125434607749
+ ],
+ [
+ -94.17305865117847,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 36.01101950872826
+ ],
+ [
+ -94.38443634031462,
+ 36.324274562945185
+ ],
+ [
+ -94.80719171858694,
+ 36.324274562945185
+ ],
+ [
+ -95.01856940772309,
+ 36.01101950872826
+ ],
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ],
+ [
+ -94.38443634031462,
+ 35.697764454511336
+ ],
+ [
+ -94.17305865117847,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 36.637529617162116
+ ],
+ [
+ -94.38443634031462,
+ 36.95078467137904
+ ],
+ [
+ -94.80719171858694,
+ 36.95078467137904
+ ],
+ [
+ -95.01856940772309,
+ 36.637529617162116
+ ],
+ [
+ -94.80719171858694,
+ 36.32427456294519
+ ],
+ [
+ -94.38443634031462,
+ 36.32427456294519
+ ],
+ [
+ -94.17305865117847,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 37.26403972559597
+ ],
+ [
+ -94.38443634031462,
+ 37.577294779812895
+ ],
+ [
+ -94.80719171858694,
+ 37.577294779812895
+ ],
+ [
+ -95.01856940772309,
+ 37.26403972559597
+ ],
+ [
+ -94.80719171858694,
+ 36.95078467137905
+ ],
+ [
+ -94.38443634031462,
+ 36.95078467137905
+ ],
+ [
+ -94.17305865117847,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 37.89054983402983
+ ],
+ [
+ -94.38443634031462,
+ 38.20380488824675
+ ],
+ [
+ -94.80719171858694,
+ 38.20380488824675
+ ],
+ [
+ -95.01856940772309,
+ 37.89054983402983
+ ],
+ [
+ -94.80719171858694,
+ 37.5772947798129
+ ],
+ [
+ -94.38443634031462,
+ 37.5772947798129
+ ],
+ [
+ -94.17305865117847,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 38.51705994246368
+ ],
+ [
+ -94.38443634031462,
+ 38.830314996680606
+ ],
+ [
+ -94.80719171858694,
+ 38.830314996680606
+ ],
+ [
+ -95.01856940772309,
+ 38.51705994246368
+ ],
+ [
+ -94.80719171858694,
+ 38.20380488824676
+ ],
+ [
+ -94.38443634031462,
+ 38.20380488824676
+ ],
+ [
+ -94.17305865117847,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 39.14357005089754
+ ],
+ [
+ -94.38443634031462,
+ 39.45682510511446
+ ],
+ [
+ -94.80719171858694,
+ 39.45682510511446
+ ],
+ [
+ -95.01856940772309,
+ 39.14357005089754
+ ],
+ [
+ -94.80719171858694,
+ 38.83031499668061
+ ],
+ [
+ -94.38443634031462,
+ 38.83031499668061
+ ],
+ [
+ -94.17305865117847,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 39.77008015933139
+ ],
+ [
+ -94.38443634031462,
+ 40.08333521354832
+ ],
+ [
+ -94.80719171858694,
+ 40.08333521354832
+ ],
+ [
+ -95.01856940772309,
+ 39.77008015933139
+ ],
+ [
+ -94.80719171858694,
+ 39.45682510511447
+ ],
+ [
+ -94.38443634031462,
+ 39.45682510511447
+ ],
+ [
+ -94.17305865117847,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.17305865117847,
+ 40.39659026776525
+ ],
+ [
+ -94.38443634031462,
+ 40.70984532198217
+ ],
+ [
+ -94.80719171858694,
+ 40.70984532198217
+ ],
+ [
+ -95.01856940772309,
+ 40.39659026776525
+ ],
+ [
+ -94.80719171858694,
+ 40.083335213548324
+ ],
+ [
+ -94.38443634031462,
+ 40.083335213548324
+ ],
+ [
+ -94.17305865117847,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 31.312193695474356
+ ],
+ [
+ -93.75030327290617,
+ 31.625448749691284
+ ],
+ [
+ -94.17305865117848,
+ 31.625448749691284
+ ],
+ [
+ -94.38443634031464,
+ 31.312193695474356
+ ],
+ [
+ -94.17305865117848,
+ 30.99893864125743
+ ],
+ [
+ -93.75030327290617,
+ 30.99893864125743
+ ],
+ [
+ -93.53892558377001,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ],
+ [
+ -93.75030327290617,
+ 32.251958858125136
+ ],
+ [
+ -94.17305865117848,
+ 32.251958858125136
+ ],
+ [
+ -94.38443634031464,
+ 31.938703803908208
+ ],
+ [
+ -94.17305865117848,
+ 31.62544874969128
+ ],
+ [
+ -93.75030327290617,
+ 31.62544874969128
+ ],
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 32.56521391234206
+ ],
+ [
+ -93.75030327290617,
+ 32.878468966558984
+ ],
+ [
+ -94.17305865117848,
+ 32.878468966558984
+ ],
+ [
+ -94.38443634031464,
+ 32.56521391234206
+ ],
+ [
+ -94.17305865117848,
+ 32.251958858125136
+ ],
+ [
+ -93.75030327290617,
+ 32.251958858125136
+ ],
+ [
+ -93.53892558377001,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 33.191724020775915
+ ],
+ [
+ -93.75030327290617,
+ 33.50497907499284
+ ],
+ [
+ -94.17305865117848,
+ 33.50497907499284
+ ],
+ [
+ -94.38443634031464,
+ 33.191724020775915
+ ],
+ [
+ -94.17305865117848,
+ 32.87846896655899
+ ],
+ [
+ -93.75030327290617,
+ 32.87846896655899
+ ],
+ [
+ -93.53892558377001,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 33.81823412920977
+ ],
+ [
+ -93.75030327290617,
+ 34.131489183426694
+ ],
+ [
+ -94.17305865117848,
+ 34.131489183426694
+ ],
+ [
+ -94.38443634031464,
+ 33.81823412920977
+ ],
+ [
+ -94.17305865117848,
+ 33.504979074992846
+ ],
+ [
+ -93.75030327290617,
+ 33.504979074992846
+ ],
+ [
+ -93.53892558377001,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 34.444744237643626
+ ],
+ [
+ -93.75030327290617,
+ 34.75799929186055
+ ],
+ [
+ -94.17305865117848,
+ 34.75799929186055
+ ],
+ [
+ -94.38443634031464,
+ 34.444744237643626
+ ],
+ [
+ -94.17305865117848,
+ 34.1314891834267
+ ],
+ [
+ -93.75030327290617,
+ 34.1314891834267
+ ],
+ [
+ -93.53892558377001,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 35.07125434607748
+ ],
+ [
+ -93.75030327290617,
+ 35.384509400294405
+ ],
+ [
+ -94.17305865117848,
+ 35.384509400294405
+ ],
+ [
+ -94.38443634031464,
+ 35.07125434607748
+ ],
+ [
+ -94.17305865117848,
+ 34.75799929186056
+ ],
+ [
+ -93.75030327290617,
+ 34.75799929186056
+ ],
+ [
+ -93.53892558377001,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ],
+ [
+ -93.75030327290617,
+ 36.01101950872826
+ ],
+ [
+ -94.17305865117848,
+ 36.01101950872826
+ ],
+ [
+ -94.38443634031464,
+ 35.697764454511336
+ ],
+ [
+ -94.17305865117848,
+ 35.38450940029441
+ ],
+ [
+ -93.75030327290617,
+ 35.38450940029441
+ ],
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 36.324274562945185
+ ],
+ [
+ -93.75030327290617,
+ 36.63752961716211
+ ],
+ [
+ -94.17305865117848,
+ 36.63752961716211
+ ],
+ [
+ -94.38443634031464,
+ 36.324274562945185
+ ],
+ [
+ -94.17305865117848,
+ 36.01101950872826
+ ],
+ [
+ -93.75030327290617,
+ 36.01101950872826
+ ],
+ [
+ -93.53892558377001,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 36.95078467137904
+ ],
+ [
+ -93.75030327290617,
+ 37.264039725595964
+ ],
+ [
+ -94.17305865117848,
+ 37.264039725595964
+ ],
+ [
+ -94.38443634031464,
+ 36.95078467137904
+ ],
+ [
+ -94.17305865117848,
+ 36.637529617162116
+ ],
+ [
+ -93.75030327290617,
+ 36.637529617162116
+ ],
+ [
+ -93.53892558377001,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 37.577294779812895
+ ],
+ [
+ -93.75030327290617,
+ 37.89054983402982
+ ],
+ [
+ -94.17305865117848,
+ 37.89054983402982
+ ],
+ [
+ -94.38443634031464,
+ 37.577294779812895
+ ],
+ [
+ -94.17305865117848,
+ 37.26403972559597
+ ],
+ [
+ -93.75030327290617,
+ 37.26403972559597
+ ],
+ [
+ -93.53892558377001,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 38.20380488824675
+ ],
+ [
+ -93.75030327290617,
+ 38.517059942463675
+ ],
+ [
+ -94.17305865117848,
+ 38.517059942463675
+ ],
+ [
+ -94.38443634031464,
+ 38.20380488824675
+ ],
+ [
+ -94.17305865117848,
+ 37.89054983402983
+ ],
+ [
+ -93.75030327290617,
+ 37.89054983402983
+ ],
+ [
+ -93.53892558377001,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 38.830314996680606
+ ],
+ [
+ -93.75030327290617,
+ 39.14357005089753
+ ],
+ [
+ -94.17305865117848,
+ 39.14357005089753
+ ],
+ [
+ -94.38443634031464,
+ 38.830314996680606
+ ],
+ [
+ -94.17305865117848,
+ 38.51705994246368
+ ],
+ [
+ -93.75030327290617,
+ 38.51705994246368
+ ],
+ [
+ -93.53892558377001,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 39.45682510511446
+ ],
+ [
+ -93.75030327290617,
+ 39.770080159331386
+ ],
+ [
+ -94.17305865117848,
+ 39.770080159331386
+ ],
+ [
+ -94.38443634031464,
+ 39.45682510511446
+ ],
+ [
+ -94.17305865117848,
+ 39.14357005089754
+ ],
+ [
+ -93.75030327290617,
+ 39.14357005089754
+ ],
+ [
+ -93.53892558377001,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 40.08333521354832
+ ],
+ [
+ -93.75030327290617,
+ 40.39659026776524
+ ],
+ [
+ -94.17305865117848,
+ 40.39659026776524
+ ],
+ [
+ -94.38443634031464,
+ 40.08333521354832
+ ],
+ [
+ -94.17305865117848,
+ 39.77008015933139
+ ],
+ [
+ -93.75030327290617,
+ 39.77008015933139
+ ],
+ [
+ -93.53892558377001,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.53892558377001,
+ 40.70984532198217
+ ],
+ [
+ -93.75030327290617,
+ 41.023100376199096
+ ],
+ [
+ -94.17305865117848,
+ 41.023100376199096
+ ],
+ [
+ -94.38443634031464,
+ 40.70984532198217
+ ],
+ [
+ -94.17305865117848,
+ 40.39659026776525
+ ],
+ [
+ -93.75030327290617,
+ 40.39659026776525
+ ],
+ [
+ -93.53892558377001,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 30.99893864125743
+ ],
+ [
+ -93.1161702054977,
+ 31.312193695474356
+ ],
+ [
+ -93.53892558377001,
+ 31.312193695474356
+ ],
+ [
+ -93.75030327290617,
+ 30.99893864125743
+ ],
+ [
+ -93.53892558377001,
+ 30.6856835870405
+ ],
+ [
+ -93.1161702054977,
+ 30.6856835870405
+ ],
+ [
+ -92.90479251636154,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 31.62544874969128
+ ],
+ [
+ -93.1161702054977,
+ 31.938703803908208
+ ],
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ],
+ [
+ -93.75030327290617,
+ 31.62544874969128
+ ],
+ [
+ -93.53892558377001,
+ 31.312193695474352
+ ],
+ [
+ -93.1161702054977,
+ 31.312193695474352
+ ],
+ [
+ -92.90479251636154,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ],
+ [
+ -93.1161702054977,
+ 32.56521391234206
+ ],
+ [
+ -93.53892558377001,
+ 32.56521391234206
+ ],
+ [
+ -93.75030327290617,
+ 32.251958858125136
+ ],
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ],
+ [
+ -93.1161702054977,
+ 31.938703803908208
+ ],
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 32.87846896655899
+ ],
+ [
+ -93.1161702054977,
+ 33.191724020775915
+ ],
+ [
+ -93.53892558377001,
+ 33.191724020775915
+ ],
+ [
+ -93.75030327290617,
+ 32.87846896655899
+ ],
+ [
+ -93.53892558377001,
+ 32.56521391234207
+ ],
+ [
+ -93.1161702054977,
+ 32.56521391234207
+ ],
+ [
+ -92.90479251636154,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 33.504979074992846
+ ],
+ [
+ -93.1161702054977,
+ 33.81823412920977
+ ],
+ [
+ -93.53892558377001,
+ 33.81823412920977
+ ],
+ [
+ -93.75030327290617,
+ 33.504979074992846
+ ],
+ [
+ -93.53892558377001,
+ 33.19172402077592
+ ],
+ [
+ -93.1161702054977,
+ 33.19172402077592
+ ],
+ [
+ -92.90479251636154,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 34.1314891834267
+ ],
+ [
+ -93.1161702054977,
+ 34.444744237643626
+ ],
+ [
+ -93.53892558377001,
+ 34.444744237643626
+ ],
+ [
+ -93.75030327290617,
+ 34.1314891834267
+ ],
+ [
+ -93.53892558377001,
+ 33.81823412920978
+ ],
+ [
+ -93.1161702054977,
+ 33.81823412920978
+ ],
+ [
+ -92.90479251636154,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 34.75799929186056
+ ],
+ [
+ -93.1161702054977,
+ 35.07125434607748
+ ],
+ [
+ -93.53892558377001,
+ 35.07125434607748
+ ],
+ [
+ -93.75030327290617,
+ 34.75799929186056
+ ],
+ [
+ -93.53892558377001,
+ 34.44474423764363
+ ],
+ [
+ -93.1161702054977,
+ 34.44474423764363
+ ],
+ [
+ -92.90479251636154,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 35.38450940029441
+ ],
+ [
+ -93.1161702054977,
+ 35.697764454511336
+ ],
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ],
+ [
+ -93.75030327290617,
+ 35.38450940029441
+ ],
+ [
+ -93.53892558377001,
+ 35.07125434607749
+ ],
+ [
+ -93.1161702054977,
+ 35.07125434607749
+ ],
+ [
+ -92.90479251636154,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ],
+ [
+ -93.1161702054977,
+ 36.324274562945185
+ ],
+ [
+ -93.53892558377001,
+ 36.324274562945185
+ ],
+ [
+ -93.75030327290617,
+ 36.01101950872826
+ ],
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ],
+ [
+ -93.1161702054977,
+ 35.697764454511336
+ ],
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 36.637529617162116
+ ],
+ [
+ -93.1161702054977,
+ 36.95078467137904
+ ],
+ [
+ -93.53892558377001,
+ 36.95078467137904
+ ],
+ [
+ -93.75030327290617,
+ 36.637529617162116
+ ],
+ [
+ -93.53892558377001,
+ 36.32427456294519
+ ],
+ [
+ -93.1161702054977,
+ 36.32427456294519
+ ],
+ [
+ -92.90479251636154,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 37.26403972559597
+ ],
+ [
+ -93.1161702054977,
+ 37.577294779812895
+ ],
+ [
+ -93.53892558377001,
+ 37.577294779812895
+ ],
+ [
+ -93.75030327290617,
+ 37.26403972559597
+ ],
+ [
+ -93.53892558377001,
+ 36.95078467137905
+ ],
+ [
+ -93.1161702054977,
+ 36.95078467137905
+ ],
+ [
+ -92.90479251636154,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 37.89054983402983
+ ],
+ [
+ -93.1161702054977,
+ 38.20380488824675
+ ],
+ [
+ -93.53892558377001,
+ 38.20380488824675
+ ],
+ [
+ -93.75030327290617,
+ 37.89054983402983
+ ],
+ [
+ -93.53892558377001,
+ 37.5772947798129
+ ],
+ [
+ -93.1161702054977,
+ 37.5772947798129
+ ],
+ [
+ -92.90479251636154,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 38.51705994246368
+ ],
+ [
+ -93.1161702054977,
+ 38.830314996680606
+ ],
+ [
+ -93.53892558377001,
+ 38.830314996680606
+ ],
+ [
+ -93.75030327290617,
+ 38.51705994246368
+ ],
+ [
+ -93.53892558377001,
+ 38.20380488824676
+ ],
+ [
+ -93.1161702054977,
+ 38.20380488824676
+ ],
+ [
+ -92.90479251636154,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 39.14357005089754
+ ],
+ [
+ -93.1161702054977,
+ 39.45682510511446
+ ],
+ [
+ -93.53892558377001,
+ 39.45682510511446
+ ],
+ [
+ -93.75030327290617,
+ 39.14357005089754
+ ],
+ [
+ -93.53892558377001,
+ 38.83031499668061
+ ],
+ [
+ -93.1161702054977,
+ 38.83031499668061
+ ],
+ [
+ -92.90479251636154,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 39.77008015933139
+ ],
+ [
+ -93.1161702054977,
+ 40.08333521354832
+ ],
+ [
+ -93.53892558377001,
+ 40.08333521354832
+ ],
+ [
+ -93.75030327290617,
+ 39.77008015933139
+ ],
+ [
+ -93.53892558377001,
+ 39.45682510511447
+ ],
+ [
+ -93.1161702054977,
+ 39.45682510511447
+ ],
+ [
+ -92.90479251636154,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.90479251636154,
+ 40.39659026776525
+ ],
+ [
+ -93.1161702054977,
+ 40.70984532198217
+ ],
+ [
+ -93.53892558377001,
+ 40.70984532198217
+ ],
+ [
+ -93.75030327290617,
+ 40.39659026776525
+ ],
+ [
+ -93.53892558377001,
+ 40.083335213548324
+ ],
+ [
+ -93.1161702054977,
+ 40.083335213548324
+ ],
+ [
+ -92.90479251636154,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 31.312193695474356
+ ],
+ [
+ -92.48203713808923,
+ 31.625448749691284
+ ],
+ [
+ -92.90479251636154,
+ 31.625448749691284
+ ],
+ [
+ -93.1161702054977,
+ 31.312193695474356
+ ],
+ [
+ -92.90479251636154,
+ 30.99893864125743
+ ],
+ [
+ -92.48203713808923,
+ 30.99893864125743
+ ],
+ [
+ -92.27065944895307,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 31.938703803908208
+ ],
+ [
+ -92.48203713808923,
+ 32.251958858125136
+ ],
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ],
+ [
+ -93.1161702054977,
+ 31.938703803908208
+ ],
+ [
+ -92.90479251636154,
+ 31.62544874969128
+ ],
+ [
+ -92.48203713808923,
+ 31.62544874969128
+ ],
+ [
+ -92.27065944895307,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 32.56521391234206
+ ],
+ [
+ -92.48203713808923,
+ 32.878468966558984
+ ],
+ [
+ -92.90479251636154,
+ 32.878468966558984
+ ],
+ [
+ -93.1161702054977,
+ 32.56521391234206
+ ],
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ],
+ [
+ -92.48203713808923,
+ 32.251958858125136
+ ],
+ [
+ -92.27065944895307,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 33.191724020775915
+ ],
+ [
+ -92.48203713808923,
+ 33.50497907499284
+ ],
+ [
+ -92.90479251636154,
+ 33.50497907499284
+ ],
+ [
+ -93.1161702054977,
+ 33.191724020775915
+ ],
+ [
+ -92.90479251636154,
+ 32.87846896655899
+ ],
+ [
+ -92.48203713808923,
+ 32.87846896655899
+ ],
+ [
+ -92.27065944895307,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 33.81823412920977
+ ],
+ [
+ -92.48203713808923,
+ 34.131489183426694
+ ],
+ [
+ -92.90479251636154,
+ 34.131489183426694
+ ],
+ [
+ -93.1161702054977,
+ 33.81823412920977
+ ],
+ [
+ -92.90479251636154,
+ 33.504979074992846
+ ],
+ [
+ -92.48203713808923,
+ 33.504979074992846
+ ],
+ [
+ -92.27065944895307,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 34.444744237643626
+ ],
+ [
+ -92.48203713808923,
+ 34.75799929186055
+ ],
+ [
+ -92.90479251636154,
+ 34.75799929186055
+ ],
+ [
+ -93.1161702054977,
+ 34.444744237643626
+ ],
+ [
+ -92.90479251636154,
+ 34.1314891834267
+ ],
+ [
+ -92.48203713808923,
+ 34.1314891834267
+ ],
+ [
+ -92.27065944895307,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 35.07125434607748
+ ],
+ [
+ -92.48203713808923,
+ 35.384509400294405
+ ],
+ [
+ -92.90479251636154,
+ 35.384509400294405
+ ],
+ [
+ -93.1161702054977,
+ 35.07125434607748
+ ],
+ [
+ -92.90479251636154,
+ 34.75799929186056
+ ],
+ [
+ -92.48203713808923,
+ 34.75799929186056
+ ],
+ [
+ -92.27065944895307,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 35.697764454511336
+ ],
+ [
+ -92.48203713808923,
+ 36.01101950872826
+ ],
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ],
+ [
+ -93.1161702054977,
+ 35.697764454511336
+ ],
+ [
+ -92.90479251636154,
+ 35.38450940029441
+ ],
+ [
+ -92.48203713808923,
+ 35.38450940029441
+ ],
+ [
+ -92.27065944895307,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 36.324274562945185
+ ],
+ [
+ -92.48203713808923,
+ 36.63752961716211
+ ],
+ [
+ -92.90479251636154,
+ 36.63752961716211
+ ],
+ [
+ -93.1161702054977,
+ 36.324274562945185
+ ],
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ],
+ [
+ -92.48203713808923,
+ 36.01101950872826
+ ],
+ [
+ -92.27065944895307,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 36.95078467137904
+ ],
+ [
+ -92.48203713808923,
+ 37.264039725595964
+ ],
+ [
+ -92.90479251636154,
+ 37.264039725595964
+ ],
+ [
+ -93.1161702054977,
+ 36.95078467137904
+ ],
+ [
+ -92.90479251636154,
+ 36.637529617162116
+ ],
+ [
+ -92.48203713808923,
+ 36.637529617162116
+ ],
+ [
+ -92.27065944895307,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 37.577294779812895
+ ],
+ [
+ -92.48203713808923,
+ 37.89054983402982
+ ],
+ [
+ -92.90479251636154,
+ 37.89054983402982
+ ],
+ [
+ -93.1161702054977,
+ 37.577294779812895
+ ],
+ [
+ -92.90479251636154,
+ 37.26403972559597
+ ],
+ [
+ -92.48203713808923,
+ 37.26403972559597
+ ],
+ [
+ -92.27065944895307,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 38.20380488824675
+ ],
+ [
+ -92.48203713808923,
+ 38.517059942463675
+ ],
+ [
+ -92.90479251636154,
+ 38.517059942463675
+ ],
+ [
+ -93.1161702054977,
+ 38.20380488824675
+ ],
+ [
+ -92.90479251636154,
+ 37.89054983402983
+ ],
+ [
+ -92.48203713808923,
+ 37.89054983402983
+ ],
+ [
+ -92.27065944895307,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 38.830314996680606
+ ],
+ [
+ -92.48203713808923,
+ 39.14357005089753
+ ],
+ [
+ -92.90479251636154,
+ 39.14357005089753
+ ],
+ [
+ -93.1161702054977,
+ 38.830314996680606
+ ],
+ [
+ -92.90479251636154,
+ 38.51705994246368
+ ],
+ [
+ -92.48203713808923,
+ 38.51705994246368
+ ],
+ [
+ -92.27065944895307,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 39.45682510511446
+ ],
+ [
+ -92.48203713808923,
+ 39.770080159331386
+ ],
+ [
+ -92.90479251636154,
+ 39.770080159331386
+ ],
+ [
+ -93.1161702054977,
+ 39.45682510511446
+ ],
+ [
+ -92.90479251636154,
+ 39.14357005089754
+ ],
+ [
+ -92.48203713808923,
+ 39.14357005089754
+ ],
+ [
+ -92.27065944895307,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 40.08333521354832
+ ],
+ [
+ -92.48203713808923,
+ 40.39659026776524
+ ],
+ [
+ -92.90479251636154,
+ 40.39659026776524
+ ],
+ [
+ -93.1161702054977,
+ 40.08333521354832
+ ],
+ [
+ -92.90479251636154,
+ 39.77008015933139
+ ],
+ [
+ -92.48203713808923,
+ 39.77008015933139
+ ],
+ [
+ -92.27065944895307,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.27065944895307,
+ 40.70984532198217
+ ],
+ [
+ -92.48203713808923,
+ 41.023100376199096
+ ],
+ [
+ -92.90479251636154,
+ 41.023100376199096
+ ],
+ [
+ -93.1161702054977,
+ 40.70984532198217
+ ],
+ [
+ -92.90479251636154,
+ 40.39659026776525
+ ],
+ [
+ -92.48203713808923,
+ 40.39659026776525
+ ],
+ [
+ -92.27065944895307,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 30.99893864125743
+ ],
+ [
+ -91.84790407068077,
+ 31.312193695474356
+ ],
+ [
+ -92.27065944895308,
+ 31.312193695474356
+ ],
+ [
+ -92.48203713808924,
+ 30.99893864125743
+ ],
+ [
+ -92.27065944895308,
+ 30.6856835870405
+ ],
+ [
+ -91.84790407068077,
+ 30.6856835870405
+ ],
+ [
+ -91.63652638154461,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 31.62544874969128
+ ],
+ [
+ -91.84790407068077,
+ 31.938703803908208
+ ],
+ [
+ -92.27065944895308,
+ 31.938703803908208
+ ],
+ [
+ -92.48203713808924,
+ 31.62544874969128
+ ],
+ [
+ -92.27065944895308,
+ 31.312193695474352
+ ],
+ [
+ -91.84790407068077,
+ 31.312193695474352
+ ],
+ [
+ -91.63652638154461,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ],
+ [
+ -91.84790407068077,
+ 32.56521391234206
+ ],
+ [
+ -92.27065944895308,
+ 32.56521391234206
+ ],
+ [
+ -92.48203713808924,
+ 32.251958858125136
+ ],
+ [
+ -92.27065944895308,
+ 31.938703803908208
+ ],
+ [
+ -91.84790407068077,
+ 31.938703803908208
+ ],
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 32.87846896655899
+ ],
+ [
+ -91.84790407068077,
+ 33.191724020775915
+ ],
+ [
+ -92.27065944895308,
+ 33.191724020775915
+ ],
+ [
+ -92.48203713808924,
+ 32.87846896655899
+ ],
+ [
+ -92.27065944895308,
+ 32.56521391234207
+ ],
+ [
+ -91.84790407068077,
+ 32.56521391234207
+ ],
+ [
+ -91.63652638154461,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 33.504979074992846
+ ],
+ [
+ -91.84790407068077,
+ 33.81823412920977
+ ],
+ [
+ -92.27065944895308,
+ 33.81823412920977
+ ],
+ [
+ -92.48203713808924,
+ 33.504979074992846
+ ],
+ [
+ -92.27065944895308,
+ 33.19172402077592
+ ],
+ [
+ -91.84790407068077,
+ 33.19172402077592
+ ],
+ [
+ -91.63652638154461,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 34.1314891834267
+ ],
+ [
+ -91.84790407068077,
+ 34.444744237643626
+ ],
+ [
+ -92.27065944895308,
+ 34.444744237643626
+ ],
+ [
+ -92.48203713808924,
+ 34.1314891834267
+ ],
+ [
+ -92.27065944895308,
+ 33.81823412920978
+ ],
+ [
+ -91.84790407068077,
+ 33.81823412920978
+ ],
+ [
+ -91.63652638154461,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 34.75799929186056
+ ],
+ [
+ -91.84790407068077,
+ 35.07125434607748
+ ],
+ [
+ -92.27065944895308,
+ 35.07125434607748
+ ],
+ [
+ -92.48203713808924,
+ 34.75799929186056
+ ],
+ [
+ -92.27065944895308,
+ 34.44474423764363
+ ],
+ [
+ -91.84790407068077,
+ 34.44474423764363
+ ],
+ [
+ -91.63652638154461,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 35.38450940029441
+ ],
+ [
+ -91.84790407068077,
+ 35.697764454511336
+ ],
+ [
+ -92.27065944895308,
+ 35.697764454511336
+ ],
+ [
+ -92.48203713808924,
+ 35.38450940029441
+ ],
+ [
+ -92.27065944895308,
+ 35.07125434607749
+ ],
+ [
+ -91.84790407068077,
+ 35.07125434607749
+ ],
+ [
+ -91.63652638154461,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ],
+ [
+ -91.84790407068077,
+ 36.324274562945185
+ ],
+ [
+ -92.27065944895308,
+ 36.324274562945185
+ ],
+ [
+ -92.48203713808924,
+ 36.01101950872826
+ ],
+ [
+ -92.27065944895308,
+ 35.697764454511336
+ ],
+ [
+ -91.84790407068077,
+ 35.697764454511336
+ ],
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 36.637529617162116
+ ],
+ [
+ -91.84790407068077,
+ 36.95078467137904
+ ],
+ [
+ -92.27065944895308,
+ 36.95078467137904
+ ],
+ [
+ -92.48203713808924,
+ 36.637529617162116
+ ],
+ [
+ -92.27065944895308,
+ 36.32427456294519
+ ],
+ [
+ -91.84790407068077,
+ 36.32427456294519
+ ],
+ [
+ -91.63652638154461,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 37.26403972559597
+ ],
+ [
+ -91.84790407068077,
+ 37.577294779812895
+ ],
+ [
+ -92.27065944895308,
+ 37.577294779812895
+ ],
+ [
+ -92.48203713808924,
+ 37.26403972559597
+ ],
+ [
+ -92.27065944895308,
+ 36.95078467137905
+ ],
+ [
+ -91.84790407068077,
+ 36.95078467137905
+ ],
+ [
+ -91.63652638154461,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 37.89054983402983
+ ],
+ [
+ -91.84790407068077,
+ 38.20380488824675
+ ],
+ [
+ -92.27065944895308,
+ 38.20380488824675
+ ],
+ [
+ -92.48203713808924,
+ 37.89054983402983
+ ],
+ [
+ -92.27065944895308,
+ 37.5772947798129
+ ],
+ [
+ -91.84790407068077,
+ 37.5772947798129
+ ],
+ [
+ -91.63652638154461,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 38.51705994246368
+ ],
+ [
+ -91.84790407068077,
+ 38.830314996680606
+ ],
+ [
+ -92.27065944895308,
+ 38.830314996680606
+ ],
+ [
+ -92.48203713808924,
+ 38.51705994246368
+ ],
+ [
+ -92.27065944895308,
+ 38.20380488824676
+ ],
+ [
+ -91.84790407068077,
+ 38.20380488824676
+ ],
+ [
+ -91.63652638154461,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 39.14357005089754
+ ],
+ [
+ -91.84790407068077,
+ 39.45682510511446
+ ],
+ [
+ -92.27065944895308,
+ 39.45682510511446
+ ],
+ [
+ -92.48203713808924,
+ 39.14357005089754
+ ],
+ [
+ -92.27065944895308,
+ 38.83031499668061
+ ],
+ [
+ -91.84790407068077,
+ 38.83031499668061
+ ],
+ [
+ -91.63652638154461,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 39.77008015933139
+ ],
+ [
+ -91.84790407068077,
+ 40.08333521354832
+ ],
+ [
+ -92.27065944895308,
+ 40.08333521354832
+ ],
+ [
+ -92.48203713808924,
+ 39.77008015933139
+ ],
+ [
+ -92.27065944895308,
+ 39.45682510511447
+ ],
+ [
+ -91.84790407068077,
+ 39.45682510511447
+ ],
+ [
+ -91.63652638154461,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.63652638154461,
+ 40.39659026776525
+ ],
+ [
+ -91.84790407068077,
+ 40.70984532198217
+ ],
+ [
+ -92.27065944895308,
+ 40.70984532198217
+ ],
+ [
+ -92.48203713808924,
+ 40.39659026776525
+ ],
+ [
+ -92.27065944895308,
+ 40.083335213548324
+ ],
+ [
+ -91.84790407068077,
+ 40.083335213548324
+ ],
+ [
+ -91.63652638154461,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 31.312193695474356
+ ],
+ [
+ -91.2137710032723,
+ 31.625448749691284
+ ],
+ [
+ -91.63652638154461,
+ 31.625448749691284
+ ],
+ [
+ -91.84790407068077,
+ 31.312193695474356
+ ],
+ [
+ -91.63652638154461,
+ 30.99893864125743
+ ],
+ [
+ -91.2137710032723,
+ 30.99893864125743
+ ],
+ [
+ -91.00239331413614,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 31.938703803908208
+ ],
+ [
+ -91.2137710032723,
+ 32.251958858125136
+ ],
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ],
+ [
+ -91.84790407068077,
+ 31.938703803908208
+ ],
+ [
+ -91.63652638154461,
+ 31.62544874969128
+ ],
+ [
+ -91.2137710032723,
+ 31.62544874969128
+ ],
+ [
+ -91.00239331413614,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 32.56521391234206
+ ],
+ [
+ -91.2137710032723,
+ 32.878468966558984
+ ],
+ [
+ -91.63652638154461,
+ 32.878468966558984
+ ],
+ [
+ -91.84790407068077,
+ 32.56521391234206
+ ],
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ],
+ [
+ -91.2137710032723,
+ 32.251958858125136
+ ],
+ [
+ -91.00239331413614,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 33.191724020775915
+ ],
+ [
+ -91.2137710032723,
+ 33.50497907499284
+ ],
+ [
+ -91.63652638154461,
+ 33.50497907499284
+ ],
+ [
+ -91.84790407068077,
+ 33.191724020775915
+ ],
+ [
+ -91.63652638154461,
+ 32.87846896655899
+ ],
+ [
+ -91.2137710032723,
+ 32.87846896655899
+ ],
+ [
+ -91.00239331413614,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 33.81823412920977
+ ],
+ [
+ -91.2137710032723,
+ 34.131489183426694
+ ],
+ [
+ -91.63652638154461,
+ 34.131489183426694
+ ],
+ [
+ -91.84790407068077,
+ 33.81823412920977
+ ],
+ [
+ -91.63652638154461,
+ 33.504979074992846
+ ],
+ [
+ -91.2137710032723,
+ 33.504979074992846
+ ],
+ [
+ -91.00239331413614,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 34.444744237643626
+ ],
+ [
+ -91.2137710032723,
+ 34.75799929186055
+ ],
+ [
+ -91.63652638154461,
+ 34.75799929186055
+ ],
+ [
+ -91.84790407068077,
+ 34.444744237643626
+ ],
+ [
+ -91.63652638154461,
+ 34.1314891834267
+ ],
+ [
+ -91.2137710032723,
+ 34.1314891834267
+ ],
+ [
+ -91.00239331413614,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 35.07125434607748
+ ],
+ [
+ -91.2137710032723,
+ 35.384509400294405
+ ],
+ [
+ -91.63652638154461,
+ 35.384509400294405
+ ],
+ [
+ -91.84790407068077,
+ 35.07125434607748
+ ],
+ [
+ -91.63652638154461,
+ 34.75799929186056
+ ],
+ [
+ -91.2137710032723,
+ 34.75799929186056
+ ],
+ [
+ -91.00239331413614,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 35.697764454511336
+ ],
+ [
+ -91.2137710032723,
+ 36.01101950872826
+ ],
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ],
+ [
+ -91.84790407068077,
+ 35.697764454511336
+ ],
+ [
+ -91.63652638154461,
+ 35.38450940029441
+ ],
+ [
+ -91.2137710032723,
+ 35.38450940029441
+ ],
+ [
+ -91.00239331413614,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 36.324274562945185
+ ],
+ [
+ -91.2137710032723,
+ 36.63752961716211
+ ],
+ [
+ -91.63652638154461,
+ 36.63752961716211
+ ],
+ [
+ -91.84790407068077,
+ 36.324274562945185
+ ],
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ],
+ [
+ -91.2137710032723,
+ 36.01101950872826
+ ],
+ [
+ -91.00239331413614,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 36.95078467137904
+ ],
+ [
+ -91.2137710032723,
+ 37.264039725595964
+ ],
+ [
+ -91.63652638154461,
+ 37.264039725595964
+ ],
+ [
+ -91.84790407068077,
+ 36.95078467137904
+ ],
+ [
+ -91.63652638154461,
+ 36.637529617162116
+ ],
+ [
+ -91.2137710032723,
+ 36.637529617162116
+ ],
+ [
+ -91.00239331413614,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 37.577294779812895
+ ],
+ [
+ -91.2137710032723,
+ 37.89054983402982
+ ],
+ [
+ -91.63652638154461,
+ 37.89054983402982
+ ],
+ [
+ -91.84790407068077,
+ 37.577294779812895
+ ],
+ [
+ -91.63652638154461,
+ 37.26403972559597
+ ],
+ [
+ -91.2137710032723,
+ 37.26403972559597
+ ],
+ [
+ -91.00239331413614,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 38.20380488824675
+ ],
+ [
+ -91.2137710032723,
+ 38.517059942463675
+ ],
+ [
+ -91.63652638154461,
+ 38.517059942463675
+ ],
+ [
+ -91.84790407068077,
+ 38.20380488824675
+ ],
+ [
+ -91.63652638154461,
+ 37.89054983402983
+ ],
+ [
+ -91.2137710032723,
+ 37.89054983402983
+ ],
+ [
+ -91.00239331413614,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 38.830314996680606
+ ],
+ [
+ -91.2137710032723,
+ 39.14357005089753
+ ],
+ [
+ -91.63652638154461,
+ 39.14357005089753
+ ],
+ [
+ -91.84790407068077,
+ 38.830314996680606
+ ],
+ [
+ -91.63652638154461,
+ 38.51705994246368
+ ],
+ [
+ -91.2137710032723,
+ 38.51705994246368
+ ],
+ [
+ -91.00239331413614,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 39.45682510511446
+ ],
+ [
+ -91.2137710032723,
+ 39.770080159331386
+ ],
+ [
+ -91.63652638154461,
+ 39.770080159331386
+ ],
+ [
+ -91.84790407068077,
+ 39.45682510511446
+ ],
+ [
+ -91.63652638154461,
+ 39.14357005089754
+ ],
+ [
+ -91.2137710032723,
+ 39.14357005089754
+ ],
+ [
+ -91.00239331413614,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 40.08333521354832
+ ],
+ [
+ -91.2137710032723,
+ 40.39659026776524
+ ],
+ [
+ -91.63652638154461,
+ 40.39659026776524
+ ],
+ [
+ -91.84790407068077,
+ 40.08333521354832
+ ],
+ [
+ -91.63652638154461,
+ 39.77008015933139
+ ],
+ [
+ -91.2137710032723,
+ 39.77008015933139
+ ],
+ [
+ -91.00239331413614,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.00239331413614,
+ 40.70984532198217
+ ],
+ [
+ -91.2137710032723,
+ 41.023100376199096
+ ],
+ [
+ -91.63652638154461,
+ 41.023100376199096
+ ],
+ [
+ -91.84790407068077,
+ 40.70984532198217
+ ],
+ [
+ -91.63652638154461,
+ 40.39659026776525
+ ],
+ [
+ -91.2137710032723,
+ 40.39659026776525
+ ],
+ [
+ -91.00239331413614,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 30.99893864125743
+ ],
+ [
+ -90.57963793586384,
+ 31.312193695474356
+ ],
+ [
+ -91.00239331413616,
+ 31.312193695474356
+ ],
+ [
+ -91.21377100327231,
+ 30.99893864125743
+ ],
+ [
+ -91.00239331413616,
+ 30.6856835870405
+ ],
+ [
+ -90.57963793586384,
+ 30.6856835870405
+ ],
+ [
+ -90.36826024672769,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 31.62544874969128
+ ],
+ [
+ -90.57963793586384,
+ 31.938703803908208
+ ],
+ [
+ -91.00239331413616,
+ 31.938703803908208
+ ],
+ [
+ -91.21377100327231,
+ 31.62544874969128
+ ],
+ [
+ -91.00239331413616,
+ 31.312193695474352
+ ],
+ [
+ -90.57963793586384,
+ 31.312193695474352
+ ],
+ [
+ -90.36826024672769,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ],
+ [
+ -90.57963793586384,
+ 32.56521391234206
+ ],
+ [
+ -91.00239331413616,
+ 32.56521391234206
+ ],
+ [
+ -91.21377100327231,
+ 32.251958858125136
+ ],
+ [
+ -91.00239331413616,
+ 31.938703803908208
+ ],
+ [
+ -90.57963793586384,
+ 31.938703803908208
+ ],
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 32.87846896655899
+ ],
+ [
+ -90.57963793586384,
+ 33.191724020775915
+ ],
+ [
+ -91.00239331413616,
+ 33.191724020775915
+ ],
+ [
+ -91.21377100327231,
+ 32.87846896655899
+ ],
+ [
+ -91.00239331413616,
+ 32.56521391234207
+ ],
+ [
+ -90.57963793586384,
+ 32.56521391234207
+ ],
+ [
+ -90.36826024672769,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 33.504979074992846
+ ],
+ [
+ -90.57963793586384,
+ 33.81823412920977
+ ],
+ [
+ -91.00239331413616,
+ 33.81823412920977
+ ],
+ [
+ -91.21377100327231,
+ 33.504979074992846
+ ],
+ [
+ -91.00239331413616,
+ 33.19172402077592
+ ],
+ [
+ -90.57963793586384,
+ 33.19172402077592
+ ],
+ [
+ -90.36826024672769,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 34.1314891834267
+ ],
+ [
+ -90.57963793586384,
+ 34.444744237643626
+ ],
+ [
+ -91.00239331413616,
+ 34.444744237643626
+ ],
+ [
+ -91.21377100327231,
+ 34.1314891834267
+ ],
+ [
+ -91.00239331413616,
+ 33.81823412920978
+ ],
+ [
+ -90.57963793586384,
+ 33.81823412920978
+ ],
+ [
+ -90.36826024672769,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 34.75799929186056
+ ],
+ [
+ -90.57963793586384,
+ 35.07125434607748
+ ],
+ [
+ -91.00239331413616,
+ 35.07125434607748
+ ],
+ [
+ -91.21377100327231,
+ 34.75799929186056
+ ],
+ [
+ -91.00239331413616,
+ 34.44474423764363
+ ],
+ [
+ -90.57963793586384,
+ 34.44474423764363
+ ],
+ [
+ -90.36826024672769,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 35.38450940029441
+ ],
+ [
+ -90.57963793586384,
+ 35.697764454511336
+ ],
+ [
+ -91.00239331413616,
+ 35.697764454511336
+ ],
+ [
+ -91.21377100327231,
+ 35.38450940029441
+ ],
+ [
+ -91.00239331413616,
+ 35.07125434607749
+ ],
+ [
+ -90.57963793586384,
+ 35.07125434607749
+ ],
+ [
+ -90.36826024672769,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ],
+ [
+ -90.57963793586384,
+ 36.324274562945185
+ ],
+ [
+ -91.00239331413616,
+ 36.324274562945185
+ ],
+ [
+ -91.21377100327231,
+ 36.01101950872826
+ ],
+ [
+ -91.00239331413616,
+ 35.697764454511336
+ ],
+ [
+ -90.57963793586384,
+ 35.697764454511336
+ ],
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 36.637529617162116
+ ],
+ [
+ -90.57963793586384,
+ 36.95078467137904
+ ],
+ [
+ -91.00239331413616,
+ 36.95078467137904
+ ],
+ [
+ -91.21377100327231,
+ 36.637529617162116
+ ],
+ [
+ -91.00239331413616,
+ 36.32427456294519
+ ],
+ [
+ -90.57963793586384,
+ 36.32427456294519
+ ],
+ [
+ -90.36826024672769,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 37.26403972559597
+ ],
+ [
+ -90.57963793586384,
+ 37.577294779812895
+ ],
+ [
+ -91.00239331413616,
+ 37.577294779812895
+ ],
+ [
+ -91.21377100327231,
+ 37.26403972559597
+ ],
+ [
+ -91.00239331413616,
+ 36.95078467137905
+ ],
+ [
+ -90.57963793586384,
+ 36.95078467137905
+ ],
+ [
+ -90.36826024672769,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 37.89054983402983
+ ],
+ [
+ -90.57963793586384,
+ 38.20380488824675
+ ],
+ [
+ -91.00239331413616,
+ 38.20380488824675
+ ],
+ [
+ -91.21377100327231,
+ 37.89054983402983
+ ],
+ [
+ -91.00239331413616,
+ 37.5772947798129
+ ],
+ [
+ -90.57963793586384,
+ 37.5772947798129
+ ],
+ [
+ -90.36826024672769,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 38.51705994246368
+ ],
+ [
+ -90.57963793586384,
+ 38.830314996680606
+ ],
+ [
+ -91.00239331413616,
+ 38.830314996680606
+ ],
+ [
+ -91.21377100327231,
+ 38.51705994246368
+ ],
+ [
+ -91.00239331413616,
+ 38.20380488824676
+ ],
+ [
+ -90.57963793586384,
+ 38.20380488824676
+ ],
+ [
+ -90.36826024672769,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 39.14357005089754
+ ],
+ [
+ -90.57963793586384,
+ 39.45682510511446
+ ],
+ [
+ -91.00239331413616,
+ 39.45682510511446
+ ],
+ [
+ -91.21377100327231,
+ 39.14357005089754
+ ],
+ [
+ -91.00239331413616,
+ 38.83031499668061
+ ],
+ [
+ -90.57963793586384,
+ 38.83031499668061
+ ],
+ [
+ -90.36826024672769,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 39.77008015933139
+ ],
+ [
+ -90.57963793586384,
+ 40.08333521354832
+ ],
+ [
+ -91.00239331413616,
+ 40.08333521354832
+ ],
+ [
+ -91.21377100327231,
+ 39.77008015933139
+ ],
+ [
+ -91.00239331413616,
+ 39.45682510511447
+ ],
+ [
+ -90.57963793586384,
+ 39.45682510511447
+ ],
+ [
+ -90.36826024672769,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.36826024672769,
+ 40.39659026776525
+ ],
+ [
+ -90.57963793586384,
+ 40.70984532198217
+ ],
+ [
+ -91.00239331413616,
+ 40.70984532198217
+ ],
+ [
+ -91.21377100327231,
+ 40.39659026776525
+ ],
+ [
+ -91.00239331413616,
+ 40.083335213548324
+ ],
+ [
+ -90.57963793586384,
+ 40.083335213548324
+ ],
+ [
+ -90.36826024672769,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 31.312193695474356
+ ],
+ [
+ -89.94550486845537,
+ 31.625448749691284
+ ],
+ [
+ -90.36826024672769,
+ 31.625448749691284
+ ],
+ [
+ -90.57963793586384,
+ 31.312193695474356
+ ],
+ [
+ -90.36826024672769,
+ 30.99893864125743
+ ],
+ [
+ -89.94550486845537,
+ 30.99893864125743
+ ],
+ [
+ -89.73412717931922,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ],
+ [
+ -89.94550486845537,
+ 32.251958858125136
+ ],
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ],
+ [
+ -90.57963793586384,
+ 31.938703803908208
+ ],
+ [
+ -90.36826024672769,
+ 31.62544874969128
+ ],
+ [
+ -89.94550486845537,
+ 31.62544874969128
+ ],
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 32.56521391234206
+ ],
+ [
+ -89.94550486845537,
+ 32.878468966558984
+ ],
+ [
+ -90.36826024672769,
+ 32.878468966558984
+ ],
+ [
+ -90.57963793586384,
+ 32.56521391234206
+ ],
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ],
+ [
+ -89.94550486845537,
+ 32.251958858125136
+ ],
+ [
+ -89.73412717931922,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 33.191724020775915
+ ],
+ [
+ -89.94550486845537,
+ 33.50497907499284
+ ],
+ [
+ -90.36826024672769,
+ 33.50497907499284
+ ],
+ [
+ -90.57963793586384,
+ 33.191724020775915
+ ],
+ [
+ -90.36826024672769,
+ 32.87846896655899
+ ],
+ [
+ -89.94550486845537,
+ 32.87846896655899
+ ],
+ [
+ -89.73412717931922,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 33.81823412920977
+ ],
+ [
+ -89.94550486845537,
+ 34.131489183426694
+ ],
+ [
+ -90.36826024672769,
+ 34.131489183426694
+ ],
+ [
+ -90.57963793586384,
+ 33.81823412920977
+ ],
+ [
+ -90.36826024672769,
+ 33.504979074992846
+ ],
+ [
+ -89.94550486845537,
+ 33.504979074992846
+ ],
+ [
+ -89.73412717931922,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 34.444744237643626
+ ],
+ [
+ -89.94550486845537,
+ 34.75799929186055
+ ],
+ [
+ -90.36826024672769,
+ 34.75799929186055
+ ],
+ [
+ -90.57963793586384,
+ 34.444744237643626
+ ],
+ [
+ -90.36826024672769,
+ 34.1314891834267
+ ],
+ [
+ -89.94550486845537,
+ 34.1314891834267
+ ],
+ [
+ -89.73412717931922,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 35.07125434607748
+ ],
+ [
+ -89.94550486845537,
+ 35.384509400294405
+ ],
+ [
+ -90.36826024672769,
+ 35.384509400294405
+ ],
+ [
+ -90.57963793586384,
+ 35.07125434607748
+ ],
+ [
+ -90.36826024672769,
+ 34.75799929186056
+ ],
+ [
+ -89.94550486845537,
+ 34.75799929186056
+ ],
+ [
+ -89.73412717931922,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ],
+ [
+ -89.94550486845537,
+ 36.01101950872826
+ ],
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ],
+ [
+ -90.57963793586384,
+ 35.697764454511336
+ ],
+ [
+ -90.36826024672769,
+ 35.38450940029441
+ ],
+ [
+ -89.94550486845537,
+ 35.38450940029441
+ ],
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 36.324274562945185
+ ],
+ [
+ -89.94550486845537,
+ 36.63752961716211
+ ],
+ [
+ -90.36826024672769,
+ 36.63752961716211
+ ],
+ [
+ -90.57963793586384,
+ 36.324274562945185
+ ],
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ],
+ [
+ -89.94550486845537,
+ 36.01101950872826
+ ],
+ [
+ -89.73412717931922,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 36.95078467137904
+ ],
+ [
+ -89.94550486845537,
+ 37.264039725595964
+ ],
+ [
+ -90.36826024672769,
+ 37.264039725595964
+ ],
+ [
+ -90.57963793586384,
+ 36.95078467137904
+ ],
+ [
+ -90.36826024672769,
+ 36.637529617162116
+ ],
+ [
+ -89.94550486845537,
+ 36.637529617162116
+ ],
+ [
+ -89.73412717931922,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 37.577294779812895
+ ],
+ [
+ -89.94550486845537,
+ 37.89054983402982
+ ],
+ [
+ -90.36826024672769,
+ 37.89054983402982
+ ],
+ [
+ -90.57963793586384,
+ 37.577294779812895
+ ],
+ [
+ -90.36826024672769,
+ 37.26403972559597
+ ],
+ [
+ -89.94550486845537,
+ 37.26403972559597
+ ],
+ [
+ -89.73412717931922,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 38.20380488824675
+ ],
+ [
+ -89.94550486845537,
+ 38.517059942463675
+ ],
+ [
+ -90.36826024672769,
+ 38.517059942463675
+ ],
+ [
+ -90.57963793586384,
+ 38.20380488824675
+ ],
+ [
+ -90.36826024672769,
+ 37.89054983402983
+ ],
+ [
+ -89.94550486845537,
+ 37.89054983402983
+ ],
+ [
+ -89.73412717931922,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 38.830314996680606
+ ],
+ [
+ -89.94550486845537,
+ 39.14357005089753
+ ],
+ [
+ -90.36826024672769,
+ 39.14357005089753
+ ],
+ [
+ -90.57963793586384,
+ 38.830314996680606
+ ],
+ [
+ -90.36826024672769,
+ 38.51705994246368
+ ],
+ [
+ -89.94550486845537,
+ 38.51705994246368
+ ],
+ [
+ -89.73412717931922,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 39.45682510511446
+ ],
+ [
+ -89.94550486845537,
+ 39.770080159331386
+ ],
+ [
+ -90.36826024672769,
+ 39.770080159331386
+ ],
+ [
+ -90.57963793586384,
+ 39.45682510511446
+ ],
+ [
+ -90.36826024672769,
+ 39.14357005089754
+ ],
+ [
+ -89.94550486845537,
+ 39.14357005089754
+ ],
+ [
+ -89.73412717931922,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 40.08333521354832
+ ],
+ [
+ -89.94550486845537,
+ 40.39659026776524
+ ],
+ [
+ -90.36826024672769,
+ 40.39659026776524
+ ],
+ [
+ -90.57963793586384,
+ 40.08333521354832
+ ],
+ [
+ -90.36826024672769,
+ 39.77008015933139
+ ],
+ [
+ -89.94550486845537,
+ 39.77008015933139
+ ],
+ [
+ -89.73412717931922,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.73412717931922,
+ 40.70984532198217
+ ],
+ [
+ -89.94550486845537,
+ 41.023100376199096
+ ],
+ [
+ -90.36826024672769,
+ 41.023100376199096
+ ],
+ [
+ -90.57963793586384,
+ 40.70984532198217
+ ],
+ [
+ -90.36826024672769,
+ 40.39659026776525
+ ],
+ [
+ -89.94550486845537,
+ 40.39659026776525
+ ],
+ [
+ -89.73412717931922,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 30.99893864125743
+ ],
+ [
+ -89.3113718010469,
+ 31.312193695474356
+ ],
+ [
+ -89.73412717931922,
+ 31.312193695474356
+ ],
+ [
+ -89.94550486845537,
+ 30.99893864125743
+ ],
+ [
+ -89.73412717931922,
+ 30.6856835870405
+ ],
+ [
+ -89.3113718010469,
+ 30.6856835870405
+ ],
+ [
+ -89.09999411191075,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 31.62544874969128
+ ],
+ [
+ -89.3113718010469,
+ 31.938703803908208
+ ],
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ],
+ [
+ -89.94550486845537,
+ 31.62544874969128
+ ],
+ [
+ -89.73412717931922,
+ 31.312193695474352
+ ],
+ [
+ -89.3113718010469,
+ 31.312193695474352
+ ],
+ [
+ -89.09999411191075,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 32.251958858125136
+ ],
+ [
+ -89.3113718010469,
+ 32.56521391234206
+ ],
+ [
+ -89.73412717931922,
+ 32.56521391234206
+ ],
+ [
+ -89.94550486845537,
+ 32.251958858125136
+ ],
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ],
+ [
+ -89.3113718010469,
+ 31.938703803908208
+ ],
+ [
+ -89.09999411191075,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 32.87846896655899
+ ],
+ [
+ -89.3113718010469,
+ 33.191724020775915
+ ],
+ [
+ -89.73412717931922,
+ 33.191724020775915
+ ],
+ [
+ -89.94550486845537,
+ 32.87846896655899
+ ],
+ [
+ -89.73412717931922,
+ 32.56521391234207
+ ],
+ [
+ -89.3113718010469,
+ 32.56521391234207
+ ],
+ [
+ -89.09999411191075,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 33.504979074992846
+ ],
+ [
+ -89.3113718010469,
+ 33.81823412920977
+ ],
+ [
+ -89.73412717931922,
+ 33.81823412920977
+ ],
+ [
+ -89.94550486845537,
+ 33.504979074992846
+ ],
+ [
+ -89.73412717931922,
+ 33.19172402077592
+ ],
+ [
+ -89.3113718010469,
+ 33.19172402077592
+ ],
+ [
+ -89.09999411191075,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 34.1314891834267
+ ],
+ [
+ -89.3113718010469,
+ 34.444744237643626
+ ],
+ [
+ -89.73412717931922,
+ 34.444744237643626
+ ],
+ [
+ -89.94550486845537,
+ 34.1314891834267
+ ],
+ [
+ -89.73412717931922,
+ 33.81823412920978
+ ],
+ [
+ -89.3113718010469,
+ 33.81823412920978
+ ],
+ [
+ -89.09999411191075,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 34.75799929186056
+ ],
+ [
+ -89.3113718010469,
+ 35.07125434607748
+ ],
+ [
+ -89.73412717931922,
+ 35.07125434607748
+ ],
+ [
+ -89.94550486845537,
+ 34.75799929186056
+ ],
+ [
+ -89.73412717931922,
+ 34.44474423764363
+ ],
+ [
+ -89.3113718010469,
+ 34.44474423764363
+ ],
+ [
+ -89.09999411191075,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 35.38450940029441
+ ],
+ [
+ -89.3113718010469,
+ 35.697764454511336
+ ],
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ],
+ [
+ -89.94550486845537,
+ 35.38450940029441
+ ],
+ [
+ -89.73412717931922,
+ 35.07125434607749
+ ],
+ [
+ -89.3113718010469,
+ 35.07125434607749
+ ],
+ [
+ -89.09999411191075,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 36.01101950872826
+ ],
+ [
+ -89.3113718010469,
+ 36.324274562945185
+ ],
+ [
+ -89.73412717931922,
+ 36.324274562945185
+ ],
+ [
+ -89.94550486845537,
+ 36.01101950872826
+ ],
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ],
+ [
+ -89.3113718010469,
+ 35.697764454511336
+ ],
+ [
+ -89.09999411191075,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 36.637529617162116
+ ],
+ [
+ -89.3113718010469,
+ 36.95078467137904
+ ],
+ [
+ -89.73412717931922,
+ 36.95078467137904
+ ],
+ [
+ -89.94550486845537,
+ 36.637529617162116
+ ],
+ [
+ -89.73412717931922,
+ 36.32427456294519
+ ],
+ [
+ -89.3113718010469,
+ 36.32427456294519
+ ],
+ [
+ -89.09999411191075,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 37.26403972559597
+ ],
+ [
+ -89.3113718010469,
+ 37.577294779812895
+ ],
+ [
+ -89.73412717931922,
+ 37.577294779812895
+ ],
+ [
+ -89.94550486845537,
+ 37.26403972559597
+ ],
+ [
+ -89.73412717931922,
+ 36.95078467137905
+ ],
+ [
+ -89.3113718010469,
+ 36.95078467137905
+ ],
+ [
+ -89.09999411191075,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 37.89054983402983
+ ],
+ [
+ -89.3113718010469,
+ 38.20380488824675
+ ],
+ [
+ -89.73412717931922,
+ 38.20380488824675
+ ],
+ [
+ -89.94550486845537,
+ 37.89054983402983
+ ],
+ [
+ -89.73412717931922,
+ 37.5772947798129
+ ],
+ [
+ -89.3113718010469,
+ 37.5772947798129
+ ],
+ [
+ -89.09999411191075,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 38.51705994246368
+ ],
+ [
+ -89.3113718010469,
+ 38.830314996680606
+ ],
+ [
+ -89.73412717931922,
+ 38.830314996680606
+ ],
+ [
+ -89.94550486845537,
+ 38.51705994246368
+ ],
+ [
+ -89.73412717931922,
+ 38.20380488824676
+ ],
+ [
+ -89.3113718010469,
+ 38.20380488824676
+ ],
+ [
+ -89.09999411191075,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 39.14357005089754
+ ],
+ [
+ -89.3113718010469,
+ 39.45682510511446
+ ],
+ [
+ -89.73412717931922,
+ 39.45682510511446
+ ],
+ [
+ -89.94550486845537,
+ 39.14357005089754
+ ],
+ [
+ -89.73412717931922,
+ 38.83031499668061
+ ],
+ [
+ -89.3113718010469,
+ 38.83031499668061
+ ],
+ [
+ -89.09999411191075,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 39.77008015933139
+ ],
+ [
+ -89.3113718010469,
+ 40.08333521354832
+ ],
+ [
+ -89.73412717931922,
+ 40.08333521354832
+ ],
+ [
+ -89.94550486845537,
+ 39.77008015933139
+ ],
+ [
+ -89.73412717931922,
+ 39.45682510511447
+ ],
+ [
+ -89.3113718010469,
+ 39.45682510511447
+ ],
+ [
+ -89.09999411191075,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.09999411191075,
+ 40.39659026776525
+ ],
+ [
+ -89.3113718010469,
+ 40.70984532198217
+ ],
+ [
+ -89.73412717931922,
+ 40.70984532198217
+ ],
+ [
+ -89.94550486845537,
+ 40.39659026776525
+ ],
+ [
+ -89.73412717931922,
+ 40.083335213548324
+ ],
+ [
+ -89.3113718010469,
+ 40.083335213548324
+ ],
+ [
+ -89.09999411191075,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 31.312193695474356
+ ],
+ [
+ -88.67723873363845,
+ 31.625448749691284
+ ],
+ [
+ -89.09999411191076,
+ 31.625448749691284
+ ],
+ [
+ -89.31137180104692,
+ 31.312193695474356
+ ],
+ [
+ -89.09999411191076,
+ 30.99893864125743
+ ],
+ [
+ -88.67723873363845,
+ 30.99893864125743
+ ],
+ [
+ -88.46586104450229,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ],
+ [
+ -88.67723873363845,
+ 32.251958858125136
+ ],
+ [
+ -89.09999411191076,
+ 32.251958858125136
+ ],
+ [
+ -89.31137180104692,
+ 31.938703803908208
+ ],
+ [
+ -89.09999411191076,
+ 31.62544874969128
+ ],
+ [
+ -88.67723873363845,
+ 31.62544874969128
+ ],
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 32.56521391234206
+ ],
+ [
+ -88.67723873363845,
+ 32.878468966558984
+ ],
+ [
+ -89.09999411191076,
+ 32.878468966558984
+ ],
+ [
+ -89.31137180104692,
+ 32.56521391234206
+ ],
+ [
+ -89.09999411191076,
+ 32.251958858125136
+ ],
+ [
+ -88.67723873363845,
+ 32.251958858125136
+ ],
+ [
+ -88.46586104450229,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 33.191724020775915
+ ],
+ [
+ -88.67723873363845,
+ 33.50497907499284
+ ],
+ [
+ -89.09999411191076,
+ 33.50497907499284
+ ],
+ [
+ -89.31137180104692,
+ 33.191724020775915
+ ],
+ [
+ -89.09999411191076,
+ 32.87846896655899
+ ],
+ [
+ -88.67723873363845,
+ 32.87846896655899
+ ],
+ [
+ -88.46586104450229,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 33.81823412920977
+ ],
+ [
+ -88.67723873363845,
+ 34.131489183426694
+ ],
+ [
+ -89.09999411191076,
+ 34.131489183426694
+ ],
+ [
+ -89.31137180104692,
+ 33.81823412920977
+ ],
+ [
+ -89.09999411191076,
+ 33.504979074992846
+ ],
+ [
+ -88.67723873363845,
+ 33.504979074992846
+ ],
+ [
+ -88.46586104450229,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 34.444744237643626
+ ],
+ [
+ -88.67723873363845,
+ 34.75799929186055
+ ],
+ [
+ -89.09999411191076,
+ 34.75799929186055
+ ],
+ [
+ -89.31137180104692,
+ 34.444744237643626
+ ],
+ [
+ -89.09999411191076,
+ 34.1314891834267
+ ],
+ [
+ -88.67723873363845,
+ 34.1314891834267
+ ],
+ [
+ -88.46586104450229,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 35.07125434607748
+ ],
+ [
+ -88.67723873363845,
+ 35.384509400294405
+ ],
+ [
+ -89.09999411191076,
+ 35.384509400294405
+ ],
+ [
+ -89.31137180104692,
+ 35.07125434607748
+ ],
+ [
+ -89.09999411191076,
+ 34.75799929186056
+ ],
+ [
+ -88.67723873363845,
+ 34.75799929186056
+ ],
+ [
+ -88.46586104450229,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ],
+ [
+ -88.67723873363845,
+ 36.01101950872826
+ ],
+ [
+ -89.09999411191076,
+ 36.01101950872826
+ ],
+ [
+ -89.31137180104692,
+ 35.697764454511336
+ ],
+ [
+ -89.09999411191076,
+ 35.38450940029441
+ ],
+ [
+ -88.67723873363845,
+ 35.38450940029441
+ ],
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 36.324274562945185
+ ],
+ [
+ -88.67723873363845,
+ 36.63752961716211
+ ],
+ [
+ -89.09999411191076,
+ 36.63752961716211
+ ],
+ [
+ -89.31137180104692,
+ 36.324274562945185
+ ],
+ [
+ -89.09999411191076,
+ 36.01101950872826
+ ],
+ [
+ -88.67723873363845,
+ 36.01101950872826
+ ],
+ [
+ -88.46586104450229,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 36.95078467137904
+ ],
+ [
+ -88.67723873363845,
+ 37.264039725595964
+ ],
+ [
+ -89.09999411191076,
+ 37.264039725595964
+ ],
+ [
+ -89.31137180104692,
+ 36.95078467137904
+ ],
+ [
+ -89.09999411191076,
+ 36.637529617162116
+ ],
+ [
+ -88.67723873363845,
+ 36.637529617162116
+ ],
+ [
+ -88.46586104450229,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 37.577294779812895
+ ],
+ [
+ -88.67723873363845,
+ 37.89054983402982
+ ],
+ [
+ -89.09999411191076,
+ 37.89054983402982
+ ],
+ [
+ -89.31137180104692,
+ 37.577294779812895
+ ],
+ [
+ -89.09999411191076,
+ 37.26403972559597
+ ],
+ [
+ -88.67723873363845,
+ 37.26403972559597
+ ],
+ [
+ -88.46586104450229,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 38.20380488824675
+ ],
+ [
+ -88.67723873363845,
+ 38.517059942463675
+ ],
+ [
+ -89.09999411191076,
+ 38.517059942463675
+ ],
+ [
+ -89.31137180104692,
+ 38.20380488824675
+ ],
+ [
+ -89.09999411191076,
+ 37.89054983402983
+ ],
+ [
+ -88.67723873363845,
+ 37.89054983402983
+ ],
+ [
+ -88.46586104450229,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 38.830314996680606
+ ],
+ [
+ -88.67723873363845,
+ 39.14357005089753
+ ],
+ [
+ -89.09999411191076,
+ 39.14357005089753
+ ],
+ [
+ -89.31137180104692,
+ 38.830314996680606
+ ],
+ [
+ -89.09999411191076,
+ 38.51705994246368
+ ],
+ [
+ -88.67723873363845,
+ 38.51705994246368
+ ],
+ [
+ -88.46586104450229,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 39.45682510511446
+ ],
+ [
+ -88.67723873363845,
+ 39.770080159331386
+ ],
+ [
+ -89.09999411191076,
+ 39.770080159331386
+ ],
+ [
+ -89.31137180104692,
+ 39.45682510511446
+ ],
+ [
+ -89.09999411191076,
+ 39.14357005089754
+ ],
+ [
+ -88.67723873363845,
+ 39.14357005089754
+ ],
+ [
+ -88.46586104450229,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 40.08333521354832
+ ],
+ [
+ -88.67723873363845,
+ 40.39659026776524
+ ],
+ [
+ -89.09999411191076,
+ 40.39659026776524
+ ],
+ [
+ -89.31137180104692,
+ 40.08333521354832
+ ],
+ [
+ -89.09999411191076,
+ 39.77008015933139
+ ],
+ [
+ -88.67723873363845,
+ 39.77008015933139
+ ],
+ [
+ -88.46586104450229,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.46586104450229,
+ 40.70984532198217
+ ],
+ [
+ -88.67723873363845,
+ 41.023100376199096
+ ],
+ [
+ -89.09999411191076,
+ 41.023100376199096
+ ],
+ [
+ -89.31137180104692,
+ 40.70984532198217
+ ],
+ [
+ -89.09999411191076,
+ 40.39659026776525
+ ],
+ [
+ -88.67723873363845,
+ 40.39659026776525
+ ],
+ [
+ -88.46586104450229,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 30.99893864125743
+ ],
+ [
+ -88.04310566622998,
+ 31.312193695474356
+ ],
+ [
+ -88.46586104450229,
+ 31.312193695474356
+ ],
+ [
+ -88.67723873363845,
+ 30.99893864125743
+ ],
+ [
+ -88.46586104450229,
+ 30.6856835870405
+ ],
+ [
+ -88.04310566622998,
+ 30.6856835870405
+ ],
+ [
+ -87.83172797709382,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 31.62544874969128
+ ],
+ [
+ -88.04310566622998,
+ 31.938703803908208
+ ],
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ],
+ [
+ -88.67723873363845,
+ 31.62544874969128
+ ],
+ [
+ -88.46586104450229,
+ 31.312193695474352
+ ],
+ [
+ -88.04310566622998,
+ 31.312193695474352
+ ],
+ [
+ -87.83172797709382,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 32.251958858125136
+ ],
+ [
+ -88.04310566622998,
+ 32.56521391234206
+ ],
+ [
+ -88.46586104450229,
+ 32.56521391234206
+ ],
+ [
+ -88.67723873363845,
+ 32.251958858125136
+ ],
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ],
+ [
+ -88.04310566622998,
+ 31.938703803908208
+ ],
+ [
+ -87.83172797709382,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 32.87846896655899
+ ],
+ [
+ -88.04310566622998,
+ 33.191724020775915
+ ],
+ [
+ -88.46586104450229,
+ 33.191724020775915
+ ],
+ [
+ -88.67723873363845,
+ 32.87846896655899
+ ],
+ [
+ -88.46586104450229,
+ 32.56521391234207
+ ],
+ [
+ -88.04310566622998,
+ 32.56521391234207
+ ],
+ [
+ -87.83172797709382,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 33.504979074992846
+ ],
+ [
+ -88.04310566622998,
+ 33.81823412920977
+ ],
+ [
+ -88.46586104450229,
+ 33.81823412920977
+ ],
+ [
+ -88.67723873363845,
+ 33.504979074992846
+ ],
+ [
+ -88.46586104450229,
+ 33.19172402077592
+ ],
+ [
+ -88.04310566622998,
+ 33.19172402077592
+ ],
+ [
+ -87.83172797709382,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 34.1314891834267
+ ],
+ [
+ -88.04310566622998,
+ 34.444744237643626
+ ],
+ [
+ -88.46586104450229,
+ 34.444744237643626
+ ],
+ [
+ -88.67723873363845,
+ 34.1314891834267
+ ],
+ [
+ -88.46586104450229,
+ 33.81823412920978
+ ],
+ [
+ -88.04310566622998,
+ 33.81823412920978
+ ],
+ [
+ -87.83172797709382,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 34.75799929186056
+ ],
+ [
+ -88.04310566622998,
+ 35.07125434607748
+ ],
+ [
+ -88.46586104450229,
+ 35.07125434607748
+ ],
+ [
+ -88.67723873363845,
+ 34.75799929186056
+ ],
+ [
+ -88.46586104450229,
+ 34.44474423764363
+ ],
+ [
+ -88.04310566622998,
+ 34.44474423764363
+ ],
+ [
+ -87.83172797709382,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 35.38450940029441
+ ],
+ [
+ -88.04310566622998,
+ 35.697764454511336
+ ],
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ],
+ [
+ -88.67723873363845,
+ 35.38450940029441
+ ],
+ [
+ -88.46586104450229,
+ 35.07125434607749
+ ],
+ [
+ -88.04310566622998,
+ 35.07125434607749
+ ],
+ [
+ -87.83172797709382,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 36.01101950872826
+ ],
+ [
+ -88.04310566622998,
+ 36.324274562945185
+ ],
+ [
+ -88.46586104450229,
+ 36.324274562945185
+ ],
+ [
+ -88.67723873363845,
+ 36.01101950872826
+ ],
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ],
+ [
+ -88.04310566622998,
+ 35.697764454511336
+ ],
+ [
+ -87.83172797709382,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 36.637529617162116
+ ],
+ [
+ -88.04310566622998,
+ 36.95078467137904
+ ],
+ [
+ -88.46586104450229,
+ 36.95078467137904
+ ],
+ [
+ -88.67723873363845,
+ 36.637529617162116
+ ],
+ [
+ -88.46586104450229,
+ 36.32427456294519
+ ],
+ [
+ -88.04310566622998,
+ 36.32427456294519
+ ],
+ [
+ -87.83172797709382,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 37.26403972559597
+ ],
+ [
+ -88.04310566622998,
+ 37.577294779812895
+ ],
+ [
+ -88.46586104450229,
+ 37.577294779812895
+ ],
+ [
+ -88.67723873363845,
+ 37.26403972559597
+ ],
+ [
+ -88.46586104450229,
+ 36.95078467137905
+ ],
+ [
+ -88.04310566622998,
+ 36.95078467137905
+ ],
+ [
+ -87.83172797709382,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 37.89054983402983
+ ],
+ [
+ -88.04310566622998,
+ 38.20380488824675
+ ],
+ [
+ -88.46586104450229,
+ 38.20380488824675
+ ],
+ [
+ -88.67723873363845,
+ 37.89054983402983
+ ],
+ [
+ -88.46586104450229,
+ 37.5772947798129
+ ],
+ [
+ -88.04310566622998,
+ 37.5772947798129
+ ],
+ [
+ -87.83172797709382,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 38.51705994246368
+ ],
+ [
+ -88.04310566622998,
+ 38.830314996680606
+ ],
+ [
+ -88.46586104450229,
+ 38.830314996680606
+ ],
+ [
+ -88.67723873363845,
+ 38.51705994246368
+ ],
+ [
+ -88.46586104450229,
+ 38.20380488824676
+ ],
+ [
+ -88.04310566622998,
+ 38.20380488824676
+ ],
+ [
+ -87.83172797709382,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 39.14357005089754
+ ],
+ [
+ -88.04310566622998,
+ 39.45682510511446
+ ],
+ [
+ -88.46586104450229,
+ 39.45682510511446
+ ],
+ [
+ -88.67723873363845,
+ 39.14357005089754
+ ],
+ [
+ -88.46586104450229,
+ 38.83031499668061
+ ],
+ [
+ -88.04310566622998,
+ 38.83031499668061
+ ],
+ [
+ -87.83172797709382,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 39.77008015933139
+ ],
+ [
+ -88.04310566622998,
+ 40.08333521354832
+ ],
+ [
+ -88.46586104450229,
+ 40.08333521354832
+ ],
+ [
+ -88.67723873363845,
+ 39.77008015933139
+ ],
+ [
+ -88.46586104450229,
+ 39.45682510511447
+ ],
+ [
+ -88.04310566622998,
+ 39.45682510511447
+ ],
+ [
+ -87.83172797709382,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.83172797709382,
+ 40.39659026776525
+ ],
+ [
+ -88.04310566622998,
+ 40.70984532198217
+ ],
+ [
+ -88.46586104450229,
+ 40.70984532198217
+ ],
+ [
+ -88.67723873363845,
+ 40.39659026776525
+ ],
+ [
+ -88.46586104450229,
+ 40.083335213548324
+ ],
+ [
+ -88.04310566622998,
+ 40.083335213548324
+ ],
+ [
+ -87.83172797709382,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 31.312193695474356
+ ],
+ [
+ -87.40897259882152,
+ 31.625448749691284
+ ],
+ [
+ -87.83172797709383,
+ 31.625448749691284
+ ],
+ [
+ -88.04310566622999,
+ 31.312193695474356
+ ],
+ [
+ -87.83172797709383,
+ 30.99893864125743
+ ],
+ [
+ -87.40897259882152,
+ 30.99893864125743
+ ],
+ [
+ -87.19759490968536,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ],
+ [
+ -87.40897259882152,
+ 32.251958858125136
+ ],
+ [
+ -87.83172797709383,
+ 32.251958858125136
+ ],
+ [
+ -88.04310566622999,
+ 31.938703803908208
+ ],
+ [
+ -87.83172797709383,
+ 31.62544874969128
+ ],
+ [
+ -87.40897259882152,
+ 31.62544874969128
+ ],
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 32.56521391234206
+ ],
+ [
+ -87.40897259882152,
+ 32.878468966558984
+ ],
+ [
+ -87.83172797709383,
+ 32.878468966558984
+ ],
+ [
+ -88.04310566622999,
+ 32.56521391234206
+ ],
+ [
+ -87.83172797709383,
+ 32.251958858125136
+ ],
+ [
+ -87.40897259882152,
+ 32.251958858125136
+ ],
+ [
+ -87.19759490968536,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 33.191724020775915
+ ],
+ [
+ -87.40897259882152,
+ 33.50497907499284
+ ],
+ [
+ -87.83172797709383,
+ 33.50497907499284
+ ],
+ [
+ -88.04310566622999,
+ 33.191724020775915
+ ],
+ [
+ -87.83172797709383,
+ 32.87846896655899
+ ],
+ [
+ -87.40897259882152,
+ 32.87846896655899
+ ],
+ [
+ -87.19759490968536,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 33.81823412920977
+ ],
+ [
+ -87.40897259882152,
+ 34.131489183426694
+ ],
+ [
+ -87.83172797709383,
+ 34.131489183426694
+ ],
+ [
+ -88.04310566622999,
+ 33.81823412920977
+ ],
+ [
+ -87.83172797709383,
+ 33.504979074992846
+ ],
+ [
+ -87.40897259882152,
+ 33.504979074992846
+ ],
+ [
+ -87.19759490968536,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 34.444744237643626
+ ],
+ [
+ -87.40897259882152,
+ 34.75799929186055
+ ],
+ [
+ -87.83172797709383,
+ 34.75799929186055
+ ],
+ [
+ -88.04310566622999,
+ 34.444744237643626
+ ],
+ [
+ -87.83172797709383,
+ 34.1314891834267
+ ],
+ [
+ -87.40897259882152,
+ 34.1314891834267
+ ],
+ [
+ -87.19759490968536,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 35.07125434607748
+ ],
+ [
+ -87.40897259882152,
+ 35.384509400294405
+ ],
+ [
+ -87.83172797709383,
+ 35.384509400294405
+ ],
+ [
+ -88.04310566622999,
+ 35.07125434607748
+ ],
+ [
+ -87.83172797709383,
+ 34.75799929186056
+ ],
+ [
+ -87.40897259882152,
+ 34.75799929186056
+ ],
+ [
+ -87.19759490968536,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ],
+ [
+ -87.40897259882152,
+ 36.01101950872826
+ ],
+ [
+ -87.83172797709383,
+ 36.01101950872826
+ ],
+ [
+ -88.04310566622999,
+ 35.697764454511336
+ ],
+ [
+ -87.83172797709383,
+ 35.38450940029441
+ ],
+ [
+ -87.40897259882152,
+ 35.38450940029441
+ ],
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 36.324274562945185
+ ],
+ [
+ -87.40897259882152,
+ 36.63752961716211
+ ],
+ [
+ -87.83172797709383,
+ 36.63752961716211
+ ],
+ [
+ -88.04310566622999,
+ 36.324274562945185
+ ],
+ [
+ -87.83172797709383,
+ 36.01101950872826
+ ],
+ [
+ -87.40897259882152,
+ 36.01101950872826
+ ],
+ [
+ -87.19759490968536,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 36.95078467137904
+ ],
+ [
+ -87.40897259882152,
+ 37.264039725595964
+ ],
+ [
+ -87.83172797709383,
+ 37.264039725595964
+ ],
+ [
+ -88.04310566622999,
+ 36.95078467137904
+ ],
+ [
+ -87.83172797709383,
+ 36.637529617162116
+ ],
+ [
+ -87.40897259882152,
+ 36.637529617162116
+ ],
+ [
+ -87.19759490968536,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 37.577294779812895
+ ],
+ [
+ -87.40897259882152,
+ 37.89054983402982
+ ],
+ [
+ -87.83172797709383,
+ 37.89054983402982
+ ],
+ [
+ -88.04310566622999,
+ 37.577294779812895
+ ],
+ [
+ -87.83172797709383,
+ 37.26403972559597
+ ],
+ [
+ -87.40897259882152,
+ 37.26403972559597
+ ],
+ [
+ -87.19759490968536,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 38.20380488824675
+ ],
+ [
+ -87.40897259882152,
+ 38.517059942463675
+ ],
+ [
+ -87.83172797709383,
+ 38.517059942463675
+ ],
+ [
+ -88.04310566622999,
+ 38.20380488824675
+ ],
+ [
+ -87.83172797709383,
+ 37.89054983402983
+ ],
+ [
+ -87.40897259882152,
+ 37.89054983402983
+ ],
+ [
+ -87.19759490968536,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 38.830314996680606
+ ],
+ [
+ -87.40897259882152,
+ 39.14357005089753
+ ],
+ [
+ -87.83172797709383,
+ 39.14357005089753
+ ],
+ [
+ -88.04310566622999,
+ 38.830314996680606
+ ],
+ [
+ -87.83172797709383,
+ 38.51705994246368
+ ],
+ [
+ -87.40897259882152,
+ 38.51705994246368
+ ],
+ [
+ -87.19759490968536,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 39.45682510511446
+ ],
+ [
+ -87.40897259882152,
+ 39.770080159331386
+ ],
+ [
+ -87.83172797709383,
+ 39.770080159331386
+ ],
+ [
+ -88.04310566622999,
+ 39.45682510511446
+ ],
+ [
+ -87.83172797709383,
+ 39.14357005089754
+ ],
+ [
+ -87.40897259882152,
+ 39.14357005089754
+ ],
+ [
+ -87.19759490968536,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 40.08333521354832
+ ],
+ [
+ -87.40897259882152,
+ 40.39659026776524
+ ],
+ [
+ -87.83172797709383,
+ 40.39659026776524
+ ],
+ [
+ -88.04310566622999,
+ 40.08333521354832
+ ],
+ [
+ -87.83172797709383,
+ 39.77008015933139
+ ],
+ [
+ -87.40897259882152,
+ 39.77008015933139
+ ],
+ [
+ -87.19759490968536,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.19759490968536,
+ 40.70984532198217
+ ],
+ [
+ -87.40897259882152,
+ 41.023100376199096
+ ],
+ [
+ -87.83172797709383,
+ 41.023100376199096
+ ],
+ [
+ -88.04310566622999,
+ 40.70984532198217
+ ],
+ [
+ -87.83172797709383,
+ 40.39659026776525
+ ],
+ [
+ -87.40897259882152,
+ 40.39659026776525
+ ],
+ [
+ -87.19759490968536,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 30.99893864125743
+ ],
+ [
+ -86.77483953141305,
+ 31.312193695474356
+ ],
+ [
+ -87.19759490968536,
+ 31.312193695474356
+ ],
+ [
+ -87.40897259882152,
+ 30.99893864125743
+ ],
+ [
+ -87.19759490968536,
+ 30.6856835870405
+ ],
+ [
+ -86.77483953141305,
+ 30.6856835870405
+ ],
+ [
+ -86.5634618422769,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 31.62544874969128
+ ],
+ [
+ -86.77483953141305,
+ 31.938703803908208
+ ],
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ],
+ [
+ -87.40897259882152,
+ 31.62544874969128
+ ],
+ [
+ -87.19759490968536,
+ 31.312193695474352
+ ],
+ [
+ -86.77483953141305,
+ 31.312193695474352
+ ],
+ [
+ -86.5634618422769,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ],
+ [
+ -86.77483953141305,
+ 32.56521391234206
+ ],
+ [
+ -87.19759490968536,
+ 32.56521391234206
+ ],
+ [
+ -87.40897259882152,
+ 32.251958858125136
+ ],
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ],
+ [
+ -86.77483953141305,
+ 31.938703803908208
+ ],
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 32.87846896655899
+ ],
+ [
+ -86.77483953141305,
+ 33.191724020775915
+ ],
+ [
+ -87.19759490968536,
+ 33.191724020775915
+ ],
+ [
+ -87.40897259882152,
+ 32.87846896655899
+ ],
+ [
+ -87.19759490968536,
+ 32.56521391234207
+ ],
+ [
+ -86.77483953141305,
+ 32.56521391234207
+ ],
+ [
+ -86.5634618422769,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 33.504979074992846
+ ],
+ [
+ -86.77483953141305,
+ 33.81823412920977
+ ],
+ [
+ -87.19759490968536,
+ 33.81823412920977
+ ],
+ [
+ -87.40897259882152,
+ 33.504979074992846
+ ],
+ [
+ -87.19759490968536,
+ 33.19172402077592
+ ],
+ [
+ -86.77483953141305,
+ 33.19172402077592
+ ],
+ [
+ -86.5634618422769,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 34.1314891834267
+ ],
+ [
+ -86.77483953141305,
+ 34.444744237643626
+ ],
+ [
+ -87.19759490968536,
+ 34.444744237643626
+ ],
+ [
+ -87.40897259882152,
+ 34.1314891834267
+ ],
+ [
+ -87.19759490968536,
+ 33.81823412920978
+ ],
+ [
+ -86.77483953141305,
+ 33.81823412920978
+ ],
+ [
+ -86.5634618422769,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 34.75799929186056
+ ],
+ [
+ -86.77483953141305,
+ 35.07125434607748
+ ],
+ [
+ -87.19759490968536,
+ 35.07125434607748
+ ],
+ [
+ -87.40897259882152,
+ 34.75799929186056
+ ],
+ [
+ -87.19759490968536,
+ 34.44474423764363
+ ],
+ [
+ -86.77483953141305,
+ 34.44474423764363
+ ],
+ [
+ -86.5634618422769,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 35.38450940029441
+ ],
+ [
+ -86.77483953141305,
+ 35.697764454511336
+ ],
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ],
+ [
+ -87.40897259882152,
+ 35.38450940029441
+ ],
+ [
+ -87.19759490968536,
+ 35.07125434607749
+ ],
+ [
+ -86.77483953141305,
+ 35.07125434607749
+ ],
+ [
+ -86.5634618422769,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ],
+ [
+ -86.77483953141305,
+ 36.324274562945185
+ ],
+ [
+ -87.19759490968536,
+ 36.324274562945185
+ ],
+ [
+ -87.40897259882152,
+ 36.01101950872826
+ ],
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ],
+ [
+ -86.77483953141305,
+ 35.697764454511336
+ ],
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 36.637529617162116
+ ],
+ [
+ -86.77483953141305,
+ 36.95078467137904
+ ],
+ [
+ -87.19759490968536,
+ 36.95078467137904
+ ],
+ [
+ -87.40897259882152,
+ 36.637529617162116
+ ],
+ [
+ -87.19759490968536,
+ 36.32427456294519
+ ],
+ [
+ -86.77483953141305,
+ 36.32427456294519
+ ],
+ [
+ -86.5634618422769,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 37.26403972559597
+ ],
+ [
+ -86.77483953141305,
+ 37.577294779812895
+ ],
+ [
+ -87.19759490968536,
+ 37.577294779812895
+ ],
+ [
+ -87.40897259882152,
+ 37.26403972559597
+ ],
+ [
+ -87.19759490968536,
+ 36.95078467137905
+ ],
+ [
+ -86.77483953141305,
+ 36.95078467137905
+ ],
+ [
+ -86.5634618422769,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 37.89054983402983
+ ],
+ [
+ -86.77483953141305,
+ 38.20380488824675
+ ],
+ [
+ -87.19759490968536,
+ 38.20380488824675
+ ],
+ [
+ -87.40897259882152,
+ 37.89054983402983
+ ],
+ [
+ -87.19759490968536,
+ 37.5772947798129
+ ],
+ [
+ -86.77483953141305,
+ 37.5772947798129
+ ],
+ [
+ -86.5634618422769,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 38.51705994246368
+ ],
+ [
+ -86.77483953141305,
+ 38.830314996680606
+ ],
+ [
+ -87.19759490968536,
+ 38.830314996680606
+ ],
+ [
+ -87.40897259882152,
+ 38.51705994246368
+ ],
+ [
+ -87.19759490968536,
+ 38.20380488824676
+ ],
+ [
+ -86.77483953141305,
+ 38.20380488824676
+ ],
+ [
+ -86.5634618422769,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 39.14357005089754
+ ],
+ [
+ -86.77483953141305,
+ 39.45682510511446
+ ],
+ [
+ -87.19759490968536,
+ 39.45682510511446
+ ],
+ [
+ -87.40897259882152,
+ 39.14357005089754
+ ],
+ [
+ -87.19759490968536,
+ 38.83031499668061
+ ],
+ [
+ -86.77483953141305,
+ 38.83031499668061
+ ],
+ [
+ -86.5634618422769,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 39.77008015933139
+ ],
+ [
+ -86.77483953141305,
+ 40.08333521354832
+ ],
+ [
+ -87.19759490968536,
+ 40.08333521354832
+ ],
+ [
+ -87.40897259882152,
+ 39.77008015933139
+ ],
+ [
+ -87.19759490968536,
+ 39.45682510511447
+ ],
+ [
+ -86.77483953141305,
+ 39.45682510511447
+ ],
+ [
+ -86.5634618422769,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.5634618422769,
+ 40.39659026776525
+ ],
+ [
+ -86.77483953141305,
+ 40.70984532198217
+ ],
+ [
+ -87.19759490968536,
+ 40.70984532198217
+ ],
+ [
+ -87.40897259882152,
+ 40.39659026776525
+ ],
+ [
+ -87.19759490968536,
+ 40.083335213548324
+ ],
+ [
+ -86.77483953141305,
+ 40.083335213548324
+ ],
+ [
+ -86.5634618422769,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 31.312193695474356
+ ],
+ [
+ -86.14070646400458,
+ 31.625448749691284
+ ],
+ [
+ -86.5634618422769,
+ 31.625448749691284
+ ],
+ [
+ -86.77483953141305,
+ 31.312193695474356
+ ],
+ [
+ -86.5634618422769,
+ 30.99893864125743
+ ],
+ [
+ -86.14070646400458,
+ 30.99893864125743
+ ],
+ [
+ -85.92932877486842,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 31.938703803908208
+ ],
+ [
+ -86.14070646400458,
+ 32.251958858125136
+ ],
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ],
+ [
+ -86.77483953141305,
+ 31.938703803908208
+ ],
+ [
+ -86.5634618422769,
+ 31.62544874969128
+ ],
+ [
+ -86.14070646400458,
+ 31.62544874969128
+ ],
+ [
+ -85.92932877486842,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 32.56521391234206
+ ],
+ [
+ -86.14070646400458,
+ 32.878468966558984
+ ],
+ [
+ -86.5634618422769,
+ 32.878468966558984
+ ],
+ [
+ -86.77483953141305,
+ 32.56521391234206
+ ],
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ],
+ [
+ -86.14070646400458,
+ 32.251958858125136
+ ],
+ [
+ -85.92932877486842,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 33.191724020775915
+ ],
+ [
+ -86.14070646400458,
+ 33.50497907499284
+ ],
+ [
+ -86.5634618422769,
+ 33.50497907499284
+ ],
+ [
+ -86.77483953141305,
+ 33.191724020775915
+ ],
+ [
+ -86.5634618422769,
+ 32.87846896655899
+ ],
+ [
+ -86.14070646400458,
+ 32.87846896655899
+ ],
+ [
+ -85.92932877486842,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 33.81823412920977
+ ],
+ [
+ -86.14070646400458,
+ 34.131489183426694
+ ],
+ [
+ -86.5634618422769,
+ 34.131489183426694
+ ],
+ [
+ -86.77483953141305,
+ 33.81823412920977
+ ],
+ [
+ -86.5634618422769,
+ 33.504979074992846
+ ],
+ [
+ -86.14070646400458,
+ 33.504979074992846
+ ],
+ [
+ -85.92932877486842,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 34.444744237643626
+ ],
+ [
+ -86.14070646400458,
+ 34.75799929186055
+ ],
+ [
+ -86.5634618422769,
+ 34.75799929186055
+ ],
+ [
+ -86.77483953141305,
+ 34.444744237643626
+ ],
+ [
+ -86.5634618422769,
+ 34.1314891834267
+ ],
+ [
+ -86.14070646400458,
+ 34.1314891834267
+ ],
+ [
+ -85.92932877486842,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 35.07125434607748
+ ],
+ [
+ -86.14070646400458,
+ 35.384509400294405
+ ],
+ [
+ -86.5634618422769,
+ 35.384509400294405
+ ],
+ [
+ -86.77483953141305,
+ 35.07125434607748
+ ],
+ [
+ -86.5634618422769,
+ 34.75799929186056
+ ],
+ [
+ -86.14070646400458,
+ 34.75799929186056
+ ],
+ [
+ -85.92932877486842,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 35.697764454511336
+ ],
+ [
+ -86.14070646400458,
+ 36.01101950872826
+ ],
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ],
+ [
+ -86.77483953141305,
+ 35.697764454511336
+ ],
+ [
+ -86.5634618422769,
+ 35.38450940029441
+ ],
+ [
+ -86.14070646400458,
+ 35.38450940029441
+ ],
+ [
+ -85.92932877486842,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 36.324274562945185
+ ],
+ [
+ -86.14070646400458,
+ 36.63752961716211
+ ],
+ [
+ -86.5634618422769,
+ 36.63752961716211
+ ],
+ [
+ -86.77483953141305,
+ 36.324274562945185
+ ],
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ],
+ [
+ -86.14070646400458,
+ 36.01101950872826
+ ],
+ [
+ -85.92932877486842,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 36.95078467137904
+ ],
+ [
+ -86.14070646400458,
+ 37.264039725595964
+ ],
+ [
+ -86.5634618422769,
+ 37.264039725595964
+ ],
+ [
+ -86.77483953141305,
+ 36.95078467137904
+ ],
+ [
+ -86.5634618422769,
+ 36.637529617162116
+ ],
+ [
+ -86.14070646400458,
+ 36.637529617162116
+ ],
+ [
+ -85.92932877486842,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 37.577294779812895
+ ],
+ [
+ -86.14070646400458,
+ 37.89054983402982
+ ],
+ [
+ -86.5634618422769,
+ 37.89054983402982
+ ],
+ [
+ -86.77483953141305,
+ 37.577294779812895
+ ],
+ [
+ -86.5634618422769,
+ 37.26403972559597
+ ],
+ [
+ -86.14070646400458,
+ 37.26403972559597
+ ],
+ [
+ -85.92932877486842,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 38.20380488824675
+ ],
+ [
+ -86.14070646400458,
+ 38.517059942463675
+ ],
+ [
+ -86.5634618422769,
+ 38.517059942463675
+ ],
+ [
+ -86.77483953141305,
+ 38.20380488824675
+ ],
+ [
+ -86.5634618422769,
+ 37.89054983402983
+ ],
+ [
+ -86.14070646400458,
+ 37.89054983402983
+ ],
+ [
+ -85.92932877486842,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 38.830314996680606
+ ],
+ [
+ -86.14070646400458,
+ 39.14357005089753
+ ],
+ [
+ -86.5634618422769,
+ 39.14357005089753
+ ],
+ [
+ -86.77483953141305,
+ 38.830314996680606
+ ],
+ [
+ -86.5634618422769,
+ 38.51705994246368
+ ],
+ [
+ -86.14070646400458,
+ 38.51705994246368
+ ],
+ [
+ -85.92932877486842,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 39.45682510511446
+ ],
+ [
+ -86.14070646400458,
+ 39.770080159331386
+ ],
+ [
+ -86.5634618422769,
+ 39.770080159331386
+ ],
+ [
+ -86.77483953141305,
+ 39.45682510511446
+ ],
+ [
+ -86.5634618422769,
+ 39.14357005089754
+ ],
+ [
+ -86.14070646400458,
+ 39.14357005089754
+ ],
+ [
+ -85.92932877486842,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 40.08333521354832
+ ],
+ [
+ -86.14070646400458,
+ 40.39659026776524
+ ],
+ [
+ -86.5634618422769,
+ 40.39659026776524
+ ],
+ [
+ -86.77483953141305,
+ 40.08333521354832
+ ],
+ [
+ -86.5634618422769,
+ 39.77008015933139
+ ],
+ [
+ -86.14070646400458,
+ 39.77008015933139
+ ],
+ [
+ -85.92932877486842,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.92932877486842,
+ 40.70984532198217
+ ],
+ [
+ -86.14070646400458,
+ 41.023100376199096
+ ],
+ [
+ -86.5634618422769,
+ 41.023100376199096
+ ],
+ [
+ -86.77483953141305,
+ 40.70984532198217
+ ],
+ [
+ -86.5634618422769,
+ 40.39659026776525
+ ],
+ [
+ -86.14070646400458,
+ 40.39659026776525
+ ],
+ [
+ -85.92932877486842,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 30.99893864125743
+ ],
+ [
+ -85.50657339659612,
+ 31.312193695474356
+ ],
+ [
+ -85.92932877486844,
+ 31.312193695474356
+ ],
+ [
+ -86.1407064640046,
+ 30.99893864125743
+ ],
+ [
+ -85.92932877486844,
+ 30.6856835870405
+ ],
+ [
+ -85.50657339659612,
+ 30.6856835870405
+ ],
+ [
+ -85.29519570745997,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 31.62544874969128
+ ],
+ [
+ -85.50657339659612,
+ 31.938703803908208
+ ],
+ [
+ -85.92932877486844,
+ 31.938703803908208
+ ],
+ [
+ -86.1407064640046,
+ 31.62544874969128
+ ],
+ [
+ -85.92932877486844,
+ 31.312193695474352
+ ],
+ [
+ -85.50657339659612,
+ 31.312193695474352
+ ],
+ [
+ -85.29519570745997,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ],
+ [
+ -85.50657339659612,
+ 32.56521391234206
+ ],
+ [
+ -85.92932877486844,
+ 32.56521391234206
+ ],
+ [
+ -86.1407064640046,
+ 32.251958858125136
+ ],
+ [
+ -85.92932877486844,
+ 31.938703803908208
+ ],
+ [
+ -85.50657339659612,
+ 31.938703803908208
+ ],
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 32.87846896655899
+ ],
+ [
+ -85.50657339659612,
+ 33.191724020775915
+ ],
+ [
+ -85.92932877486844,
+ 33.191724020775915
+ ],
+ [
+ -86.1407064640046,
+ 32.87846896655899
+ ],
+ [
+ -85.92932877486844,
+ 32.56521391234207
+ ],
+ [
+ -85.50657339659612,
+ 32.56521391234207
+ ],
+ [
+ -85.29519570745997,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 33.504979074992846
+ ],
+ [
+ -85.50657339659612,
+ 33.81823412920977
+ ],
+ [
+ -85.92932877486844,
+ 33.81823412920977
+ ],
+ [
+ -86.1407064640046,
+ 33.504979074992846
+ ],
+ [
+ -85.92932877486844,
+ 33.19172402077592
+ ],
+ [
+ -85.50657339659612,
+ 33.19172402077592
+ ],
+ [
+ -85.29519570745997,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 34.1314891834267
+ ],
+ [
+ -85.50657339659612,
+ 34.444744237643626
+ ],
+ [
+ -85.92932877486844,
+ 34.444744237643626
+ ],
+ [
+ -86.1407064640046,
+ 34.1314891834267
+ ],
+ [
+ -85.92932877486844,
+ 33.81823412920978
+ ],
+ [
+ -85.50657339659612,
+ 33.81823412920978
+ ],
+ [
+ -85.29519570745997,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 34.75799929186056
+ ],
+ [
+ -85.50657339659612,
+ 35.07125434607748
+ ],
+ [
+ -85.92932877486844,
+ 35.07125434607748
+ ],
+ [
+ -86.1407064640046,
+ 34.75799929186056
+ ],
+ [
+ -85.92932877486844,
+ 34.44474423764363
+ ],
+ [
+ -85.50657339659612,
+ 34.44474423764363
+ ],
+ [
+ -85.29519570745997,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 35.38450940029441
+ ],
+ [
+ -85.50657339659612,
+ 35.697764454511336
+ ],
+ [
+ -85.92932877486844,
+ 35.697764454511336
+ ],
+ [
+ -86.1407064640046,
+ 35.38450940029441
+ ],
+ [
+ -85.92932877486844,
+ 35.07125434607749
+ ],
+ [
+ -85.50657339659612,
+ 35.07125434607749
+ ],
+ [
+ -85.29519570745997,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ],
+ [
+ -85.50657339659612,
+ 36.324274562945185
+ ],
+ [
+ -85.92932877486844,
+ 36.324274562945185
+ ],
+ [
+ -86.1407064640046,
+ 36.01101950872826
+ ],
+ [
+ -85.92932877486844,
+ 35.697764454511336
+ ],
+ [
+ -85.50657339659612,
+ 35.697764454511336
+ ],
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 36.637529617162116
+ ],
+ [
+ -85.50657339659612,
+ 36.95078467137904
+ ],
+ [
+ -85.92932877486844,
+ 36.95078467137904
+ ],
+ [
+ -86.1407064640046,
+ 36.637529617162116
+ ],
+ [
+ -85.92932877486844,
+ 36.32427456294519
+ ],
+ [
+ -85.50657339659612,
+ 36.32427456294519
+ ],
+ [
+ -85.29519570745997,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 37.26403972559597
+ ],
+ [
+ -85.50657339659612,
+ 37.577294779812895
+ ],
+ [
+ -85.92932877486844,
+ 37.577294779812895
+ ],
+ [
+ -86.1407064640046,
+ 37.26403972559597
+ ],
+ [
+ -85.92932877486844,
+ 36.95078467137905
+ ],
+ [
+ -85.50657339659612,
+ 36.95078467137905
+ ],
+ [
+ -85.29519570745997,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 37.89054983402983
+ ],
+ [
+ -85.50657339659612,
+ 38.20380488824675
+ ],
+ [
+ -85.92932877486844,
+ 38.20380488824675
+ ],
+ [
+ -86.1407064640046,
+ 37.89054983402983
+ ],
+ [
+ -85.92932877486844,
+ 37.5772947798129
+ ],
+ [
+ -85.50657339659612,
+ 37.5772947798129
+ ],
+ [
+ -85.29519570745997,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 38.51705994246368
+ ],
+ [
+ -85.50657339659612,
+ 38.830314996680606
+ ],
+ [
+ -85.92932877486844,
+ 38.830314996680606
+ ],
+ [
+ -86.1407064640046,
+ 38.51705994246368
+ ],
+ [
+ -85.92932877486844,
+ 38.20380488824676
+ ],
+ [
+ -85.50657339659612,
+ 38.20380488824676
+ ],
+ [
+ -85.29519570745997,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 39.14357005089754
+ ],
+ [
+ -85.50657339659612,
+ 39.45682510511446
+ ],
+ [
+ -85.92932877486844,
+ 39.45682510511446
+ ],
+ [
+ -86.1407064640046,
+ 39.14357005089754
+ ],
+ [
+ -85.92932877486844,
+ 38.83031499668061
+ ],
+ [
+ -85.50657339659612,
+ 38.83031499668061
+ ],
+ [
+ -85.29519570745997,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 39.77008015933139
+ ],
+ [
+ -85.50657339659612,
+ 40.08333521354832
+ ],
+ [
+ -85.92932877486844,
+ 40.08333521354832
+ ],
+ [
+ -86.1407064640046,
+ 39.77008015933139
+ ],
+ [
+ -85.92932877486844,
+ 39.45682510511447
+ ],
+ [
+ -85.50657339659612,
+ 39.45682510511447
+ ],
+ [
+ -85.29519570745997,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.29519570745997,
+ 40.39659026776525
+ ],
+ [
+ -85.50657339659612,
+ 40.70984532198217
+ ],
+ [
+ -85.92932877486844,
+ 40.70984532198217
+ ],
+ [
+ -86.1407064640046,
+ 40.39659026776525
+ ],
+ [
+ -85.92932877486844,
+ 40.083335213548324
+ ],
+ [
+ -85.50657339659612,
+ 40.083335213548324
+ ],
+ [
+ -85.29519570745997,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 31.312193695474356
+ ],
+ [
+ -84.87244032918765,
+ 31.625448749691284
+ ],
+ [
+ -85.29519570745997,
+ 31.625448749691284
+ ],
+ [
+ -85.50657339659612,
+ 31.312193695474356
+ ],
+ [
+ -85.29519570745997,
+ 30.99893864125743
+ ],
+ [
+ -84.87244032918765,
+ 30.99893864125743
+ ],
+ [
+ -84.6610626400515,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 31.938703803908208
+ ],
+ [
+ -84.87244032918765,
+ 32.251958858125136
+ ],
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ],
+ [
+ -85.50657339659612,
+ 31.938703803908208
+ ],
+ [
+ -85.29519570745997,
+ 31.62544874969128
+ ],
+ [
+ -84.87244032918765,
+ 31.62544874969128
+ ],
+ [
+ -84.6610626400515,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 32.56521391234206
+ ],
+ [
+ -84.87244032918765,
+ 32.878468966558984
+ ],
+ [
+ -85.29519570745997,
+ 32.878468966558984
+ ],
+ [
+ -85.50657339659612,
+ 32.56521391234206
+ ],
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ],
+ [
+ -84.87244032918765,
+ 32.251958858125136
+ ],
+ [
+ -84.6610626400515,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 33.191724020775915
+ ],
+ [
+ -84.87244032918765,
+ 33.50497907499284
+ ],
+ [
+ -85.29519570745997,
+ 33.50497907499284
+ ],
+ [
+ -85.50657339659612,
+ 33.191724020775915
+ ],
+ [
+ -85.29519570745997,
+ 32.87846896655899
+ ],
+ [
+ -84.87244032918765,
+ 32.87846896655899
+ ],
+ [
+ -84.6610626400515,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 33.81823412920977
+ ],
+ [
+ -84.87244032918765,
+ 34.131489183426694
+ ],
+ [
+ -85.29519570745997,
+ 34.131489183426694
+ ],
+ [
+ -85.50657339659612,
+ 33.81823412920977
+ ],
+ [
+ -85.29519570745997,
+ 33.504979074992846
+ ],
+ [
+ -84.87244032918765,
+ 33.504979074992846
+ ],
+ [
+ -84.6610626400515,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 34.444744237643626
+ ],
+ [
+ -84.87244032918765,
+ 34.75799929186055
+ ],
+ [
+ -85.29519570745997,
+ 34.75799929186055
+ ],
+ [
+ -85.50657339659612,
+ 34.444744237643626
+ ],
+ [
+ -85.29519570745997,
+ 34.1314891834267
+ ],
+ [
+ -84.87244032918765,
+ 34.1314891834267
+ ],
+ [
+ -84.6610626400515,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 35.07125434607748
+ ],
+ [
+ -84.87244032918765,
+ 35.384509400294405
+ ],
+ [
+ -85.29519570745997,
+ 35.384509400294405
+ ],
+ [
+ -85.50657339659612,
+ 35.07125434607748
+ ],
+ [
+ -85.29519570745997,
+ 34.75799929186056
+ ],
+ [
+ -84.87244032918765,
+ 34.75799929186056
+ ],
+ [
+ -84.6610626400515,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 35.697764454511336
+ ],
+ [
+ -84.87244032918765,
+ 36.01101950872826
+ ],
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ],
+ [
+ -85.50657339659612,
+ 35.697764454511336
+ ],
+ [
+ -85.29519570745997,
+ 35.38450940029441
+ ],
+ [
+ -84.87244032918765,
+ 35.38450940029441
+ ],
+ [
+ -84.6610626400515,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 36.324274562945185
+ ],
+ [
+ -84.87244032918765,
+ 36.63752961716211
+ ],
+ [
+ -85.29519570745997,
+ 36.63752961716211
+ ],
+ [
+ -85.50657339659612,
+ 36.324274562945185
+ ],
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ],
+ [
+ -84.87244032918765,
+ 36.01101950872826
+ ],
+ [
+ -84.6610626400515,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 36.95078467137904
+ ],
+ [
+ -84.87244032918765,
+ 37.264039725595964
+ ],
+ [
+ -85.29519570745997,
+ 37.264039725595964
+ ],
+ [
+ -85.50657339659612,
+ 36.95078467137904
+ ],
+ [
+ -85.29519570745997,
+ 36.637529617162116
+ ],
+ [
+ -84.87244032918765,
+ 36.637529617162116
+ ],
+ [
+ -84.6610626400515,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 37.577294779812895
+ ],
+ [
+ -84.87244032918765,
+ 37.89054983402982
+ ],
+ [
+ -85.29519570745997,
+ 37.89054983402982
+ ],
+ [
+ -85.50657339659612,
+ 37.577294779812895
+ ],
+ [
+ -85.29519570745997,
+ 37.26403972559597
+ ],
+ [
+ -84.87244032918765,
+ 37.26403972559597
+ ],
+ [
+ -84.6610626400515,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 38.20380488824675
+ ],
+ [
+ -84.87244032918765,
+ 38.517059942463675
+ ],
+ [
+ -85.29519570745997,
+ 38.517059942463675
+ ],
+ [
+ -85.50657339659612,
+ 38.20380488824675
+ ],
+ [
+ -85.29519570745997,
+ 37.89054983402983
+ ],
+ [
+ -84.87244032918765,
+ 37.89054983402983
+ ],
+ [
+ -84.6610626400515,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 38.830314996680606
+ ],
+ [
+ -84.87244032918765,
+ 39.14357005089753
+ ],
+ [
+ -85.29519570745997,
+ 39.14357005089753
+ ],
+ [
+ -85.50657339659612,
+ 38.830314996680606
+ ],
+ [
+ -85.29519570745997,
+ 38.51705994246368
+ ],
+ [
+ -84.87244032918765,
+ 38.51705994246368
+ ],
+ [
+ -84.6610626400515,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 39.45682510511446
+ ],
+ [
+ -84.87244032918765,
+ 39.770080159331386
+ ],
+ [
+ -85.29519570745997,
+ 39.770080159331386
+ ],
+ [
+ -85.50657339659612,
+ 39.45682510511446
+ ],
+ [
+ -85.29519570745997,
+ 39.14357005089754
+ ],
+ [
+ -84.87244032918765,
+ 39.14357005089754
+ ],
+ [
+ -84.6610626400515,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 40.08333521354832
+ ],
+ [
+ -84.87244032918765,
+ 40.39659026776524
+ ],
+ [
+ -85.29519570745997,
+ 40.39659026776524
+ ],
+ [
+ -85.50657339659612,
+ 40.08333521354832
+ ],
+ [
+ -85.29519570745997,
+ 39.77008015933139
+ ],
+ [
+ -84.87244032918765,
+ 39.77008015933139
+ ],
+ [
+ -84.6610626400515,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -84.6610626400515,
+ 40.70984532198217
+ ],
+ [
+ -84.87244032918765,
+ 41.023100376199096
+ ],
+ [
+ -85.29519570745997,
+ 41.023100376199096
+ ],
+ [
+ -85.50657339659612,
+ 40.70984532198217
+ ],
+ [
+ -85.29519570745997,
+ 40.39659026776525
+ ],
+ [
+ -84.87244032918765,
+ 40.39659026776525
+ ],
+ [
+ -84.6610626400515,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "fill-opacity": 0,
+ "stroke": "#0ff"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.6357421875,
+ 31.12819929911196
+ ],
+ [
+ -84.9462890625,
+ 31.12819929911196
+ ],
+ [
+ -84.9462890625,
+ 40.58058466412764
+ ],
+ [
+ -96.6357421875,
+ 40.58058466412764
+ ],
+ [
+ -96.6357421875,
+ 31.12819929911196
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-hex-grid/test/out/grid2.geojson b/packages/turf-hex-grid/test/out/grid2.geojson
new file mode 100644
index 0000000000..8378456458
--- /dev/null
+++ b/packages/turf-hex-grid/test/out/grid2.geojson
@@ -0,0 +1,30264 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 24.942612038041236
+ ],
+ [
+ -81.62703273337885,
+ 24.973937543462927
+ ],
+ [
+ -81.6669200522256,
+ 24.973937543462927
+ ],
+ [
+ -81.686863711649,
+ 24.942612038041236
+ ],
+ [
+ -81.6669200522256,
+ 24.911286532619545
+ ],
+ [
+ -81.62703273337885,
+ 24.911286532619545
+ ],
+ [
+ -81.60708907395546,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.005263048884622
+ ],
+ [
+ -81.62703273337885,
+ 25.036588554306313
+ ],
+ [
+ -81.6669200522256,
+ 25.036588554306313
+ ],
+ [
+ -81.686863711649,
+ 25.005263048884622
+ ],
+ [
+ -81.6669200522256,
+ 24.97393754346293
+ ],
+ [
+ -81.62703273337885,
+ 24.97393754346293
+ ],
+ [
+ -81.60708907395546,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.067914059728007
+ ],
+ [
+ -81.62703273337885,
+ 25.0992395651497
+ ],
+ [
+ -81.6669200522256,
+ 25.0992395651497
+ ],
+ [
+ -81.686863711649,
+ 25.067914059728007
+ ],
+ [
+ -81.6669200522256,
+ 25.036588554306316
+ ],
+ [
+ -81.62703273337885,
+ 25.036588554306316
+ ],
+ [
+ -81.60708907395546,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.130565070571393
+ ],
+ [
+ -81.62703273337885,
+ 25.161890575993084
+ ],
+ [
+ -81.6669200522256,
+ 25.161890575993084
+ ],
+ [
+ -81.686863711649,
+ 25.130565070571393
+ ],
+ [
+ -81.6669200522256,
+ 25.099239565149702
+ ],
+ [
+ -81.62703273337885,
+ 25.099239565149702
+ ],
+ [
+ -81.60708907395546,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.19321608141478
+ ],
+ [
+ -81.62703273337885,
+ 25.22454158683647
+ ],
+ [
+ -81.6669200522256,
+ 25.22454158683647
+ ],
+ [
+ -81.686863711649,
+ 25.19321608141478
+ ],
+ [
+ -81.6669200522256,
+ 25.161890575993088
+ ],
+ [
+ -81.62703273337885,
+ 25.161890575993088
+ ],
+ [
+ -81.60708907395546,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.255867092258164
+ ],
+ [
+ -81.62703273337885,
+ 25.287192597679855
+ ],
+ [
+ -81.6669200522256,
+ 25.287192597679855
+ ],
+ [
+ -81.686863711649,
+ 25.255867092258164
+ ],
+ [
+ -81.6669200522256,
+ 25.224541586836473
+ ],
+ [
+ -81.62703273337885,
+ 25.224541586836473
+ ],
+ [
+ -81.60708907395546,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.31851810310155
+ ],
+ [
+ -81.62703273337885,
+ 25.34984360852324
+ ],
+ [
+ -81.6669200522256,
+ 25.34984360852324
+ ],
+ [
+ -81.686863711649,
+ 25.31851810310155
+ ],
+ [
+ -81.6669200522256,
+ 25.28719259767986
+ ],
+ [
+ -81.62703273337885,
+ 25.28719259767986
+ ],
+ [
+ -81.60708907395546,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.381169113944935
+ ],
+ [
+ -81.62703273337885,
+ 25.412494619366626
+ ],
+ [
+ -81.6669200522256,
+ 25.412494619366626
+ ],
+ [
+ -81.686863711649,
+ 25.381169113944935
+ ],
+ [
+ -81.6669200522256,
+ 25.349843608523244
+ ],
+ [
+ -81.62703273337885,
+ 25.349843608523244
+ ],
+ [
+ -81.60708907395546,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.44382012478832
+ ],
+ [
+ -81.62703273337885,
+ 25.47514563021001
+ ],
+ [
+ -81.6669200522256,
+ 25.47514563021001
+ ],
+ [
+ -81.686863711649,
+ 25.44382012478832
+ ],
+ [
+ -81.6669200522256,
+ 25.41249461936663
+ ],
+ [
+ -81.62703273337885,
+ 25.41249461936663
+ ],
+ [
+ -81.60708907395546,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.506471135631706
+ ],
+ [
+ -81.62703273337885,
+ 25.537796641053397
+ ],
+ [
+ -81.6669200522256,
+ 25.537796641053397
+ ],
+ [
+ -81.686863711649,
+ 25.506471135631706
+ ],
+ [
+ -81.6669200522256,
+ 25.475145630210015
+ ],
+ [
+ -81.62703273337885,
+ 25.475145630210015
+ ],
+ [
+ -81.60708907395546,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.56912214647509
+ ],
+ [
+ -81.62703273337885,
+ 25.600447651896783
+ ],
+ [
+ -81.6669200522256,
+ 25.600447651896783
+ ],
+ [
+ -81.686863711649,
+ 25.56912214647509
+ ],
+ [
+ -81.6669200522256,
+ 25.5377966410534
+ ],
+ [
+ -81.62703273337885,
+ 25.5377966410534
+ ],
+ [
+ -81.60708907395546,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.631773157318477
+ ],
+ [
+ -81.62703273337885,
+ 25.66309866274017
+ ],
+ [
+ -81.6669200522256,
+ 25.66309866274017
+ ],
+ [
+ -81.686863711649,
+ 25.631773157318477
+ ],
+ [
+ -81.6669200522256,
+ 25.600447651896786
+ ],
+ [
+ -81.62703273337885,
+ 25.600447651896786
+ ],
+ [
+ -81.60708907395546,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.694424168161863
+ ],
+ [
+ -81.62703273337885,
+ 25.725749673583554
+ ],
+ [
+ -81.6669200522256,
+ 25.725749673583554
+ ],
+ [
+ -81.686863711649,
+ 25.694424168161863
+ ],
+ [
+ -81.6669200522256,
+ 25.663098662740172
+ ],
+ [
+ -81.62703273337885,
+ 25.663098662740172
+ ],
+ [
+ -81.60708907395546,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.75707517900525
+ ],
+ [
+ -81.62703273337885,
+ 25.78840068442694
+ ],
+ [
+ -81.6669200522256,
+ 25.78840068442694
+ ],
+ [
+ -81.686863711649,
+ 25.75707517900525
+ ],
+ [
+ -81.6669200522256,
+ 25.725749673583557
+ ],
+ [
+ -81.62703273337885,
+ 25.725749673583557
+ ],
+ [
+ -81.60708907395546,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.819726189848634
+ ],
+ [
+ -81.62703273337885,
+ 25.851051695270325
+ ],
+ [
+ -81.6669200522256,
+ 25.851051695270325
+ ],
+ [
+ -81.686863711649,
+ 25.819726189848634
+ ],
+ [
+ -81.6669200522256,
+ 25.788400684426943
+ ],
+ [
+ -81.62703273337885,
+ 25.788400684426943
+ ],
+ [
+ -81.60708907395546,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.88237720069202
+ ],
+ [
+ -81.62703273337885,
+ 25.91370270611371
+ ],
+ [
+ -81.6669200522256,
+ 25.91370270611371
+ ],
+ [
+ -81.686863711649,
+ 25.88237720069202
+ ],
+ [
+ -81.6669200522256,
+ 25.85105169527033
+ ],
+ [
+ -81.62703273337885,
+ 25.85105169527033
+ ],
+ [
+ -81.60708907395546,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 25.945028211535405
+ ],
+ [
+ -81.62703273337885,
+ 25.976353716957096
+ ],
+ [
+ -81.6669200522256,
+ 25.976353716957096
+ ],
+ [
+ -81.686863711649,
+ 25.945028211535405
+ ],
+ [
+ -81.6669200522256,
+ 25.913702706113714
+ ],
+ [
+ -81.62703273337885,
+ 25.913702706113714
+ ],
+ [
+ -81.60708907395546,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 26.00767922237879
+ ],
+ [
+ -81.62703273337885,
+ 26.03900472780048
+ ],
+ [
+ -81.6669200522256,
+ 26.03900472780048
+ ],
+ [
+ -81.686863711649,
+ 26.00767922237879
+ ],
+ [
+ -81.6669200522256,
+ 25.9763537169571
+ ],
+ [
+ -81.62703273337885,
+ 25.9763537169571
+ ],
+ [
+ -81.60708907395546,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 26.070330233222176
+ ],
+ [
+ -81.62703273337885,
+ 26.101655738643867
+ ],
+ [
+ -81.6669200522256,
+ 26.101655738643867
+ ],
+ [
+ -81.686863711649,
+ 26.070330233222176
+ ],
+ [
+ -81.6669200522256,
+ 26.039004727800485
+ ],
+ [
+ -81.62703273337885,
+ 26.039004727800485
+ ],
+ [
+ -81.60708907395546,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ],
+ [
+ -81.62703273337885,
+ 26.164306749487253
+ ],
+ [
+ -81.6669200522256,
+ 26.164306749487253
+ ],
+ [
+ -81.686863711649,
+ 26.13298124406556
+ ],
+ [
+ -81.6669200522256,
+ 26.10165573864387
+ ],
+ [
+ -81.62703273337885,
+ 26.10165573864387
+ ],
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 26.195632254908944
+ ],
+ [
+ -81.62703273337885,
+ 26.226957760330635
+ ],
+ [
+ -81.6669200522256,
+ 26.226957760330635
+ ],
+ [
+ -81.686863711649,
+ 26.195632254908944
+ ],
+ [
+ -81.6669200522256,
+ 26.164306749487253
+ ],
+ [
+ -81.62703273337885,
+ 26.164306749487253
+ ],
+ [
+ -81.60708907395546,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ],
+ [
+ -81.62703273337885,
+ 26.289608771174024
+ ],
+ [
+ -81.6669200522256,
+ 26.289608771174024
+ ],
+ [
+ -81.686863711649,
+ 26.258283265752333
+ ],
+ [
+ -81.6669200522256,
+ 26.22695776033064
+ ],
+ [
+ -81.62703273337885,
+ 26.22695776033064
+ ],
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 26.320934276595715
+ ],
+ [
+ -81.62703273337885,
+ 26.352259782017406
+ ],
+ [
+ -81.6669200522256,
+ 26.352259782017406
+ ],
+ [
+ -81.686863711649,
+ 26.320934276595715
+ ],
+ [
+ -81.6669200522256,
+ 26.289608771174024
+ ],
+ [
+ -81.62703273337885,
+ 26.289608771174024
+ ],
+ [
+ -81.60708907395546,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 26.3835852874391
+ ],
+ [
+ -81.62703273337885,
+ 26.41491079286079
+ ],
+ [
+ -81.6669200522256,
+ 26.41491079286079
+ ],
+ [
+ -81.686863711649,
+ 26.3835852874391
+ ],
+ [
+ -81.6669200522256,
+ 26.35225978201741
+ ],
+ [
+ -81.62703273337885,
+ 26.35225978201741
+ ],
+ [
+ -81.60708907395546,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.60708907395546,
+ 26.446236298282486
+ ],
+ [
+ -81.62703273337885,
+ 26.477561803704177
+ ],
+ [
+ -81.6669200522256,
+ 26.477561803704177
+ ],
+ [
+ -81.686863711649,
+ 26.446236298282486
+ ],
+ [
+ -81.6669200522256,
+ 26.414910792860795
+ ],
+ [
+ -81.62703273337885,
+ 26.414910792860795
+ ],
+ [
+ -81.60708907395546,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 24.911286532619545
+ ],
+ [
+ -81.56720175510871,
+ 24.942612038041236
+ ],
+ [
+ -81.60708907395546,
+ 24.942612038041236
+ ],
+ [
+ -81.62703273337885,
+ 24.911286532619545
+ ],
+ [
+ -81.60708907395546,
+ 24.879961027197854
+ ],
+ [
+ -81.56720175510871,
+ 24.879961027197854
+ ],
+ [
+ -81.54725809568532,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 24.97393754346293
+ ],
+ [
+ -81.56720175510871,
+ 25.005263048884622
+ ],
+ [
+ -81.60708907395546,
+ 25.005263048884622
+ ],
+ [
+ -81.62703273337885,
+ 24.97393754346293
+ ],
+ [
+ -81.60708907395546,
+ 24.94261203804124
+ ],
+ [
+ -81.56720175510871,
+ 24.94261203804124
+ ],
+ [
+ -81.54725809568532,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.036588554306316
+ ],
+ [
+ -81.56720175510871,
+ 25.067914059728007
+ ],
+ [
+ -81.60708907395546,
+ 25.067914059728007
+ ],
+ [
+ -81.62703273337885,
+ 25.036588554306316
+ ],
+ [
+ -81.60708907395546,
+ 25.005263048884625
+ ],
+ [
+ -81.56720175510871,
+ 25.005263048884625
+ ],
+ [
+ -81.54725809568532,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.099239565149702
+ ],
+ [
+ -81.56720175510871,
+ 25.130565070571393
+ ],
+ [
+ -81.60708907395546,
+ 25.130565070571393
+ ],
+ [
+ -81.62703273337885,
+ 25.099239565149702
+ ],
+ [
+ -81.60708907395546,
+ 25.06791405972801
+ ],
+ [
+ -81.56720175510871,
+ 25.06791405972801
+ ],
+ [
+ -81.54725809568532,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.161890575993088
+ ],
+ [
+ -81.56720175510871,
+ 25.19321608141478
+ ],
+ [
+ -81.60708907395546,
+ 25.19321608141478
+ ],
+ [
+ -81.62703273337885,
+ 25.161890575993088
+ ],
+ [
+ -81.60708907395546,
+ 25.130565070571397
+ ],
+ [
+ -81.56720175510871,
+ 25.130565070571397
+ ],
+ [
+ -81.54725809568532,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.224541586836473
+ ],
+ [
+ -81.56720175510871,
+ 25.255867092258164
+ ],
+ [
+ -81.60708907395546,
+ 25.255867092258164
+ ],
+ [
+ -81.62703273337885,
+ 25.224541586836473
+ ],
+ [
+ -81.60708907395546,
+ 25.193216081414782
+ ],
+ [
+ -81.56720175510871,
+ 25.193216081414782
+ ],
+ [
+ -81.54725809568532,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.28719259767986
+ ],
+ [
+ -81.56720175510871,
+ 25.31851810310155
+ ],
+ [
+ -81.60708907395546,
+ 25.31851810310155
+ ],
+ [
+ -81.62703273337885,
+ 25.28719259767986
+ ],
+ [
+ -81.60708907395546,
+ 25.255867092258168
+ ],
+ [
+ -81.56720175510871,
+ 25.255867092258168
+ ],
+ [
+ -81.54725809568532,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.349843608523244
+ ],
+ [
+ -81.56720175510871,
+ 25.381169113944935
+ ],
+ [
+ -81.60708907395546,
+ 25.381169113944935
+ ],
+ [
+ -81.62703273337885,
+ 25.349843608523244
+ ],
+ [
+ -81.60708907395546,
+ 25.318518103101553
+ ],
+ [
+ -81.56720175510871,
+ 25.318518103101553
+ ],
+ [
+ -81.54725809568532,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.41249461936663
+ ],
+ [
+ -81.56720175510871,
+ 25.44382012478832
+ ],
+ [
+ -81.60708907395546,
+ 25.44382012478832
+ ],
+ [
+ -81.62703273337885,
+ 25.41249461936663
+ ],
+ [
+ -81.60708907395546,
+ 25.38116911394494
+ ],
+ [
+ -81.56720175510871,
+ 25.38116911394494
+ ],
+ [
+ -81.54725809568532,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.475145630210015
+ ],
+ [
+ -81.56720175510871,
+ 25.506471135631706
+ ],
+ [
+ -81.60708907395546,
+ 25.506471135631706
+ ],
+ [
+ -81.62703273337885,
+ 25.475145630210015
+ ],
+ [
+ -81.60708907395546,
+ 25.443820124788324
+ ],
+ [
+ -81.56720175510871,
+ 25.443820124788324
+ ],
+ [
+ -81.54725809568532,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.5377966410534
+ ],
+ [
+ -81.56720175510871,
+ 25.56912214647509
+ ],
+ [
+ -81.60708907395546,
+ 25.56912214647509
+ ],
+ [
+ -81.62703273337885,
+ 25.5377966410534
+ ],
+ [
+ -81.60708907395546,
+ 25.50647113563171
+ ],
+ [
+ -81.56720175510871,
+ 25.50647113563171
+ ],
+ [
+ -81.54725809568532,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.600447651896786
+ ],
+ [
+ -81.56720175510871,
+ 25.631773157318477
+ ],
+ [
+ -81.60708907395546,
+ 25.631773157318477
+ ],
+ [
+ -81.62703273337885,
+ 25.600447651896786
+ ],
+ [
+ -81.60708907395546,
+ 25.569122146475095
+ ],
+ [
+ -81.56720175510871,
+ 25.569122146475095
+ ],
+ [
+ -81.54725809568532,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.663098662740172
+ ],
+ [
+ -81.56720175510871,
+ 25.694424168161863
+ ],
+ [
+ -81.60708907395546,
+ 25.694424168161863
+ ],
+ [
+ -81.62703273337885,
+ 25.663098662740172
+ ],
+ [
+ -81.60708907395546,
+ 25.63177315731848
+ ],
+ [
+ -81.56720175510871,
+ 25.63177315731848
+ ],
+ [
+ -81.54725809568532,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.725749673583557
+ ],
+ [
+ -81.56720175510871,
+ 25.75707517900525
+ ],
+ [
+ -81.60708907395546,
+ 25.75707517900525
+ ],
+ [
+ -81.62703273337885,
+ 25.725749673583557
+ ],
+ [
+ -81.60708907395546,
+ 25.694424168161866
+ ],
+ [
+ -81.56720175510871,
+ 25.694424168161866
+ ],
+ [
+ -81.54725809568532,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.788400684426943
+ ],
+ [
+ -81.56720175510871,
+ 25.819726189848634
+ ],
+ [
+ -81.60708907395546,
+ 25.819726189848634
+ ],
+ [
+ -81.62703273337885,
+ 25.788400684426943
+ ],
+ [
+ -81.60708907395546,
+ 25.757075179005252
+ ],
+ [
+ -81.56720175510871,
+ 25.757075179005252
+ ],
+ [
+ -81.54725809568532,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.85105169527033
+ ],
+ [
+ -81.56720175510871,
+ 25.88237720069202
+ ],
+ [
+ -81.60708907395546,
+ 25.88237720069202
+ ],
+ [
+ -81.62703273337885,
+ 25.85105169527033
+ ],
+ [
+ -81.60708907395546,
+ 25.819726189848637
+ ],
+ [
+ -81.56720175510871,
+ 25.819726189848637
+ ],
+ [
+ -81.54725809568532,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.913702706113714
+ ],
+ [
+ -81.56720175510871,
+ 25.945028211535405
+ ],
+ [
+ -81.60708907395546,
+ 25.945028211535405
+ ],
+ [
+ -81.62703273337885,
+ 25.913702706113714
+ ],
+ [
+ -81.60708907395546,
+ 25.882377200692023
+ ],
+ [
+ -81.56720175510871,
+ 25.882377200692023
+ ],
+ [
+ -81.54725809568532,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 25.9763537169571
+ ],
+ [
+ -81.56720175510871,
+ 26.00767922237879
+ ],
+ [
+ -81.60708907395546,
+ 26.00767922237879
+ ],
+ [
+ -81.62703273337885,
+ 25.9763537169571
+ ],
+ [
+ -81.60708907395546,
+ 25.94502821153541
+ ],
+ [
+ -81.56720175510871,
+ 25.94502821153541
+ ],
+ [
+ -81.54725809568532,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 26.039004727800485
+ ],
+ [
+ -81.56720175510871,
+ 26.070330233222176
+ ],
+ [
+ -81.60708907395546,
+ 26.070330233222176
+ ],
+ [
+ -81.62703273337885,
+ 26.039004727800485
+ ],
+ [
+ -81.60708907395546,
+ 26.007679222378794
+ ],
+ [
+ -81.56720175510871,
+ 26.007679222378794
+ ],
+ [
+ -81.54725809568532,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 26.10165573864387
+ ],
+ [
+ -81.56720175510871,
+ 26.13298124406556
+ ],
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ],
+ [
+ -81.62703273337885,
+ 26.10165573864387
+ ],
+ [
+ -81.60708907395546,
+ 26.07033023322218
+ ],
+ [
+ -81.56720175510871,
+ 26.07033023322218
+ ],
+ [
+ -81.54725809568532,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 26.164306749487253
+ ],
+ [
+ -81.56720175510871,
+ 26.195632254908944
+ ],
+ [
+ -81.60708907395546,
+ 26.195632254908944
+ ],
+ [
+ -81.62703273337885,
+ 26.164306749487253
+ ],
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ],
+ [
+ -81.56720175510871,
+ 26.13298124406556
+ ],
+ [
+ -81.54725809568532,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 26.22695776033064
+ ],
+ [
+ -81.56720175510871,
+ 26.258283265752333
+ ],
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ],
+ [
+ -81.62703273337885,
+ 26.22695776033064
+ ],
+ [
+ -81.60708907395546,
+ 26.19563225490895
+ ],
+ [
+ -81.56720175510871,
+ 26.19563225490895
+ ],
+ [
+ -81.54725809568532,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 26.289608771174024
+ ],
+ [
+ -81.56720175510871,
+ 26.320934276595715
+ ],
+ [
+ -81.60708907395546,
+ 26.320934276595715
+ ],
+ [
+ -81.62703273337885,
+ 26.289608771174024
+ ],
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ],
+ [
+ -81.56720175510871,
+ 26.258283265752333
+ ],
+ [
+ -81.54725809568532,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 26.35225978201741
+ ],
+ [
+ -81.56720175510871,
+ 26.3835852874391
+ ],
+ [
+ -81.60708907395546,
+ 26.3835852874391
+ ],
+ [
+ -81.62703273337885,
+ 26.35225978201741
+ ],
+ [
+ -81.60708907395546,
+ 26.320934276595718
+ ],
+ [
+ -81.56720175510871,
+ 26.320934276595718
+ ],
+ [
+ -81.54725809568532,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.54725809568532,
+ 26.414910792860795
+ ],
+ [
+ -81.56720175510871,
+ 26.446236298282486
+ ],
+ [
+ -81.60708907395546,
+ 26.446236298282486
+ ],
+ [
+ -81.62703273337885,
+ 26.414910792860795
+ ],
+ [
+ -81.60708907395546,
+ 26.383585287439104
+ ],
+ [
+ -81.56720175510871,
+ 26.383585287439104
+ ],
+ [
+ -81.54725809568532,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 24.942612038041236
+ ],
+ [
+ -81.50737077683856,
+ 24.973937543462927
+ ],
+ [
+ -81.54725809568531,
+ 24.973937543462927
+ ],
+ [
+ -81.5672017551087,
+ 24.942612038041236
+ ],
+ [
+ -81.54725809568531,
+ 24.911286532619545
+ ],
+ [
+ -81.50737077683856,
+ 24.911286532619545
+ ],
+ [
+ -81.48742711741517,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.005263048884622
+ ],
+ [
+ -81.50737077683856,
+ 25.036588554306313
+ ],
+ [
+ -81.54725809568531,
+ 25.036588554306313
+ ],
+ [
+ -81.5672017551087,
+ 25.005263048884622
+ ],
+ [
+ -81.54725809568531,
+ 24.97393754346293
+ ],
+ [
+ -81.50737077683856,
+ 24.97393754346293
+ ],
+ [
+ -81.48742711741517,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.067914059728007
+ ],
+ [
+ -81.50737077683856,
+ 25.0992395651497
+ ],
+ [
+ -81.54725809568531,
+ 25.0992395651497
+ ],
+ [
+ -81.5672017551087,
+ 25.067914059728007
+ ],
+ [
+ -81.54725809568531,
+ 25.036588554306316
+ ],
+ [
+ -81.50737077683856,
+ 25.036588554306316
+ ],
+ [
+ -81.48742711741517,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.130565070571393
+ ],
+ [
+ -81.50737077683856,
+ 25.161890575993084
+ ],
+ [
+ -81.54725809568531,
+ 25.161890575993084
+ ],
+ [
+ -81.5672017551087,
+ 25.130565070571393
+ ],
+ [
+ -81.54725809568531,
+ 25.099239565149702
+ ],
+ [
+ -81.50737077683856,
+ 25.099239565149702
+ ],
+ [
+ -81.48742711741517,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.19321608141478
+ ],
+ [
+ -81.50737077683856,
+ 25.22454158683647
+ ],
+ [
+ -81.54725809568531,
+ 25.22454158683647
+ ],
+ [
+ -81.5672017551087,
+ 25.19321608141478
+ ],
+ [
+ -81.54725809568531,
+ 25.161890575993088
+ ],
+ [
+ -81.50737077683856,
+ 25.161890575993088
+ ],
+ [
+ -81.48742711741517,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.255867092258164
+ ],
+ [
+ -81.50737077683856,
+ 25.287192597679855
+ ],
+ [
+ -81.54725809568531,
+ 25.287192597679855
+ ],
+ [
+ -81.5672017551087,
+ 25.255867092258164
+ ],
+ [
+ -81.54725809568531,
+ 25.224541586836473
+ ],
+ [
+ -81.50737077683856,
+ 25.224541586836473
+ ],
+ [
+ -81.48742711741517,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.31851810310155
+ ],
+ [
+ -81.50737077683856,
+ 25.34984360852324
+ ],
+ [
+ -81.54725809568531,
+ 25.34984360852324
+ ],
+ [
+ -81.5672017551087,
+ 25.31851810310155
+ ],
+ [
+ -81.54725809568531,
+ 25.28719259767986
+ ],
+ [
+ -81.50737077683856,
+ 25.28719259767986
+ ],
+ [
+ -81.48742711741517,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.381169113944935
+ ],
+ [
+ -81.50737077683856,
+ 25.412494619366626
+ ],
+ [
+ -81.54725809568531,
+ 25.412494619366626
+ ],
+ [
+ -81.5672017551087,
+ 25.381169113944935
+ ],
+ [
+ -81.54725809568531,
+ 25.349843608523244
+ ],
+ [
+ -81.50737077683856,
+ 25.349843608523244
+ ],
+ [
+ -81.48742711741517,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.44382012478832
+ ],
+ [
+ -81.50737077683856,
+ 25.47514563021001
+ ],
+ [
+ -81.54725809568531,
+ 25.47514563021001
+ ],
+ [
+ -81.5672017551087,
+ 25.44382012478832
+ ],
+ [
+ -81.54725809568531,
+ 25.41249461936663
+ ],
+ [
+ -81.50737077683856,
+ 25.41249461936663
+ ],
+ [
+ -81.48742711741517,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.506471135631706
+ ],
+ [
+ -81.50737077683856,
+ 25.537796641053397
+ ],
+ [
+ -81.54725809568531,
+ 25.537796641053397
+ ],
+ [
+ -81.5672017551087,
+ 25.506471135631706
+ ],
+ [
+ -81.54725809568531,
+ 25.475145630210015
+ ],
+ [
+ -81.50737077683856,
+ 25.475145630210015
+ ],
+ [
+ -81.48742711741517,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.56912214647509
+ ],
+ [
+ -81.50737077683856,
+ 25.600447651896783
+ ],
+ [
+ -81.54725809568531,
+ 25.600447651896783
+ ],
+ [
+ -81.5672017551087,
+ 25.56912214647509
+ ],
+ [
+ -81.54725809568531,
+ 25.5377966410534
+ ],
+ [
+ -81.50737077683856,
+ 25.5377966410534
+ ],
+ [
+ -81.48742711741517,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.631773157318477
+ ],
+ [
+ -81.50737077683856,
+ 25.66309866274017
+ ],
+ [
+ -81.54725809568531,
+ 25.66309866274017
+ ],
+ [
+ -81.5672017551087,
+ 25.631773157318477
+ ],
+ [
+ -81.54725809568531,
+ 25.600447651896786
+ ],
+ [
+ -81.50737077683856,
+ 25.600447651896786
+ ],
+ [
+ -81.48742711741517,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.694424168161863
+ ],
+ [
+ -81.50737077683856,
+ 25.725749673583554
+ ],
+ [
+ -81.54725809568531,
+ 25.725749673583554
+ ],
+ [
+ -81.5672017551087,
+ 25.694424168161863
+ ],
+ [
+ -81.54725809568531,
+ 25.663098662740172
+ ],
+ [
+ -81.50737077683856,
+ 25.663098662740172
+ ],
+ [
+ -81.48742711741517,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.75707517900525
+ ],
+ [
+ -81.50737077683856,
+ 25.78840068442694
+ ],
+ [
+ -81.54725809568531,
+ 25.78840068442694
+ ],
+ [
+ -81.5672017551087,
+ 25.75707517900525
+ ],
+ [
+ -81.54725809568531,
+ 25.725749673583557
+ ],
+ [
+ -81.50737077683856,
+ 25.725749673583557
+ ],
+ [
+ -81.48742711741517,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.819726189848634
+ ],
+ [
+ -81.50737077683856,
+ 25.851051695270325
+ ],
+ [
+ -81.54725809568531,
+ 25.851051695270325
+ ],
+ [
+ -81.5672017551087,
+ 25.819726189848634
+ ],
+ [
+ -81.54725809568531,
+ 25.788400684426943
+ ],
+ [
+ -81.50737077683856,
+ 25.788400684426943
+ ],
+ [
+ -81.48742711741517,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.88237720069202
+ ],
+ [
+ -81.50737077683856,
+ 25.91370270611371
+ ],
+ [
+ -81.54725809568531,
+ 25.91370270611371
+ ],
+ [
+ -81.5672017551087,
+ 25.88237720069202
+ ],
+ [
+ -81.54725809568531,
+ 25.85105169527033
+ ],
+ [
+ -81.50737077683856,
+ 25.85105169527033
+ ],
+ [
+ -81.48742711741517,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 25.945028211535405
+ ],
+ [
+ -81.50737077683856,
+ 25.976353716957096
+ ],
+ [
+ -81.54725809568531,
+ 25.976353716957096
+ ],
+ [
+ -81.5672017551087,
+ 25.945028211535405
+ ],
+ [
+ -81.54725809568531,
+ 25.913702706113714
+ ],
+ [
+ -81.50737077683856,
+ 25.913702706113714
+ ],
+ [
+ -81.48742711741517,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 26.00767922237879
+ ],
+ [
+ -81.50737077683856,
+ 26.03900472780048
+ ],
+ [
+ -81.54725809568531,
+ 26.03900472780048
+ ],
+ [
+ -81.5672017551087,
+ 26.00767922237879
+ ],
+ [
+ -81.54725809568531,
+ 25.9763537169571
+ ],
+ [
+ -81.50737077683856,
+ 25.9763537169571
+ ],
+ [
+ -81.48742711741517,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 26.070330233222176
+ ],
+ [
+ -81.50737077683856,
+ 26.101655738643867
+ ],
+ [
+ -81.54725809568531,
+ 26.101655738643867
+ ],
+ [
+ -81.5672017551087,
+ 26.070330233222176
+ ],
+ [
+ -81.54725809568531,
+ 26.039004727800485
+ ],
+ [
+ -81.50737077683856,
+ 26.039004727800485
+ ],
+ [
+ -81.48742711741517,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ],
+ [
+ -81.50737077683856,
+ 26.164306749487253
+ ],
+ [
+ -81.54725809568531,
+ 26.164306749487253
+ ],
+ [
+ -81.5672017551087,
+ 26.13298124406556
+ ],
+ [
+ -81.54725809568531,
+ 26.10165573864387
+ ],
+ [
+ -81.50737077683856,
+ 26.10165573864387
+ ],
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 26.195632254908944
+ ],
+ [
+ -81.50737077683856,
+ 26.226957760330635
+ ],
+ [
+ -81.54725809568531,
+ 26.226957760330635
+ ],
+ [
+ -81.5672017551087,
+ 26.195632254908944
+ ],
+ [
+ -81.54725809568531,
+ 26.164306749487253
+ ],
+ [
+ -81.50737077683856,
+ 26.164306749487253
+ ],
+ [
+ -81.48742711741517,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ],
+ [
+ -81.50737077683856,
+ 26.289608771174024
+ ],
+ [
+ -81.54725809568531,
+ 26.289608771174024
+ ],
+ [
+ -81.5672017551087,
+ 26.258283265752333
+ ],
+ [
+ -81.54725809568531,
+ 26.22695776033064
+ ],
+ [
+ -81.50737077683856,
+ 26.22695776033064
+ ],
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 26.320934276595715
+ ],
+ [
+ -81.50737077683856,
+ 26.352259782017406
+ ],
+ [
+ -81.54725809568531,
+ 26.352259782017406
+ ],
+ [
+ -81.5672017551087,
+ 26.320934276595715
+ ],
+ [
+ -81.54725809568531,
+ 26.289608771174024
+ ],
+ [
+ -81.50737077683856,
+ 26.289608771174024
+ ],
+ [
+ -81.48742711741517,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 26.3835852874391
+ ],
+ [
+ -81.50737077683856,
+ 26.41491079286079
+ ],
+ [
+ -81.54725809568531,
+ 26.41491079286079
+ ],
+ [
+ -81.5672017551087,
+ 26.3835852874391
+ ],
+ [
+ -81.54725809568531,
+ 26.35225978201741
+ ],
+ [
+ -81.50737077683856,
+ 26.35225978201741
+ ],
+ [
+ -81.48742711741517,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.48742711741517,
+ 26.446236298282486
+ ],
+ [
+ -81.50737077683856,
+ 26.477561803704177
+ ],
+ [
+ -81.54725809568531,
+ 26.477561803704177
+ ],
+ [
+ -81.5672017551087,
+ 26.446236298282486
+ ],
+ [
+ -81.54725809568531,
+ 26.414910792860795
+ ],
+ [
+ -81.50737077683856,
+ 26.414910792860795
+ ],
+ [
+ -81.48742711741517,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 24.911286532619545
+ ],
+ [
+ -81.44753979856841,
+ 24.942612038041236
+ ],
+ [
+ -81.48742711741517,
+ 24.942612038041236
+ ],
+ [
+ -81.50737077683856,
+ 24.911286532619545
+ ],
+ [
+ -81.48742711741517,
+ 24.879961027197854
+ ],
+ [
+ -81.44753979856841,
+ 24.879961027197854
+ ],
+ [
+ -81.42759613914502,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 24.97393754346293
+ ],
+ [
+ -81.44753979856841,
+ 25.005263048884622
+ ],
+ [
+ -81.48742711741517,
+ 25.005263048884622
+ ],
+ [
+ -81.50737077683856,
+ 24.97393754346293
+ ],
+ [
+ -81.48742711741517,
+ 24.94261203804124
+ ],
+ [
+ -81.44753979856841,
+ 24.94261203804124
+ ],
+ [
+ -81.42759613914502,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.036588554306316
+ ],
+ [
+ -81.44753979856841,
+ 25.067914059728007
+ ],
+ [
+ -81.48742711741517,
+ 25.067914059728007
+ ],
+ [
+ -81.50737077683856,
+ 25.036588554306316
+ ],
+ [
+ -81.48742711741517,
+ 25.005263048884625
+ ],
+ [
+ -81.44753979856841,
+ 25.005263048884625
+ ],
+ [
+ -81.42759613914502,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.099239565149702
+ ],
+ [
+ -81.44753979856841,
+ 25.130565070571393
+ ],
+ [
+ -81.48742711741517,
+ 25.130565070571393
+ ],
+ [
+ -81.50737077683856,
+ 25.099239565149702
+ ],
+ [
+ -81.48742711741517,
+ 25.06791405972801
+ ],
+ [
+ -81.44753979856841,
+ 25.06791405972801
+ ],
+ [
+ -81.42759613914502,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.161890575993088
+ ],
+ [
+ -81.44753979856841,
+ 25.19321608141478
+ ],
+ [
+ -81.48742711741517,
+ 25.19321608141478
+ ],
+ [
+ -81.50737077683856,
+ 25.161890575993088
+ ],
+ [
+ -81.48742711741517,
+ 25.130565070571397
+ ],
+ [
+ -81.44753979856841,
+ 25.130565070571397
+ ],
+ [
+ -81.42759613914502,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.224541586836473
+ ],
+ [
+ -81.44753979856841,
+ 25.255867092258164
+ ],
+ [
+ -81.48742711741517,
+ 25.255867092258164
+ ],
+ [
+ -81.50737077683856,
+ 25.224541586836473
+ ],
+ [
+ -81.48742711741517,
+ 25.193216081414782
+ ],
+ [
+ -81.44753979856841,
+ 25.193216081414782
+ ],
+ [
+ -81.42759613914502,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.28719259767986
+ ],
+ [
+ -81.44753979856841,
+ 25.31851810310155
+ ],
+ [
+ -81.48742711741517,
+ 25.31851810310155
+ ],
+ [
+ -81.50737077683856,
+ 25.28719259767986
+ ],
+ [
+ -81.48742711741517,
+ 25.255867092258168
+ ],
+ [
+ -81.44753979856841,
+ 25.255867092258168
+ ],
+ [
+ -81.42759613914502,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.349843608523244
+ ],
+ [
+ -81.44753979856841,
+ 25.381169113944935
+ ],
+ [
+ -81.48742711741517,
+ 25.381169113944935
+ ],
+ [
+ -81.50737077683856,
+ 25.349843608523244
+ ],
+ [
+ -81.48742711741517,
+ 25.318518103101553
+ ],
+ [
+ -81.44753979856841,
+ 25.318518103101553
+ ],
+ [
+ -81.42759613914502,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.41249461936663
+ ],
+ [
+ -81.44753979856841,
+ 25.44382012478832
+ ],
+ [
+ -81.48742711741517,
+ 25.44382012478832
+ ],
+ [
+ -81.50737077683856,
+ 25.41249461936663
+ ],
+ [
+ -81.48742711741517,
+ 25.38116911394494
+ ],
+ [
+ -81.44753979856841,
+ 25.38116911394494
+ ],
+ [
+ -81.42759613914502,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.475145630210015
+ ],
+ [
+ -81.44753979856841,
+ 25.506471135631706
+ ],
+ [
+ -81.48742711741517,
+ 25.506471135631706
+ ],
+ [
+ -81.50737077683856,
+ 25.475145630210015
+ ],
+ [
+ -81.48742711741517,
+ 25.443820124788324
+ ],
+ [
+ -81.44753979856841,
+ 25.443820124788324
+ ],
+ [
+ -81.42759613914502,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.5377966410534
+ ],
+ [
+ -81.44753979856841,
+ 25.56912214647509
+ ],
+ [
+ -81.48742711741517,
+ 25.56912214647509
+ ],
+ [
+ -81.50737077683856,
+ 25.5377966410534
+ ],
+ [
+ -81.48742711741517,
+ 25.50647113563171
+ ],
+ [
+ -81.44753979856841,
+ 25.50647113563171
+ ],
+ [
+ -81.42759613914502,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.600447651896786
+ ],
+ [
+ -81.44753979856841,
+ 25.631773157318477
+ ],
+ [
+ -81.48742711741517,
+ 25.631773157318477
+ ],
+ [
+ -81.50737077683856,
+ 25.600447651896786
+ ],
+ [
+ -81.48742711741517,
+ 25.569122146475095
+ ],
+ [
+ -81.44753979856841,
+ 25.569122146475095
+ ],
+ [
+ -81.42759613914502,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.663098662740172
+ ],
+ [
+ -81.44753979856841,
+ 25.694424168161863
+ ],
+ [
+ -81.48742711741517,
+ 25.694424168161863
+ ],
+ [
+ -81.50737077683856,
+ 25.663098662740172
+ ],
+ [
+ -81.48742711741517,
+ 25.63177315731848
+ ],
+ [
+ -81.44753979856841,
+ 25.63177315731848
+ ],
+ [
+ -81.42759613914502,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.725749673583557
+ ],
+ [
+ -81.44753979856841,
+ 25.75707517900525
+ ],
+ [
+ -81.48742711741517,
+ 25.75707517900525
+ ],
+ [
+ -81.50737077683856,
+ 25.725749673583557
+ ],
+ [
+ -81.48742711741517,
+ 25.694424168161866
+ ],
+ [
+ -81.44753979856841,
+ 25.694424168161866
+ ],
+ [
+ -81.42759613914502,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.788400684426943
+ ],
+ [
+ -81.44753979856841,
+ 25.819726189848634
+ ],
+ [
+ -81.48742711741517,
+ 25.819726189848634
+ ],
+ [
+ -81.50737077683856,
+ 25.788400684426943
+ ],
+ [
+ -81.48742711741517,
+ 25.757075179005252
+ ],
+ [
+ -81.44753979856841,
+ 25.757075179005252
+ ],
+ [
+ -81.42759613914502,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.85105169527033
+ ],
+ [
+ -81.44753979856841,
+ 25.88237720069202
+ ],
+ [
+ -81.48742711741517,
+ 25.88237720069202
+ ],
+ [
+ -81.50737077683856,
+ 25.85105169527033
+ ],
+ [
+ -81.48742711741517,
+ 25.819726189848637
+ ],
+ [
+ -81.44753979856841,
+ 25.819726189848637
+ ],
+ [
+ -81.42759613914502,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.913702706113714
+ ],
+ [
+ -81.44753979856841,
+ 25.945028211535405
+ ],
+ [
+ -81.48742711741517,
+ 25.945028211535405
+ ],
+ [
+ -81.50737077683856,
+ 25.913702706113714
+ ],
+ [
+ -81.48742711741517,
+ 25.882377200692023
+ ],
+ [
+ -81.44753979856841,
+ 25.882377200692023
+ ],
+ [
+ -81.42759613914502,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 25.9763537169571
+ ],
+ [
+ -81.44753979856841,
+ 26.00767922237879
+ ],
+ [
+ -81.48742711741517,
+ 26.00767922237879
+ ],
+ [
+ -81.50737077683856,
+ 25.9763537169571
+ ],
+ [
+ -81.48742711741517,
+ 25.94502821153541
+ ],
+ [
+ -81.44753979856841,
+ 25.94502821153541
+ ],
+ [
+ -81.42759613914502,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 26.039004727800485
+ ],
+ [
+ -81.44753979856841,
+ 26.070330233222176
+ ],
+ [
+ -81.48742711741517,
+ 26.070330233222176
+ ],
+ [
+ -81.50737077683856,
+ 26.039004727800485
+ ],
+ [
+ -81.48742711741517,
+ 26.007679222378794
+ ],
+ [
+ -81.44753979856841,
+ 26.007679222378794
+ ],
+ [
+ -81.42759613914502,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 26.10165573864387
+ ],
+ [
+ -81.44753979856841,
+ 26.13298124406556
+ ],
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ],
+ [
+ -81.50737077683856,
+ 26.10165573864387
+ ],
+ [
+ -81.48742711741517,
+ 26.07033023322218
+ ],
+ [
+ -81.44753979856841,
+ 26.07033023322218
+ ],
+ [
+ -81.42759613914502,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 26.164306749487253
+ ],
+ [
+ -81.44753979856841,
+ 26.195632254908944
+ ],
+ [
+ -81.48742711741517,
+ 26.195632254908944
+ ],
+ [
+ -81.50737077683856,
+ 26.164306749487253
+ ],
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ],
+ [
+ -81.44753979856841,
+ 26.13298124406556
+ ],
+ [
+ -81.42759613914502,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 26.22695776033064
+ ],
+ [
+ -81.44753979856841,
+ 26.258283265752333
+ ],
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ],
+ [
+ -81.50737077683856,
+ 26.22695776033064
+ ],
+ [
+ -81.48742711741517,
+ 26.19563225490895
+ ],
+ [
+ -81.44753979856841,
+ 26.19563225490895
+ ],
+ [
+ -81.42759613914502,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 26.289608771174024
+ ],
+ [
+ -81.44753979856841,
+ 26.320934276595715
+ ],
+ [
+ -81.48742711741517,
+ 26.320934276595715
+ ],
+ [
+ -81.50737077683856,
+ 26.289608771174024
+ ],
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ],
+ [
+ -81.44753979856841,
+ 26.258283265752333
+ ],
+ [
+ -81.42759613914502,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 26.35225978201741
+ ],
+ [
+ -81.44753979856841,
+ 26.3835852874391
+ ],
+ [
+ -81.48742711741517,
+ 26.3835852874391
+ ],
+ [
+ -81.50737077683856,
+ 26.35225978201741
+ ],
+ [
+ -81.48742711741517,
+ 26.320934276595718
+ ],
+ [
+ -81.44753979856841,
+ 26.320934276595718
+ ],
+ [
+ -81.42759613914502,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.42759613914502,
+ 26.414910792860795
+ ],
+ [
+ -81.44753979856841,
+ 26.446236298282486
+ ],
+ [
+ -81.48742711741517,
+ 26.446236298282486
+ ],
+ [
+ -81.50737077683856,
+ 26.414910792860795
+ ],
+ [
+ -81.48742711741517,
+ 26.383585287439104
+ ],
+ [
+ -81.44753979856841,
+ 26.383585287439104
+ ],
+ [
+ -81.42759613914502,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 24.942612038041236
+ ],
+ [
+ -81.38770882029826,
+ 24.973937543462927
+ ],
+ [
+ -81.42759613914501,
+ 24.973937543462927
+ ],
+ [
+ -81.4475397985684,
+ 24.942612038041236
+ ],
+ [
+ -81.42759613914501,
+ 24.911286532619545
+ ],
+ [
+ -81.38770882029826,
+ 24.911286532619545
+ ],
+ [
+ -81.36776516087487,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.005263048884622
+ ],
+ [
+ -81.38770882029826,
+ 25.036588554306313
+ ],
+ [
+ -81.42759613914501,
+ 25.036588554306313
+ ],
+ [
+ -81.4475397985684,
+ 25.005263048884622
+ ],
+ [
+ -81.42759613914501,
+ 24.97393754346293
+ ],
+ [
+ -81.38770882029826,
+ 24.97393754346293
+ ],
+ [
+ -81.36776516087487,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.067914059728007
+ ],
+ [
+ -81.38770882029826,
+ 25.0992395651497
+ ],
+ [
+ -81.42759613914501,
+ 25.0992395651497
+ ],
+ [
+ -81.4475397985684,
+ 25.067914059728007
+ ],
+ [
+ -81.42759613914501,
+ 25.036588554306316
+ ],
+ [
+ -81.38770882029826,
+ 25.036588554306316
+ ],
+ [
+ -81.36776516087487,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.130565070571393
+ ],
+ [
+ -81.38770882029826,
+ 25.161890575993084
+ ],
+ [
+ -81.42759613914501,
+ 25.161890575993084
+ ],
+ [
+ -81.4475397985684,
+ 25.130565070571393
+ ],
+ [
+ -81.42759613914501,
+ 25.099239565149702
+ ],
+ [
+ -81.38770882029826,
+ 25.099239565149702
+ ],
+ [
+ -81.36776516087487,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.19321608141478
+ ],
+ [
+ -81.38770882029826,
+ 25.22454158683647
+ ],
+ [
+ -81.42759613914501,
+ 25.22454158683647
+ ],
+ [
+ -81.4475397985684,
+ 25.19321608141478
+ ],
+ [
+ -81.42759613914501,
+ 25.161890575993088
+ ],
+ [
+ -81.38770882029826,
+ 25.161890575993088
+ ],
+ [
+ -81.36776516087487,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.255867092258164
+ ],
+ [
+ -81.38770882029826,
+ 25.287192597679855
+ ],
+ [
+ -81.42759613914501,
+ 25.287192597679855
+ ],
+ [
+ -81.4475397985684,
+ 25.255867092258164
+ ],
+ [
+ -81.42759613914501,
+ 25.224541586836473
+ ],
+ [
+ -81.38770882029826,
+ 25.224541586836473
+ ],
+ [
+ -81.36776516087487,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.31851810310155
+ ],
+ [
+ -81.38770882029826,
+ 25.34984360852324
+ ],
+ [
+ -81.42759613914501,
+ 25.34984360852324
+ ],
+ [
+ -81.4475397985684,
+ 25.31851810310155
+ ],
+ [
+ -81.42759613914501,
+ 25.28719259767986
+ ],
+ [
+ -81.38770882029826,
+ 25.28719259767986
+ ],
+ [
+ -81.36776516087487,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.381169113944935
+ ],
+ [
+ -81.38770882029826,
+ 25.412494619366626
+ ],
+ [
+ -81.42759613914501,
+ 25.412494619366626
+ ],
+ [
+ -81.4475397985684,
+ 25.381169113944935
+ ],
+ [
+ -81.42759613914501,
+ 25.349843608523244
+ ],
+ [
+ -81.38770882029826,
+ 25.349843608523244
+ ],
+ [
+ -81.36776516087487,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.44382012478832
+ ],
+ [
+ -81.38770882029826,
+ 25.47514563021001
+ ],
+ [
+ -81.42759613914501,
+ 25.47514563021001
+ ],
+ [
+ -81.4475397985684,
+ 25.44382012478832
+ ],
+ [
+ -81.42759613914501,
+ 25.41249461936663
+ ],
+ [
+ -81.38770882029826,
+ 25.41249461936663
+ ],
+ [
+ -81.36776516087487,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.506471135631706
+ ],
+ [
+ -81.38770882029826,
+ 25.537796641053397
+ ],
+ [
+ -81.42759613914501,
+ 25.537796641053397
+ ],
+ [
+ -81.4475397985684,
+ 25.506471135631706
+ ],
+ [
+ -81.42759613914501,
+ 25.475145630210015
+ ],
+ [
+ -81.38770882029826,
+ 25.475145630210015
+ ],
+ [
+ -81.36776516087487,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.56912214647509
+ ],
+ [
+ -81.38770882029826,
+ 25.600447651896783
+ ],
+ [
+ -81.42759613914501,
+ 25.600447651896783
+ ],
+ [
+ -81.4475397985684,
+ 25.56912214647509
+ ],
+ [
+ -81.42759613914501,
+ 25.5377966410534
+ ],
+ [
+ -81.38770882029826,
+ 25.5377966410534
+ ],
+ [
+ -81.36776516087487,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.631773157318477
+ ],
+ [
+ -81.38770882029826,
+ 25.66309866274017
+ ],
+ [
+ -81.42759613914501,
+ 25.66309866274017
+ ],
+ [
+ -81.4475397985684,
+ 25.631773157318477
+ ],
+ [
+ -81.42759613914501,
+ 25.600447651896786
+ ],
+ [
+ -81.38770882029826,
+ 25.600447651896786
+ ],
+ [
+ -81.36776516087487,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.694424168161863
+ ],
+ [
+ -81.38770882029826,
+ 25.725749673583554
+ ],
+ [
+ -81.42759613914501,
+ 25.725749673583554
+ ],
+ [
+ -81.4475397985684,
+ 25.694424168161863
+ ],
+ [
+ -81.42759613914501,
+ 25.663098662740172
+ ],
+ [
+ -81.38770882029826,
+ 25.663098662740172
+ ],
+ [
+ -81.36776516087487,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.75707517900525
+ ],
+ [
+ -81.38770882029826,
+ 25.78840068442694
+ ],
+ [
+ -81.42759613914501,
+ 25.78840068442694
+ ],
+ [
+ -81.4475397985684,
+ 25.75707517900525
+ ],
+ [
+ -81.42759613914501,
+ 25.725749673583557
+ ],
+ [
+ -81.38770882029826,
+ 25.725749673583557
+ ],
+ [
+ -81.36776516087487,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.819726189848634
+ ],
+ [
+ -81.38770882029826,
+ 25.851051695270325
+ ],
+ [
+ -81.42759613914501,
+ 25.851051695270325
+ ],
+ [
+ -81.4475397985684,
+ 25.819726189848634
+ ],
+ [
+ -81.42759613914501,
+ 25.788400684426943
+ ],
+ [
+ -81.38770882029826,
+ 25.788400684426943
+ ],
+ [
+ -81.36776516087487,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.88237720069202
+ ],
+ [
+ -81.38770882029826,
+ 25.91370270611371
+ ],
+ [
+ -81.42759613914501,
+ 25.91370270611371
+ ],
+ [
+ -81.4475397985684,
+ 25.88237720069202
+ ],
+ [
+ -81.42759613914501,
+ 25.85105169527033
+ ],
+ [
+ -81.38770882029826,
+ 25.85105169527033
+ ],
+ [
+ -81.36776516087487,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 25.945028211535405
+ ],
+ [
+ -81.38770882029826,
+ 25.976353716957096
+ ],
+ [
+ -81.42759613914501,
+ 25.976353716957096
+ ],
+ [
+ -81.4475397985684,
+ 25.945028211535405
+ ],
+ [
+ -81.42759613914501,
+ 25.913702706113714
+ ],
+ [
+ -81.38770882029826,
+ 25.913702706113714
+ ],
+ [
+ -81.36776516087487,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 26.00767922237879
+ ],
+ [
+ -81.38770882029826,
+ 26.03900472780048
+ ],
+ [
+ -81.42759613914501,
+ 26.03900472780048
+ ],
+ [
+ -81.4475397985684,
+ 26.00767922237879
+ ],
+ [
+ -81.42759613914501,
+ 25.9763537169571
+ ],
+ [
+ -81.38770882029826,
+ 25.9763537169571
+ ],
+ [
+ -81.36776516087487,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 26.070330233222176
+ ],
+ [
+ -81.38770882029826,
+ 26.101655738643867
+ ],
+ [
+ -81.42759613914501,
+ 26.101655738643867
+ ],
+ [
+ -81.4475397985684,
+ 26.070330233222176
+ ],
+ [
+ -81.42759613914501,
+ 26.039004727800485
+ ],
+ [
+ -81.38770882029826,
+ 26.039004727800485
+ ],
+ [
+ -81.36776516087487,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ],
+ [
+ -81.38770882029826,
+ 26.164306749487253
+ ],
+ [
+ -81.42759613914501,
+ 26.164306749487253
+ ],
+ [
+ -81.4475397985684,
+ 26.13298124406556
+ ],
+ [
+ -81.42759613914501,
+ 26.10165573864387
+ ],
+ [
+ -81.38770882029826,
+ 26.10165573864387
+ ],
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 26.195632254908944
+ ],
+ [
+ -81.38770882029826,
+ 26.226957760330635
+ ],
+ [
+ -81.42759613914501,
+ 26.226957760330635
+ ],
+ [
+ -81.4475397985684,
+ 26.195632254908944
+ ],
+ [
+ -81.42759613914501,
+ 26.164306749487253
+ ],
+ [
+ -81.38770882029826,
+ 26.164306749487253
+ ],
+ [
+ -81.36776516087487,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ],
+ [
+ -81.38770882029826,
+ 26.289608771174024
+ ],
+ [
+ -81.42759613914501,
+ 26.289608771174024
+ ],
+ [
+ -81.4475397985684,
+ 26.258283265752333
+ ],
+ [
+ -81.42759613914501,
+ 26.22695776033064
+ ],
+ [
+ -81.38770882029826,
+ 26.22695776033064
+ ],
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 26.320934276595715
+ ],
+ [
+ -81.38770882029826,
+ 26.352259782017406
+ ],
+ [
+ -81.42759613914501,
+ 26.352259782017406
+ ],
+ [
+ -81.4475397985684,
+ 26.320934276595715
+ ],
+ [
+ -81.42759613914501,
+ 26.289608771174024
+ ],
+ [
+ -81.38770882029826,
+ 26.289608771174024
+ ],
+ [
+ -81.36776516087487,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 26.3835852874391
+ ],
+ [
+ -81.38770882029826,
+ 26.41491079286079
+ ],
+ [
+ -81.42759613914501,
+ 26.41491079286079
+ ],
+ [
+ -81.4475397985684,
+ 26.3835852874391
+ ],
+ [
+ -81.42759613914501,
+ 26.35225978201741
+ ],
+ [
+ -81.38770882029826,
+ 26.35225978201741
+ ],
+ [
+ -81.36776516087487,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.36776516087487,
+ 26.446236298282486
+ ],
+ [
+ -81.38770882029826,
+ 26.477561803704177
+ ],
+ [
+ -81.42759613914501,
+ 26.477561803704177
+ ],
+ [
+ -81.4475397985684,
+ 26.446236298282486
+ ],
+ [
+ -81.42759613914501,
+ 26.414910792860795
+ ],
+ [
+ -81.38770882029826,
+ 26.414910792860795
+ ],
+ [
+ -81.36776516087487,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 24.911286532619545
+ ],
+ [
+ -81.32787784202812,
+ 24.942612038041236
+ ],
+ [
+ -81.36776516087487,
+ 24.942612038041236
+ ],
+ [
+ -81.38770882029826,
+ 24.911286532619545
+ ],
+ [
+ -81.36776516087487,
+ 24.879961027197854
+ ],
+ [
+ -81.32787784202812,
+ 24.879961027197854
+ ],
+ [
+ -81.30793418260473,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 24.97393754346293
+ ],
+ [
+ -81.32787784202812,
+ 25.005263048884622
+ ],
+ [
+ -81.36776516087487,
+ 25.005263048884622
+ ],
+ [
+ -81.38770882029826,
+ 24.97393754346293
+ ],
+ [
+ -81.36776516087487,
+ 24.94261203804124
+ ],
+ [
+ -81.32787784202812,
+ 24.94261203804124
+ ],
+ [
+ -81.30793418260473,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.036588554306316
+ ],
+ [
+ -81.32787784202812,
+ 25.067914059728007
+ ],
+ [
+ -81.36776516087487,
+ 25.067914059728007
+ ],
+ [
+ -81.38770882029826,
+ 25.036588554306316
+ ],
+ [
+ -81.36776516087487,
+ 25.005263048884625
+ ],
+ [
+ -81.32787784202812,
+ 25.005263048884625
+ ],
+ [
+ -81.30793418260473,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.099239565149702
+ ],
+ [
+ -81.32787784202812,
+ 25.130565070571393
+ ],
+ [
+ -81.36776516087487,
+ 25.130565070571393
+ ],
+ [
+ -81.38770882029826,
+ 25.099239565149702
+ ],
+ [
+ -81.36776516087487,
+ 25.06791405972801
+ ],
+ [
+ -81.32787784202812,
+ 25.06791405972801
+ ],
+ [
+ -81.30793418260473,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.161890575993088
+ ],
+ [
+ -81.32787784202812,
+ 25.19321608141478
+ ],
+ [
+ -81.36776516087487,
+ 25.19321608141478
+ ],
+ [
+ -81.38770882029826,
+ 25.161890575993088
+ ],
+ [
+ -81.36776516087487,
+ 25.130565070571397
+ ],
+ [
+ -81.32787784202812,
+ 25.130565070571397
+ ],
+ [
+ -81.30793418260473,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.224541586836473
+ ],
+ [
+ -81.32787784202812,
+ 25.255867092258164
+ ],
+ [
+ -81.36776516087487,
+ 25.255867092258164
+ ],
+ [
+ -81.38770882029826,
+ 25.224541586836473
+ ],
+ [
+ -81.36776516087487,
+ 25.193216081414782
+ ],
+ [
+ -81.32787784202812,
+ 25.193216081414782
+ ],
+ [
+ -81.30793418260473,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.28719259767986
+ ],
+ [
+ -81.32787784202812,
+ 25.31851810310155
+ ],
+ [
+ -81.36776516087487,
+ 25.31851810310155
+ ],
+ [
+ -81.38770882029826,
+ 25.28719259767986
+ ],
+ [
+ -81.36776516087487,
+ 25.255867092258168
+ ],
+ [
+ -81.32787784202812,
+ 25.255867092258168
+ ],
+ [
+ -81.30793418260473,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.349843608523244
+ ],
+ [
+ -81.32787784202812,
+ 25.381169113944935
+ ],
+ [
+ -81.36776516087487,
+ 25.381169113944935
+ ],
+ [
+ -81.38770882029826,
+ 25.349843608523244
+ ],
+ [
+ -81.36776516087487,
+ 25.318518103101553
+ ],
+ [
+ -81.32787784202812,
+ 25.318518103101553
+ ],
+ [
+ -81.30793418260473,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.41249461936663
+ ],
+ [
+ -81.32787784202812,
+ 25.44382012478832
+ ],
+ [
+ -81.36776516087487,
+ 25.44382012478832
+ ],
+ [
+ -81.38770882029826,
+ 25.41249461936663
+ ],
+ [
+ -81.36776516087487,
+ 25.38116911394494
+ ],
+ [
+ -81.32787784202812,
+ 25.38116911394494
+ ],
+ [
+ -81.30793418260473,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.475145630210015
+ ],
+ [
+ -81.32787784202812,
+ 25.506471135631706
+ ],
+ [
+ -81.36776516087487,
+ 25.506471135631706
+ ],
+ [
+ -81.38770882029826,
+ 25.475145630210015
+ ],
+ [
+ -81.36776516087487,
+ 25.443820124788324
+ ],
+ [
+ -81.32787784202812,
+ 25.443820124788324
+ ],
+ [
+ -81.30793418260473,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.5377966410534
+ ],
+ [
+ -81.32787784202812,
+ 25.56912214647509
+ ],
+ [
+ -81.36776516087487,
+ 25.56912214647509
+ ],
+ [
+ -81.38770882029826,
+ 25.5377966410534
+ ],
+ [
+ -81.36776516087487,
+ 25.50647113563171
+ ],
+ [
+ -81.32787784202812,
+ 25.50647113563171
+ ],
+ [
+ -81.30793418260473,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.600447651896786
+ ],
+ [
+ -81.32787784202812,
+ 25.631773157318477
+ ],
+ [
+ -81.36776516087487,
+ 25.631773157318477
+ ],
+ [
+ -81.38770882029826,
+ 25.600447651896786
+ ],
+ [
+ -81.36776516087487,
+ 25.569122146475095
+ ],
+ [
+ -81.32787784202812,
+ 25.569122146475095
+ ],
+ [
+ -81.30793418260473,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.663098662740172
+ ],
+ [
+ -81.32787784202812,
+ 25.694424168161863
+ ],
+ [
+ -81.36776516087487,
+ 25.694424168161863
+ ],
+ [
+ -81.38770882029826,
+ 25.663098662740172
+ ],
+ [
+ -81.36776516087487,
+ 25.63177315731848
+ ],
+ [
+ -81.32787784202812,
+ 25.63177315731848
+ ],
+ [
+ -81.30793418260473,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.725749673583557
+ ],
+ [
+ -81.32787784202812,
+ 25.75707517900525
+ ],
+ [
+ -81.36776516087487,
+ 25.75707517900525
+ ],
+ [
+ -81.38770882029826,
+ 25.725749673583557
+ ],
+ [
+ -81.36776516087487,
+ 25.694424168161866
+ ],
+ [
+ -81.32787784202812,
+ 25.694424168161866
+ ],
+ [
+ -81.30793418260473,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.788400684426943
+ ],
+ [
+ -81.32787784202812,
+ 25.819726189848634
+ ],
+ [
+ -81.36776516087487,
+ 25.819726189848634
+ ],
+ [
+ -81.38770882029826,
+ 25.788400684426943
+ ],
+ [
+ -81.36776516087487,
+ 25.757075179005252
+ ],
+ [
+ -81.32787784202812,
+ 25.757075179005252
+ ],
+ [
+ -81.30793418260473,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.85105169527033
+ ],
+ [
+ -81.32787784202812,
+ 25.88237720069202
+ ],
+ [
+ -81.36776516087487,
+ 25.88237720069202
+ ],
+ [
+ -81.38770882029826,
+ 25.85105169527033
+ ],
+ [
+ -81.36776516087487,
+ 25.819726189848637
+ ],
+ [
+ -81.32787784202812,
+ 25.819726189848637
+ ],
+ [
+ -81.30793418260473,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.913702706113714
+ ],
+ [
+ -81.32787784202812,
+ 25.945028211535405
+ ],
+ [
+ -81.36776516087487,
+ 25.945028211535405
+ ],
+ [
+ -81.38770882029826,
+ 25.913702706113714
+ ],
+ [
+ -81.36776516087487,
+ 25.882377200692023
+ ],
+ [
+ -81.32787784202812,
+ 25.882377200692023
+ ],
+ [
+ -81.30793418260473,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 25.9763537169571
+ ],
+ [
+ -81.32787784202812,
+ 26.00767922237879
+ ],
+ [
+ -81.36776516087487,
+ 26.00767922237879
+ ],
+ [
+ -81.38770882029826,
+ 25.9763537169571
+ ],
+ [
+ -81.36776516087487,
+ 25.94502821153541
+ ],
+ [
+ -81.32787784202812,
+ 25.94502821153541
+ ],
+ [
+ -81.30793418260473,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 26.039004727800485
+ ],
+ [
+ -81.32787784202812,
+ 26.070330233222176
+ ],
+ [
+ -81.36776516087487,
+ 26.070330233222176
+ ],
+ [
+ -81.38770882029826,
+ 26.039004727800485
+ ],
+ [
+ -81.36776516087487,
+ 26.007679222378794
+ ],
+ [
+ -81.32787784202812,
+ 26.007679222378794
+ ],
+ [
+ -81.30793418260473,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 26.10165573864387
+ ],
+ [
+ -81.32787784202812,
+ 26.13298124406556
+ ],
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ],
+ [
+ -81.38770882029826,
+ 26.10165573864387
+ ],
+ [
+ -81.36776516087487,
+ 26.07033023322218
+ ],
+ [
+ -81.32787784202812,
+ 26.07033023322218
+ ],
+ [
+ -81.30793418260473,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 26.164306749487253
+ ],
+ [
+ -81.32787784202812,
+ 26.195632254908944
+ ],
+ [
+ -81.36776516087487,
+ 26.195632254908944
+ ],
+ [
+ -81.38770882029826,
+ 26.164306749487253
+ ],
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ],
+ [
+ -81.32787784202812,
+ 26.13298124406556
+ ],
+ [
+ -81.30793418260473,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 26.22695776033064
+ ],
+ [
+ -81.32787784202812,
+ 26.258283265752333
+ ],
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ],
+ [
+ -81.38770882029826,
+ 26.22695776033064
+ ],
+ [
+ -81.36776516087487,
+ 26.19563225490895
+ ],
+ [
+ -81.32787784202812,
+ 26.19563225490895
+ ],
+ [
+ -81.30793418260473,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 26.289608771174024
+ ],
+ [
+ -81.32787784202812,
+ 26.320934276595715
+ ],
+ [
+ -81.36776516087487,
+ 26.320934276595715
+ ],
+ [
+ -81.38770882029826,
+ 26.289608771174024
+ ],
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ],
+ [
+ -81.32787784202812,
+ 26.258283265752333
+ ],
+ [
+ -81.30793418260473,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 26.35225978201741
+ ],
+ [
+ -81.32787784202812,
+ 26.3835852874391
+ ],
+ [
+ -81.36776516087487,
+ 26.3835852874391
+ ],
+ [
+ -81.38770882029826,
+ 26.35225978201741
+ ],
+ [
+ -81.36776516087487,
+ 26.320934276595718
+ ],
+ [
+ -81.32787784202812,
+ 26.320934276595718
+ ],
+ [
+ -81.30793418260473,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.30793418260473,
+ 26.414910792860795
+ ],
+ [
+ -81.32787784202812,
+ 26.446236298282486
+ ],
+ [
+ -81.36776516087487,
+ 26.446236298282486
+ ],
+ [
+ -81.38770882029826,
+ 26.414910792860795
+ ],
+ [
+ -81.36776516087487,
+ 26.383585287439104
+ ],
+ [
+ -81.32787784202812,
+ 26.383585287439104
+ ],
+ [
+ -81.30793418260473,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 24.942612038041236
+ ],
+ [
+ -81.26804686375796,
+ 24.973937543462927
+ ],
+ [
+ -81.30793418260471,
+ 24.973937543462927
+ ],
+ [
+ -81.3278778420281,
+ 24.942612038041236
+ ],
+ [
+ -81.30793418260471,
+ 24.911286532619545
+ ],
+ [
+ -81.26804686375796,
+ 24.911286532619545
+ ],
+ [
+ -81.24810320433457,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.005263048884622
+ ],
+ [
+ -81.26804686375796,
+ 25.036588554306313
+ ],
+ [
+ -81.30793418260471,
+ 25.036588554306313
+ ],
+ [
+ -81.3278778420281,
+ 25.005263048884622
+ ],
+ [
+ -81.30793418260471,
+ 24.97393754346293
+ ],
+ [
+ -81.26804686375796,
+ 24.97393754346293
+ ],
+ [
+ -81.24810320433457,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.067914059728007
+ ],
+ [
+ -81.26804686375796,
+ 25.0992395651497
+ ],
+ [
+ -81.30793418260471,
+ 25.0992395651497
+ ],
+ [
+ -81.3278778420281,
+ 25.067914059728007
+ ],
+ [
+ -81.30793418260471,
+ 25.036588554306316
+ ],
+ [
+ -81.26804686375796,
+ 25.036588554306316
+ ],
+ [
+ -81.24810320433457,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.130565070571393
+ ],
+ [
+ -81.26804686375796,
+ 25.161890575993084
+ ],
+ [
+ -81.30793418260471,
+ 25.161890575993084
+ ],
+ [
+ -81.3278778420281,
+ 25.130565070571393
+ ],
+ [
+ -81.30793418260471,
+ 25.099239565149702
+ ],
+ [
+ -81.26804686375796,
+ 25.099239565149702
+ ],
+ [
+ -81.24810320433457,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.19321608141478
+ ],
+ [
+ -81.26804686375796,
+ 25.22454158683647
+ ],
+ [
+ -81.30793418260471,
+ 25.22454158683647
+ ],
+ [
+ -81.3278778420281,
+ 25.19321608141478
+ ],
+ [
+ -81.30793418260471,
+ 25.161890575993088
+ ],
+ [
+ -81.26804686375796,
+ 25.161890575993088
+ ],
+ [
+ -81.24810320433457,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.255867092258164
+ ],
+ [
+ -81.26804686375796,
+ 25.287192597679855
+ ],
+ [
+ -81.30793418260471,
+ 25.287192597679855
+ ],
+ [
+ -81.3278778420281,
+ 25.255867092258164
+ ],
+ [
+ -81.30793418260471,
+ 25.224541586836473
+ ],
+ [
+ -81.26804686375796,
+ 25.224541586836473
+ ],
+ [
+ -81.24810320433457,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.31851810310155
+ ],
+ [
+ -81.26804686375796,
+ 25.34984360852324
+ ],
+ [
+ -81.30793418260471,
+ 25.34984360852324
+ ],
+ [
+ -81.3278778420281,
+ 25.31851810310155
+ ],
+ [
+ -81.30793418260471,
+ 25.28719259767986
+ ],
+ [
+ -81.26804686375796,
+ 25.28719259767986
+ ],
+ [
+ -81.24810320433457,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.381169113944935
+ ],
+ [
+ -81.26804686375796,
+ 25.412494619366626
+ ],
+ [
+ -81.30793418260471,
+ 25.412494619366626
+ ],
+ [
+ -81.3278778420281,
+ 25.381169113944935
+ ],
+ [
+ -81.30793418260471,
+ 25.349843608523244
+ ],
+ [
+ -81.26804686375796,
+ 25.349843608523244
+ ],
+ [
+ -81.24810320433457,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.44382012478832
+ ],
+ [
+ -81.26804686375796,
+ 25.47514563021001
+ ],
+ [
+ -81.30793418260471,
+ 25.47514563021001
+ ],
+ [
+ -81.3278778420281,
+ 25.44382012478832
+ ],
+ [
+ -81.30793418260471,
+ 25.41249461936663
+ ],
+ [
+ -81.26804686375796,
+ 25.41249461936663
+ ],
+ [
+ -81.24810320433457,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.506471135631706
+ ],
+ [
+ -81.26804686375796,
+ 25.537796641053397
+ ],
+ [
+ -81.30793418260471,
+ 25.537796641053397
+ ],
+ [
+ -81.3278778420281,
+ 25.506471135631706
+ ],
+ [
+ -81.30793418260471,
+ 25.475145630210015
+ ],
+ [
+ -81.26804686375796,
+ 25.475145630210015
+ ],
+ [
+ -81.24810320433457,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.56912214647509
+ ],
+ [
+ -81.26804686375796,
+ 25.600447651896783
+ ],
+ [
+ -81.30793418260471,
+ 25.600447651896783
+ ],
+ [
+ -81.3278778420281,
+ 25.56912214647509
+ ],
+ [
+ -81.30793418260471,
+ 25.5377966410534
+ ],
+ [
+ -81.26804686375796,
+ 25.5377966410534
+ ],
+ [
+ -81.24810320433457,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.631773157318477
+ ],
+ [
+ -81.26804686375796,
+ 25.66309866274017
+ ],
+ [
+ -81.30793418260471,
+ 25.66309866274017
+ ],
+ [
+ -81.3278778420281,
+ 25.631773157318477
+ ],
+ [
+ -81.30793418260471,
+ 25.600447651896786
+ ],
+ [
+ -81.26804686375796,
+ 25.600447651896786
+ ],
+ [
+ -81.24810320433457,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.694424168161863
+ ],
+ [
+ -81.26804686375796,
+ 25.725749673583554
+ ],
+ [
+ -81.30793418260471,
+ 25.725749673583554
+ ],
+ [
+ -81.3278778420281,
+ 25.694424168161863
+ ],
+ [
+ -81.30793418260471,
+ 25.663098662740172
+ ],
+ [
+ -81.26804686375796,
+ 25.663098662740172
+ ],
+ [
+ -81.24810320433457,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.75707517900525
+ ],
+ [
+ -81.26804686375796,
+ 25.78840068442694
+ ],
+ [
+ -81.30793418260471,
+ 25.78840068442694
+ ],
+ [
+ -81.3278778420281,
+ 25.75707517900525
+ ],
+ [
+ -81.30793418260471,
+ 25.725749673583557
+ ],
+ [
+ -81.26804686375796,
+ 25.725749673583557
+ ],
+ [
+ -81.24810320433457,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.819726189848634
+ ],
+ [
+ -81.26804686375796,
+ 25.851051695270325
+ ],
+ [
+ -81.30793418260471,
+ 25.851051695270325
+ ],
+ [
+ -81.3278778420281,
+ 25.819726189848634
+ ],
+ [
+ -81.30793418260471,
+ 25.788400684426943
+ ],
+ [
+ -81.26804686375796,
+ 25.788400684426943
+ ],
+ [
+ -81.24810320433457,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.88237720069202
+ ],
+ [
+ -81.26804686375796,
+ 25.91370270611371
+ ],
+ [
+ -81.30793418260471,
+ 25.91370270611371
+ ],
+ [
+ -81.3278778420281,
+ 25.88237720069202
+ ],
+ [
+ -81.30793418260471,
+ 25.85105169527033
+ ],
+ [
+ -81.26804686375796,
+ 25.85105169527033
+ ],
+ [
+ -81.24810320433457,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 25.945028211535405
+ ],
+ [
+ -81.26804686375796,
+ 25.976353716957096
+ ],
+ [
+ -81.30793418260471,
+ 25.976353716957096
+ ],
+ [
+ -81.3278778420281,
+ 25.945028211535405
+ ],
+ [
+ -81.30793418260471,
+ 25.913702706113714
+ ],
+ [
+ -81.26804686375796,
+ 25.913702706113714
+ ],
+ [
+ -81.24810320433457,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 26.00767922237879
+ ],
+ [
+ -81.26804686375796,
+ 26.03900472780048
+ ],
+ [
+ -81.30793418260471,
+ 26.03900472780048
+ ],
+ [
+ -81.3278778420281,
+ 26.00767922237879
+ ],
+ [
+ -81.30793418260471,
+ 25.9763537169571
+ ],
+ [
+ -81.26804686375796,
+ 25.9763537169571
+ ],
+ [
+ -81.24810320433457,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 26.070330233222176
+ ],
+ [
+ -81.26804686375796,
+ 26.101655738643867
+ ],
+ [
+ -81.30793418260471,
+ 26.101655738643867
+ ],
+ [
+ -81.3278778420281,
+ 26.070330233222176
+ ],
+ [
+ -81.30793418260471,
+ 26.039004727800485
+ ],
+ [
+ -81.26804686375796,
+ 26.039004727800485
+ ],
+ [
+ -81.24810320433457,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ],
+ [
+ -81.26804686375796,
+ 26.164306749487253
+ ],
+ [
+ -81.30793418260471,
+ 26.164306749487253
+ ],
+ [
+ -81.3278778420281,
+ 26.13298124406556
+ ],
+ [
+ -81.30793418260471,
+ 26.10165573864387
+ ],
+ [
+ -81.26804686375796,
+ 26.10165573864387
+ ],
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 26.195632254908944
+ ],
+ [
+ -81.26804686375796,
+ 26.226957760330635
+ ],
+ [
+ -81.30793418260471,
+ 26.226957760330635
+ ],
+ [
+ -81.3278778420281,
+ 26.195632254908944
+ ],
+ [
+ -81.30793418260471,
+ 26.164306749487253
+ ],
+ [
+ -81.26804686375796,
+ 26.164306749487253
+ ],
+ [
+ -81.24810320433457,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ],
+ [
+ -81.26804686375796,
+ 26.289608771174024
+ ],
+ [
+ -81.30793418260471,
+ 26.289608771174024
+ ],
+ [
+ -81.3278778420281,
+ 26.258283265752333
+ ],
+ [
+ -81.30793418260471,
+ 26.22695776033064
+ ],
+ [
+ -81.26804686375796,
+ 26.22695776033064
+ ],
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 26.320934276595715
+ ],
+ [
+ -81.26804686375796,
+ 26.352259782017406
+ ],
+ [
+ -81.30793418260471,
+ 26.352259782017406
+ ],
+ [
+ -81.3278778420281,
+ 26.320934276595715
+ ],
+ [
+ -81.30793418260471,
+ 26.289608771174024
+ ],
+ [
+ -81.26804686375796,
+ 26.289608771174024
+ ],
+ [
+ -81.24810320433457,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 26.3835852874391
+ ],
+ [
+ -81.26804686375796,
+ 26.41491079286079
+ ],
+ [
+ -81.30793418260471,
+ 26.41491079286079
+ ],
+ [
+ -81.3278778420281,
+ 26.3835852874391
+ ],
+ [
+ -81.30793418260471,
+ 26.35225978201741
+ ],
+ [
+ -81.26804686375796,
+ 26.35225978201741
+ ],
+ [
+ -81.24810320433457,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.24810320433457,
+ 26.446236298282486
+ ],
+ [
+ -81.26804686375796,
+ 26.477561803704177
+ ],
+ [
+ -81.30793418260471,
+ 26.477561803704177
+ ],
+ [
+ -81.3278778420281,
+ 26.446236298282486
+ ],
+ [
+ -81.30793418260471,
+ 26.414910792860795
+ ],
+ [
+ -81.26804686375796,
+ 26.414910792860795
+ ],
+ [
+ -81.24810320433457,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 24.911286532619545
+ ],
+ [
+ -81.20821588548782,
+ 24.942612038041236
+ ],
+ [
+ -81.24810320433457,
+ 24.942612038041236
+ ],
+ [
+ -81.26804686375796,
+ 24.911286532619545
+ ],
+ [
+ -81.24810320433457,
+ 24.879961027197854
+ ],
+ [
+ -81.20821588548782,
+ 24.879961027197854
+ ],
+ [
+ -81.18827222606443,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 24.97393754346293
+ ],
+ [
+ -81.20821588548782,
+ 25.005263048884622
+ ],
+ [
+ -81.24810320433457,
+ 25.005263048884622
+ ],
+ [
+ -81.26804686375796,
+ 24.97393754346293
+ ],
+ [
+ -81.24810320433457,
+ 24.94261203804124
+ ],
+ [
+ -81.20821588548782,
+ 24.94261203804124
+ ],
+ [
+ -81.18827222606443,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.036588554306316
+ ],
+ [
+ -81.20821588548782,
+ 25.067914059728007
+ ],
+ [
+ -81.24810320433457,
+ 25.067914059728007
+ ],
+ [
+ -81.26804686375796,
+ 25.036588554306316
+ ],
+ [
+ -81.24810320433457,
+ 25.005263048884625
+ ],
+ [
+ -81.20821588548782,
+ 25.005263048884625
+ ],
+ [
+ -81.18827222606443,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.099239565149702
+ ],
+ [
+ -81.20821588548782,
+ 25.130565070571393
+ ],
+ [
+ -81.24810320433457,
+ 25.130565070571393
+ ],
+ [
+ -81.26804686375796,
+ 25.099239565149702
+ ],
+ [
+ -81.24810320433457,
+ 25.06791405972801
+ ],
+ [
+ -81.20821588548782,
+ 25.06791405972801
+ ],
+ [
+ -81.18827222606443,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.161890575993088
+ ],
+ [
+ -81.20821588548782,
+ 25.19321608141478
+ ],
+ [
+ -81.24810320433457,
+ 25.19321608141478
+ ],
+ [
+ -81.26804686375796,
+ 25.161890575993088
+ ],
+ [
+ -81.24810320433457,
+ 25.130565070571397
+ ],
+ [
+ -81.20821588548782,
+ 25.130565070571397
+ ],
+ [
+ -81.18827222606443,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.224541586836473
+ ],
+ [
+ -81.20821588548782,
+ 25.255867092258164
+ ],
+ [
+ -81.24810320433457,
+ 25.255867092258164
+ ],
+ [
+ -81.26804686375796,
+ 25.224541586836473
+ ],
+ [
+ -81.24810320433457,
+ 25.193216081414782
+ ],
+ [
+ -81.20821588548782,
+ 25.193216081414782
+ ],
+ [
+ -81.18827222606443,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.28719259767986
+ ],
+ [
+ -81.20821588548782,
+ 25.31851810310155
+ ],
+ [
+ -81.24810320433457,
+ 25.31851810310155
+ ],
+ [
+ -81.26804686375796,
+ 25.28719259767986
+ ],
+ [
+ -81.24810320433457,
+ 25.255867092258168
+ ],
+ [
+ -81.20821588548782,
+ 25.255867092258168
+ ],
+ [
+ -81.18827222606443,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.349843608523244
+ ],
+ [
+ -81.20821588548782,
+ 25.381169113944935
+ ],
+ [
+ -81.24810320433457,
+ 25.381169113944935
+ ],
+ [
+ -81.26804686375796,
+ 25.349843608523244
+ ],
+ [
+ -81.24810320433457,
+ 25.318518103101553
+ ],
+ [
+ -81.20821588548782,
+ 25.318518103101553
+ ],
+ [
+ -81.18827222606443,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.41249461936663
+ ],
+ [
+ -81.20821588548782,
+ 25.44382012478832
+ ],
+ [
+ -81.24810320433457,
+ 25.44382012478832
+ ],
+ [
+ -81.26804686375796,
+ 25.41249461936663
+ ],
+ [
+ -81.24810320433457,
+ 25.38116911394494
+ ],
+ [
+ -81.20821588548782,
+ 25.38116911394494
+ ],
+ [
+ -81.18827222606443,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.475145630210015
+ ],
+ [
+ -81.20821588548782,
+ 25.506471135631706
+ ],
+ [
+ -81.24810320433457,
+ 25.506471135631706
+ ],
+ [
+ -81.26804686375796,
+ 25.475145630210015
+ ],
+ [
+ -81.24810320433457,
+ 25.443820124788324
+ ],
+ [
+ -81.20821588548782,
+ 25.443820124788324
+ ],
+ [
+ -81.18827222606443,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.5377966410534
+ ],
+ [
+ -81.20821588548782,
+ 25.56912214647509
+ ],
+ [
+ -81.24810320433457,
+ 25.56912214647509
+ ],
+ [
+ -81.26804686375796,
+ 25.5377966410534
+ ],
+ [
+ -81.24810320433457,
+ 25.50647113563171
+ ],
+ [
+ -81.20821588548782,
+ 25.50647113563171
+ ],
+ [
+ -81.18827222606443,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.600447651896786
+ ],
+ [
+ -81.20821588548782,
+ 25.631773157318477
+ ],
+ [
+ -81.24810320433457,
+ 25.631773157318477
+ ],
+ [
+ -81.26804686375796,
+ 25.600447651896786
+ ],
+ [
+ -81.24810320433457,
+ 25.569122146475095
+ ],
+ [
+ -81.20821588548782,
+ 25.569122146475095
+ ],
+ [
+ -81.18827222606443,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.663098662740172
+ ],
+ [
+ -81.20821588548782,
+ 25.694424168161863
+ ],
+ [
+ -81.24810320433457,
+ 25.694424168161863
+ ],
+ [
+ -81.26804686375796,
+ 25.663098662740172
+ ],
+ [
+ -81.24810320433457,
+ 25.63177315731848
+ ],
+ [
+ -81.20821588548782,
+ 25.63177315731848
+ ],
+ [
+ -81.18827222606443,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.725749673583557
+ ],
+ [
+ -81.20821588548782,
+ 25.75707517900525
+ ],
+ [
+ -81.24810320433457,
+ 25.75707517900525
+ ],
+ [
+ -81.26804686375796,
+ 25.725749673583557
+ ],
+ [
+ -81.24810320433457,
+ 25.694424168161866
+ ],
+ [
+ -81.20821588548782,
+ 25.694424168161866
+ ],
+ [
+ -81.18827222606443,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.788400684426943
+ ],
+ [
+ -81.20821588548782,
+ 25.819726189848634
+ ],
+ [
+ -81.24810320433457,
+ 25.819726189848634
+ ],
+ [
+ -81.26804686375796,
+ 25.788400684426943
+ ],
+ [
+ -81.24810320433457,
+ 25.757075179005252
+ ],
+ [
+ -81.20821588548782,
+ 25.757075179005252
+ ],
+ [
+ -81.18827222606443,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.85105169527033
+ ],
+ [
+ -81.20821588548782,
+ 25.88237720069202
+ ],
+ [
+ -81.24810320433457,
+ 25.88237720069202
+ ],
+ [
+ -81.26804686375796,
+ 25.85105169527033
+ ],
+ [
+ -81.24810320433457,
+ 25.819726189848637
+ ],
+ [
+ -81.20821588548782,
+ 25.819726189848637
+ ],
+ [
+ -81.18827222606443,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.913702706113714
+ ],
+ [
+ -81.20821588548782,
+ 25.945028211535405
+ ],
+ [
+ -81.24810320433457,
+ 25.945028211535405
+ ],
+ [
+ -81.26804686375796,
+ 25.913702706113714
+ ],
+ [
+ -81.24810320433457,
+ 25.882377200692023
+ ],
+ [
+ -81.20821588548782,
+ 25.882377200692023
+ ],
+ [
+ -81.18827222606443,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 25.9763537169571
+ ],
+ [
+ -81.20821588548782,
+ 26.00767922237879
+ ],
+ [
+ -81.24810320433457,
+ 26.00767922237879
+ ],
+ [
+ -81.26804686375796,
+ 25.9763537169571
+ ],
+ [
+ -81.24810320433457,
+ 25.94502821153541
+ ],
+ [
+ -81.20821588548782,
+ 25.94502821153541
+ ],
+ [
+ -81.18827222606443,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 26.039004727800485
+ ],
+ [
+ -81.20821588548782,
+ 26.070330233222176
+ ],
+ [
+ -81.24810320433457,
+ 26.070330233222176
+ ],
+ [
+ -81.26804686375796,
+ 26.039004727800485
+ ],
+ [
+ -81.24810320433457,
+ 26.007679222378794
+ ],
+ [
+ -81.20821588548782,
+ 26.007679222378794
+ ],
+ [
+ -81.18827222606443,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 26.10165573864387
+ ],
+ [
+ -81.20821588548782,
+ 26.13298124406556
+ ],
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ],
+ [
+ -81.26804686375796,
+ 26.10165573864387
+ ],
+ [
+ -81.24810320433457,
+ 26.07033023322218
+ ],
+ [
+ -81.20821588548782,
+ 26.07033023322218
+ ],
+ [
+ -81.18827222606443,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 26.164306749487253
+ ],
+ [
+ -81.20821588548782,
+ 26.195632254908944
+ ],
+ [
+ -81.24810320433457,
+ 26.195632254908944
+ ],
+ [
+ -81.26804686375796,
+ 26.164306749487253
+ ],
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ],
+ [
+ -81.20821588548782,
+ 26.13298124406556
+ ],
+ [
+ -81.18827222606443,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 26.22695776033064
+ ],
+ [
+ -81.20821588548782,
+ 26.258283265752333
+ ],
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ],
+ [
+ -81.26804686375796,
+ 26.22695776033064
+ ],
+ [
+ -81.24810320433457,
+ 26.19563225490895
+ ],
+ [
+ -81.20821588548782,
+ 26.19563225490895
+ ],
+ [
+ -81.18827222606443,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 26.289608771174024
+ ],
+ [
+ -81.20821588548782,
+ 26.320934276595715
+ ],
+ [
+ -81.24810320433457,
+ 26.320934276595715
+ ],
+ [
+ -81.26804686375796,
+ 26.289608771174024
+ ],
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ],
+ [
+ -81.20821588548782,
+ 26.258283265752333
+ ],
+ [
+ -81.18827222606443,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 26.35225978201741
+ ],
+ [
+ -81.20821588548782,
+ 26.3835852874391
+ ],
+ [
+ -81.24810320433457,
+ 26.3835852874391
+ ],
+ [
+ -81.26804686375796,
+ 26.35225978201741
+ ],
+ [
+ -81.24810320433457,
+ 26.320934276595718
+ ],
+ [
+ -81.20821588548782,
+ 26.320934276595718
+ ],
+ [
+ -81.18827222606443,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.18827222606443,
+ 26.414910792860795
+ ],
+ [
+ -81.20821588548782,
+ 26.446236298282486
+ ],
+ [
+ -81.24810320433457,
+ 26.446236298282486
+ ],
+ [
+ -81.26804686375796,
+ 26.414910792860795
+ ],
+ [
+ -81.24810320433457,
+ 26.383585287439104
+ ],
+ [
+ -81.20821588548782,
+ 26.383585287439104
+ ],
+ [
+ -81.18827222606443,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 24.942612038041236
+ ],
+ [
+ -81.14838490721766,
+ 24.973937543462927
+ ],
+ [
+ -81.18827222606441,
+ 24.973937543462927
+ ],
+ [
+ -81.2082158854878,
+ 24.942612038041236
+ ],
+ [
+ -81.18827222606441,
+ 24.911286532619545
+ ],
+ [
+ -81.14838490721766,
+ 24.911286532619545
+ ],
+ [
+ -81.12844124779427,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.005263048884622
+ ],
+ [
+ -81.14838490721766,
+ 25.036588554306313
+ ],
+ [
+ -81.18827222606441,
+ 25.036588554306313
+ ],
+ [
+ -81.2082158854878,
+ 25.005263048884622
+ ],
+ [
+ -81.18827222606441,
+ 24.97393754346293
+ ],
+ [
+ -81.14838490721766,
+ 24.97393754346293
+ ],
+ [
+ -81.12844124779427,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.067914059728007
+ ],
+ [
+ -81.14838490721766,
+ 25.0992395651497
+ ],
+ [
+ -81.18827222606441,
+ 25.0992395651497
+ ],
+ [
+ -81.2082158854878,
+ 25.067914059728007
+ ],
+ [
+ -81.18827222606441,
+ 25.036588554306316
+ ],
+ [
+ -81.14838490721766,
+ 25.036588554306316
+ ],
+ [
+ -81.12844124779427,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.130565070571393
+ ],
+ [
+ -81.14838490721766,
+ 25.161890575993084
+ ],
+ [
+ -81.18827222606441,
+ 25.161890575993084
+ ],
+ [
+ -81.2082158854878,
+ 25.130565070571393
+ ],
+ [
+ -81.18827222606441,
+ 25.099239565149702
+ ],
+ [
+ -81.14838490721766,
+ 25.099239565149702
+ ],
+ [
+ -81.12844124779427,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.19321608141478
+ ],
+ [
+ -81.14838490721766,
+ 25.22454158683647
+ ],
+ [
+ -81.18827222606441,
+ 25.22454158683647
+ ],
+ [
+ -81.2082158854878,
+ 25.19321608141478
+ ],
+ [
+ -81.18827222606441,
+ 25.161890575993088
+ ],
+ [
+ -81.14838490721766,
+ 25.161890575993088
+ ],
+ [
+ -81.12844124779427,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.255867092258164
+ ],
+ [
+ -81.14838490721766,
+ 25.287192597679855
+ ],
+ [
+ -81.18827222606441,
+ 25.287192597679855
+ ],
+ [
+ -81.2082158854878,
+ 25.255867092258164
+ ],
+ [
+ -81.18827222606441,
+ 25.224541586836473
+ ],
+ [
+ -81.14838490721766,
+ 25.224541586836473
+ ],
+ [
+ -81.12844124779427,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.31851810310155
+ ],
+ [
+ -81.14838490721766,
+ 25.34984360852324
+ ],
+ [
+ -81.18827222606441,
+ 25.34984360852324
+ ],
+ [
+ -81.2082158854878,
+ 25.31851810310155
+ ],
+ [
+ -81.18827222606441,
+ 25.28719259767986
+ ],
+ [
+ -81.14838490721766,
+ 25.28719259767986
+ ],
+ [
+ -81.12844124779427,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.381169113944935
+ ],
+ [
+ -81.14838490721766,
+ 25.412494619366626
+ ],
+ [
+ -81.18827222606441,
+ 25.412494619366626
+ ],
+ [
+ -81.2082158854878,
+ 25.381169113944935
+ ],
+ [
+ -81.18827222606441,
+ 25.349843608523244
+ ],
+ [
+ -81.14838490721766,
+ 25.349843608523244
+ ],
+ [
+ -81.12844124779427,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.44382012478832
+ ],
+ [
+ -81.14838490721766,
+ 25.47514563021001
+ ],
+ [
+ -81.18827222606441,
+ 25.47514563021001
+ ],
+ [
+ -81.2082158854878,
+ 25.44382012478832
+ ],
+ [
+ -81.18827222606441,
+ 25.41249461936663
+ ],
+ [
+ -81.14838490721766,
+ 25.41249461936663
+ ],
+ [
+ -81.12844124779427,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.506471135631706
+ ],
+ [
+ -81.14838490721766,
+ 25.537796641053397
+ ],
+ [
+ -81.18827222606441,
+ 25.537796641053397
+ ],
+ [
+ -81.2082158854878,
+ 25.506471135631706
+ ],
+ [
+ -81.18827222606441,
+ 25.475145630210015
+ ],
+ [
+ -81.14838490721766,
+ 25.475145630210015
+ ],
+ [
+ -81.12844124779427,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.56912214647509
+ ],
+ [
+ -81.14838490721766,
+ 25.600447651896783
+ ],
+ [
+ -81.18827222606441,
+ 25.600447651896783
+ ],
+ [
+ -81.2082158854878,
+ 25.56912214647509
+ ],
+ [
+ -81.18827222606441,
+ 25.5377966410534
+ ],
+ [
+ -81.14838490721766,
+ 25.5377966410534
+ ],
+ [
+ -81.12844124779427,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.631773157318477
+ ],
+ [
+ -81.14838490721766,
+ 25.66309866274017
+ ],
+ [
+ -81.18827222606441,
+ 25.66309866274017
+ ],
+ [
+ -81.2082158854878,
+ 25.631773157318477
+ ],
+ [
+ -81.18827222606441,
+ 25.600447651896786
+ ],
+ [
+ -81.14838490721766,
+ 25.600447651896786
+ ],
+ [
+ -81.12844124779427,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.694424168161863
+ ],
+ [
+ -81.14838490721766,
+ 25.725749673583554
+ ],
+ [
+ -81.18827222606441,
+ 25.725749673583554
+ ],
+ [
+ -81.2082158854878,
+ 25.694424168161863
+ ],
+ [
+ -81.18827222606441,
+ 25.663098662740172
+ ],
+ [
+ -81.14838490721766,
+ 25.663098662740172
+ ],
+ [
+ -81.12844124779427,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.75707517900525
+ ],
+ [
+ -81.14838490721766,
+ 25.78840068442694
+ ],
+ [
+ -81.18827222606441,
+ 25.78840068442694
+ ],
+ [
+ -81.2082158854878,
+ 25.75707517900525
+ ],
+ [
+ -81.18827222606441,
+ 25.725749673583557
+ ],
+ [
+ -81.14838490721766,
+ 25.725749673583557
+ ],
+ [
+ -81.12844124779427,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.819726189848634
+ ],
+ [
+ -81.14838490721766,
+ 25.851051695270325
+ ],
+ [
+ -81.18827222606441,
+ 25.851051695270325
+ ],
+ [
+ -81.2082158854878,
+ 25.819726189848634
+ ],
+ [
+ -81.18827222606441,
+ 25.788400684426943
+ ],
+ [
+ -81.14838490721766,
+ 25.788400684426943
+ ],
+ [
+ -81.12844124779427,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.88237720069202
+ ],
+ [
+ -81.14838490721766,
+ 25.91370270611371
+ ],
+ [
+ -81.18827222606441,
+ 25.91370270611371
+ ],
+ [
+ -81.2082158854878,
+ 25.88237720069202
+ ],
+ [
+ -81.18827222606441,
+ 25.85105169527033
+ ],
+ [
+ -81.14838490721766,
+ 25.85105169527033
+ ],
+ [
+ -81.12844124779427,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 25.945028211535405
+ ],
+ [
+ -81.14838490721766,
+ 25.976353716957096
+ ],
+ [
+ -81.18827222606441,
+ 25.976353716957096
+ ],
+ [
+ -81.2082158854878,
+ 25.945028211535405
+ ],
+ [
+ -81.18827222606441,
+ 25.913702706113714
+ ],
+ [
+ -81.14838490721766,
+ 25.913702706113714
+ ],
+ [
+ -81.12844124779427,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 26.00767922237879
+ ],
+ [
+ -81.14838490721766,
+ 26.03900472780048
+ ],
+ [
+ -81.18827222606441,
+ 26.03900472780048
+ ],
+ [
+ -81.2082158854878,
+ 26.00767922237879
+ ],
+ [
+ -81.18827222606441,
+ 25.9763537169571
+ ],
+ [
+ -81.14838490721766,
+ 25.9763537169571
+ ],
+ [
+ -81.12844124779427,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 26.070330233222176
+ ],
+ [
+ -81.14838490721766,
+ 26.101655738643867
+ ],
+ [
+ -81.18827222606441,
+ 26.101655738643867
+ ],
+ [
+ -81.2082158854878,
+ 26.070330233222176
+ ],
+ [
+ -81.18827222606441,
+ 26.039004727800485
+ ],
+ [
+ -81.14838490721766,
+ 26.039004727800485
+ ],
+ [
+ -81.12844124779427,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ],
+ [
+ -81.14838490721766,
+ 26.164306749487253
+ ],
+ [
+ -81.18827222606441,
+ 26.164306749487253
+ ],
+ [
+ -81.2082158854878,
+ 26.13298124406556
+ ],
+ [
+ -81.18827222606441,
+ 26.10165573864387
+ ],
+ [
+ -81.14838490721766,
+ 26.10165573864387
+ ],
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 26.195632254908944
+ ],
+ [
+ -81.14838490721766,
+ 26.226957760330635
+ ],
+ [
+ -81.18827222606441,
+ 26.226957760330635
+ ],
+ [
+ -81.2082158854878,
+ 26.195632254908944
+ ],
+ [
+ -81.18827222606441,
+ 26.164306749487253
+ ],
+ [
+ -81.14838490721766,
+ 26.164306749487253
+ ],
+ [
+ -81.12844124779427,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ],
+ [
+ -81.14838490721766,
+ 26.289608771174024
+ ],
+ [
+ -81.18827222606441,
+ 26.289608771174024
+ ],
+ [
+ -81.2082158854878,
+ 26.258283265752333
+ ],
+ [
+ -81.18827222606441,
+ 26.22695776033064
+ ],
+ [
+ -81.14838490721766,
+ 26.22695776033064
+ ],
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 26.320934276595715
+ ],
+ [
+ -81.14838490721766,
+ 26.352259782017406
+ ],
+ [
+ -81.18827222606441,
+ 26.352259782017406
+ ],
+ [
+ -81.2082158854878,
+ 26.320934276595715
+ ],
+ [
+ -81.18827222606441,
+ 26.289608771174024
+ ],
+ [
+ -81.14838490721766,
+ 26.289608771174024
+ ],
+ [
+ -81.12844124779427,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 26.3835852874391
+ ],
+ [
+ -81.14838490721766,
+ 26.41491079286079
+ ],
+ [
+ -81.18827222606441,
+ 26.41491079286079
+ ],
+ [
+ -81.2082158854878,
+ 26.3835852874391
+ ],
+ [
+ -81.18827222606441,
+ 26.35225978201741
+ ],
+ [
+ -81.14838490721766,
+ 26.35225978201741
+ ],
+ [
+ -81.12844124779427,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.12844124779427,
+ 26.446236298282486
+ ],
+ [
+ -81.14838490721766,
+ 26.477561803704177
+ ],
+ [
+ -81.18827222606441,
+ 26.477561803704177
+ ],
+ [
+ -81.2082158854878,
+ 26.446236298282486
+ ],
+ [
+ -81.18827222606441,
+ 26.414910792860795
+ ],
+ [
+ -81.14838490721766,
+ 26.414910792860795
+ ],
+ [
+ -81.12844124779427,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 24.911286532619545
+ ],
+ [
+ -81.08855392894752,
+ 24.942612038041236
+ ],
+ [
+ -81.12844124779427,
+ 24.942612038041236
+ ],
+ [
+ -81.14838490721766,
+ 24.911286532619545
+ ],
+ [
+ -81.12844124779427,
+ 24.879961027197854
+ ],
+ [
+ -81.08855392894752,
+ 24.879961027197854
+ ],
+ [
+ -81.06861026952413,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 24.97393754346293
+ ],
+ [
+ -81.08855392894752,
+ 25.005263048884622
+ ],
+ [
+ -81.12844124779427,
+ 25.005263048884622
+ ],
+ [
+ -81.14838490721766,
+ 24.97393754346293
+ ],
+ [
+ -81.12844124779427,
+ 24.94261203804124
+ ],
+ [
+ -81.08855392894752,
+ 24.94261203804124
+ ],
+ [
+ -81.06861026952413,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.036588554306316
+ ],
+ [
+ -81.08855392894752,
+ 25.067914059728007
+ ],
+ [
+ -81.12844124779427,
+ 25.067914059728007
+ ],
+ [
+ -81.14838490721766,
+ 25.036588554306316
+ ],
+ [
+ -81.12844124779427,
+ 25.005263048884625
+ ],
+ [
+ -81.08855392894752,
+ 25.005263048884625
+ ],
+ [
+ -81.06861026952413,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.099239565149702
+ ],
+ [
+ -81.08855392894752,
+ 25.130565070571393
+ ],
+ [
+ -81.12844124779427,
+ 25.130565070571393
+ ],
+ [
+ -81.14838490721766,
+ 25.099239565149702
+ ],
+ [
+ -81.12844124779427,
+ 25.06791405972801
+ ],
+ [
+ -81.08855392894752,
+ 25.06791405972801
+ ],
+ [
+ -81.06861026952413,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.161890575993088
+ ],
+ [
+ -81.08855392894752,
+ 25.19321608141478
+ ],
+ [
+ -81.12844124779427,
+ 25.19321608141478
+ ],
+ [
+ -81.14838490721766,
+ 25.161890575993088
+ ],
+ [
+ -81.12844124779427,
+ 25.130565070571397
+ ],
+ [
+ -81.08855392894752,
+ 25.130565070571397
+ ],
+ [
+ -81.06861026952413,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.224541586836473
+ ],
+ [
+ -81.08855392894752,
+ 25.255867092258164
+ ],
+ [
+ -81.12844124779427,
+ 25.255867092258164
+ ],
+ [
+ -81.14838490721766,
+ 25.224541586836473
+ ],
+ [
+ -81.12844124779427,
+ 25.193216081414782
+ ],
+ [
+ -81.08855392894752,
+ 25.193216081414782
+ ],
+ [
+ -81.06861026952413,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.28719259767986
+ ],
+ [
+ -81.08855392894752,
+ 25.31851810310155
+ ],
+ [
+ -81.12844124779427,
+ 25.31851810310155
+ ],
+ [
+ -81.14838490721766,
+ 25.28719259767986
+ ],
+ [
+ -81.12844124779427,
+ 25.255867092258168
+ ],
+ [
+ -81.08855392894752,
+ 25.255867092258168
+ ],
+ [
+ -81.06861026952413,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.349843608523244
+ ],
+ [
+ -81.08855392894752,
+ 25.381169113944935
+ ],
+ [
+ -81.12844124779427,
+ 25.381169113944935
+ ],
+ [
+ -81.14838490721766,
+ 25.349843608523244
+ ],
+ [
+ -81.12844124779427,
+ 25.318518103101553
+ ],
+ [
+ -81.08855392894752,
+ 25.318518103101553
+ ],
+ [
+ -81.06861026952413,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.41249461936663
+ ],
+ [
+ -81.08855392894752,
+ 25.44382012478832
+ ],
+ [
+ -81.12844124779427,
+ 25.44382012478832
+ ],
+ [
+ -81.14838490721766,
+ 25.41249461936663
+ ],
+ [
+ -81.12844124779427,
+ 25.38116911394494
+ ],
+ [
+ -81.08855392894752,
+ 25.38116911394494
+ ],
+ [
+ -81.06861026952413,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.475145630210015
+ ],
+ [
+ -81.08855392894752,
+ 25.506471135631706
+ ],
+ [
+ -81.12844124779427,
+ 25.506471135631706
+ ],
+ [
+ -81.14838490721766,
+ 25.475145630210015
+ ],
+ [
+ -81.12844124779427,
+ 25.443820124788324
+ ],
+ [
+ -81.08855392894752,
+ 25.443820124788324
+ ],
+ [
+ -81.06861026952413,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.5377966410534
+ ],
+ [
+ -81.08855392894752,
+ 25.56912214647509
+ ],
+ [
+ -81.12844124779427,
+ 25.56912214647509
+ ],
+ [
+ -81.14838490721766,
+ 25.5377966410534
+ ],
+ [
+ -81.12844124779427,
+ 25.50647113563171
+ ],
+ [
+ -81.08855392894752,
+ 25.50647113563171
+ ],
+ [
+ -81.06861026952413,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.600447651896786
+ ],
+ [
+ -81.08855392894752,
+ 25.631773157318477
+ ],
+ [
+ -81.12844124779427,
+ 25.631773157318477
+ ],
+ [
+ -81.14838490721766,
+ 25.600447651896786
+ ],
+ [
+ -81.12844124779427,
+ 25.569122146475095
+ ],
+ [
+ -81.08855392894752,
+ 25.569122146475095
+ ],
+ [
+ -81.06861026952413,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.663098662740172
+ ],
+ [
+ -81.08855392894752,
+ 25.694424168161863
+ ],
+ [
+ -81.12844124779427,
+ 25.694424168161863
+ ],
+ [
+ -81.14838490721766,
+ 25.663098662740172
+ ],
+ [
+ -81.12844124779427,
+ 25.63177315731848
+ ],
+ [
+ -81.08855392894752,
+ 25.63177315731848
+ ],
+ [
+ -81.06861026952413,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.725749673583557
+ ],
+ [
+ -81.08855392894752,
+ 25.75707517900525
+ ],
+ [
+ -81.12844124779427,
+ 25.75707517900525
+ ],
+ [
+ -81.14838490721766,
+ 25.725749673583557
+ ],
+ [
+ -81.12844124779427,
+ 25.694424168161866
+ ],
+ [
+ -81.08855392894752,
+ 25.694424168161866
+ ],
+ [
+ -81.06861026952413,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.788400684426943
+ ],
+ [
+ -81.08855392894752,
+ 25.819726189848634
+ ],
+ [
+ -81.12844124779427,
+ 25.819726189848634
+ ],
+ [
+ -81.14838490721766,
+ 25.788400684426943
+ ],
+ [
+ -81.12844124779427,
+ 25.757075179005252
+ ],
+ [
+ -81.08855392894752,
+ 25.757075179005252
+ ],
+ [
+ -81.06861026952413,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.85105169527033
+ ],
+ [
+ -81.08855392894752,
+ 25.88237720069202
+ ],
+ [
+ -81.12844124779427,
+ 25.88237720069202
+ ],
+ [
+ -81.14838490721766,
+ 25.85105169527033
+ ],
+ [
+ -81.12844124779427,
+ 25.819726189848637
+ ],
+ [
+ -81.08855392894752,
+ 25.819726189848637
+ ],
+ [
+ -81.06861026952413,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.913702706113714
+ ],
+ [
+ -81.08855392894752,
+ 25.945028211535405
+ ],
+ [
+ -81.12844124779427,
+ 25.945028211535405
+ ],
+ [
+ -81.14838490721766,
+ 25.913702706113714
+ ],
+ [
+ -81.12844124779427,
+ 25.882377200692023
+ ],
+ [
+ -81.08855392894752,
+ 25.882377200692023
+ ],
+ [
+ -81.06861026952413,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 25.9763537169571
+ ],
+ [
+ -81.08855392894752,
+ 26.00767922237879
+ ],
+ [
+ -81.12844124779427,
+ 26.00767922237879
+ ],
+ [
+ -81.14838490721766,
+ 25.9763537169571
+ ],
+ [
+ -81.12844124779427,
+ 25.94502821153541
+ ],
+ [
+ -81.08855392894752,
+ 25.94502821153541
+ ],
+ [
+ -81.06861026952413,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 26.039004727800485
+ ],
+ [
+ -81.08855392894752,
+ 26.070330233222176
+ ],
+ [
+ -81.12844124779427,
+ 26.070330233222176
+ ],
+ [
+ -81.14838490721766,
+ 26.039004727800485
+ ],
+ [
+ -81.12844124779427,
+ 26.007679222378794
+ ],
+ [
+ -81.08855392894752,
+ 26.007679222378794
+ ],
+ [
+ -81.06861026952413,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 26.10165573864387
+ ],
+ [
+ -81.08855392894752,
+ 26.13298124406556
+ ],
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ],
+ [
+ -81.14838490721766,
+ 26.10165573864387
+ ],
+ [
+ -81.12844124779427,
+ 26.07033023322218
+ ],
+ [
+ -81.08855392894752,
+ 26.07033023322218
+ ],
+ [
+ -81.06861026952413,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ],
+ [
+ -81.08855392894752,
+ 26.195632254908944
+ ],
+ [
+ -81.12844124779427,
+ 26.195632254908944
+ ],
+ [
+ -81.14838490721766,
+ 26.164306749487253
+ ],
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ],
+ [
+ -81.08855392894752,
+ 26.13298124406556
+ ],
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 26.22695776033064
+ ],
+ [
+ -81.08855392894752,
+ 26.258283265752333
+ ],
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ],
+ [
+ -81.14838490721766,
+ 26.22695776033064
+ ],
+ [
+ -81.12844124779427,
+ 26.19563225490895
+ ],
+ [
+ -81.08855392894752,
+ 26.19563225490895
+ ],
+ [
+ -81.06861026952413,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ],
+ [
+ -81.08855392894752,
+ 26.320934276595715
+ ],
+ [
+ -81.12844124779427,
+ 26.320934276595715
+ ],
+ [
+ -81.14838490721766,
+ 26.289608771174024
+ ],
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ],
+ [
+ -81.08855392894752,
+ 26.258283265752333
+ ],
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 26.35225978201741
+ ],
+ [
+ -81.08855392894752,
+ 26.3835852874391
+ ],
+ [
+ -81.12844124779427,
+ 26.3835852874391
+ ],
+ [
+ -81.14838490721766,
+ 26.35225978201741
+ ],
+ [
+ -81.12844124779427,
+ 26.320934276595718
+ ],
+ [
+ -81.08855392894752,
+ 26.320934276595718
+ ],
+ [
+ -81.06861026952413,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.06861026952413,
+ 26.414910792860795
+ ],
+ [
+ -81.08855392894752,
+ 26.446236298282486
+ ],
+ [
+ -81.12844124779427,
+ 26.446236298282486
+ ],
+ [
+ -81.14838490721766,
+ 26.414910792860795
+ ],
+ [
+ -81.12844124779427,
+ 26.383585287439104
+ ],
+ [
+ -81.08855392894752,
+ 26.383585287439104
+ ],
+ [
+ -81.06861026952413,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 24.942612038041236
+ ],
+ [
+ -81.02872295067738,
+ 24.973937543462927
+ ],
+ [
+ -81.06861026952413,
+ 24.973937543462927
+ ],
+ [
+ -81.08855392894752,
+ 24.942612038041236
+ ],
+ [
+ -81.06861026952413,
+ 24.911286532619545
+ ],
+ [
+ -81.02872295067738,
+ 24.911286532619545
+ ],
+ [
+ -81.00877929125399,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.005263048884622
+ ],
+ [
+ -81.02872295067738,
+ 25.036588554306313
+ ],
+ [
+ -81.06861026952413,
+ 25.036588554306313
+ ],
+ [
+ -81.08855392894752,
+ 25.005263048884622
+ ],
+ [
+ -81.06861026952413,
+ 24.97393754346293
+ ],
+ [
+ -81.02872295067738,
+ 24.97393754346293
+ ],
+ [
+ -81.00877929125399,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.067914059728007
+ ],
+ [
+ -81.02872295067738,
+ 25.0992395651497
+ ],
+ [
+ -81.06861026952413,
+ 25.0992395651497
+ ],
+ [
+ -81.08855392894752,
+ 25.067914059728007
+ ],
+ [
+ -81.06861026952413,
+ 25.036588554306316
+ ],
+ [
+ -81.02872295067738,
+ 25.036588554306316
+ ],
+ [
+ -81.00877929125399,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.130565070571393
+ ],
+ [
+ -81.02872295067738,
+ 25.161890575993084
+ ],
+ [
+ -81.06861026952413,
+ 25.161890575993084
+ ],
+ [
+ -81.08855392894752,
+ 25.130565070571393
+ ],
+ [
+ -81.06861026952413,
+ 25.099239565149702
+ ],
+ [
+ -81.02872295067738,
+ 25.099239565149702
+ ],
+ [
+ -81.00877929125399,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.19321608141478
+ ],
+ [
+ -81.02872295067738,
+ 25.22454158683647
+ ],
+ [
+ -81.06861026952413,
+ 25.22454158683647
+ ],
+ [
+ -81.08855392894752,
+ 25.19321608141478
+ ],
+ [
+ -81.06861026952413,
+ 25.161890575993088
+ ],
+ [
+ -81.02872295067738,
+ 25.161890575993088
+ ],
+ [
+ -81.00877929125399,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.255867092258164
+ ],
+ [
+ -81.02872295067738,
+ 25.287192597679855
+ ],
+ [
+ -81.06861026952413,
+ 25.287192597679855
+ ],
+ [
+ -81.08855392894752,
+ 25.255867092258164
+ ],
+ [
+ -81.06861026952413,
+ 25.224541586836473
+ ],
+ [
+ -81.02872295067738,
+ 25.224541586836473
+ ],
+ [
+ -81.00877929125399,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.31851810310155
+ ],
+ [
+ -81.02872295067738,
+ 25.34984360852324
+ ],
+ [
+ -81.06861026952413,
+ 25.34984360852324
+ ],
+ [
+ -81.08855392894752,
+ 25.31851810310155
+ ],
+ [
+ -81.06861026952413,
+ 25.28719259767986
+ ],
+ [
+ -81.02872295067738,
+ 25.28719259767986
+ ],
+ [
+ -81.00877929125399,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.381169113944935
+ ],
+ [
+ -81.02872295067738,
+ 25.412494619366626
+ ],
+ [
+ -81.06861026952413,
+ 25.412494619366626
+ ],
+ [
+ -81.08855392894752,
+ 25.381169113944935
+ ],
+ [
+ -81.06861026952413,
+ 25.349843608523244
+ ],
+ [
+ -81.02872295067738,
+ 25.349843608523244
+ ],
+ [
+ -81.00877929125399,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.44382012478832
+ ],
+ [
+ -81.02872295067738,
+ 25.47514563021001
+ ],
+ [
+ -81.06861026952413,
+ 25.47514563021001
+ ],
+ [
+ -81.08855392894752,
+ 25.44382012478832
+ ],
+ [
+ -81.06861026952413,
+ 25.41249461936663
+ ],
+ [
+ -81.02872295067738,
+ 25.41249461936663
+ ],
+ [
+ -81.00877929125399,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.506471135631706
+ ],
+ [
+ -81.02872295067738,
+ 25.537796641053397
+ ],
+ [
+ -81.06861026952413,
+ 25.537796641053397
+ ],
+ [
+ -81.08855392894752,
+ 25.506471135631706
+ ],
+ [
+ -81.06861026952413,
+ 25.475145630210015
+ ],
+ [
+ -81.02872295067738,
+ 25.475145630210015
+ ],
+ [
+ -81.00877929125399,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.56912214647509
+ ],
+ [
+ -81.02872295067738,
+ 25.600447651896783
+ ],
+ [
+ -81.06861026952413,
+ 25.600447651896783
+ ],
+ [
+ -81.08855392894752,
+ 25.56912214647509
+ ],
+ [
+ -81.06861026952413,
+ 25.5377966410534
+ ],
+ [
+ -81.02872295067738,
+ 25.5377966410534
+ ],
+ [
+ -81.00877929125399,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.631773157318477
+ ],
+ [
+ -81.02872295067738,
+ 25.66309866274017
+ ],
+ [
+ -81.06861026952413,
+ 25.66309866274017
+ ],
+ [
+ -81.08855392894752,
+ 25.631773157318477
+ ],
+ [
+ -81.06861026952413,
+ 25.600447651896786
+ ],
+ [
+ -81.02872295067738,
+ 25.600447651896786
+ ],
+ [
+ -81.00877929125399,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.694424168161863
+ ],
+ [
+ -81.02872295067738,
+ 25.725749673583554
+ ],
+ [
+ -81.06861026952413,
+ 25.725749673583554
+ ],
+ [
+ -81.08855392894752,
+ 25.694424168161863
+ ],
+ [
+ -81.06861026952413,
+ 25.663098662740172
+ ],
+ [
+ -81.02872295067738,
+ 25.663098662740172
+ ],
+ [
+ -81.00877929125399,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.75707517900525
+ ],
+ [
+ -81.02872295067738,
+ 25.78840068442694
+ ],
+ [
+ -81.06861026952413,
+ 25.78840068442694
+ ],
+ [
+ -81.08855392894752,
+ 25.75707517900525
+ ],
+ [
+ -81.06861026952413,
+ 25.725749673583557
+ ],
+ [
+ -81.02872295067738,
+ 25.725749673583557
+ ],
+ [
+ -81.00877929125399,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.819726189848634
+ ],
+ [
+ -81.02872295067738,
+ 25.851051695270325
+ ],
+ [
+ -81.06861026952413,
+ 25.851051695270325
+ ],
+ [
+ -81.08855392894752,
+ 25.819726189848634
+ ],
+ [
+ -81.06861026952413,
+ 25.788400684426943
+ ],
+ [
+ -81.02872295067738,
+ 25.788400684426943
+ ],
+ [
+ -81.00877929125399,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.88237720069202
+ ],
+ [
+ -81.02872295067738,
+ 25.91370270611371
+ ],
+ [
+ -81.06861026952413,
+ 25.91370270611371
+ ],
+ [
+ -81.08855392894752,
+ 25.88237720069202
+ ],
+ [
+ -81.06861026952413,
+ 25.85105169527033
+ ],
+ [
+ -81.02872295067738,
+ 25.85105169527033
+ ],
+ [
+ -81.00877929125399,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 25.945028211535405
+ ],
+ [
+ -81.02872295067738,
+ 25.976353716957096
+ ],
+ [
+ -81.06861026952413,
+ 25.976353716957096
+ ],
+ [
+ -81.08855392894752,
+ 25.945028211535405
+ ],
+ [
+ -81.06861026952413,
+ 25.913702706113714
+ ],
+ [
+ -81.02872295067738,
+ 25.913702706113714
+ ],
+ [
+ -81.00877929125399,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 26.00767922237879
+ ],
+ [
+ -81.02872295067738,
+ 26.03900472780048
+ ],
+ [
+ -81.06861026952413,
+ 26.03900472780048
+ ],
+ [
+ -81.08855392894752,
+ 26.00767922237879
+ ],
+ [
+ -81.06861026952413,
+ 25.9763537169571
+ ],
+ [
+ -81.02872295067738,
+ 25.9763537169571
+ ],
+ [
+ -81.00877929125399,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 26.070330233222176
+ ],
+ [
+ -81.02872295067738,
+ 26.101655738643867
+ ],
+ [
+ -81.06861026952413,
+ 26.101655738643867
+ ],
+ [
+ -81.08855392894752,
+ 26.070330233222176
+ ],
+ [
+ -81.06861026952413,
+ 26.039004727800485
+ ],
+ [
+ -81.02872295067738,
+ 26.039004727800485
+ ],
+ [
+ -81.00877929125399,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 26.13298124406556
+ ],
+ [
+ -81.02872295067738,
+ 26.164306749487253
+ ],
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ],
+ [
+ -81.08855392894752,
+ 26.13298124406556
+ ],
+ [
+ -81.06861026952413,
+ 26.10165573864387
+ ],
+ [
+ -81.02872295067738,
+ 26.10165573864387
+ ],
+ [
+ -81.00877929125399,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 26.195632254908944
+ ],
+ [
+ -81.02872295067738,
+ 26.226957760330635
+ ],
+ [
+ -81.06861026952413,
+ 26.226957760330635
+ ],
+ [
+ -81.08855392894752,
+ 26.195632254908944
+ ],
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ],
+ [
+ -81.02872295067738,
+ 26.164306749487253
+ ],
+ [
+ -81.00877929125399,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 26.258283265752333
+ ],
+ [
+ -81.02872295067738,
+ 26.289608771174024
+ ],
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ],
+ [
+ -81.08855392894752,
+ 26.258283265752333
+ ],
+ [
+ -81.06861026952413,
+ 26.22695776033064
+ ],
+ [
+ -81.02872295067738,
+ 26.22695776033064
+ ],
+ [
+ -81.00877929125399,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 26.320934276595715
+ ],
+ [
+ -81.02872295067738,
+ 26.352259782017406
+ ],
+ [
+ -81.06861026952413,
+ 26.352259782017406
+ ],
+ [
+ -81.08855392894752,
+ 26.320934276595715
+ ],
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ],
+ [
+ -81.02872295067738,
+ 26.289608771174024
+ ],
+ [
+ -81.00877929125399,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 26.3835852874391
+ ],
+ [
+ -81.02872295067738,
+ 26.41491079286079
+ ],
+ [
+ -81.06861026952413,
+ 26.41491079286079
+ ],
+ [
+ -81.08855392894752,
+ 26.3835852874391
+ ],
+ [
+ -81.06861026952413,
+ 26.35225978201741
+ ],
+ [
+ -81.02872295067738,
+ 26.35225978201741
+ ],
+ [
+ -81.00877929125399,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.00877929125399,
+ 26.446236298282486
+ ],
+ [
+ -81.02872295067738,
+ 26.477561803704177
+ ],
+ [
+ -81.06861026952413,
+ 26.477561803704177
+ ],
+ [
+ -81.08855392894752,
+ 26.446236298282486
+ ],
+ [
+ -81.06861026952413,
+ 26.414910792860795
+ ],
+ [
+ -81.02872295067738,
+ 26.414910792860795
+ ],
+ [
+ -81.00877929125399,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 24.911286532619545
+ ],
+ [
+ -80.96889197240722,
+ 24.942612038041236
+ ],
+ [
+ -81.00877929125397,
+ 24.942612038041236
+ ],
+ [
+ -81.02872295067736,
+ 24.911286532619545
+ ],
+ [
+ -81.00877929125397,
+ 24.879961027197854
+ ],
+ [
+ -80.96889197240722,
+ 24.879961027197854
+ ],
+ [
+ -80.94894831298383,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 24.97393754346293
+ ],
+ [
+ -80.96889197240722,
+ 25.005263048884622
+ ],
+ [
+ -81.00877929125397,
+ 25.005263048884622
+ ],
+ [
+ -81.02872295067736,
+ 24.97393754346293
+ ],
+ [
+ -81.00877929125397,
+ 24.94261203804124
+ ],
+ [
+ -80.96889197240722,
+ 24.94261203804124
+ ],
+ [
+ -80.94894831298383,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.036588554306316
+ ],
+ [
+ -80.96889197240722,
+ 25.067914059728007
+ ],
+ [
+ -81.00877929125397,
+ 25.067914059728007
+ ],
+ [
+ -81.02872295067736,
+ 25.036588554306316
+ ],
+ [
+ -81.00877929125397,
+ 25.005263048884625
+ ],
+ [
+ -80.96889197240722,
+ 25.005263048884625
+ ],
+ [
+ -80.94894831298383,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.099239565149702
+ ],
+ [
+ -80.96889197240722,
+ 25.130565070571393
+ ],
+ [
+ -81.00877929125397,
+ 25.130565070571393
+ ],
+ [
+ -81.02872295067736,
+ 25.099239565149702
+ ],
+ [
+ -81.00877929125397,
+ 25.06791405972801
+ ],
+ [
+ -80.96889197240722,
+ 25.06791405972801
+ ],
+ [
+ -80.94894831298383,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.161890575993088
+ ],
+ [
+ -80.96889197240722,
+ 25.19321608141478
+ ],
+ [
+ -81.00877929125397,
+ 25.19321608141478
+ ],
+ [
+ -81.02872295067736,
+ 25.161890575993088
+ ],
+ [
+ -81.00877929125397,
+ 25.130565070571397
+ ],
+ [
+ -80.96889197240722,
+ 25.130565070571397
+ ],
+ [
+ -80.94894831298383,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.224541586836473
+ ],
+ [
+ -80.96889197240722,
+ 25.255867092258164
+ ],
+ [
+ -81.00877929125397,
+ 25.255867092258164
+ ],
+ [
+ -81.02872295067736,
+ 25.224541586836473
+ ],
+ [
+ -81.00877929125397,
+ 25.193216081414782
+ ],
+ [
+ -80.96889197240722,
+ 25.193216081414782
+ ],
+ [
+ -80.94894831298383,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.28719259767986
+ ],
+ [
+ -80.96889197240722,
+ 25.31851810310155
+ ],
+ [
+ -81.00877929125397,
+ 25.31851810310155
+ ],
+ [
+ -81.02872295067736,
+ 25.28719259767986
+ ],
+ [
+ -81.00877929125397,
+ 25.255867092258168
+ ],
+ [
+ -80.96889197240722,
+ 25.255867092258168
+ ],
+ [
+ -80.94894831298383,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.349843608523244
+ ],
+ [
+ -80.96889197240722,
+ 25.381169113944935
+ ],
+ [
+ -81.00877929125397,
+ 25.381169113944935
+ ],
+ [
+ -81.02872295067736,
+ 25.349843608523244
+ ],
+ [
+ -81.00877929125397,
+ 25.318518103101553
+ ],
+ [
+ -80.96889197240722,
+ 25.318518103101553
+ ],
+ [
+ -80.94894831298383,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.41249461936663
+ ],
+ [
+ -80.96889197240722,
+ 25.44382012478832
+ ],
+ [
+ -81.00877929125397,
+ 25.44382012478832
+ ],
+ [
+ -81.02872295067736,
+ 25.41249461936663
+ ],
+ [
+ -81.00877929125397,
+ 25.38116911394494
+ ],
+ [
+ -80.96889197240722,
+ 25.38116911394494
+ ],
+ [
+ -80.94894831298383,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.475145630210015
+ ],
+ [
+ -80.96889197240722,
+ 25.506471135631706
+ ],
+ [
+ -81.00877929125397,
+ 25.506471135631706
+ ],
+ [
+ -81.02872295067736,
+ 25.475145630210015
+ ],
+ [
+ -81.00877929125397,
+ 25.443820124788324
+ ],
+ [
+ -80.96889197240722,
+ 25.443820124788324
+ ],
+ [
+ -80.94894831298383,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.5377966410534
+ ],
+ [
+ -80.96889197240722,
+ 25.56912214647509
+ ],
+ [
+ -81.00877929125397,
+ 25.56912214647509
+ ],
+ [
+ -81.02872295067736,
+ 25.5377966410534
+ ],
+ [
+ -81.00877929125397,
+ 25.50647113563171
+ ],
+ [
+ -80.96889197240722,
+ 25.50647113563171
+ ],
+ [
+ -80.94894831298383,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.600447651896786
+ ],
+ [
+ -80.96889197240722,
+ 25.631773157318477
+ ],
+ [
+ -81.00877929125397,
+ 25.631773157318477
+ ],
+ [
+ -81.02872295067736,
+ 25.600447651896786
+ ],
+ [
+ -81.00877929125397,
+ 25.569122146475095
+ ],
+ [
+ -80.96889197240722,
+ 25.569122146475095
+ ],
+ [
+ -80.94894831298383,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.663098662740172
+ ],
+ [
+ -80.96889197240722,
+ 25.694424168161863
+ ],
+ [
+ -81.00877929125397,
+ 25.694424168161863
+ ],
+ [
+ -81.02872295067736,
+ 25.663098662740172
+ ],
+ [
+ -81.00877929125397,
+ 25.63177315731848
+ ],
+ [
+ -80.96889197240722,
+ 25.63177315731848
+ ],
+ [
+ -80.94894831298383,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.725749673583557
+ ],
+ [
+ -80.96889197240722,
+ 25.75707517900525
+ ],
+ [
+ -81.00877929125397,
+ 25.75707517900525
+ ],
+ [
+ -81.02872295067736,
+ 25.725749673583557
+ ],
+ [
+ -81.00877929125397,
+ 25.694424168161866
+ ],
+ [
+ -80.96889197240722,
+ 25.694424168161866
+ ],
+ [
+ -80.94894831298383,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.788400684426943
+ ],
+ [
+ -80.96889197240722,
+ 25.819726189848634
+ ],
+ [
+ -81.00877929125397,
+ 25.819726189848634
+ ],
+ [
+ -81.02872295067736,
+ 25.788400684426943
+ ],
+ [
+ -81.00877929125397,
+ 25.757075179005252
+ ],
+ [
+ -80.96889197240722,
+ 25.757075179005252
+ ],
+ [
+ -80.94894831298383,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.85105169527033
+ ],
+ [
+ -80.96889197240722,
+ 25.88237720069202
+ ],
+ [
+ -81.00877929125397,
+ 25.88237720069202
+ ],
+ [
+ -81.02872295067736,
+ 25.85105169527033
+ ],
+ [
+ -81.00877929125397,
+ 25.819726189848637
+ ],
+ [
+ -80.96889197240722,
+ 25.819726189848637
+ ],
+ [
+ -80.94894831298383,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.913702706113714
+ ],
+ [
+ -80.96889197240722,
+ 25.945028211535405
+ ],
+ [
+ -81.00877929125397,
+ 25.945028211535405
+ ],
+ [
+ -81.02872295067736,
+ 25.913702706113714
+ ],
+ [
+ -81.00877929125397,
+ 25.882377200692023
+ ],
+ [
+ -80.96889197240722,
+ 25.882377200692023
+ ],
+ [
+ -80.94894831298383,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 25.9763537169571
+ ],
+ [
+ -80.96889197240722,
+ 26.00767922237879
+ ],
+ [
+ -81.00877929125397,
+ 26.00767922237879
+ ],
+ [
+ -81.02872295067736,
+ 25.9763537169571
+ ],
+ [
+ -81.00877929125397,
+ 25.94502821153541
+ ],
+ [
+ -80.96889197240722,
+ 25.94502821153541
+ ],
+ [
+ -80.94894831298383,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 26.039004727800485
+ ],
+ [
+ -80.96889197240722,
+ 26.070330233222176
+ ],
+ [
+ -81.00877929125397,
+ 26.070330233222176
+ ],
+ [
+ -81.02872295067736,
+ 26.039004727800485
+ ],
+ [
+ -81.00877929125397,
+ 26.007679222378794
+ ],
+ [
+ -80.96889197240722,
+ 26.007679222378794
+ ],
+ [
+ -80.94894831298383,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 26.10165573864387
+ ],
+ [
+ -80.96889197240722,
+ 26.13298124406556
+ ],
+ [
+ -81.00877929125397,
+ 26.13298124406556
+ ],
+ [
+ -81.02872295067736,
+ 26.10165573864387
+ ],
+ [
+ -81.00877929125397,
+ 26.07033023322218
+ ],
+ [
+ -80.96889197240722,
+ 26.07033023322218
+ ],
+ [
+ -80.94894831298383,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ],
+ [
+ -80.96889197240722,
+ 26.195632254908944
+ ],
+ [
+ -81.00877929125397,
+ 26.195632254908944
+ ],
+ [
+ -81.02872295067736,
+ 26.164306749487253
+ ],
+ [
+ -81.00877929125397,
+ 26.13298124406556
+ ],
+ [
+ -80.96889197240722,
+ 26.13298124406556
+ ],
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 26.22695776033064
+ ],
+ [
+ -80.96889197240722,
+ 26.258283265752333
+ ],
+ [
+ -81.00877929125397,
+ 26.258283265752333
+ ],
+ [
+ -81.02872295067736,
+ 26.22695776033064
+ ],
+ [
+ -81.00877929125397,
+ 26.19563225490895
+ ],
+ [
+ -80.96889197240722,
+ 26.19563225490895
+ ],
+ [
+ -80.94894831298383,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ],
+ [
+ -80.96889197240722,
+ 26.320934276595715
+ ],
+ [
+ -81.00877929125397,
+ 26.320934276595715
+ ],
+ [
+ -81.02872295067736,
+ 26.289608771174024
+ ],
+ [
+ -81.00877929125397,
+ 26.258283265752333
+ ],
+ [
+ -80.96889197240722,
+ 26.258283265752333
+ ],
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 26.35225978201741
+ ],
+ [
+ -80.96889197240722,
+ 26.3835852874391
+ ],
+ [
+ -81.00877929125397,
+ 26.3835852874391
+ ],
+ [
+ -81.02872295067736,
+ 26.35225978201741
+ ],
+ [
+ -81.00877929125397,
+ 26.320934276595718
+ ],
+ [
+ -80.96889197240722,
+ 26.320934276595718
+ ],
+ [
+ -80.94894831298383,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.94894831298383,
+ 26.414910792860795
+ ],
+ [
+ -80.96889197240722,
+ 26.446236298282486
+ ],
+ [
+ -81.00877929125397,
+ 26.446236298282486
+ ],
+ [
+ -81.02872295067736,
+ 26.414910792860795
+ ],
+ [
+ -81.00877929125397,
+ 26.383585287439104
+ ],
+ [
+ -80.96889197240722,
+ 26.383585287439104
+ ],
+ [
+ -80.94894831298383,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 24.942612038041236
+ ],
+ [
+ -80.90906099413708,
+ 24.973937543462927
+ ],
+ [
+ -80.94894831298383,
+ 24.973937543462927
+ ],
+ [
+ -80.96889197240722,
+ 24.942612038041236
+ ],
+ [
+ -80.94894831298383,
+ 24.911286532619545
+ ],
+ [
+ -80.90906099413708,
+ 24.911286532619545
+ ],
+ [
+ -80.88911733471369,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.005263048884622
+ ],
+ [
+ -80.90906099413708,
+ 25.036588554306313
+ ],
+ [
+ -80.94894831298383,
+ 25.036588554306313
+ ],
+ [
+ -80.96889197240722,
+ 25.005263048884622
+ ],
+ [
+ -80.94894831298383,
+ 24.97393754346293
+ ],
+ [
+ -80.90906099413708,
+ 24.97393754346293
+ ],
+ [
+ -80.88911733471369,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.067914059728007
+ ],
+ [
+ -80.90906099413708,
+ 25.0992395651497
+ ],
+ [
+ -80.94894831298383,
+ 25.0992395651497
+ ],
+ [
+ -80.96889197240722,
+ 25.067914059728007
+ ],
+ [
+ -80.94894831298383,
+ 25.036588554306316
+ ],
+ [
+ -80.90906099413708,
+ 25.036588554306316
+ ],
+ [
+ -80.88911733471369,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.130565070571393
+ ],
+ [
+ -80.90906099413708,
+ 25.161890575993084
+ ],
+ [
+ -80.94894831298383,
+ 25.161890575993084
+ ],
+ [
+ -80.96889197240722,
+ 25.130565070571393
+ ],
+ [
+ -80.94894831298383,
+ 25.099239565149702
+ ],
+ [
+ -80.90906099413708,
+ 25.099239565149702
+ ],
+ [
+ -80.88911733471369,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.19321608141478
+ ],
+ [
+ -80.90906099413708,
+ 25.22454158683647
+ ],
+ [
+ -80.94894831298383,
+ 25.22454158683647
+ ],
+ [
+ -80.96889197240722,
+ 25.19321608141478
+ ],
+ [
+ -80.94894831298383,
+ 25.161890575993088
+ ],
+ [
+ -80.90906099413708,
+ 25.161890575993088
+ ],
+ [
+ -80.88911733471369,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.255867092258164
+ ],
+ [
+ -80.90906099413708,
+ 25.287192597679855
+ ],
+ [
+ -80.94894831298383,
+ 25.287192597679855
+ ],
+ [
+ -80.96889197240722,
+ 25.255867092258164
+ ],
+ [
+ -80.94894831298383,
+ 25.224541586836473
+ ],
+ [
+ -80.90906099413708,
+ 25.224541586836473
+ ],
+ [
+ -80.88911733471369,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.31851810310155
+ ],
+ [
+ -80.90906099413708,
+ 25.34984360852324
+ ],
+ [
+ -80.94894831298383,
+ 25.34984360852324
+ ],
+ [
+ -80.96889197240722,
+ 25.31851810310155
+ ],
+ [
+ -80.94894831298383,
+ 25.28719259767986
+ ],
+ [
+ -80.90906099413708,
+ 25.28719259767986
+ ],
+ [
+ -80.88911733471369,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.381169113944935
+ ],
+ [
+ -80.90906099413708,
+ 25.412494619366626
+ ],
+ [
+ -80.94894831298383,
+ 25.412494619366626
+ ],
+ [
+ -80.96889197240722,
+ 25.381169113944935
+ ],
+ [
+ -80.94894831298383,
+ 25.349843608523244
+ ],
+ [
+ -80.90906099413708,
+ 25.349843608523244
+ ],
+ [
+ -80.88911733471369,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.44382012478832
+ ],
+ [
+ -80.90906099413708,
+ 25.47514563021001
+ ],
+ [
+ -80.94894831298383,
+ 25.47514563021001
+ ],
+ [
+ -80.96889197240722,
+ 25.44382012478832
+ ],
+ [
+ -80.94894831298383,
+ 25.41249461936663
+ ],
+ [
+ -80.90906099413708,
+ 25.41249461936663
+ ],
+ [
+ -80.88911733471369,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.506471135631706
+ ],
+ [
+ -80.90906099413708,
+ 25.537796641053397
+ ],
+ [
+ -80.94894831298383,
+ 25.537796641053397
+ ],
+ [
+ -80.96889197240722,
+ 25.506471135631706
+ ],
+ [
+ -80.94894831298383,
+ 25.475145630210015
+ ],
+ [
+ -80.90906099413708,
+ 25.475145630210015
+ ],
+ [
+ -80.88911733471369,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.56912214647509
+ ],
+ [
+ -80.90906099413708,
+ 25.600447651896783
+ ],
+ [
+ -80.94894831298383,
+ 25.600447651896783
+ ],
+ [
+ -80.96889197240722,
+ 25.56912214647509
+ ],
+ [
+ -80.94894831298383,
+ 25.5377966410534
+ ],
+ [
+ -80.90906099413708,
+ 25.5377966410534
+ ],
+ [
+ -80.88911733471369,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.631773157318477
+ ],
+ [
+ -80.90906099413708,
+ 25.66309866274017
+ ],
+ [
+ -80.94894831298383,
+ 25.66309866274017
+ ],
+ [
+ -80.96889197240722,
+ 25.631773157318477
+ ],
+ [
+ -80.94894831298383,
+ 25.600447651896786
+ ],
+ [
+ -80.90906099413708,
+ 25.600447651896786
+ ],
+ [
+ -80.88911733471369,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.694424168161863
+ ],
+ [
+ -80.90906099413708,
+ 25.725749673583554
+ ],
+ [
+ -80.94894831298383,
+ 25.725749673583554
+ ],
+ [
+ -80.96889197240722,
+ 25.694424168161863
+ ],
+ [
+ -80.94894831298383,
+ 25.663098662740172
+ ],
+ [
+ -80.90906099413708,
+ 25.663098662740172
+ ],
+ [
+ -80.88911733471369,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.75707517900525
+ ],
+ [
+ -80.90906099413708,
+ 25.78840068442694
+ ],
+ [
+ -80.94894831298383,
+ 25.78840068442694
+ ],
+ [
+ -80.96889197240722,
+ 25.75707517900525
+ ],
+ [
+ -80.94894831298383,
+ 25.725749673583557
+ ],
+ [
+ -80.90906099413708,
+ 25.725749673583557
+ ],
+ [
+ -80.88911733471369,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.819726189848634
+ ],
+ [
+ -80.90906099413708,
+ 25.851051695270325
+ ],
+ [
+ -80.94894831298383,
+ 25.851051695270325
+ ],
+ [
+ -80.96889197240722,
+ 25.819726189848634
+ ],
+ [
+ -80.94894831298383,
+ 25.788400684426943
+ ],
+ [
+ -80.90906099413708,
+ 25.788400684426943
+ ],
+ [
+ -80.88911733471369,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.88237720069202
+ ],
+ [
+ -80.90906099413708,
+ 25.91370270611371
+ ],
+ [
+ -80.94894831298383,
+ 25.91370270611371
+ ],
+ [
+ -80.96889197240722,
+ 25.88237720069202
+ ],
+ [
+ -80.94894831298383,
+ 25.85105169527033
+ ],
+ [
+ -80.90906099413708,
+ 25.85105169527033
+ ],
+ [
+ -80.88911733471369,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 25.945028211535405
+ ],
+ [
+ -80.90906099413708,
+ 25.976353716957096
+ ],
+ [
+ -80.94894831298383,
+ 25.976353716957096
+ ],
+ [
+ -80.96889197240722,
+ 25.945028211535405
+ ],
+ [
+ -80.94894831298383,
+ 25.913702706113714
+ ],
+ [
+ -80.90906099413708,
+ 25.913702706113714
+ ],
+ [
+ -80.88911733471369,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 26.00767922237879
+ ],
+ [
+ -80.90906099413708,
+ 26.03900472780048
+ ],
+ [
+ -80.94894831298383,
+ 26.03900472780048
+ ],
+ [
+ -80.96889197240722,
+ 26.00767922237879
+ ],
+ [
+ -80.94894831298383,
+ 25.9763537169571
+ ],
+ [
+ -80.90906099413708,
+ 25.9763537169571
+ ],
+ [
+ -80.88911733471369,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 26.070330233222176
+ ],
+ [
+ -80.90906099413708,
+ 26.101655738643867
+ ],
+ [
+ -80.94894831298383,
+ 26.101655738643867
+ ],
+ [
+ -80.96889197240722,
+ 26.070330233222176
+ ],
+ [
+ -80.94894831298383,
+ 26.039004727800485
+ ],
+ [
+ -80.90906099413708,
+ 26.039004727800485
+ ],
+ [
+ -80.88911733471369,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 26.13298124406556
+ ],
+ [
+ -80.90906099413708,
+ 26.164306749487253
+ ],
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ],
+ [
+ -80.96889197240722,
+ 26.13298124406556
+ ],
+ [
+ -80.94894831298383,
+ 26.10165573864387
+ ],
+ [
+ -80.90906099413708,
+ 26.10165573864387
+ ],
+ [
+ -80.88911733471369,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 26.195632254908944
+ ],
+ [
+ -80.90906099413708,
+ 26.226957760330635
+ ],
+ [
+ -80.94894831298383,
+ 26.226957760330635
+ ],
+ [
+ -80.96889197240722,
+ 26.195632254908944
+ ],
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ],
+ [
+ -80.90906099413708,
+ 26.164306749487253
+ ],
+ [
+ -80.88911733471369,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 26.258283265752333
+ ],
+ [
+ -80.90906099413708,
+ 26.289608771174024
+ ],
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ],
+ [
+ -80.96889197240722,
+ 26.258283265752333
+ ],
+ [
+ -80.94894831298383,
+ 26.22695776033064
+ ],
+ [
+ -80.90906099413708,
+ 26.22695776033064
+ ],
+ [
+ -80.88911733471369,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 26.320934276595715
+ ],
+ [
+ -80.90906099413708,
+ 26.352259782017406
+ ],
+ [
+ -80.94894831298383,
+ 26.352259782017406
+ ],
+ [
+ -80.96889197240722,
+ 26.320934276595715
+ ],
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ],
+ [
+ -80.90906099413708,
+ 26.289608771174024
+ ],
+ [
+ -80.88911733471369,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 26.3835852874391
+ ],
+ [
+ -80.90906099413708,
+ 26.41491079286079
+ ],
+ [
+ -80.94894831298383,
+ 26.41491079286079
+ ],
+ [
+ -80.96889197240722,
+ 26.3835852874391
+ ],
+ [
+ -80.94894831298383,
+ 26.35225978201741
+ ],
+ [
+ -80.90906099413708,
+ 26.35225978201741
+ ],
+ [
+ -80.88911733471369,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.88911733471369,
+ 26.446236298282486
+ ],
+ [
+ -80.90906099413708,
+ 26.477561803704177
+ ],
+ [
+ -80.94894831298383,
+ 26.477561803704177
+ ],
+ [
+ -80.96889197240722,
+ 26.446236298282486
+ ],
+ [
+ -80.94894831298383,
+ 26.414910792860795
+ ],
+ [
+ -80.90906099413708,
+ 26.414910792860795
+ ],
+ [
+ -80.88911733471369,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 24.911286532619545
+ ],
+ [
+ -80.84923001586692,
+ 24.942612038041236
+ ],
+ [
+ -80.88911733471367,
+ 24.942612038041236
+ ],
+ [
+ -80.90906099413706,
+ 24.911286532619545
+ ],
+ [
+ -80.88911733471367,
+ 24.879961027197854
+ ],
+ [
+ -80.84923001586692,
+ 24.879961027197854
+ ],
+ [
+ -80.82928635644353,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 24.97393754346293
+ ],
+ [
+ -80.84923001586692,
+ 25.005263048884622
+ ],
+ [
+ -80.88911733471367,
+ 25.005263048884622
+ ],
+ [
+ -80.90906099413706,
+ 24.97393754346293
+ ],
+ [
+ -80.88911733471367,
+ 24.94261203804124
+ ],
+ [
+ -80.84923001586692,
+ 24.94261203804124
+ ],
+ [
+ -80.82928635644353,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.036588554306316
+ ],
+ [
+ -80.84923001586692,
+ 25.067914059728007
+ ],
+ [
+ -80.88911733471367,
+ 25.067914059728007
+ ],
+ [
+ -80.90906099413706,
+ 25.036588554306316
+ ],
+ [
+ -80.88911733471367,
+ 25.005263048884625
+ ],
+ [
+ -80.84923001586692,
+ 25.005263048884625
+ ],
+ [
+ -80.82928635644353,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.099239565149702
+ ],
+ [
+ -80.84923001586692,
+ 25.130565070571393
+ ],
+ [
+ -80.88911733471367,
+ 25.130565070571393
+ ],
+ [
+ -80.90906099413706,
+ 25.099239565149702
+ ],
+ [
+ -80.88911733471367,
+ 25.06791405972801
+ ],
+ [
+ -80.84923001586692,
+ 25.06791405972801
+ ],
+ [
+ -80.82928635644353,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.161890575993088
+ ],
+ [
+ -80.84923001586692,
+ 25.19321608141478
+ ],
+ [
+ -80.88911733471367,
+ 25.19321608141478
+ ],
+ [
+ -80.90906099413706,
+ 25.161890575993088
+ ],
+ [
+ -80.88911733471367,
+ 25.130565070571397
+ ],
+ [
+ -80.84923001586692,
+ 25.130565070571397
+ ],
+ [
+ -80.82928635644353,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.224541586836473
+ ],
+ [
+ -80.84923001586692,
+ 25.255867092258164
+ ],
+ [
+ -80.88911733471367,
+ 25.255867092258164
+ ],
+ [
+ -80.90906099413706,
+ 25.224541586836473
+ ],
+ [
+ -80.88911733471367,
+ 25.193216081414782
+ ],
+ [
+ -80.84923001586692,
+ 25.193216081414782
+ ],
+ [
+ -80.82928635644353,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.28719259767986
+ ],
+ [
+ -80.84923001586692,
+ 25.31851810310155
+ ],
+ [
+ -80.88911733471367,
+ 25.31851810310155
+ ],
+ [
+ -80.90906099413706,
+ 25.28719259767986
+ ],
+ [
+ -80.88911733471367,
+ 25.255867092258168
+ ],
+ [
+ -80.84923001586692,
+ 25.255867092258168
+ ],
+ [
+ -80.82928635644353,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.349843608523244
+ ],
+ [
+ -80.84923001586692,
+ 25.381169113944935
+ ],
+ [
+ -80.88911733471367,
+ 25.381169113944935
+ ],
+ [
+ -80.90906099413706,
+ 25.349843608523244
+ ],
+ [
+ -80.88911733471367,
+ 25.318518103101553
+ ],
+ [
+ -80.84923001586692,
+ 25.318518103101553
+ ],
+ [
+ -80.82928635644353,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.41249461936663
+ ],
+ [
+ -80.84923001586692,
+ 25.44382012478832
+ ],
+ [
+ -80.88911733471367,
+ 25.44382012478832
+ ],
+ [
+ -80.90906099413706,
+ 25.41249461936663
+ ],
+ [
+ -80.88911733471367,
+ 25.38116911394494
+ ],
+ [
+ -80.84923001586692,
+ 25.38116911394494
+ ],
+ [
+ -80.82928635644353,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.475145630210015
+ ],
+ [
+ -80.84923001586692,
+ 25.506471135631706
+ ],
+ [
+ -80.88911733471367,
+ 25.506471135631706
+ ],
+ [
+ -80.90906099413706,
+ 25.475145630210015
+ ],
+ [
+ -80.88911733471367,
+ 25.443820124788324
+ ],
+ [
+ -80.84923001586692,
+ 25.443820124788324
+ ],
+ [
+ -80.82928635644353,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.5377966410534
+ ],
+ [
+ -80.84923001586692,
+ 25.56912214647509
+ ],
+ [
+ -80.88911733471367,
+ 25.56912214647509
+ ],
+ [
+ -80.90906099413706,
+ 25.5377966410534
+ ],
+ [
+ -80.88911733471367,
+ 25.50647113563171
+ ],
+ [
+ -80.84923001586692,
+ 25.50647113563171
+ ],
+ [
+ -80.82928635644353,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.600447651896786
+ ],
+ [
+ -80.84923001586692,
+ 25.631773157318477
+ ],
+ [
+ -80.88911733471367,
+ 25.631773157318477
+ ],
+ [
+ -80.90906099413706,
+ 25.600447651896786
+ ],
+ [
+ -80.88911733471367,
+ 25.569122146475095
+ ],
+ [
+ -80.84923001586692,
+ 25.569122146475095
+ ],
+ [
+ -80.82928635644353,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.663098662740172
+ ],
+ [
+ -80.84923001586692,
+ 25.694424168161863
+ ],
+ [
+ -80.88911733471367,
+ 25.694424168161863
+ ],
+ [
+ -80.90906099413706,
+ 25.663098662740172
+ ],
+ [
+ -80.88911733471367,
+ 25.63177315731848
+ ],
+ [
+ -80.84923001586692,
+ 25.63177315731848
+ ],
+ [
+ -80.82928635644353,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.725749673583557
+ ],
+ [
+ -80.84923001586692,
+ 25.75707517900525
+ ],
+ [
+ -80.88911733471367,
+ 25.75707517900525
+ ],
+ [
+ -80.90906099413706,
+ 25.725749673583557
+ ],
+ [
+ -80.88911733471367,
+ 25.694424168161866
+ ],
+ [
+ -80.84923001586692,
+ 25.694424168161866
+ ],
+ [
+ -80.82928635644353,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.788400684426943
+ ],
+ [
+ -80.84923001586692,
+ 25.819726189848634
+ ],
+ [
+ -80.88911733471367,
+ 25.819726189848634
+ ],
+ [
+ -80.90906099413706,
+ 25.788400684426943
+ ],
+ [
+ -80.88911733471367,
+ 25.757075179005252
+ ],
+ [
+ -80.84923001586692,
+ 25.757075179005252
+ ],
+ [
+ -80.82928635644353,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.85105169527033
+ ],
+ [
+ -80.84923001586692,
+ 25.88237720069202
+ ],
+ [
+ -80.88911733471367,
+ 25.88237720069202
+ ],
+ [
+ -80.90906099413706,
+ 25.85105169527033
+ ],
+ [
+ -80.88911733471367,
+ 25.819726189848637
+ ],
+ [
+ -80.84923001586692,
+ 25.819726189848637
+ ],
+ [
+ -80.82928635644353,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.913702706113714
+ ],
+ [
+ -80.84923001586692,
+ 25.945028211535405
+ ],
+ [
+ -80.88911733471367,
+ 25.945028211535405
+ ],
+ [
+ -80.90906099413706,
+ 25.913702706113714
+ ],
+ [
+ -80.88911733471367,
+ 25.882377200692023
+ ],
+ [
+ -80.84923001586692,
+ 25.882377200692023
+ ],
+ [
+ -80.82928635644353,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 25.9763537169571
+ ],
+ [
+ -80.84923001586692,
+ 26.00767922237879
+ ],
+ [
+ -80.88911733471367,
+ 26.00767922237879
+ ],
+ [
+ -80.90906099413706,
+ 25.9763537169571
+ ],
+ [
+ -80.88911733471367,
+ 25.94502821153541
+ ],
+ [
+ -80.84923001586692,
+ 25.94502821153541
+ ],
+ [
+ -80.82928635644353,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 26.039004727800485
+ ],
+ [
+ -80.84923001586692,
+ 26.070330233222176
+ ],
+ [
+ -80.88911733471367,
+ 26.070330233222176
+ ],
+ [
+ -80.90906099413706,
+ 26.039004727800485
+ ],
+ [
+ -80.88911733471367,
+ 26.007679222378794
+ ],
+ [
+ -80.84923001586692,
+ 26.007679222378794
+ ],
+ [
+ -80.82928635644353,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 26.10165573864387
+ ],
+ [
+ -80.84923001586692,
+ 26.13298124406556
+ ],
+ [
+ -80.88911733471367,
+ 26.13298124406556
+ ],
+ [
+ -80.90906099413706,
+ 26.10165573864387
+ ],
+ [
+ -80.88911733471367,
+ 26.07033023322218
+ ],
+ [
+ -80.84923001586692,
+ 26.07033023322218
+ ],
+ [
+ -80.82928635644353,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ],
+ [
+ -80.84923001586692,
+ 26.195632254908944
+ ],
+ [
+ -80.88911733471367,
+ 26.195632254908944
+ ],
+ [
+ -80.90906099413706,
+ 26.164306749487253
+ ],
+ [
+ -80.88911733471367,
+ 26.13298124406556
+ ],
+ [
+ -80.84923001586692,
+ 26.13298124406556
+ ],
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 26.22695776033064
+ ],
+ [
+ -80.84923001586692,
+ 26.258283265752333
+ ],
+ [
+ -80.88911733471367,
+ 26.258283265752333
+ ],
+ [
+ -80.90906099413706,
+ 26.22695776033064
+ ],
+ [
+ -80.88911733471367,
+ 26.19563225490895
+ ],
+ [
+ -80.84923001586692,
+ 26.19563225490895
+ ],
+ [
+ -80.82928635644353,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ],
+ [
+ -80.84923001586692,
+ 26.320934276595715
+ ],
+ [
+ -80.88911733471367,
+ 26.320934276595715
+ ],
+ [
+ -80.90906099413706,
+ 26.289608771174024
+ ],
+ [
+ -80.88911733471367,
+ 26.258283265752333
+ ],
+ [
+ -80.84923001586692,
+ 26.258283265752333
+ ],
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 26.35225978201741
+ ],
+ [
+ -80.84923001586692,
+ 26.3835852874391
+ ],
+ [
+ -80.88911733471367,
+ 26.3835852874391
+ ],
+ [
+ -80.90906099413706,
+ 26.35225978201741
+ ],
+ [
+ -80.88911733471367,
+ 26.320934276595718
+ ],
+ [
+ -80.84923001586692,
+ 26.320934276595718
+ ],
+ [
+ -80.82928635644353,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.82928635644353,
+ 26.414910792860795
+ ],
+ [
+ -80.84923001586692,
+ 26.446236298282486
+ ],
+ [
+ -80.88911733471367,
+ 26.446236298282486
+ ],
+ [
+ -80.90906099413706,
+ 26.414910792860795
+ ],
+ [
+ -80.88911733471367,
+ 26.383585287439104
+ ],
+ [
+ -80.84923001586692,
+ 26.383585287439104
+ ],
+ [
+ -80.82928635644353,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 24.942612038041236
+ ],
+ [
+ -80.78939903759678,
+ 24.973937543462927
+ ],
+ [
+ -80.82928635644353,
+ 24.973937543462927
+ ],
+ [
+ -80.84923001586692,
+ 24.942612038041236
+ ],
+ [
+ -80.82928635644353,
+ 24.911286532619545
+ ],
+ [
+ -80.78939903759678,
+ 24.911286532619545
+ ],
+ [
+ -80.76945537817339,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.005263048884622
+ ],
+ [
+ -80.78939903759678,
+ 25.036588554306313
+ ],
+ [
+ -80.82928635644353,
+ 25.036588554306313
+ ],
+ [
+ -80.84923001586692,
+ 25.005263048884622
+ ],
+ [
+ -80.82928635644353,
+ 24.97393754346293
+ ],
+ [
+ -80.78939903759678,
+ 24.97393754346293
+ ],
+ [
+ -80.76945537817339,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.067914059728007
+ ],
+ [
+ -80.78939903759678,
+ 25.0992395651497
+ ],
+ [
+ -80.82928635644353,
+ 25.0992395651497
+ ],
+ [
+ -80.84923001586692,
+ 25.067914059728007
+ ],
+ [
+ -80.82928635644353,
+ 25.036588554306316
+ ],
+ [
+ -80.78939903759678,
+ 25.036588554306316
+ ],
+ [
+ -80.76945537817339,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.130565070571393
+ ],
+ [
+ -80.78939903759678,
+ 25.161890575993084
+ ],
+ [
+ -80.82928635644353,
+ 25.161890575993084
+ ],
+ [
+ -80.84923001586692,
+ 25.130565070571393
+ ],
+ [
+ -80.82928635644353,
+ 25.099239565149702
+ ],
+ [
+ -80.78939903759678,
+ 25.099239565149702
+ ],
+ [
+ -80.76945537817339,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.19321608141478
+ ],
+ [
+ -80.78939903759678,
+ 25.22454158683647
+ ],
+ [
+ -80.82928635644353,
+ 25.22454158683647
+ ],
+ [
+ -80.84923001586692,
+ 25.19321608141478
+ ],
+ [
+ -80.82928635644353,
+ 25.161890575993088
+ ],
+ [
+ -80.78939903759678,
+ 25.161890575993088
+ ],
+ [
+ -80.76945537817339,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.255867092258164
+ ],
+ [
+ -80.78939903759678,
+ 25.287192597679855
+ ],
+ [
+ -80.82928635644353,
+ 25.287192597679855
+ ],
+ [
+ -80.84923001586692,
+ 25.255867092258164
+ ],
+ [
+ -80.82928635644353,
+ 25.224541586836473
+ ],
+ [
+ -80.78939903759678,
+ 25.224541586836473
+ ],
+ [
+ -80.76945537817339,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.31851810310155
+ ],
+ [
+ -80.78939903759678,
+ 25.34984360852324
+ ],
+ [
+ -80.82928635644353,
+ 25.34984360852324
+ ],
+ [
+ -80.84923001586692,
+ 25.31851810310155
+ ],
+ [
+ -80.82928635644353,
+ 25.28719259767986
+ ],
+ [
+ -80.78939903759678,
+ 25.28719259767986
+ ],
+ [
+ -80.76945537817339,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.381169113944935
+ ],
+ [
+ -80.78939903759678,
+ 25.412494619366626
+ ],
+ [
+ -80.82928635644353,
+ 25.412494619366626
+ ],
+ [
+ -80.84923001586692,
+ 25.381169113944935
+ ],
+ [
+ -80.82928635644353,
+ 25.349843608523244
+ ],
+ [
+ -80.78939903759678,
+ 25.349843608523244
+ ],
+ [
+ -80.76945537817339,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.44382012478832
+ ],
+ [
+ -80.78939903759678,
+ 25.47514563021001
+ ],
+ [
+ -80.82928635644353,
+ 25.47514563021001
+ ],
+ [
+ -80.84923001586692,
+ 25.44382012478832
+ ],
+ [
+ -80.82928635644353,
+ 25.41249461936663
+ ],
+ [
+ -80.78939903759678,
+ 25.41249461936663
+ ],
+ [
+ -80.76945537817339,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.506471135631706
+ ],
+ [
+ -80.78939903759678,
+ 25.537796641053397
+ ],
+ [
+ -80.82928635644353,
+ 25.537796641053397
+ ],
+ [
+ -80.84923001586692,
+ 25.506471135631706
+ ],
+ [
+ -80.82928635644353,
+ 25.475145630210015
+ ],
+ [
+ -80.78939903759678,
+ 25.475145630210015
+ ],
+ [
+ -80.76945537817339,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.56912214647509
+ ],
+ [
+ -80.78939903759678,
+ 25.600447651896783
+ ],
+ [
+ -80.82928635644353,
+ 25.600447651896783
+ ],
+ [
+ -80.84923001586692,
+ 25.56912214647509
+ ],
+ [
+ -80.82928635644353,
+ 25.5377966410534
+ ],
+ [
+ -80.78939903759678,
+ 25.5377966410534
+ ],
+ [
+ -80.76945537817339,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.631773157318477
+ ],
+ [
+ -80.78939903759678,
+ 25.66309866274017
+ ],
+ [
+ -80.82928635644353,
+ 25.66309866274017
+ ],
+ [
+ -80.84923001586692,
+ 25.631773157318477
+ ],
+ [
+ -80.82928635644353,
+ 25.600447651896786
+ ],
+ [
+ -80.78939903759678,
+ 25.600447651896786
+ ],
+ [
+ -80.76945537817339,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.694424168161863
+ ],
+ [
+ -80.78939903759678,
+ 25.725749673583554
+ ],
+ [
+ -80.82928635644353,
+ 25.725749673583554
+ ],
+ [
+ -80.84923001586692,
+ 25.694424168161863
+ ],
+ [
+ -80.82928635644353,
+ 25.663098662740172
+ ],
+ [
+ -80.78939903759678,
+ 25.663098662740172
+ ],
+ [
+ -80.76945537817339,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.75707517900525
+ ],
+ [
+ -80.78939903759678,
+ 25.78840068442694
+ ],
+ [
+ -80.82928635644353,
+ 25.78840068442694
+ ],
+ [
+ -80.84923001586692,
+ 25.75707517900525
+ ],
+ [
+ -80.82928635644353,
+ 25.725749673583557
+ ],
+ [
+ -80.78939903759678,
+ 25.725749673583557
+ ],
+ [
+ -80.76945537817339,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.819726189848634
+ ],
+ [
+ -80.78939903759678,
+ 25.851051695270325
+ ],
+ [
+ -80.82928635644353,
+ 25.851051695270325
+ ],
+ [
+ -80.84923001586692,
+ 25.819726189848634
+ ],
+ [
+ -80.82928635644353,
+ 25.788400684426943
+ ],
+ [
+ -80.78939903759678,
+ 25.788400684426943
+ ],
+ [
+ -80.76945537817339,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.88237720069202
+ ],
+ [
+ -80.78939903759678,
+ 25.91370270611371
+ ],
+ [
+ -80.82928635644353,
+ 25.91370270611371
+ ],
+ [
+ -80.84923001586692,
+ 25.88237720069202
+ ],
+ [
+ -80.82928635644353,
+ 25.85105169527033
+ ],
+ [
+ -80.78939903759678,
+ 25.85105169527033
+ ],
+ [
+ -80.76945537817339,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 25.945028211535405
+ ],
+ [
+ -80.78939903759678,
+ 25.976353716957096
+ ],
+ [
+ -80.82928635644353,
+ 25.976353716957096
+ ],
+ [
+ -80.84923001586692,
+ 25.945028211535405
+ ],
+ [
+ -80.82928635644353,
+ 25.913702706113714
+ ],
+ [
+ -80.78939903759678,
+ 25.913702706113714
+ ],
+ [
+ -80.76945537817339,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 26.00767922237879
+ ],
+ [
+ -80.78939903759678,
+ 26.03900472780048
+ ],
+ [
+ -80.82928635644353,
+ 26.03900472780048
+ ],
+ [
+ -80.84923001586692,
+ 26.00767922237879
+ ],
+ [
+ -80.82928635644353,
+ 25.9763537169571
+ ],
+ [
+ -80.78939903759678,
+ 25.9763537169571
+ ],
+ [
+ -80.76945537817339,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 26.070330233222176
+ ],
+ [
+ -80.78939903759678,
+ 26.101655738643867
+ ],
+ [
+ -80.82928635644353,
+ 26.101655738643867
+ ],
+ [
+ -80.84923001586692,
+ 26.070330233222176
+ ],
+ [
+ -80.82928635644353,
+ 26.039004727800485
+ ],
+ [
+ -80.78939903759678,
+ 26.039004727800485
+ ],
+ [
+ -80.76945537817339,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 26.13298124406556
+ ],
+ [
+ -80.78939903759678,
+ 26.164306749487253
+ ],
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ],
+ [
+ -80.84923001586692,
+ 26.13298124406556
+ ],
+ [
+ -80.82928635644353,
+ 26.10165573864387
+ ],
+ [
+ -80.78939903759678,
+ 26.10165573864387
+ ],
+ [
+ -80.76945537817339,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 26.195632254908944
+ ],
+ [
+ -80.78939903759678,
+ 26.226957760330635
+ ],
+ [
+ -80.82928635644353,
+ 26.226957760330635
+ ],
+ [
+ -80.84923001586692,
+ 26.195632254908944
+ ],
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ],
+ [
+ -80.78939903759678,
+ 26.164306749487253
+ ],
+ [
+ -80.76945537817339,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 26.258283265752333
+ ],
+ [
+ -80.78939903759678,
+ 26.289608771174024
+ ],
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ],
+ [
+ -80.84923001586692,
+ 26.258283265752333
+ ],
+ [
+ -80.82928635644353,
+ 26.22695776033064
+ ],
+ [
+ -80.78939903759678,
+ 26.22695776033064
+ ],
+ [
+ -80.76945537817339,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 26.320934276595715
+ ],
+ [
+ -80.78939903759678,
+ 26.352259782017406
+ ],
+ [
+ -80.82928635644353,
+ 26.352259782017406
+ ],
+ [
+ -80.84923001586692,
+ 26.320934276595715
+ ],
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ],
+ [
+ -80.78939903759678,
+ 26.289608771174024
+ ],
+ [
+ -80.76945537817339,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 26.3835852874391
+ ],
+ [
+ -80.78939903759678,
+ 26.41491079286079
+ ],
+ [
+ -80.82928635644353,
+ 26.41491079286079
+ ],
+ [
+ -80.84923001586692,
+ 26.3835852874391
+ ],
+ [
+ -80.82928635644353,
+ 26.35225978201741
+ ],
+ [
+ -80.78939903759678,
+ 26.35225978201741
+ ],
+ [
+ -80.76945537817339,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.76945537817339,
+ 26.446236298282486
+ ],
+ [
+ -80.78939903759678,
+ 26.477561803704177
+ ],
+ [
+ -80.82928635644353,
+ 26.477561803704177
+ ],
+ [
+ -80.84923001586692,
+ 26.446236298282486
+ ],
+ [
+ -80.82928635644353,
+ 26.414910792860795
+ ],
+ [
+ -80.78939903759678,
+ 26.414910792860795
+ ],
+ [
+ -80.76945537817339,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 24.911286532619545
+ ],
+ [
+ -80.72956805932662,
+ 24.942612038041236
+ ],
+ [
+ -80.76945537817338,
+ 24.942612038041236
+ ],
+ [
+ -80.78939903759677,
+ 24.911286532619545
+ ],
+ [
+ -80.76945537817338,
+ 24.879961027197854
+ ],
+ [
+ -80.72956805932662,
+ 24.879961027197854
+ ],
+ [
+ -80.70962439990323,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 24.97393754346293
+ ],
+ [
+ -80.72956805932662,
+ 25.005263048884622
+ ],
+ [
+ -80.76945537817338,
+ 25.005263048884622
+ ],
+ [
+ -80.78939903759677,
+ 24.97393754346293
+ ],
+ [
+ -80.76945537817338,
+ 24.94261203804124
+ ],
+ [
+ -80.72956805932662,
+ 24.94261203804124
+ ],
+ [
+ -80.70962439990323,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.036588554306316
+ ],
+ [
+ -80.72956805932662,
+ 25.067914059728007
+ ],
+ [
+ -80.76945537817338,
+ 25.067914059728007
+ ],
+ [
+ -80.78939903759677,
+ 25.036588554306316
+ ],
+ [
+ -80.76945537817338,
+ 25.005263048884625
+ ],
+ [
+ -80.72956805932662,
+ 25.005263048884625
+ ],
+ [
+ -80.70962439990323,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.099239565149702
+ ],
+ [
+ -80.72956805932662,
+ 25.130565070571393
+ ],
+ [
+ -80.76945537817338,
+ 25.130565070571393
+ ],
+ [
+ -80.78939903759677,
+ 25.099239565149702
+ ],
+ [
+ -80.76945537817338,
+ 25.06791405972801
+ ],
+ [
+ -80.72956805932662,
+ 25.06791405972801
+ ],
+ [
+ -80.70962439990323,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.161890575993088
+ ],
+ [
+ -80.72956805932662,
+ 25.19321608141478
+ ],
+ [
+ -80.76945537817338,
+ 25.19321608141478
+ ],
+ [
+ -80.78939903759677,
+ 25.161890575993088
+ ],
+ [
+ -80.76945537817338,
+ 25.130565070571397
+ ],
+ [
+ -80.72956805932662,
+ 25.130565070571397
+ ],
+ [
+ -80.70962439990323,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.224541586836473
+ ],
+ [
+ -80.72956805932662,
+ 25.255867092258164
+ ],
+ [
+ -80.76945537817338,
+ 25.255867092258164
+ ],
+ [
+ -80.78939903759677,
+ 25.224541586836473
+ ],
+ [
+ -80.76945537817338,
+ 25.193216081414782
+ ],
+ [
+ -80.72956805932662,
+ 25.193216081414782
+ ],
+ [
+ -80.70962439990323,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.28719259767986
+ ],
+ [
+ -80.72956805932662,
+ 25.31851810310155
+ ],
+ [
+ -80.76945537817338,
+ 25.31851810310155
+ ],
+ [
+ -80.78939903759677,
+ 25.28719259767986
+ ],
+ [
+ -80.76945537817338,
+ 25.255867092258168
+ ],
+ [
+ -80.72956805932662,
+ 25.255867092258168
+ ],
+ [
+ -80.70962439990323,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.349843608523244
+ ],
+ [
+ -80.72956805932662,
+ 25.381169113944935
+ ],
+ [
+ -80.76945537817338,
+ 25.381169113944935
+ ],
+ [
+ -80.78939903759677,
+ 25.349843608523244
+ ],
+ [
+ -80.76945537817338,
+ 25.318518103101553
+ ],
+ [
+ -80.72956805932662,
+ 25.318518103101553
+ ],
+ [
+ -80.70962439990323,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.41249461936663
+ ],
+ [
+ -80.72956805932662,
+ 25.44382012478832
+ ],
+ [
+ -80.76945537817338,
+ 25.44382012478832
+ ],
+ [
+ -80.78939903759677,
+ 25.41249461936663
+ ],
+ [
+ -80.76945537817338,
+ 25.38116911394494
+ ],
+ [
+ -80.72956805932662,
+ 25.38116911394494
+ ],
+ [
+ -80.70962439990323,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.475145630210015
+ ],
+ [
+ -80.72956805932662,
+ 25.506471135631706
+ ],
+ [
+ -80.76945537817338,
+ 25.506471135631706
+ ],
+ [
+ -80.78939903759677,
+ 25.475145630210015
+ ],
+ [
+ -80.76945537817338,
+ 25.443820124788324
+ ],
+ [
+ -80.72956805932662,
+ 25.443820124788324
+ ],
+ [
+ -80.70962439990323,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.5377966410534
+ ],
+ [
+ -80.72956805932662,
+ 25.56912214647509
+ ],
+ [
+ -80.76945537817338,
+ 25.56912214647509
+ ],
+ [
+ -80.78939903759677,
+ 25.5377966410534
+ ],
+ [
+ -80.76945537817338,
+ 25.50647113563171
+ ],
+ [
+ -80.72956805932662,
+ 25.50647113563171
+ ],
+ [
+ -80.70962439990323,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.600447651896786
+ ],
+ [
+ -80.72956805932662,
+ 25.631773157318477
+ ],
+ [
+ -80.76945537817338,
+ 25.631773157318477
+ ],
+ [
+ -80.78939903759677,
+ 25.600447651896786
+ ],
+ [
+ -80.76945537817338,
+ 25.569122146475095
+ ],
+ [
+ -80.72956805932662,
+ 25.569122146475095
+ ],
+ [
+ -80.70962439990323,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.663098662740172
+ ],
+ [
+ -80.72956805932662,
+ 25.694424168161863
+ ],
+ [
+ -80.76945537817338,
+ 25.694424168161863
+ ],
+ [
+ -80.78939903759677,
+ 25.663098662740172
+ ],
+ [
+ -80.76945537817338,
+ 25.63177315731848
+ ],
+ [
+ -80.72956805932662,
+ 25.63177315731848
+ ],
+ [
+ -80.70962439990323,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.725749673583557
+ ],
+ [
+ -80.72956805932662,
+ 25.75707517900525
+ ],
+ [
+ -80.76945537817338,
+ 25.75707517900525
+ ],
+ [
+ -80.78939903759677,
+ 25.725749673583557
+ ],
+ [
+ -80.76945537817338,
+ 25.694424168161866
+ ],
+ [
+ -80.72956805932662,
+ 25.694424168161866
+ ],
+ [
+ -80.70962439990323,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.788400684426943
+ ],
+ [
+ -80.72956805932662,
+ 25.819726189848634
+ ],
+ [
+ -80.76945537817338,
+ 25.819726189848634
+ ],
+ [
+ -80.78939903759677,
+ 25.788400684426943
+ ],
+ [
+ -80.76945537817338,
+ 25.757075179005252
+ ],
+ [
+ -80.72956805932662,
+ 25.757075179005252
+ ],
+ [
+ -80.70962439990323,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.85105169527033
+ ],
+ [
+ -80.72956805932662,
+ 25.88237720069202
+ ],
+ [
+ -80.76945537817338,
+ 25.88237720069202
+ ],
+ [
+ -80.78939903759677,
+ 25.85105169527033
+ ],
+ [
+ -80.76945537817338,
+ 25.819726189848637
+ ],
+ [
+ -80.72956805932662,
+ 25.819726189848637
+ ],
+ [
+ -80.70962439990323,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.913702706113714
+ ],
+ [
+ -80.72956805932662,
+ 25.945028211535405
+ ],
+ [
+ -80.76945537817338,
+ 25.945028211535405
+ ],
+ [
+ -80.78939903759677,
+ 25.913702706113714
+ ],
+ [
+ -80.76945537817338,
+ 25.882377200692023
+ ],
+ [
+ -80.72956805932662,
+ 25.882377200692023
+ ],
+ [
+ -80.70962439990323,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 25.9763537169571
+ ],
+ [
+ -80.72956805932662,
+ 26.00767922237879
+ ],
+ [
+ -80.76945537817338,
+ 26.00767922237879
+ ],
+ [
+ -80.78939903759677,
+ 25.9763537169571
+ ],
+ [
+ -80.76945537817338,
+ 25.94502821153541
+ ],
+ [
+ -80.72956805932662,
+ 25.94502821153541
+ ],
+ [
+ -80.70962439990323,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 26.039004727800485
+ ],
+ [
+ -80.72956805932662,
+ 26.070330233222176
+ ],
+ [
+ -80.76945537817338,
+ 26.070330233222176
+ ],
+ [
+ -80.78939903759677,
+ 26.039004727800485
+ ],
+ [
+ -80.76945537817338,
+ 26.007679222378794
+ ],
+ [
+ -80.72956805932662,
+ 26.007679222378794
+ ],
+ [
+ -80.70962439990323,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 26.10165573864387
+ ],
+ [
+ -80.72956805932662,
+ 26.13298124406556
+ ],
+ [
+ -80.76945537817338,
+ 26.13298124406556
+ ],
+ [
+ -80.78939903759677,
+ 26.10165573864387
+ ],
+ [
+ -80.76945537817338,
+ 26.07033023322218
+ ],
+ [
+ -80.72956805932662,
+ 26.07033023322218
+ ],
+ [
+ -80.70962439990323,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ],
+ [
+ -80.72956805932662,
+ 26.195632254908944
+ ],
+ [
+ -80.76945537817338,
+ 26.195632254908944
+ ],
+ [
+ -80.78939903759677,
+ 26.164306749487253
+ ],
+ [
+ -80.76945537817338,
+ 26.13298124406556
+ ],
+ [
+ -80.72956805932662,
+ 26.13298124406556
+ ],
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 26.22695776033064
+ ],
+ [
+ -80.72956805932662,
+ 26.258283265752333
+ ],
+ [
+ -80.76945537817338,
+ 26.258283265752333
+ ],
+ [
+ -80.78939903759677,
+ 26.22695776033064
+ ],
+ [
+ -80.76945537817338,
+ 26.19563225490895
+ ],
+ [
+ -80.72956805932662,
+ 26.19563225490895
+ ],
+ [
+ -80.70962439990323,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ],
+ [
+ -80.72956805932662,
+ 26.320934276595715
+ ],
+ [
+ -80.76945537817338,
+ 26.320934276595715
+ ],
+ [
+ -80.78939903759677,
+ 26.289608771174024
+ ],
+ [
+ -80.76945537817338,
+ 26.258283265752333
+ ],
+ [
+ -80.72956805932662,
+ 26.258283265752333
+ ],
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 26.35225978201741
+ ],
+ [
+ -80.72956805932662,
+ 26.3835852874391
+ ],
+ [
+ -80.76945537817338,
+ 26.3835852874391
+ ],
+ [
+ -80.78939903759677,
+ 26.35225978201741
+ ],
+ [
+ -80.76945537817338,
+ 26.320934276595718
+ ],
+ [
+ -80.72956805932662,
+ 26.320934276595718
+ ],
+ [
+ -80.70962439990323,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.70962439990323,
+ 26.414910792860795
+ ],
+ [
+ -80.72956805932662,
+ 26.446236298282486
+ ],
+ [
+ -80.76945537817338,
+ 26.446236298282486
+ ],
+ [
+ -80.78939903759677,
+ 26.414910792860795
+ ],
+ [
+ -80.76945537817338,
+ 26.383585287439104
+ ],
+ [
+ -80.72956805932662,
+ 26.383585287439104
+ ],
+ [
+ -80.70962439990323,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 24.942612038041236
+ ],
+ [
+ -80.66973708105648,
+ 24.973937543462927
+ ],
+ [
+ -80.70962439990323,
+ 24.973937543462927
+ ],
+ [
+ -80.72956805932662,
+ 24.942612038041236
+ ],
+ [
+ -80.70962439990323,
+ 24.911286532619545
+ ],
+ [
+ -80.66973708105648,
+ 24.911286532619545
+ ],
+ [
+ -80.64979342163309,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.005263048884622
+ ],
+ [
+ -80.66973708105648,
+ 25.036588554306313
+ ],
+ [
+ -80.70962439990323,
+ 25.036588554306313
+ ],
+ [
+ -80.72956805932662,
+ 25.005263048884622
+ ],
+ [
+ -80.70962439990323,
+ 24.97393754346293
+ ],
+ [
+ -80.66973708105648,
+ 24.97393754346293
+ ],
+ [
+ -80.64979342163309,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.067914059728007
+ ],
+ [
+ -80.66973708105648,
+ 25.0992395651497
+ ],
+ [
+ -80.70962439990323,
+ 25.0992395651497
+ ],
+ [
+ -80.72956805932662,
+ 25.067914059728007
+ ],
+ [
+ -80.70962439990323,
+ 25.036588554306316
+ ],
+ [
+ -80.66973708105648,
+ 25.036588554306316
+ ],
+ [
+ -80.64979342163309,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.130565070571393
+ ],
+ [
+ -80.66973708105648,
+ 25.161890575993084
+ ],
+ [
+ -80.70962439990323,
+ 25.161890575993084
+ ],
+ [
+ -80.72956805932662,
+ 25.130565070571393
+ ],
+ [
+ -80.70962439990323,
+ 25.099239565149702
+ ],
+ [
+ -80.66973708105648,
+ 25.099239565149702
+ ],
+ [
+ -80.64979342163309,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.19321608141478
+ ],
+ [
+ -80.66973708105648,
+ 25.22454158683647
+ ],
+ [
+ -80.70962439990323,
+ 25.22454158683647
+ ],
+ [
+ -80.72956805932662,
+ 25.19321608141478
+ ],
+ [
+ -80.70962439990323,
+ 25.161890575993088
+ ],
+ [
+ -80.66973708105648,
+ 25.161890575993088
+ ],
+ [
+ -80.64979342163309,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.255867092258164
+ ],
+ [
+ -80.66973708105648,
+ 25.287192597679855
+ ],
+ [
+ -80.70962439990323,
+ 25.287192597679855
+ ],
+ [
+ -80.72956805932662,
+ 25.255867092258164
+ ],
+ [
+ -80.70962439990323,
+ 25.224541586836473
+ ],
+ [
+ -80.66973708105648,
+ 25.224541586836473
+ ],
+ [
+ -80.64979342163309,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.31851810310155
+ ],
+ [
+ -80.66973708105648,
+ 25.34984360852324
+ ],
+ [
+ -80.70962439990323,
+ 25.34984360852324
+ ],
+ [
+ -80.72956805932662,
+ 25.31851810310155
+ ],
+ [
+ -80.70962439990323,
+ 25.28719259767986
+ ],
+ [
+ -80.66973708105648,
+ 25.28719259767986
+ ],
+ [
+ -80.64979342163309,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.381169113944935
+ ],
+ [
+ -80.66973708105648,
+ 25.412494619366626
+ ],
+ [
+ -80.70962439990323,
+ 25.412494619366626
+ ],
+ [
+ -80.72956805932662,
+ 25.381169113944935
+ ],
+ [
+ -80.70962439990323,
+ 25.349843608523244
+ ],
+ [
+ -80.66973708105648,
+ 25.349843608523244
+ ],
+ [
+ -80.64979342163309,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.44382012478832
+ ],
+ [
+ -80.66973708105648,
+ 25.47514563021001
+ ],
+ [
+ -80.70962439990323,
+ 25.47514563021001
+ ],
+ [
+ -80.72956805932662,
+ 25.44382012478832
+ ],
+ [
+ -80.70962439990323,
+ 25.41249461936663
+ ],
+ [
+ -80.66973708105648,
+ 25.41249461936663
+ ],
+ [
+ -80.64979342163309,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.506471135631706
+ ],
+ [
+ -80.66973708105648,
+ 25.537796641053397
+ ],
+ [
+ -80.70962439990323,
+ 25.537796641053397
+ ],
+ [
+ -80.72956805932662,
+ 25.506471135631706
+ ],
+ [
+ -80.70962439990323,
+ 25.475145630210015
+ ],
+ [
+ -80.66973708105648,
+ 25.475145630210015
+ ],
+ [
+ -80.64979342163309,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.56912214647509
+ ],
+ [
+ -80.66973708105648,
+ 25.600447651896783
+ ],
+ [
+ -80.70962439990323,
+ 25.600447651896783
+ ],
+ [
+ -80.72956805932662,
+ 25.56912214647509
+ ],
+ [
+ -80.70962439990323,
+ 25.5377966410534
+ ],
+ [
+ -80.66973708105648,
+ 25.5377966410534
+ ],
+ [
+ -80.64979342163309,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.631773157318477
+ ],
+ [
+ -80.66973708105648,
+ 25.66309866274017
+ ],
+ [
+ -80.70962439990323,
+ 25.66309866274017
+ ],
+ [
+ -80.72956805932662,
+ 25.631773157318477
+ ],
+ [
+ -80.70962439990323,
+ 25.600447651896786
+ ],
+ [
+ -80.66973708105648,
+ 25.600447651896786
+ ],
+ [
+ -80.64979342163309,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.694424168161863
+ ],
+ [
+ -80.66973708105648,
+ 25.725749673583554
+ ],
+ [
+ -80.70962439990323,
+ 25.725749673583554
+ ],
+ [
+ -80.72956805932662,
+ 25.694424168161863
+ ],
+ [
+ -80.70962439990323,
+ 25.663098662740172
+ ],
+ [
+ -80.66973708105648,
+ 25.663098662740172
+ ],
+ [
+ -80.64979342163309,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.75707517900525
+ ],
+ [
+ -80.66973708105648,
+ 25.78840068442694
+ ],
+ [
+ -80.70962439990323,
+ 25.78840068442694
+ ],
+ [
+ -80.72956805932662,
+ 25.75707517900525
+ ],
+ [
+ -80.70962439990323,
+ 25.725749673583557
+ ],
+ [
+ -80.66973708105648,
+ 25.725749673583557
+ ],
+ [
+ -80.64979342163309,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.819726189848634
+ ],
+ [
+ -80.66973708105648,
+ 25.851051695270325
+ ],
+ [
+ -80.70962439990323,
+ 25.851051695270325
+ ],
+ [
+ -80.72956805932662,
+ 25.819726189848634
+ ],
+ [
+ -80.70962439990323,
+ 25.788400684426943
+ ],
+ [
+ -80.66973708105648,
+ 25.788400684426943
+ ],
+ [
+ -80.64979342163309,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.88237720069202
+ ],
+ [
+ -80.66973708105648,
+ 25.91370270611371
+ ],
+ [
+ -80.70962439990323,
+ 25.91370270611371
+ ],
+ [
+ -80.72956805932662,
+ 25.88237720069202
+ ],
+ [
+ -80.70962439990323,
+ 25.85105169527033
+ ],
+ [
+ -80.66973708105648,
+ 25.85105169527033
+ ],
+ [
+ -80.64979342163309,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 25.945028211535405
+ ],
+ [
+ -80.66973708105648,
+ 25.976353716957096
+ ],
+ [
+ -80.70962439990323,
+ 25.976353716957096
+ ],
+ [
+ -80.72956805932662,
+ 25.945028211535405
+ ],
+ [
+ -80.70962439990323,
+ 25.913702706113714
+ ],
+ [
+ -80.66973708105648,
+ 25.913702706113714
+ ],
+ [
+ -80.64979342163309,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 26.00767922237879
+ ],
+ [
+ -80.66973708105648,
+ 26.03900472780048
+ ],
+ [
+ -80.70962439990323,
+ 26.03900472780048
+ ],
+ [
+ -80.72956805932662,
+ 26.00767922237879
+ ],
+ [
+ -80.70962439990323,
+ 25.9763537169571
+ ],
+ [
+ -80.66973708105648,
+ 25.9763537169571
+ ],
+ [
+ -80.64979342163309,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 26.070330233222176
+ ],
+ [
+ -80.66973708105648,
+ 26.101655738643867
+ ],
+ [
+ -80.70962439990323,
+ 26.101655738643867
+ ],
+ [
+ -80.72956805932662,
+ 26.070330233222176
+ ],
+ [
+ -80.70962439990323,
+ 26.039004727800485
+ ],
+ [
+ -80.66973708105648,
+ 26.039004727800485
+ ],
+ [
+ -80.64979342163309,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 26.13298124406556
+ ],
+ [
+ -80.66973708105648,
+ 26.164306749487253
+ ],
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ],
+ [
+ -80.72956805932662,
+ 26.13298124406556
+ ],
+ [
+ -80.70962439990323,
+ 26.10165573864387
+ ],
+ [
+ -80.66973708105648,
+ 26.10165573864387
+ ],
+ [
+ -80.64979342163309,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 26.195632254908944
+ ],
+ [
+ -80.66973708105648,
+ 26.226957760330635
+ ],
+ [
+ -80.70962439990323,
+ 26.226957760330635
+ ],
+ [
+ -80.72956805932662,
+ 26.195632254908944
+ ],
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ],
+ [
+ -80.66973708105648,
+ 26.164306749487253
+ ],
+ [
+ -80.64979342163309,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 26.258283265752333
+ ],
+ [
+ -80.66973708105648,
+ 26.289608771174024
+ ],
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ],
+ [
+ -80.72956805932662,
+ 26.258283265752333
+ ],
+ [
+ -80.70962439990323,
+ 26.22695776033064
+ ],
+ [
+ -80.66973708105648,
+ 26.22695776033064
+ ],
+ [
+ -80.64979342163309,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 26.320934276595715
+ ],
+ [
+ -80.66973708105648,
+ 26.352259782017406
+ ],
+ [
+ -80.70962439990323,
+ 26.352259782017406
+ ],
+ [
+ -80.72956805932662,
+ 26.320934276595715
+ ],
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ],
+ [
+ -80.66973708105648,
+ 26.289608771174024
+ ],
+ [
+ -80.64979342163309,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 26.3835852874391
+ ],
+ [
+ -80.66973708105648,
+ 26.41491079286079
+ ],
+ [
+ -80.70962439990323,
+ 26.41491079286079
+ ],
+ [
+ -80.72956805932662,
+ 26.3835852874391
+ ],
+ [
+ -80.70962439990323,
+ 26.35225978201741
+ ],
+ [
+ -80.66973708105648,
+ 26.35225978201741
+ ],
+ [
+ -80.64979342163309,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.64979342163309,
+ 26.446236298282486
+ ],
+ [
+ -80.66973708105648,
+ 26.477561803704177
+ ],
+ [
+ -80.70962439990323,
+ 26.477561803704177
+ ],
+ [
+ -80.72956805932662,
+ 26.446236298282486
+ ],
+ [
+ -80.70962439990323,
+ 26.414910792860795
+ ],
+ [
+ -80.66973708105648,
+ 26.414910792860795
+ ],
+ [
+ -80.64979342163309,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 24.911286532619545
+ ],
+ [
+ -80.60990610278633,
+ 24.942612038041236
+ ],
+ [
+ -80.64979342163308,
+ 24.942612038041236
+ ],
+ [
+ -80.66973708105647,
+ 24.911286532619545
+ ],
+ [
+ -80.64979342163308,
+ 24.879961027197854
+ ],
+ [
+ -80.60990610278633,
+ 24.879961027197854
+ ],
+ [
+ -80.58996244336294,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 24.97393754346293
+ ],
+ [
+ -80.60990610278633,
+ 25.005263048884622
+ ],
+ [
+ -80.64979342163308,
+ 25.005263048884622
+ ],
+ [
+ -80.66973708105647,
+ 24.97393754346293
+ ],
+ [
+ -80.64979342163308,
+ 24.94261203804124
+ ],
+ [
+ -80.60990610278633,
+ 24.94261203804124
+ ],
+ [
+ -80.58996244336294,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.036588554306316
+ ],
+ [
+ -80.60990610278633,
+ 25.067914059728007
+ ],
+ [
+ -80.64979342163308,
+ 25.067914059728007
+ ],
+ [
+ -80.66973708105647,
+ 25.036588554306316
+ ],
+ [
+ -80.64979342163308,
+ 25.005263048884625
+ ],
+ [
+ -80.60990610278633,
+ 25.005263048884625
+ ],
+ [
+ -80.58996244336294,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.099239565149702
+ ],
+ [
+ -80.60990610278633,
+ 25.130565070571393
+ ],
+ [
+ -80.64979342163308,
+ 25.130565070571393
+ ],
+ [
+ -80.66973708105647,
+ 25.099239565149702
+ ],
+ [
+ -80.64979342163308,
+ 25.06791405972801
+ ],
+ [
+ -80.60990610278633,
+ 25.06791405972801
+ ],
+ [
+ -80.58996244336294,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.161890575993088
+ ],
+ [
+ -80.60990610278633,
+ 25.19321608141478
+ ],
+ [
+ -80.64979342163308,
+ 25.19321608141478
+ ],
+ [
+ -80.66973708105647,
+ 25.161890575993088
+ ],
+ [
+ -80.64979342163308,
+ 25.130565070571397
+ ],
+ [
+ -80.60990610278633,
+ 25.130565070571397
+ ],
+ [
+ -80.58996244336294,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.224541586836473
+ ],
+ [
+ -80.60990610278633,
+ 25.255867092258164
+ ],
+ [
+ -80.64979342163308,
+ 25.255867092258164
+ ],
+ [
+ -80.66973708105647,
+ 25.224541586836473
+ ],
+ [
+ -80.64979342163308,
+ 25.193216081414782
+ ],
+ [
+ -80.60990610278633,
+ 25.193216081414782
+ ],
+ [
+ -80.58996244336294,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.28719259767986
+ ],
+ [
+ -80.60990610278633,
+ 25.31851810310155
+ ],
+ [
+ -80.64979342163308,
+ 25.31851810310155
+ ],
+ [
+ -80.66973708105647,
+ 25.28719259767986
+ ],
+ [
+ -80.64979342163308,
+ 25.255867092258168
+ ],
+ [
+ -80.60990610278633,
+ 25.255867092258168
+ ],
+ [
+ -80.58996244336294,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.349843608523244
+ ],
+ [
+ -80.60990610278633,
+ 25.381169113944935
+ ],
+ [
+ -80.64979342163308,
+ 25.381169113944935
+ ],
+ [
+ -80.66973708105647,
+ 25.349843608523244
+ ],
+ [
+ -80.64979342163308,
+ 25.318518103101553
+ ],
+ [
+ -80.60990610278633,
+ 25.318518103101553
+ ],
+ [
+ -80.58996244336294,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.41249461936663
+ ],
+ [
+ -80.60990610278633,
+ 25.44382012478832
+ ],
+ [
+ -80.64979342163308,
+ 25.44382012478832
+ ],
+ [
+ -80.66973708105647,
+ 25.41249461936663
+ ],
+ [
+ -80.64979342163308,
+ 25.38116911394494
+ ],
+ [
+ -80.60990610278633,
+ 25.38116911394494
+ ],
+ [
+ -80.58996244336294,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.475145630210015
+ ],
+ [
+ -80.60990610278633,
+ 25.506471135631706
+ ],
+ [
+ -80.64979342163308,
+ 25.506471135631706
+ ],
+ [
+ -80.66973708105647,
+ 25.475145630210015
+ ],
+ [
+ -80.64979342163308,
+ 25.443820124788324
+ ],
+ [
+ -80.60990610278633,
+ 25.443820124788324
+ ],
+ [
+ -80.58996244336294,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.5377966410534
+ ],
+ [
+ -80.60990610278633,
+ 25.56912214647509
+ ],
+ [
+ -80.64979342163308,
+ 25.56912214647509
+ ],
+ [
+ -80.66973708105647,
+ 25.5377966410534
+ ],
+ [
+ -80.64979342163308,
+ 25.50647113563171
+ ],
+ [
+ -80.60990610278633,
+ 25.50647113563171
+ ],
+ [
+ -80.58996244336294,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.600447651896786
+ ],
+ [
+ -80.60990610278633,
+ 25.631773157318477
+ ],
+ [
+ -80.64979342163308,
+ 25.631773157318477
+ ],
+ [
+ -80.66973708105647,
+ 25.600447651896786
+ ],
+ [
+ -80.64979342163308,
+ 25.569122146475095
+ ],
+ [
+ -80.60990610278633,
+ 25.569122146475095
+ ],
+ [
+ -80.58996244336294,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.663098662740172
+ ],
+ [
+ -80.60990610278633,
+ 25.694424168161863
+ ],
+ [
+ -80.64979342163308,
+ 25.694424168161863
+ ],
+ [
+ -80.66973708105647,
+ 25.663098662740172
+ ],
+ [
+ -80.64979342163308,
+ 25.63177315731848
+ ],
+ [
+ -80.60990610278633,
+ 25.63177315731848
+ ],
+ [
+ -80.58996244336294,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.725749673583557
+ ],
+ [
+ -80.60990610278633,
+ 25.75707517900525
+ ],
+ [
+ -80.64979342163308,
+ 25.75707517900525
+ ],
+ [
+ -80.66973708105647,
+ 25.725749673583557
+ ],
+ [
+ -80.64979342163308,
+ 25.694424168161866
+ ],
+ [
+ -80.60990610278633,
+ 25.694424168161866
+ ],
+ [
+ -80.58996244336294,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.788400684426943
+ ],
+ [
+ -80.60990610278633,
+ 25.819726189848634
+ ],
+ [
+ -80.64979342163308,
+ 25.819726189848634
+ ],
+ [
+ -80.66973708105647,
+ 25.788400684426943
+ ],
+ [
+ -80.64979342163308,
+ 25.757075179005252
+ ],
+ [
+ -80.60990610278633,
+ 25.757075179005252
+ ],
+ [
+ -80.58996244336294,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.85105169527033
+ ],
+ [
+ -80.60990610278633,
+ 25.88237720069202
+ ],
+ [
+ -80.64979342163308,
+ 25.88237720069202
+ ],
+ [
+ -80.66973708105647,
+ 25.85105169527033
+ ],
+ [
+ -80.64979342163308,
+ 25.819726189848637
+ ],
+ [
+ -80.60990610278633,
+ 25.819726189848637
+ ],
+ [
+ -80.58996244336294,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.913702706113714
+ ],
+ [
+ -80.60990610278633,
+ 25.945028211535405
+ ],
+ [
+ -80.64979342163308,
+ 25.945028211535405
+ ],
+ [
+ -80.66973708105647,
+ 25.913702706113714
+ ],
+ [
+ -80.64979342163308,
+ 25.882377200692023
+ ],
+ [
+ -80.60990610278633,
+ 25.882377200692023
+ ],
+ [
+ -80.58996244336294,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 25.9763537169571
+ ],
+ [
+ -80.60990610278633,
+ 26.00767922237879
+ ],
+ [
+ -80.64979342163308,
+ 26.00767922237879
+ ],
+ [
+ -80.66973708105647,
+ 25.9763537169571
+ ],
+ [
+ -80.64979342163308,
+ 25.94502821153541
+ ],
+ [
+ -80.60990610278633,
+ 25.94502821153541
+ ],
+ [
+ -80.58996244336294,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 26.039004727800485
+ ],
+ [
+ -80.60990610278633,
+ 26.070330233222176
+ ],
+ [
+ -80.64979342163308,
+ 26.070330233222176
+ ],
+ [
+ -80.66973708105647,
+ 26.039004727800485
+ ],
+ [
+ -80.64979342163308,
+ 26.007679222378794
+ ],
+ [
+ -80.60990610278633,
+ 26.007679222378794
+ ],
+ [
+ -80.58996244336294,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 26.10165573864387
+ ],
+ [
+ -80.60990610278633,
+ 26.13298124406556
+ ],
+ [
+ -80.64979342163308,
+ 26.13298124406556
+ ],
+ [
+ -80.66973708105647,
+ 26.10165573864387
+ ],
+ [
+ -80.64979342163308,
+ 26.07033023322218
+ ],
+ [
+ -80.60990610278633,
+ 26.07033023322218
+ ],
+ [
+ -80.58996244336294,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ],
+ [
+ -80.60990610278633,
+ 26.195632254908944
+ ],
+ [
+ -80.64979342163308,
+ 26.195632254908944
+ ],
+ [
+ -80.66973708105647,
+ 26.164306749487253
+ ],
+ [
+ -80.64979342163308,
+ 26.13298124406556
+ ],
+ [
+ -80.60990610278633,
+ 26.13298124406556
+ ],
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 26.22695776033064
+ ],
+ [
+ -80.60990610278633,
+ 26.258283265752333
+ ],
+ [
+ -80.64979342163308,
+ 26.258283265752333
+ ],
+ [
+ -80.66973708105647,
+ 26.22695776033064
+ ],
+ [
+ -80.64979342163308,
+ 26.19563225490895
+ ],
+ [
+ -80.60990610278633,
+ 26.19563225490895
+ ],
+ [
+ -80.58996244336294,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ],
+ [
+ -80.60990610278633,
+ 26.320934276595715
+ ],
+ [
+ -80.64979342163308,
+ 26.320934276595715
+ ],
+ [
+ -80.66973708105647,
+ 26.289608771174024
+ ],
+ [
+ -80.64979342163308,
+ 26.258283265752333
+ ],
+ [
+ -80.60990610278633,
+ 26.258283265752333
+ ],
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 26.35225978201741
+ ],
+ [
+ -80.60990610278633,
+ 26.3835852874391
+ ],
+ [
+ -80.64979342163308,
+ 26.3835852874391
+ ],
+ [
+ -80.66973708105647,
+ 26.35225978201741
+ ],
+ [
+ -80.64979342163308,
+ 26.320934276595718
+ ],
+ [
+ -80.60990610278633,
+ 26.320934276595718
+ ],
+ [
+ -80.58996244336294,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.58996244336294,
+ 26.414910792860795
+ ],
+ [
+ -80.60990610278633,
+ 26.446236298282486
+ ],
+ [
+ -80.64979342163308,
+ 26.446236298282486
+ ],
+ [
+ -80.66973708105647,
+ 26.414910792860795
+ ],
+ [
+ -80.64979342163308,
+ 26.383585287439104
+ ],
+ [
+ -80.60990610278633,
+ 26.383585287439104
+ ],
+ [
+ -80.58996244336294,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 24.942612038041236
+ ],
+ [
+ -80.55007512451618,
+ 24.973937543462927
+ ],
+ [
+ -80.58996244336294,
+ 24.973937543462927
+ ],
+ [
+ -80.60990610278633,
+ 24.942612038041236
+ ],
+ [
+ -80.58996244336294,
+ 24.911286532619545
+ ],
+ [
+ -80.55007512451618,
+ 24.911286532619545
+ ],
+ [
+ -80.5301314650928,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.005263048884622
+ ],
+ [
+ -80.55007512451618,
+ 25.036588554306313
+ ],
+ [
+ -80.58996244336294,
+ 25.036588554306313
+ ],
+ [
+ -80.60990610278633,
+ 25.005263048884622
+ ],
+ [
+ -80.58996244336294,
+ 24.97393754346293
+ ],
+ [
+ -80.55007512451618,
+ 24.97393754346293
+ ],
+ [
+ -80.5301314650928,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.067914059728007
+ ],
+ [
+ -80.55007512451618,
+ 25.0992395651497
+ ],
+ [
+ -80.58996244336294,
+ 25.0992395651497
+ ],
+ [
+ -80.60990610278633,
+ 25.067914059728007
+ ],
+ [
+ -80.58996244336294,
+ 25.036588554306316
+ ],
+ [
+ -80.55007512451618,
+ 25.036588554306316
+ ],
+ [
+ -80.5301314650928,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.130565070571393
+ ],
+ [
+ -80.55007512451618,
+ 25.161890575993084
+ ],
+ [
+ -80.58996244336294,
+ 25.161890575993084
+ ],
+ [
+ -80.60990610278633,
+ 25.130565070571393
+ ],
+ [
+ -80.58996244336294,
+ 25.099239565149702
+ ],
+ [
+ -80.55007512451618,
+ 25.099239565149702
+ ],
+ [
+ -80.5301314650928,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.19321608141478
+ ],
+ [
+ -80.55007512451618,
+ 25.22454158683647
+ ],
+ [
+ -80.58996244336294,
+ 25.22454158683647
+ ],
+ [
+ -80.60990610278633,
+ 25.19321608141478
+ ],
+ [
+ -80.58996244336294,
+ 25.161890575993088
+ ],
+ [
+ -80.55007512451618,
+ 25.161890575993088
+ ],
+ [
+ -80.5301314650928,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.255867092258164
+ ],
+ [
+ -80.55007512451618,
+ 25.287192597679855
+ ],
+ [
+ -80.58996244336294,
+ 25.287192597679855
+ ],
+ [
+ -80.60990610278633,
+ 25.255867092258164
+ ],
+ [
+ -80.58996244336294,
+ 25.224541586836473
+ ],
+ [
+ -80.55007512451618,
+ 25.224541586836473
+ ],
+ [
+ -80.5301314650928,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.31851810310155
+ ],
+ [
+ -80.55007512451618,
+ 25.34984360852324
+ ],
+ [
+ -80.58996244336294,
+ 25.34984360852324
+ ],
+ [
+ -80.60990610278633,
+ 25.31851810310155
+ ],
+ [
+ -80.58996244336294,
+ 25.28719259767986
+ ],
+ [
+ -80.55007512451618,
+ 25.28719259767986
+ ],
+ [
+ -80.5301314650928,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.381169113944935
+ ],
+ [
+ -80.55007512451618,
+ 25.412494619366626
+ ],
+ [
+ -80.58996244336294,
+ 25.412494619366626
+ ],
+ [
+ -80.60990610278633,
+ 25.381169113944935
+ ],
+ [
+ -80.58996244336294,
+ 25.349843608523244
+ ],
+ [
+ -80.55007512451618,
+ 25.349843608523244
+ ],
+ [
+ -80.5301314650928,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.44382012478832
+ ],
+ [
+ -80.55007512451618,
+ 25.47514563021001
+ ],
+ [
+ -80.58996244336294,
+ 25.47514563021001
+ ],
+ [
+ -80.60990610278633,
+ 25.44382012478832
+ ],
+ [
+ -80.58996244336294,
+ 25.41249461936663
+ ],
+ [
+ -80.55007512451618,
+ 25.41249461936663
+ ],
+ [
+ -80.5301314650928,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.506471135631706
+ ],
+ [
+ -80.55007512451618,
+ 25.537796641053397
+ ],
+ [
+ -80.58996244336294,
+ 25.537796641053397
+ ],
+ [
+ -80.60990610278633,
+ 25.506471135631706
+ ],
+ [
+ -80.58996244336294,
+ 25.475145630210015
+ ],
+ [
+ -80.55007512451618,
+ 25.475145630210015
+ ],
+ [
+ -80.5301314650928,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.56912214647509
+ ],
+ [
+ -80.55007512451618,
+ 25.600447651896783
+ ],
+ [
+ -80.58996244336294,
+ 25.600447651896783
+ ],
+ [
+ -80.60990610278633,
+ 25.56912214647509
+ ],
+ [
+ -80.58996244336294,
+ 25.5377966410534
+ ],
+ [
+ -80.55007512451618,
+ 25.5377966410534
+ ],
+ [
+ -80.5301314650928,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.631773157318477
+ ],
+ [
+ -80.55007512451618,
+ 25.66309866274017
+ ],
+ [
+ -80.58996244336294,
+ 25.66309866274017
+ ],
+ [
+ -80.60990610278633,
+ 25.631773157318477
+ ],
+ [
+ -80.58996244336294,
+ 25.600447651896786
+ ],
+ [
+ -80.55007512451618,
+ 25.600447651896786
+ ],
+ [
+ -80.5301314650928,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.694424168161863
+ ],
+ [
+ -80.55007512451618,
+ 25.725749673583554
+ ],
+ [
+ -80.58996244336294,
+ 25.725749673583554
+ ],
+ [
+ -80.60990610278633,
+ 25.694424168161863
+ ],
+ [
+ -80.58996244336294,
+ 25.663098662740172
+ ],
+ [
+ -80.55007512451618,
+ 25.663098662740172
+ ],
+ [
+ -80.5301314650928,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.75707517900525
+ ],
+ [
+ -80.55007512451618,
+ 25.78840068442694
+ ],
+ [
+ -80.58996244336294,
+ 25.78840068442694
+ ],
+ [
+ -80.60990610278633,
+ 25.75707517900525
+ ],
+ [
+ -80.58996244336294,
+ 25.725749673583557
+ ],
+ [
+ -80.55007512451618,
+ 25.725749673583557
+ ],
+ [
+ -80.5301314650928,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.819726189848634
+ ],
+ [
+ -80.55007512451618,
+ 25.851051695270325
+ ],
+ [
+ -80.58996244336294,
+ 25.851051695270325
+ ],
+ [
+ -80.60990610278633,
+ 25.819726189848634
+ ],
+ [
+ -80.58996244336294,
+ 25.788400684426943
+ ],
+ [
+ -80.55007512451618,
+ 25.788400684426943
+ ],
+ [
+ -80.5301314650928,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.88237720069202
+ ],
+ [
+ -80.55007512451618,
+ 25.91370270611371
+ ],
+ [
+ -80.58996244336294,
+ 25.91370270611371
+ ],
+ [
+ -80.60990610278633,
+ 25.88237720069202
+ ],
+ [
+ -80.58996244336294,
+ 25.85105169527033
+ ],
+ [
+ -80.55007512451618,
+ 25.85105169527033
+ ],
+ [
+ -80.5301314650928,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 25.945028211535405
+ ],
+ [
+ -80.55007512451618,
+ 25.976353716957096
+ ],
+ [
+ -80.58996244336294,
+ 25.976353716957096
+ ],
+ [
+ -80.60990610278633,
+ 25.945028211535405
+ ],
+ [
+ -80.58996244336294,
+ 25.913702706113714
+ ],
+ [
+ -80.55007512451618,
+ 25.913702706113714
+ ],
+ [
+ -80.5301314650928,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 26.00767922237879
+ ],
+ [
+ -80.55007512451618,
+ 26.03900472780048
+ ],
+ [
+ -80.58996244336294,
+ 26.03900472780048
+ ],
+ [
+ -80.60990610278633,
+ 26.00767922237879
+ ],
+ [
+ -80.58996244336294,
+ 25.9763537169571
+ ],
+ [
+ -80.55007512451618,
+ 25.9763537169571
+ ],
+ [
+ -80.5301314650928,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 26.070330233222176
+ ],
+ [
+ -80.55007512451618,
+ 26.101655738643867
+ ],
+ [
+ -80.58996244336294,
+ 26.101655738643867
+ ],
+ [
+ -80.60990610278633,
+ 26.070330233222176
+ ],
+ [
+ -80.58996244336294,
+ 26.039004727800485
+ ],
+ [
+ -80.55007512451618,
+ 26.039004727800485
+ ],
+ [
+ -80.5301314650928,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 26.13298124406556
+ ],
+ [
+ -80.55007512451618,
+ 26.164306749487253
+ ],
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ],
+ [
+ -80.60990610278633,
+ 26.13298124406556
+ ],
+ [
+ -80.58996244336294,
+ 26.10165573864387
+ ],
+ [
+ -80.55007512451618,
+ 26.10165573864387
+ ],
+ [
+ -80.5301314650928,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 26.195632254908944
+ ],
+ [
+ -80.55007512451618,
+ 26.226957760330635
+ ],
+ [
+ -80.58996244336294,
+ 26.226957760330635
+ ],
+ [
+ -80.60990610278633,
+ 26.195632254908944
+ ],
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ],
+ [
+ -80.55007512451618,
+ 26.164306749487253
+ ],
+ [
+ -80.5301314650928,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 26.258283265752333
+ ],
+ [
+ -80.55007512451618,
+ 26.289608771174024
+ ],
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ],
+ [
+ -80.60990610278633,
+ 26.258283265752333
+ ],
+ [
+ -80.58996244336294,
+ 26.22695776033064
+ ],
+ [
+ -80.55007512451618,
+ 26.22695776033064
+ ],
+ [
+ -80.5301314650928,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 26.320934276595715
+ ],
+ [
+ -80.55007512451618,
+ 26.352259782017406
+ ],
+ [
+ -80.58996244336294,
+ 26.352259782017406
+ ],
+ [
+ -80.60990610278633,
+ 26.320934276595715
+ ],
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ],
+ [
+ -80.55007512451618,
+ 26.289608771174024
+ ],
+ [
+ -80.5301314650928,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 26.3835852874391
+ ],
+ [
+ -80.55007512451618,
+ 26.41491079286079
+ ],
+ [
+ -80.58996244336294,
+ 26.41491079286079
+ ],
+ [
+ -80.60990610278633,
+ 26.3835852874391
+ ],
+ [
+ -80.58996244336294,
+ 26.35225978201741
+ ],
+ [
+ -80.55007512451618,
+ 26.35225978201741
+ ],
+ [
+ -80.5301314650928,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5301314650928,
+ 26.446236298282486
+ ],
+ [
+ -80.55007512451618,
+ 26.477561803704177
+ ],
+ [
+ -80.58996244336294,
+ 26.477561803704177
+ ],
+ [
+ -80.60990610278633,
+ 26.446236298282486
+ ],
+ [
+ -80.58996244336294,
+ 26.414910792860795
+ ],
+ [
+ -80.55007512451618,
+ 26.414910792860795
+ ],
+ [
+ -80.5301314650928,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 24.911286532619545
+ ],
+ [
+ -80.49024414624603,
+ 24.942612038041236
+ ],
+ [
+ -80.53013146509278,
+ 24.942612038041236
+ ],
+ [
+ -80.55007512451617,
+ 24.911286532619545
+ ],
+ [
+ -80.53013146509278,
+ 24.879961027197854
+ ],
+ [
+ -80.49024414624603,
+ 24.879961027197854
+ ],
+ [
+ -80.47030048682264,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 24.97393754346293
+ ],
+ [
+ -80.49024414624603,
+ 25.005263048884622
+ ],
+ [
+ -80.53013146509278,
+ 25.005263048884622
+ ],
+ [
+ -80.55007512451617,
+ 24.97393754346293
+ ],
+ [
+ -80.53013146509278,
+ 24.94261203804124
+ ],
+ [
+ -80.49024414624603,
+ 24.94261203804124
+ ],
+ [
+ -80.47030048682264,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.036588554306316
+ ],
+ [
+ -80.49024414624603,
+ 25.067914059728007
+ ],
+ [
+ -80.53013146509278,
+ 25.067914059728007
+ ],
+ [
+ -80.55007512451617,
+ 25.036588554306316
+ ],
+ [
+ -80.53013146509278,
+ 25.005263048884625
+ ],
+ [
+ -80.49024414624603,
+ 25.005263048884625
+ ],
+ [
+ -80.47030048682264,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.099239565149702
+ ],
+ [
+ -80.49024414624603,
+ 25.130565070571393
+ ],
+ [
+ -80.53013146509278,
+ 25.130565070571393
+ ],
+ [
+ -80.55007512451617,
+ 25.099239565149702
+ ],
+ [
+ -80.53013146509278,
+ 25.06791405972801
+ ],
+ [
+ -80.49024414624603,
+ 25.06791405972801
+ ],
+ [
+ -80.47030048682264,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.161890575993088
+ ],
+ [
+ -80.49024414624603,
+ 25.19321608141478
+ ],
+ [
+ -80.53013146509278,
+ 25.19321608141478
+ ],
+ [
+ -80.55007512451617,
+ 25.161890575993088
+ ],
+ [
+ -80.53013146509278,
+ 25.130565070571397
+ ],
+ [
+ -80.49024414624603,
+ 25.130565070571397
+ ],
+ [
+ -80.47030048682264,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.224541586836473
+ ],
+ [
+ -80.49024414624603,
+ 25.255867092258164
+ ],
+ [
+ -80.53013146509278,
+ 25.255867092258164
+ ],
+ [
+ -80.55007512451617,
+ 25.224541586836473
+ ],
+ [
+ -80.53013146509278,
+ 25.193216081414782
+ ],
+ [
+ -80.49024414624603,
+ 25.193216081414782
+ ],
+ [
+ -80.47030048682264,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.28719259767986
+ ],
+ [
+ -80.49024414624603,
+ 25.31851810310155
+ ],
+ [
+ -80.53013146509278,
+ 25.31851810310155
+ ],
+ [
+ -80.55007512451617,
+ 25.28719259767986
+ ],
+ [
+ -80.53013146509278,
+ 25.255867092258168
+ ],
+ [
+ -80.49024414624603,
+ 25.255867092258168
+ ],
+ [
+ -80.47030048682264,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.349843608523244
+ ],
+ [
+ -80.49024414624603,
+ 25.381169113944935
+ ],
+ [
+ -80.53013146509278,
+ 25.381169113944935
+ ],
+ [
+ -80.55007512451617,
+ 25.349843608523244
+ ],
+ [
+ -80.53013146509278,
+ 25.318518103101553
+ ],
+ [
+ -80.49024414624603,
+ 25.318518103101553
+ ],
+ [
+ -80.47030048682264,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.41249461936663
+ ],
+ [
+ -80.49024414624603,
+ 25.44382012478832
+ ],
+ [
+ -80.53013146509278,
+ 25.44382012478832
+ ],
+ [
+ -80.55007512451617,
+ 25.41249461936663
+ ],
+ [
+ -80.53013146509278,
+ 25.38116911394494
+ ],
+ [
+ -80.49024414624603,
+ 25.38116911394494
+ ],
+ [
+ -80.47030048682264,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.475145630210015
+ ],
+ [
+ -80.49024414624603,
+ 25.506471135631706
+ ],
+ [
+ -80.53013146509278,
+ 25.506471135631706
+ ],
+ [
+ -80.55007512451617,
+ 25.475145630210015
+ ],
+ [
+ -80.53013146509278,
+ 25.443820124788324
+ ],
+ [
+ -80.49024414624603,
+ 25.443820124788324
+ ],
+ [
+ -80.47030048682264,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.5377966410534
+ ],
+ [
+ -80.49024414624603,
+ 25.56912214647509
+ ],
+ [
+ -80.53013146509278,
+ 25.56912214647509
+ ],
+ [
+ -80.55007512451617,
+ 25.5377966410534
+ ],
+ [
+ -80.53013146509278,
+ 25.50647113563171
+ ],
+ [
+ -80.49024414624603,
+ 25.50647113563171
+ ],
+ [
+ -80.47030048682264,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.600447651896786
+ ],
+ [
+ -80.49024414624603,
+ 25.631773157318477
+ ],
+ [
+ -80.53013146509278,
+ 25.631773157318477
+ ],
+ [
+ -80.55007512451617,
+ 25.600447651896786
+ ],
+ [
+ -80.53013146509278,
+ 25.569122146475095
+ ],
+ [
+ -80.49024414624603,
+ 25.569122146475095
+ ],
+ [
+ -80.47030048682264,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.663098662740172
+ ],
+ [
+ -80.49024414624603,
+ 25.694424168161863
+ ],
+ [
+ -80.53013146509278,
+ 25.694424168161863
+ ],
+ [
+ -80.55007512451617,
+ 25.663098662740172
+ ],
+ [
+ -80.53013146509278,
+ 25.63177315731848
+ ],
+ [
+ -80.49024414624603,
+ 25.63177315731848
+ ],
+ [
+ -80.47030048682264,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.725749673583557
+ ],
+ [
+ -80.49024414624603,
+ 25.75707517900525
+ ],
+ [
+ -80.53013146509278,
+ 25.75707517900525
+ ],
+ [
+ -80.55007512451617,
+ 25.725749673583557
+ ],
+ [
+ -80.53013146509278,
+ 25.694424168161866
+ ],
+ [
+ -80.49024414624603,
+ 25.694424168161866
+ ],
+ [
+ -80.47030048682264,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.788400684426943
+ ],
+ [
+ -80.49024414624603,
+ 25.819726189848634
+ ],
+ [
+ -80.53013146509278,
+ 25.819726189848634
+ ],
+ [
+ -80.55007512451617,
+ 25.788400684426943
+ ],
+ [
+ -80.53013146509278,
+ 25.757075179005252
+ ],
+ [
+ -80.49024414624603,
+ 25.757075179005252
+ ],
+ [
+ -80.47030048682264,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.85105169527033
+ ],
+ [
+ -80.49024414624603,
+ 25.88237720069202
+ ],
+ [
+ -80.53013146509278,
+ 25.88237720069202
+ ],
+ [
+ -80.55007512451617,
+ 25.85105169527033
+ ],
+ [
+ -80.53013146509278,
+ 25.819726189848637
+ ],
+ [
+ -80.49024414624603,
+ 25.819726189848637
+ ],
+ [
+ -80.47030048682264,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.913702706113714
+ ],
+ [
+ -80.49024414624603,
+ 25.945028211535405
+ ],
+ [
+ -80.53013146509278,
+ 25.945028211535405
+ ],
+ [
+ -80.55007512451617,
+ 25.913702706113714
+ ],
+ [
+ -80.53013146509278,
+ 25.882377200692023
+ ],
+ [
+ -80.49024414624603,
+ 25.882377200692023
+ ],
+ [
+ -80.47030048682264,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 25.9763537169571
+ ],
+ [
+ -80.49024414624603,
+ 26.00767922237879
+ ],
+ [
+ -80.53013146509278,
+ 26.00767922237879
+ ],
+ [
+ -80.55007512451617,
+ 25.9763537169571
+ ],
+ [
+ -80.53013146509278,
+ 25.94502821153541
+ ],
+ [
+ -80.49024414624603,
+ 25.94502821153541
+ ],
+ [
+ -80.47030048682264,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 26.039004727800485
+ ],
+ [
+ -80.49024414624603,
+ 26.070330233222176
+ ],
+ [
+ -80.53013146509278,
+ 26.070330233222176
+ ],
+ [
+ -80.55007512451617,
+ 26.039004727800485
+ ],
+ [
+ -80.53013146509278,
+ 26.007679222378794
+ ],
+ [
+ -80.49024414624603,
+ 26.007679222378794
+ ],
+ [
+ -80.47030048682264,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 26.10165573864387
+ ],
+ [
+ -80.49024414624603,
+ 26.13298124406556
+ ],
+ [
+ -80.53013146509278,
+ 26.13298124406556
+ ],
+ [
+ -80.55007512451617,
+ 26.10165573864387
+ ],
+ [
+ -80.53013146509278,
+ 26.07033023322218
+ ],
+ [
+ -80.49024414624603,
+ 26.07033023322218
+ ],
+ [
+ -80.47030048682264,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ],
+ [
+ -80.49024414624603,
+ 26.195632254908944
+ ],
+ [
+ -80.53013146509278,
+ 26.195632254908944
+ ],
+ [
+ -80.55007512451617,
+ 26.164306749487253
+ ],
+ [
+ -80.53013146509278,
+ 26.13298124406556
+ ],
+ [
+ -80.49024414624603,
+ 26.13298124406556
+ ],
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 26.22695776033064
+ ],
+ [
+ -80.49024414624603,
+ 26.258283265752333
+ ],
+ [
+ -80.53013146509278,
+ 26.258283265752333
+ ],
+ [
+ -80.55007512451617,
+ 26.22695776033064
+ ],
+ [
+ -80.53013146509278,
+ 26.19563225490895
+ ],
+ [
+ -80.49024414624603,
+ 26.19563225490895
+ ],
+ [
+ -80.47030048682264,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ],
+ [
+ -80.49024414624603,
+ 26.320934276595715
+ ],
+ [
+ -80.53013146509278,
+ 26.320934276595715
+ ],
+ [
+ -80.55007512451617,
+ 26.289608771174024
+ ],
+ [
+ -80.53013146509278,
+ 26.258283265752333
+ ],
+ [
+ -80.49024414624603,
+ 26.258283265752333
+ ],
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 26.35225978201741
+ ],
+ [
+ -80.49024414624603,
+ 26.3835852874391
+ ],
+ [
+ -80.53013146509278,
+ 26.3835852874391
+ ],
+ [
+ -80.55007512451617,
+ 26.35225978201741
+ ],
+ [
+ -80.53013146509278,
+ 26.320934276595718
+ ],
+ [
+ -80.49024414624603,
+ 26.320934276595718
+ ],
+ [
+ -80.47030048682264,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.47030048682264,
+ 26.414910792860795
+ ],
+ [
+ -80.49024414624603,
+ 26.446236298282486
+ ],
+ [
+ -80.53013146509278,
+ 26.446236298282486
+ ],
+ [
+ -80.55007512451617,
+ 26.414910792860795
+ ],
+ [
+ -80.53013146509278,
+ 26.383585287439104
+ ],
+ [
+ -80.49024414624603,
+ 26.383585287439104
+ ],
+ [
+ -80.47030048682264,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 24.942612038041236
+ ],
+ [
+ -80.43041316797589,
+ 24.973937543462927
+ ],
+ [
+ -80.47030048682264,
+ 24.973937543462927
+ ],
+ [
+ -80.49024414624603,
+ 24.942612038041236
+ ],
+ [
+ -80.47030048682264,
+ 24.911286532619545
+ ],
+ [
+ -80.43041316797589,
+ 24.911286532619545
+ ],
+ [
+ -80.4104695085525,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.005263048884622
+ ],
+ [
+ -80.43041316797589,
+ 25.036588554306313
+ ],
+ [
+ -80.47030048682264,
+ 25.036588554306313
+ ],
+ [
+ -80.49024414624603,
+ 25.005263048884622
+ ],
+ [
+ -80.47030048682264,
+ 24.97393754346293
+ ],
+ [
+ -80.43041316797589,
+ 24.97393754346293
+ ],
+ [
+ -80.4104695085525,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.067914059728007
+ ],
+ [
+ -80.43041316797589,
+ 25.0992395651497
+ ],
+ [
+ -80.47030048682264,
+ 25.0992395651497
+ ],
+ [
+ -80.49024414624603,
+ 25.067914059728007
+ ],
+ [
+ -80.47030048682264,
+ 25.036588554306316
+ ],
+ [
+ -80.43041316797589,
+ 25.036588554306316
+ ],
+ [
+ -80.4104695085525,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.130565070571393
+ ],
+ [
+ -80.43041316797589,
+ 25.161890575993084
+ ],
+ [
+ -80.47030048682264,
+ 25.161890575993084
+ ],
+ [
+ -80.49024414624603,
+ 25.130565070571393
+ ],
+ [
+ -80.47030048682264,
+ 25.099239565149702
+ ],
+ [
+ -80.43041316797589,
+ 25.099239565149702
+ ],
+ [
+ -80.4104695085525,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.19321608141478
+ ],
+ [
+ -80.43041316797589,
+ 25.22454158683647
+ ],
+ [
+ -80.47030048682264,
+ 25.22454158683647
+ ],
+ [
+ -80.49024414624603,
+ 25.19321608141478
+ ],
+ [
+ -80.47030048682264,
+ 25.161890575993088
+ ],
+ [
+ -80.43041316797589,
+ 25.161890575993088
+ ],
+ [
+ -80.4104695085525,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.255867092258164
+ ],
+ [
+ -80.43041316797589,
+ 25.287192597679855
+ ],
+ [
+ -80.47030048682264,
+ 25.287192597679855
+ ],
+ [
+ -80.49024414624603,
+ 25.255867092258164
+ ],
+ [
+ -80.47030048682264,
+ 25.224541586836473
+ ],
+ [
+ -80.43041316797589,
+ 25.224541586836473
+ ],
+ [
+ -80.4104695085525,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.31851810310155
+ ],
+ [
+ -80.43041316797589,
+ 25.34984360852324
+ ],
+ [
+ -80.47030048682264,
+ 25.34984360852324
+ ],
+ [
+ -80.49024414624603,
+ 25.31851810310155
+ ],
+ [
+ -80.47030048682264,
+ 25.28719259767986
+ ],
+ [
+ -80.43041316797589,
+ 25.28719259767986
+ ],
+ [
+ -80.4104695085525,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.381169113944935
+ ],
+ [
+ -80.43041316797589,
+ 25.412494619366626
+ ],
+ [
+ -80.47030048682264,
+ 25.412494619366626
+ ],
+ [
+ -80.49024414624603,
+ 25.381169113944935
+ ],
+ [
+ -80.47030048682264,
+ 25.349843608523244
+ ],
+ [
+ -80.43041316797589,
+ 25.349843608523244
+ ],
+ [
+ -80.4104695085525,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.44382012478832
+ ],
+ [
+ -80.43041316797589,
+ 25.47514563021001
+ ],
+ [
+ -80.47030048682264,
+ 25.47514563021001
+ ],
+ [
+ -80.49024414624603,
+ 25.44382012478832
+ ],
+ [
+ -80.47030048682264,
+ 25.41249461936663
+ ],
+ [
+ -80.43041316797589,
+ 25.41249461936663
+ ],
+ [
+ -80.4104695085525,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.506471135631706
+ ],
+ [
+ -80.43041316797589,
+ 25.537796641053397
+ ],
+ [
+ -80.47030048682264,
+ 25.537796641053397
+ ],
+ [
+ -80.49024414624603,
+ 25.506471135631706
+ ],
+ [
+ -80.47030048682264,
+ 25.475145630210015
+ ],
+ [
+ -80.43041316797589,
+ 25.475145630210015
+ ],
+ [
+ -80.4104695085525,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.56912214647509
+ ],
+ [
+ -80.43041316797589,
+ 25.600447651896783
+ ],
+ [
+ -80.47030048682264,
+ 25.600447651896783
+ ],
+ [
+ -80.49024414624603,
+ 25.56912214647509
+ ],
+ [
+ -80.47030048682264,
+ 25.5377966410534
+ ],
+ [
+ -80.43041316797589,
+ 25.5377966410534
+ ],
+ [
+ -80.4104695085525,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.631773157318477
+ ],
+ [
+ -80.43041316797589,
+ 25.66309866274017
+ ],
+ [
+ -80.47030048682264,
+ 25.66309866274017
+ ],
+ [
+ -80.49024414624603,
+ 25.631773157318477
+ ],
+ [
+ -80.47030048682264,
+ 25.600447651896786
+ ],
+ [
+ -80.43041316797589,
+ 25.600447651896786
+ ],
+ [
+ -80.4104695085525,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.694424168161863
+ ],
+ [
+ -80.43041316797589,
+ 25.725749673583554
+ ],
+ [
+ -80.47030048682264,
+ 25.725749673583554
+ ],
+ [
+ -80.49024414624603,
+ 25.694424168161863
+ ],
+ [
+ -80.47030048682264,
+ 25.663098662740172
+ ],
+ [
+ -80.43041316797589,
+ 25.663098662740172
+ ],
+ [
+ -80.4104695085525,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.75707517900525
+ ],
+ [
+ -80.43041316797589,
+ 25.78840068442694
+ ],
+ [
+ -80.47030048682264,
+ 25.78840068442694
+ ],
+ [
+ -80.49024414624603,
+ 25.75707517900525
+ ],
+ [
+ -80.47030048682264,
+ 25.725749673583557
+ ],
+ [
+ -80.43041316797589,
+ 25.725749673583557
+ ],
+ [
+ -80.4104695085525,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.819726189848634
+ ],
+ [
+ -80.43041316797589,
+ 25.851051695270325
+ ],
+ [
+ -80.47030048682264,
+ 25.851051695270325
+ ],
+ [
+ -80.49024414624603,
+ 25.819726189848634
+ ],
+ [
+ -80.47030048682264,
+ 25.788400684426943
+ ],
+ [
+ -80.43041316797589,
+ 25.788400684426943
+ ],
+ [
+ -80.4104695085525,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.88237720069202
+ ],
+ [
+ -80.43041316797589,
+ 25.91370270611371
+ ],
+ [
+ -80.47030048682264,
+ 25.91370270611371
+ ],
+ [
+ -80.49024414624603,
+ 25.88237720069202
+ ],
+ [
+ -80.47030048682264,
+ 25.85105169527033
+ ],
+ [
+ -80.43041316797589,
+ 25.85105169527033
+ ],
+ [
+ -80.4104695085525,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 25.945028211535405
+ ],
+ [
+ -80.43041316797589,
+ 25.976353716957096
+ ],
+ [
+ -80.47030048682264,
+ 25.976353716957096
+ ],
+ [
+ -80.49024414624603,
+ 25.945028211535405
+ ],
+ [
+ -80.47030048682264,
+ 25.913702706113714
+ ],
+ [
+ -80.43041316797589,
+ 25.913702706113714
+ ],
+ [
+ -80.4104695085525,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 26.00767922237879
+ ],
+ [
+ -80.43041316797589,
+ 26.03900472780048
+ ],
+ [
+ -80.47030048682264,
+ 26.03900472780048
+ ],
+ [
+ -80.49024414624603,
+ 26.00767922237879
+ ],
+ [
+ -80.47030048682264,
+ 25.9763537169571
+ ],
+ [
+ -80.43041316797589,
+ 25.9763537169571
+ ],
+ [
+ -80.4104695085525,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 26.070330233222176
+ ],
+ [
+ -80.43041316797589,
+ 26.101655738643867
+ ],
+ [
+ -80.47030048682264,
+ 26.101655738643867
+ ],
+ [
+ -80.49024414624603,
+ 26.070330233222176
+ ],
+ [
+ -80.47030048682264,
+ 26.039004727800485
+ ],
+ [
+ -80.43041316797589,
+ 26.039004727800485
+ ],
+ [
+ -80.4104695085525,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ],
+ [
+ -80.43041316797589,
+ 26.164306749487253
+ ],
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ],
+ [
+ -80.49024414624603,
+ 26.13298124406556
+ ],
+ [
+ -80.47030048682264,
+ 26.10165573864387
+ ],
+ [
+ -80.43041316797589,
+ 26.10165573864387
+ ],
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 26.195632254908944
+ ],
+ [
+ -80.43041316797589,
+ 26.226957760330635
+ ],
+ [
+ -80.47030048682264,
+ 26.226957760330635
+ ],
+ [
+ -80.49024414624603,
+ 26.195632254908944
+ ],
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ],
+ [
+ -80.43041316797589,
+ 26.164306749487253
+ ],
+ [
+ -80.4104695085525,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ],
+ [
+ -80.43041316797589,
+ 26.289608771174024
+ ],
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ],
+ [
+ -80.49024414624603,
+ 26.258283265752333
+ ],
+ [
+ -80.47030048682264,
+ 26.22695776033064
+ ],
+ [
+ -80.43041316797589,
+ 26.22695776033064
+ ],
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 26.320934276595715
+ ],
+ [
+ -80.43041316797589,
+ 26.352259782017406
+ ],
+ [
+ -80.47030048682264,
+ 26.352259782017406
+ ],
+ [
+ -80.49024414624603,
+ 26.320934276595715
+ ],
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ],
+ [
+ -80.43041316797589,
+ 26.289608771174024
+ ],
+ [
+ -80.4104695085525,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 26.3835852874391
+ ],
+ [
+ -80.43041316797589,
+ 26.41491079286079
+ ],
+ [
+ -80.47030048682264,
+ 26.41491079286079
+ ],
+ [
+ -80.49024414624603,
+ 26.3835852874391
+ ],
+ [
+ -80.47030048682264,
+ 26.35225978201741
+ ],
+ [
+ -80.43041316797589,
+ 26.35225978201741
+ ],
+ [
+ -80.4104695085525,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.4104695085525,
+ 26.446236298282486
+ ],
+ [
+ -80.43041316797589,
+ 26.477561803704177
+ ],
+ [
+ -80.47030048682264,
+ 26.477561803704177
+ ],
+ [
+ -80.49024414624603,
+ 26.446236298282486
+ ],
+ [
+ -80.47030048682264,
+ 26.414910792860795
+ ],
+ [
+ -80.43041316797589,
+ 26.414910792860795
+ ],
+ [
+ -80.4104695085525,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 24.911286532619545
+ ],
+ [
+ -80.37058218970574,
+ 24.942612038041236
+ ],
+ [
+ -80.4104695085525,
+ 24.942612038041236
+ ],
+ [
+ -80.43041316797589,
+ 24.911286532619545
+ ],
+ [
+ -80.4104695085525,
+ 24.879961027197854
+ ],
+ [
+ -80.37058218970574,
+ 24.879961027197854
+ ],
+ [
+ -80.35063853028235,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 24.97393754346293
+ ],
+ [
+ -80.37058218970574,
+ 25.005263048884622
+ ],
+ [
+ -80.4104695085525,
+ 25.005263048884622
+ ],
+ [
+ -80.43041316797589,
+ 24.97393754346293
+ ],
+ [
+ -80.4104695085525,
+ 24.94261203804124
+ ],
+ [
+ -80.37058218970574,
+ 24.94261203804124
+ ],
+ [
+ -80.35063853028235,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.036588554306316
+ ],
+ [
+ -80.37058218970574,
+ 25.067914059728007
+ ],
+ [
+ -80.4104695085525,
+ 25.067914059728007
+ ],
+ [
+ -80.43041316797589,
+ 25.036588554306316
+ ],
+ [
+ -80.4104695085525,
+ 25.005263048884625
+ ],
+ [
+ -80.37058218970574,
+ 25.005263048884625
+ ],
+ [
+ -80.35063853028235,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.099239565149702
+ ],
+ [
+ -80.37058218970574,
+ 25.130565070571393
+ ],
+ [
+ -80.4104695085525,
+ 25.130565070571393
+ ],
+ [
+ -80.43041316797589,
+ 25.099239565149702
+ ],
+ [
+ -80.4104695085525,
+ 25.06791405972801
+ ],
+ [
+ -80.37058218970574,
+ 25.06791405972801
+ ],
+ [
+ -80.35063853028235,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.161890575993088
+ ],
+ [
+ -80.37058218970574,
+ 25.19321608141478
+ ],
+ [
+ -80.4104695085525,
+ 25.19321608141478
+ ],
+ [
+ -80.43041316797589,
+ 25.161890575993088
+ ],
+ [
+ -80.4104695085525,
+ 25.130565070571397
+ ],
+ [
+ -80.37058218970574,
+ 25.130565070571397
+ ],
+ [
+ -80.35063853028235,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.224541586836473
+ ],
+ [
+ -80.37058218970574,
+ 25.255867092258164
+ ],
+ [
+ -80.4104695085525,
+ 25.255867092258164
+ ],
+ [
+ -80.43041316797589,
+ 25.224541586836473
+ ],
+ [
+ -80.4104695085525,
+ 25.193216081414782
+ ],
+ [
+ -80.37058218970574,
+ 25.193216081414782
+ ],
+ [
+ -80.35063853028235,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.28719259767986
+ ],
+ [
+ -80.37058218970574,
+ 25.31851810310155
+ ],
+ [
+ -80.4104695085525,
+ 25.31851810310155
+ ],
+ [
+ -80.43041316797589,
+ 25.28719259767986
+ ],
+ [
+ -80.4104695085525,
+ 25.255867092258168
+ ],
+ [
+ -80.37058218970574,
+ 25.255867092258168
+ ],
+ [
+ -80.35063853028235,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.349843608523244
+ ],
+ [
+ -80.37058218970574,
+ 25.381169113944935
+ ],
+ [
+ -80.4104695085525,
+ 25.381169113944935
+ ],
+ [
+ -80.43041316797589,
+ 25.349843608523244
+ ],
+ [
+ -80.4104695085525,
+ 25.318518103101553
+ ],
+ [
+ -80.37058218970574,
+ 25.318518103101553
+ ],
+ [
+ -80.35063853028235,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.41249461936663
+ ],
+ [
+ -80.37058218970574,
+ 25.44382012478832
+ ],
+ [
+ -80.4104695085525,
+ 25.44382012478832
+ ],
+ [
+ -80.43041316797589,
+ 25.41249461936663
+ ],
+ [
+ -80.4104695085525,
+ 25.38116911394494
+ ],
+ [
+ -80.37058218970574,
+ 25.38116911394494
+ ],
+ [
+ -80.35063853028235,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.475145630210015
+ ],
+ [
+ -80.37058218970574,
+ 25.506471135631706
+ ],
+ [
+ -80.4104695085525,
+ 25.506471135631706
+ ],
+ [
+ -80.43041316797589,
+ 25.475145630210015
+ ],
+ [
+ -80.4104695085525,
+ 25.443820124788324
+ ],
+ [
+ -80.37058218970574,
+ 25.443820124788324
+ ],
+ [
+ -80.35063853028235,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.5377966410534
+ ],
+ [
+ -80.37058218970574,
+ 25.56912214647509
+ ],
+ [
+ -80.4104695085525,
+ 25.56912214647509
+ ],
+ [
+ -80.43041316797589,
+ 25.5377966410534
+ ],
+ [
+ -80.4104695085525,
+ 25.50647113563171
+ ],
+ [
+ -80.37058218970574,
+ 25.50647113563171
+ ],
+ [
+ -80.35063853028235,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.600447651896786
+ ],
+ [
+ -80.37058218970574,
+ 25.631773157318477
+ ],
+ [
+ -80.4104695085525,
+ 25.631773157318477
+ ],
+ [
+ -80.43041316797589,
+ 25.600447651896786
+ ],
+ [
+ -80.4104695085525,
+ 25.569122146475095
+ ],
+ [
+ -80.37058218970574,
+ 25.569122146475095
+ ],
+ [
+ -80.35063853028235,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.663098662740172
+ ],
+ [
+ -80.37058218970574,
+ 25.694424168161863
+ ],
+ [
+ -80.4104695085525,
+ 25.694424168161863
+ ],
+ [
+ -80.43041316797589,
+ 25.663098662740172
+ ],
+ [
+ -80.4104695085525,
+ 25.63177315731848
+ ],
+ [
+ -80.37058218970574,
+ 25.63177315731848
+ ],
+ [
+ -80.35063853028235,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.725749673583557
+ ],
+ [
+ -80.37058218970574,
+ 25.75707517900525
+ ],
+ [
+ -80.4104695085525,
+ 25.75707517900525
+ ],
+ [
+ -80.43041316797589,
+ 25.725749673583557
+ ],
+ [
+ -80.4104695085525,
+ 25.694424168161866
+ ],
+ [
+ -80.37058218970574,
+ 25.694424168161866
+ ],
+ [
+ -80.35063853028235,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.788400684426943
+ ],
+ [
+ -80.37058218970574,
+ 25.819726189848634
+ ],
+ [
+ -80.4104695085525,
+ 25.819726189848634
+ ],
+ [
+ -80.43041316797589,
+ 25.788400684426943
+ ],
+ [
+ -80.4104695085525,
+ 25.757075179005252
+ ],
+ [
+ -80.37058218970574,
+ 25.757075179005252
+ ],
+ [
+ -80.35063853028235,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.85105169527033
+ ],
+ [
+ -80.37058218970574,
+ 25.88237720069202
+ ],
+ [
+ -80.4104695085525,
+ 25.88237720069202
+ ],
+ [
+ -80.43041316797589,
+ 25.85105169527033
+ ],
+ [
+ -80.4104695085525,
+ 25.819726189848637
+ ],
+ [
+ -80.37058218970574,
+ 25.819726189848637
+ ],
+ [
+ -80.35063853028235,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.913702706113714
+ ],
+ [
+ -80.37058218970574,
+ 25.945028211535405
+ ],
+ [
+ -80.4104695085525,
+ 25.945028211535405
+ ],
+ [
+ -80.43041316797589,
+ 25.913702706113714
+ ],
+ [
+ -80.4104695085525,
+ 25.882377200692023
+ ],
+ [
+ -80.37058218970574,
+ 25.882377200692023
+ ],
+ [
+ -80.35063853028235,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 25.9763537169571
+ ],
+ [
+ -80.37058218970574,
+ 26.00767922237879
+ ],
+ [
+ -80.4104695085525,
+ 26.00767922237879
+ ],
+ [
+ -80.43041316797589,
+ 25.9763537169571
+ ],
+ [
+ -80.4104695085525,
+ 25.94502821153541
+ ],
+ [
+ -80.37058218970574,
+ 25.94502821153541
+ ],
+ [
+ -80.35063853028235,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 26.039004727800485
+ ],
+ [
+ -80.37058218970574,
+ 26.070330233222176
+ ],
+ [
+ -80.4104695085525,
+ 26.070330233222176
+ ],
+ [
+ -80.43041316797589,
+ 26.039004727800485
+ ],
+ [
+ -80.4104695085525,
+ 26.007679222378794
+ ],
+ [
+ -80.37058218970574,
+ 26.007679222378794
+ ],
+ [
+ -80.35063853028235,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 26.10165573864387
+ ],
+ [
+ -80.37058218970574,
+ 26.13298124406556
+ ],
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ],
+ [
+ -80.43041316797589,
+ 26.10165573864387
+ ],
+ [
+ -80.4104695085525,
+ 26.07033023322218
+ ],
+ [
+ -80.37058218970574,
+ 26.07033023322218
+ ],
+ [
+ -80.35063853028235,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 26.164306749487253
+ ],
+ [
+ -80.37058218970574,
+ 26.195632254908944
+ ],
+ [
+ -80.4104695085525,
+ 26.195632254908944
+ ],
+ [
+ -80.43041316797589,
+ 26.164306749487253
+ ],
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ],
+ [
+ -80.37058218970574,
+ 26.13298124406556
+ ],
+ [
+ -80.35063853028235,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 26.22695776033064
+ ],
+ [
+ -80.37058218970574,
+ 26.258283265752333
+ ],
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ],
+ [
+ -80.43041316797589,
+ 26.22695776033064
+ ],
+ [
+ -80.4104695085525,
+ 26.19563225490895
+ ],
+ [
+ -80.37058218970574,
+ 26.19563225490895
+ ],
+ [
+ -80.35063853028235,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 26.289608771174024
+ ],
+ [
+ -80.37058218970574,
+ 26.320934276595715
+ ],
+ [
+ -80.4104695085525,
+ 26.320934276595715
+ ],
+ [
+ -80.43041316797589,
+ 26.289608771174024
+ ],
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ],
+ [
+ -80.37058218970574,
+ 26.258283265752333
+ ],
+ [
+ -80.35063853028235,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 26.35225978201741
+ ],
+ [
+ -80.37058218970574,
+ 26.3835852874391
+ ],
+ [
+ -80.4104695085525,
+ 26.3835852874391
+ ],
+ [
+ -80.43041316797589,
+ 26.35225978201741
+ ],
+ [
+ -80.4104695085525,
+ 26.320934276595718
+ ],
+ [
+ -80.37058218970574,
+ 26.320934276595718
+ ],
+ [
+ -80.35063853028235,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.35063853028235,
+ 26.414910792860795
+ ],
+ [
+ -80.37058218970574,
+ 26.446236298282486
+ ],
+ [
+ -80.4104695085525,
+ 26.446236298282486
+ ],
+ [
+ -80.43041316797589,
+ 26.414910792860795
+ ],
+ [
+ -80.4104695085525,
+ 26.383585287439104
+ ],
+ [
+ -80.37058218970574,
+ 26.383585287439104
+ ],
+ [
+ -80.35063853028235,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 24.942612038041236
+ ],
+ [
+ -80.31075121143559,
+ 24.973937543462927
+ ],
+ [
+ -80.35063853028234,
+ 24.973937543462927
+ ],
+ [
+ -80.37058218970573,
+ 24.942612038041236
+ ],
+ [
+ -80.35063853028234,
+ 24.911286532619545
+ ],
+ [
+ -80.31075121143559,
+ 24.911286532619545
+ ],
+ [
+ -80.2908075520122,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.005263048884622
+ ],
+ [
+ -80.31075121143559,
+ 25.036588554306313
+ ],
+ [
+ -80.35063853028234,
+ 25.036588554306313
+ ],
+ [
+ -80.37058218970573,
+ 25.005263048884622
+ ],
+ [
+ -80.35063853028234,
+ 24.97393754346293
+ ],
+ [
+ -80.31075121143559,
+ 24.97393754346293
+ ],
+ [
+ -80.2908075520122,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.067914059728007
+ ],
+ [
+ -80.31075121143559,
+ 25.0992395651497
+ ],
+ [
+ -80.35063853028234,
+ 25.0992395651497
+ ],
+ [
+ -80.37058218970573,
+ 25.067914059728007
+ ],
+ [
+ -80.35063853028234,
+ 25.036588554306316
+ ],
+ [
+ -80.31075121143559,
+ 25.036588554306316
+ ],
+ [
+ -80.2908075520122,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.130565070571393
+ ],
+ [
+ -80.31075121143559,
+ 25.161890575993084
+ ],
+ [
+ -80.35063853028234,
+ 25.161890575993084
+ ],
+ [
+ -80.37058218970573,
+ 25.130565070571393
+ ],
+ [
+ -80.35063853028234,
+ 25.099239565149702
+ ],
+ [
+ -80.31075121143559,
+ 25.099239565149702
+ ],
+ [
+ -80.2908075520122,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.19321608141478
+ ],
+ [
+ -80.31075121143559,
+ 25.22454158683647
+ ],
+ [
+ -80.35063853028234,
+ 25.22454158683647
+ ],
+ [
+ -80.37058218970573,
+ 25.19321608141478
+ ],
+ [
+ -80.35063853028234,
+ 25.161890575993088
+ ],
+ [
+ -80.31075121143559,
+ 25.161890575993088
+ ],
+ [
+ -80.2908075520122,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.255867092258164
+ ],
+ [
+ -80.31075121143559,
+ 25.287192597679855
+ ],
+ [
+ -80.35063853028234,
+ 25.287192597679855
+ ],
+ [
+ -80.37058218970573,
+ 25.255867092258164
+ ],
+ [
+ -80.35063853028234,
+ 25.224541586836473
+ ],
+ [
+ -80.31075121143559,
+ 25.224541586836473
+ ],
+ [
+ -80.2908075520122,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.31851810310155
+ ],
+ [
+ -80.31075121143559,
+ 25.34984360852324
+ ],
+ [
+ -80.35063853028234,
+ 25.34984360852324
+ ],
+ [
+ -80.37058218970573,
+ 25.31851810310155
+ ],
+ [
+ -80.35063853028234,
+ 25.28719259767986
+ ],
+ [
+ -80.31075121143559,
+ 25.28719259767986
+ ],
+ [
+ -80.2908075520122,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.381169113944935
+ ],
+ [
+ -80.31075121143559,
+ 25.412494619366626
+ ],
+ [
+ -80.35063853028234,
+ 25.412494619366626
+ ],
+ [
+ -80.37058218970573,
+ 25.381169113944935
+ ],
+ [
+ -80.35063853028234,
+ 25.349843608523244
+ ],
+ [
+ -80.31075121143559,
+ 25.349843608523244
+ ],
+ [
+ -80.2908075520122,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.44382012478832
+ ],
+ [
+ -80.31075121143559,
+ 25.47514563021001
+ ],
+ [
+ -80.35063853028234,
+ 25.47514563021001
+ ],
+ [
+ -80.37058218970573,
+ 25.44382012478832
+ ],
+ [
+ -80.35063853028234,
+ 25.41249461936663
+ ],
+ [
+ -80.31075121143559,
+ 25.41249461936663
+ ],
+ [
+ -80.2908075520122,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.506471135631706
+ ],
+ [
+ -80.31075121143559,
+ 25.537796641053397
+ ],
+ [
+ -80.35063853028234,
+ 25.537796641053397
+ ],
+ [
+ -80.37058218970573,
+ 25.506471135631706
+ ],
+ [
+ -80.35063853028234,
+ 25.475145630210015
+ ],
+ [
+ -80.31075121143559,
+ 25.475145630210015
+ ],
+ [
+ -80.2908075520122,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.56912214647509
+ ],
+ [
+ -80.31075121143559,
+ 25.600447651896783
+ ],
+ [
+ -80.35063853028234,
+ 25.600447651896783
+ ],
+ [
+ -80.37058218970573,
+ 25.56912214647509
+ ],
+ [
+ -80.35063853028234,
+ 25.5377966410534
+ ],
+ [
+ -80.31075121143559,
+ 25.5377966410534
+ ],
+ [
+ -80.2908075520122,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.631773157318477
+ ],
+ [
+ -80.31075121143559,
+ 25.66309866274017
+ ],
+ [
+ -80.35063853028234,
+ 25.66309866274017
+ ],
+ [
+ -80.37058218970573,
+ 25.631773157318477
+ ],
+ [
+ -80.35063853028234,
+ 25.600447651896786
+ ],
+ [
+ -80.31075121143559,
+ 25.600447651896786
+ ],
+ [
+ -80.2908075520122,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.694424168161863
+ ],
+ [
+ -80.31075121143559,
+ 25.725749673583554
+ ],
+ [
+ -80.35063853028234,
+ 25.725749673583554
+ ],
+ [
+ -80.37058218970573,
+ 25.694424168161863
+ ],
+ [
+ -80.35063853028234,
+ 25.663098662740172
+ ],
+ [
+ -80.31075121143559,
+ 25.663098662740172
+ ],
+ [
+ -80.2908075520122,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.75707517900525
+ ],
+ [
+ -80.31075121143559,
+ 25.78840068442694
+ ],
+ [
+ -80.35063853028234,
+ 25.78840068442694
+ ],
+ [
+ -80.37058218970573,
+ 25.75707517900525
+ ],
+ [
+ -80.35063853028234,
+ 25.725749673583557
+ ],
+ [
+ -80.31075121143559,
+ 25.725749673583557
+ ],
+ [
+ -80.2908075520122,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.819726189848634
+ ],
+ [
+ -80.31075121143559,
+ 25.851051695270325
+ ],
+ [
+ -80.35063853028234,
+ 25.851051695270325
+ ],
+ [
+ -80.37058218970573,
+ 25.819726189848634
+ ],
+ [
+ -80.35063853028234,
+ 25.788400684426943
+ ],
+ [
+ -80.31075121143559,
+ 25.788400684426943
+ ],
+ [
+ -80.2908075520122,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.88237720069202
+ ],
+ [
+ -80.31075121143559,
+ 25.91370270611371
+ ],
+ [
+ -80.35063853028234,
+ 25.91370270611371
+ ],
+ [
+ -80.37058218970573,
+ 25.88237720069202
+ ],
+ [
+ -80.35063853028234,
+ 25.85105169527033
+ ],
+ [
+ -80.31075121143559,
+ 25.85105169527033
+ ],
+ [
+ -80.2908075520122,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 25.945028211535405
+ ],
+ [
+ -80.31075121143559,
+ 25.976353716957096
+ ],
+ [
+ -80.35063853028234,
+ 25.976353716957096
+ ],
+ [
+ -80.37058218970573,
+ 25.945028211535405
+ ],
+ [
+ -80.35063853028234,
+ 25.913702706113714
+ ],
+ [
+ -80.31075121143559,
+ 25.913702706113714
+ ],
+ [
+ -80.2908075520122,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 26.00767922237879
+ ],
+ [
+ -80.31075121143559,
+ 26.03900472780048
+ ],
+ [
+ -80.35063853028234,
+ 26.03900472780048
+ ],
+ [
+ -80.37058218970573,
+ 26.00767922237879
+ ],
+ [
+ -80.35063853028234,
+ 25.9763537169571
+ ],
+ [
+ -80.31075121143559,
+ 25.9763537169571
+ ],
+ [
+ -80.2908075520122,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 26.070330233222176
+ ],
+ [
+ -80.31075121143559,
+ 26.101655738643867
+ ],
+ [
+ -80.35063853028234,
+ 26.101655738643867
+ ],
+ [
+ -80.37058218970573,
+ 26.070330233222176
+ ],
+ [
+ -80.35063853028234,
+ 26.039004727800485
+ ],
+ [
+ -80.31075121143559,
+ 26.039004727800485
+ ],
+ [
+ -80.2908075520122,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ],
+ [
+ -80.31075121143559,
+ 26.164306749487253
+ ],
+ [
+ -80.35063853028234,
+ 26.164306749487253
+ ],
+ [
+ -80.37058218970573,
+ 26.13298124406556
+ ],
+ [
+ -80.35063853028234,
+ 26.10165573864387
+ ],
+ [
+ -80.31075121143559,
+ 26.10165573864387
+ ],
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 26.195632254908944
+ ],
+ [
+ -80.31075121143559,
+ 26.226957760330635
+ ],
+ [
+ -80.35063853028234,
+ 26.226957760330635
+ ],
+ [
+ -80.37058218970573,
+ 26.195632254908944
+ ],
+ [
+ -80.35063853028234,
+ 26.164306749487253
+ ],
+ [
+ -80.31075121143559,
+ 26.164306749487253
+ ],
+ [
+ -80.2908075520122,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ],
+ [
+ -80.31075121143559,
+ 26.289608771174024
+ ],
+ [
+ -80.35063853028234,
+ 26.289608771174024
+ ],
+ [
+ -80.37058218970573,
+ 26.258283265752333
+ ],
+ [
+ -80.35063853028234,
+ 26.22695776033064
+ ],
+ [
+ -80.31075121143559,
+ 26.22695776033064
+ ],
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 26.320934276595715
+ ],
+ [
+ -80.31075121143559,
+ 26.352259782017406
+ ],
+ [
+ -80.35063853028234,
+ 26.352259782017406
+ ],
+ [
+ -80.37058218970573,
+ 26.320934276595715
+ ],
+ [
+ -80.35063853028234,
+ 26.289608771174024
+ ],
+ [
+ -80.31075121143559,
+ 26.289608771174024
+ ],
+ [
+ -80.2908075520122,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 26.3835852874391
+ ],
+ [
+ -80.31075121143559,
+ 26.41491079286079
+ ],
+ [
+ -80.35063853028234,
+ 26.41491079286079
+ ],
+ [
+ -80.37058218970573,
+ 26.3835852874391
+ ],
+ [
+ -80.35063853028234,
+ 26.35225978201741
+ ],
+ [
+ -80.31075121143559,
+ 26.35225978201741
+ ],
+ [
+ -80.2908075520122,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.2908075520122,
+ 26.446236298282486
+ ],
+ [
+ -80.31075121143559,
+ 26.477561803704177
+ ],
+ [
+ -80.35063853028234,
+ 26.477561803704177
+ ],
+ [
+ -80.37058218970573,
+ 26.446236298282486
+ ],
+ [
+ -80.35063853028234,
+ 26.414910792860795
+ ],
+ [
+ -80.31075121143559,
+ 26.414910792860795
+ ],
+ [
+ -80.2908075520122,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 24.911286532619545
+ ],
+ [
+ -80.25092023316544,
+ 24.942612038041236
+ ],
+ [
+ -80.2908075520122,
+ 24.942612038041236
+ ],
+ [
+ -80.31075121143559,
+ 24.911286532619545
+ ],
+ [
+ -80.2908075520122,
+ 24.879961027197854
+ ],
+ [
+ -80.25092023316544,
+ 24.879961027197854
+ ],
+ [
+ -80.23097657374205,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 24.97393754346293
+ ],
+ [
+ -80.25092023316544,
+ 25.005263048884622
+ ],
+ [
+ -80.2908075520122,
+ 25.005263048884622
+ ],
+ [
+ -80.31075121143559,
+ 24.97393754346293
+ ],
+ [
+ -80.2908075520122,
+ 24.94261203804124
+ ],
+ [
+ -80.25092023316544,
+ 24.94261203804124
+ ],
+ [
+ -80.23097657374205,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.036588554306316
+ ],
+ [
+ -80.25092023316544,
+ 25.067914059728007
+ ],
+ [
+ -80.2908075520122,
+ 25.067914059728007
+ ],
+ [
+ -80.31075121143559,
+ 25.036588554306316
+ ],
+ [
+ -80.2908075520122,
+ 25.005263048884625
+ ],
+ [
+ -80.25092023316544,
+ 25.005263048884625
+ ],
+ [
+ -80.23097657374205,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.099239565149702
+ ],
+ [
+ -80.25092023316544,
+ 25.130565070571393
+ ],
+ [
+ -80.2908075520122,
+ 25.130565070571393
+ ],
+ [
+ -80.31075121143559,
+ 25.099239565149702
+ ],
+ [
+ -80.2908075520122,
+ 25.06791405972801
+ ],
+ [
+ -80.25092023316544,
+ 25.06791405972801
+ ],
+ [
+ -80.23097657374205,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.161890575993088
+ ],
+ [
+ -80.25092023316544,
+ 25.19321608141478
+ ],
+ [
+ -80.2908075520122,
+ 25.19321608141478
+ ],
+ [
+ -80.31075121143559,
+ 25.161890575993088
+ ],
+ [
+ -80.2908075520122,
+ 25.130565070571397
+ ],
+ [
+ -80.25092023316544,
+ 25.130565070571397
+ ],
+ [
+ -80.23097657374205,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.224541586836473
+ ],
+ [
+ -80.25092023316544,
+ 25.255867092258164
+ ],
+ [
+ -80.2908075520122,
+ 25.255867092258164
+ ],
+ [
+ -80.31075121143559,
+ 25.224541586836473
+ ],
+ [
+ -80.2908075520122,
+ 25.193216081414782
+ ],
+ [
+ -80.25092023316544,
+ 25.193216081414782
+ ],
+ [
+ -80.23097657374205,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.28719259767986
+ ],
+ [
+ -80.25092023316544,
+ 25.31851810310155
+ ],
+ [
+ -80.2908075520122,
+ 25.31851810310155
+ ],
+ [
+ -80.31075121143559,
+ 25.28719259767986
+ ],
+ [
+ -80.2908075520122,
+ 25.255867092258168
+ ],
+ [
+ -80.25092023316544,
+ 25.255867092258168
+ ],
+ [
+ -80.23097657374205,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.349843608523244
+ ],
+ [
+ -80.25092023316544,
+ 25.381169113944935
+ ],
+ [
+ -80.2908075520122,
+ 25.381169113944935
+ ],
+ [
+ -80.31075121143559,
+ 25.349843608523244
+ ],
+ [
+ -80.2908075520122,
+ 25.318518103101553
+ ],
+ [
+ -80.25092023316544,
+ 25.318518103101553
+ ],
+ [
+ -80.23097657374205,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.41249461936663
+ ],
+ [
+ -80.25092023316544,
+ 25.44382012478832
+ ],
+ [
+ -80.2908075520122,
+ 25.44382012478832
+ ],
+ [
+ -80.31075121143559,
+ 25.41249461936663
+ ],
+ [
+ -80.2908075520122,
+ 25.38116911394494
+ ],
+ [
+ -80.25092023316544,
+ 25.38116911394494
+ ],
+ [
+ -80.23097657374205,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.475145630210015
+ ],
+ [
+ -80.25092023316544,
+ 25.506471135631706
+ ],
+ [
+ -80.2908075520122,
+ 25.506471135631706
+ ],
+ [
+ -80.31075121143559,
+ 25.475145630210015
+ ],
+ [
+ -80.2908075520122,
+ 25.443820124788324
+ ],
+ [
+ -80.25092023316544,
+ 25.443820124788324
+ ],
+ [
+ -80.23097657374205,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.5377966410534
+ ],
+ [
+ -80.25092023316544,
+ 25.56912214647509
+ ],
+ [
+ -80.2908075520122,
+ 25.56912214647509
+ ],
+ [
+ -80.31075121143559,
+ 25.5377966410534
+ ],
+ [
+ -80.2908075520122,
+ 25.50647113563171
+ ],
+ [
+ -80.25092023316544,
+ 25.50647113563171
+ ],
+ [
+ -80.23097657374205,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.600447651896786
+ ],
+ [
+ -80.25092023316544,
+ 25.631773157318477
+ ],
+ [
+ -80.2908075520122,
+ 25.631773157318477
+ ],
+ [
+ -80.31075121143559,
+ 25.600447651896786
+ ],
+ [
+ -80.2908075520122,
+ 25.569122146475095
+ ],
+ [
+ -80.25092023316544,
+ 25.569122146475095
+ ],
+ [
+ -80.23097657374205,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.663098662740172
+ ],
+ [
+ -80.25092023316544,
+ 25.694424168161863
+ ],
+ [
+ -80.2908075520122,
+ 25.694424168161863
+ ],
+ [
+ -80.31075121143559,
+ 25.663098662740172
+ ],
+ [
+ -80.2908075520122,
+ 25.63177315731848
+ ],
+ [
+ -80.25092023316544,
+ 25.63177315731848
+ ],
+ [
+ -80.23097657374205,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.725749673583557
+ ],
+ [
+ -80.25092023316544,
+ 25.75707517900525
+ ],
+ [
+ -80.2908075520122,
+ 25.75707517900525
+ ],
+ [
+ -80.31075121143559,
+ 25.725749673583557
+ ],
+ [
+ -80.2908075520122,
+ 25.694424168161866
+ ],
+ [
+ -80.25092023316544,
+ 25.694424168161866
+ ],
+ [
+ -80.23097657374205,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.788400684426943
+ ],
+ [
+ -80.25092023316544,
+ 25.819726189848634
+ ],
+ [
+ -80.2908075520122,
+ 25.819726189848634
+ ],
+ [
+ -80.31075121143559,
+ 25.788400684426943
+ ],
+ [
+ -80.2908075520122,
+ 25.757075179005252
+ ],
+ [
+ -80.25092023316544,
+ 25.757075179005252
+ ],
+ [
+ -80.23097657374205,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.85105169527033
+ ],
+ [
+ -80.25092023316544,
+ 25.88237720069202
+ ],
+ [
+ -80.2908075520122,
+ 25.88237720069202
+ ],
+ [
+ -80.31075121143559,
+ 25.85105169527033
+ ],
+ [
+ -80.2908075520122,
+ 25.819726189848637
+ ],
+ [
+ -80.25092023316544,
+ 25.819726189848637
+ ],
+ [
+ -80.23097657374205,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.913702706113714
+ ],
+ [
+ -80.25092023316544,
+ 25.945028211535405
+ ],
+ [
+ -80.2908075520122,
+ 25.945028211535405
+ ],
+ [
+ -80.31075121143559,
+ 25.913702706113714
+ ],
+ [
+ -80.2908075520122,
+ 25.882377200692023
+ ],
+ [
+ -80.25092023316544,
+ 25.882377200692023
+ ],
+ [
+ -80.23097657374205,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 25.9763537169571
+ ],
+ [
+ -80.25092023316544,
+ 26.00767922237879
+ ],
+ [
+ -80.2908075520122,
+ 26.00767922237879
+ ],
+ [
+ -80.31075121143559,
+ 25.9763537169571
+ ],
+ [
+ -80.2908075520122,
+ 25.94502821153541
+ ],
+ [
+ -80.25092023316544,
+ 25.94502821153541
+ ],
+ [
+ -80.23097657374205,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 26.039004727800485
+ ],
+ [
+ -80.25092023316544,
+ 26.070330233222176
+ ],
+ [
+ -80.2908075520122,
+ 26.070330233222176
+ ],
+ [
+ -80.31075121143559,
+ 26.039004727800485
+ ],
+ [
+ -80.2908075520122,
+ 26.007679222378794
+ ],
+ [
+ -80.25092023316544,
+ 26.007679222378794
+ ],
+ [
+ -80.23097657374205,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 26.10165573864387
+ ],
+ [
+ -80.25092023316544,
+ 26.13298124406556
+ ],
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ],
+ [
+ -80.31075121143559,
+ 26.10165573864387
+ ],
+ [
+ -80.2908075520122,
+ 26.07033023322218
+ ],
+ [
+ -80.25092023316544,
+ 26.07033023322218
+ ],
+ [
+ -80.23097657374205,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 26.164306749487253
+ ],
+ [
+ -80.25092023316544,
+ 26.195632254908944
+ ],
+ [
+ -80.2908075520122,
+ 26.195632254908944
+ ],
+ [
+ -80.31075121143559,
+ 26.164306749487253
+ ],
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ],
+ [
+ -80.25092023316544,
+ 26.13298124406556
+ ],
+ [
+ -80.23097657374205,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 26.22695776033064
+ ],
+ [
+ -80.25092023316544,
+ 26.258283265752333
+ ],
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ],
+ [
+ -80.31075121143559,
+ 26.22695776033064
+ ],
+ [
+ -80.2908075520122,
+ 26.19563225490895
+ ],
+ [
+ -80.25092023316544,
+ 26.19563225490895
+ ],
+ [
+ -80.23097657374205,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 26.289608771174024
+ ],
+ [
+ -80.25092023316544,
+ 26.320934276595715
+ ],
+ [
+ -80.2908075520122,
+ 26.320934276595715
+ ],
+ [
+ -80.31075121143559,
+ 26.289608771174024
+ ],
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ],
+ [
+ -80.25092023316544,
+ 26.258283265752333
+ ],
+ [
+ -80.23097657374205,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 26.35225978201741
+ ],
+ [
+ -80.25092023316544,
+ 26.3835852874391
+ ],
+ [
+ -80.2908075520122,
+ 26.3835852874391
+ ],
+ [
+ -80.31075121143559,
+ 26.35225978201741
+ ],
+ [
+ -80.2908075520122,
+ 26.320934276595718
+ ],
+ [
+ -80.25092023316544,
+ 26.320934276595718
+ ],
+ [
+ -80.23097657374205,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.23097657374205,
+ 26.414910792860795
+ ],
+ [
+ -80.25092023316544,
+ 26.446236298282486
+ ],
+ [
+ -80.2908075520122,
+ 26.446236298282486
+ ],
+ [
+ -80.31075121143559,
+ 26.414910792860795
+ ],
+ [
+ -80.2908075520122,
+ 26.383585287439104
+ ],
+ [
+ -80.25092023316544,
+ 26.383585287439104
+ ],
+ [
+ -80.23097657374205,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 24.942612038041236
+ ],
+ [
+ -80.19108925489529,
+ 24.973937543462927
+ ],
+ [
+ -80.23097657374204,
+ 24.973937543462927
+ ],
+ [
+ -80.25092023316543,
+ 24.942612038041236
+ ],
+ [
+ -80.23097657374204,
+ 24.911286532619545
+ ],
+ [
+ -80.19108925489529,
+ 24.911286532619545
+ ],
+ [
+ -80.1711455954719,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.005263048884622
+ ],
+ [
+ -80.19108925489529,
+ 25.036588554306313
+ ],
+ [
+ -80.23097657374204,
+ 25.036588554306313
+ ],
+ [
+ -80.25092023316543,
+ 25.005263048884622
+ ],
+ [
+ -80.23097657374204,
+ 24.97393754346293
+ ],
+ [
+ -80.19108925489529,
+ 24.97393754346293
+ ],
+ [
+ -80.1711455954719,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.067914059728007
+ ],
+ [
+ -80.19108925489529,
+ 25.0992395651497
+ ],
+ [
+ -80.23097657374204,
+ 25.0992395651497
+ ],
+ [
+ -80.25092023316543,
+ 25.067914059728007
+ ],
+ [
+ -80.23097657374204,
+ 25.036588554306316
+ ],
+ [
+ -80.19108925489529,
+ 25.036588554306316
+ ],
+ [
+ -80.1711455954719,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.130565070571393
+ ],
+ [
+ -80.19108925489529,
+ 25.161890575993084
+ ],
+ [
+ -80.23097657374204,
+ 25.161890575993084
+ ],
+ [
+ -80.25092023316543,
+ 25.130565070571393
+ ],
+ [
+ -80.23097657374204,
+ 25.099239565149702
+ ],
+ [
+ -80.19108925489529,
+ 25.099239565149702
+ ],
+ [
+ -80.1711455954719,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.19321608141478
+ ],
+ [
+ -80.19108925489529,
+ 25.22454158683647
+ ],
+ [
+ -80.23097657374204,
+ 25.22454158683647
+ ],
+ [
+ -80.25092023316543,
+ 25.19321608141478
+ ],
+ [
+ -80.23097657374204,
+ 25.161890575993088
+ ],
+ [
+ -80.19108925489529,
+ 25.161890575993088
+ ],
+ [
+ -80.1711455954719,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.255867092258164
+ ],
+ [
+ -80.19108925489529,
+ 25.287192597679855
+ ],
+ [
+ -80.23097657374204,
+ 25.287192597679855
+ ],
+ [
+ -80.25092023316543,
+ 25.255867092258164
+ ],
+ [
+ -80.23097657374204,
+ 25.224541586836473
+ ],
+ [
+ -80.19108925489529,
+ 25.224541586836473
+ ],
+ [
+ -80.1711455954719,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.31851810310155
+ ],
+ [
+ -80.19108925489529,
+ 25.34984360852324
+ ],
+ [
+ -80.23097657374204,
+ 25.34984360852324
+ ],
+ [
+ -80.25092023316543,
+ 25.31851810310155
+ ],
+ [
+ -80.23097657374204,
+ 25.28719259767986
+ ],
+ [
+ -80.19108925489529,
+ 25.28719259767986
+ ],
+ [
+ -80.1711455954719,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.381169113944935
+ ],
+ [
+ -80.19108925489529,
+ 25.412494619366626
+ ],
+ [
+ -80.23097657374204,
+ 25.412494619366626
+ ],
+ [
+ -80.25092023316543,
+ 25.381169113944935
+ ],
+ [
+ -80.23097657374204,
+ 25.349843608523244
+ ],
+ [
+ -80.19108925489529,
+ 25.349843608523244
+ ],
+ [
+ -80.1711455954719,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.44382012478832
+ ],
+ [
+ -80.19108925489529,
+ 25.47514563021001
+ ],
+ [
+ -80.23097657374204,
+ 25.47514563021001
+ ],
+ [
+ -80.25092023316543,
+ 25.44382012478832
+ ],
+ [
+ -80.23097657374204,
+ 25.41249461936663
+ ],
+ [
+ -80.19108925489529,
+ 25.41249461936663
+ ],
+ [
+ -80.1711455954719,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.506471135631706
+ ],
+ [
+ -80.19108925489529,
+ 25.537796641053397
+ ],
+ [
+ -80.23097657374204,
+ 25.537796641053397
+ ],
+ [
+ -80.25092023316543,
+ 25.506471135631706
+ ],
+ [
+ -80.23097657374204,
+ 25.475145630210015
+ ],
+ [
+ -80.19108925489529,
+ 25.475145630210015
+ ],
+ [
+ -80.1711455954719,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.56912214647509
+ ],
+ [
+ -80.19108925489529,
+ 25.600447651896783
+ ],
+ [
+ -80.23097657374204,
+ 25.600447651896783
+ ],
+ [
+ -80.25092023316543,
+ 25.56912214647509
+ ],
+ [
+ -80.23097657374204,
+ 25.5377966410534
+ ],
+ [
+ -80.19108925489529,
+ 25.5377966410534
+ ],
+ [
+ -80.1711455954719,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.631773157318477
+ ],
+ [
+ -80.19108925489529,
+ 25.66309866274017
+ ],
+ [
+ -80.23097657374204,
+ 25.66309866274017
+ ],
+ [
+ -80.25092023316543,
+ 25.631773157318477
+ ],
+ [
+ -80.23097657374204,
+ 25.600447651896786
+ ],
+ [
+ -80.19108925489529,
+ 25.600447651896786
+ ],
+ [
+ -80.1711455954719,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.694424168161863
+ ],
+ [
+ -80.19108925489529,
+ 25.725749673583554
+ ],
+ [
+ -80.23097657374204,
+ 25.725749673583554
+ ],
+ [
+ -80.25092023316543,
+ 25.694424168161863
+ ],
+ [
+ -80.23097657374204,
+ 25.663098662740172
+ ],
+ [
+ -80.19108925489529,
+ 25.663098662740172
+ ],
+ [
+ -80.1711455954719,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.75707517900525
+ ],
+ [
+ -80.19108925489529,
+ 25.78840068442694
+ ],
+ [
+ -80.23097657374204,
+ 25.78840068442694
+ ],
+ [
+ -80.25092023316543,
+ 25.75707517900525
+ ],
+ [
+ -80.23097657374204,
+ 25.725749673583557
+ ],
+ [
+ -80.19108925489529,
+ 25.725749673583557
+ ],
+ [
+ -80.1711455954719,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.819726189848634
+ ],
+ [
+ -80.19108925489529,
+ 25.851051695270325
+ ],
+ [
+ -80.23097657374204,
+ 25.851051695270325
+ ],
+ [
+ -80.25092023316543,
+ 25.819726189848634
+ ],
+ [
+ -80.23097657374204,
+ 25.788400684426943
+ ],
+ [
+ -80.19108925489529,
+ 25.788400684426943
+ ],
+ [
+ -80.1711455954719,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.88237720069202
+ ],
+ [
+ -80.19108925489529,
+ 25.91370270611371
+ ],
+ [
+ -80.23097657374204,
+ 25.91370270611371
+ ],
+ [
+ -80.25092023316543,
+ 25.88237720069202
+ ],
+ [
+ -80.23097657374204,
+ 25.85105169527033
+ ],
+ [
+ -80.19108925489529,
+ 25.85105169527033
+ ],
+ [
+ -80.1711455954719,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 25.945028211535405
+ ],
+ [
+ -80.19108925489529,
+ 25.976353716957096
+ ],
+ [
+ -80.23097657374204,
+ 25.976353716957096
+ ],
+ [
+ -80.25092023316543,
+ 25.945028211535405
+ ],
+ [
+ -80.23097657374204,
+ 25.913702706113714
+ ],
+ [
+ -80.19108925489529,
+ 25.913702706113714
+ ],
+ [
+ -80.1711455954719,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 26.00767922237879
+ ],
+ [
+ -80.19108925489529,
+ 26.03900472780048
+ ],
+ [
+ -80.23097657374204,
+ 26.03900472780048
+ ],
+ [
+ -80.25092023316543,
+ 26.00767922237879
+ ],
+ [
+ -80.23097657374204,
+ 25.9763537169571
+ ],
+ [
+ -80.19108925489529,
+ 25.9763537169571
+ ],
+ [
+ -80.1711455954719,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 26.070330233222176
+ ],
+ [
+ -80.19108925489529,
+ 26.101655738643867
+ ],
+ [
+ -80.23097657374204,
+ 26.101655738643867
+ ],
+ [
+ -80.25092023316543,
+ 26.070330233222176
+ ],
+ [
+ -80.23097657374204,
+ 26.039004727800485
+ ],
+ [
+ -80.19108925489529,
+ 26.039004727800485
+ ],
+ [
+ -80.1711455954719,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ],
+ [
+ -80.19108925489529,
+ 26.164306749487253
+ ],
+ [
+ -80.23097657374204,
+ 26.164306749487253
+ ],
+ [
+ -80.25092023316543,
+ 26.13298124406556
+ ],
+ [
+ -80.23097657374204,
+ 26.10165573864387
+ ],
+ [
+ -80.19108925489529,
+ 26.10165573864387
+ ],
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 26.195632254908944
+ ],
+ [
+ -80.19108925489529,
+ 26.226957760330635
+ ],
+ [
+ -80.23097657374204,
+ 26.226957760330635
+ ],
+ [
+ -80.25092023316543,
+ 26.195632254908944
+ ],
+ [
+ -80.23097657374204,
+ 26.164306749487253
+ ],
+ [
+ -80.19108925489529,
+ 26.164306749487253
+ ],
+ [
+ -80.1711455954719,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ],
+ [
+ -80.19108925489529,
+ 26.289608771174024
+ ],
+ [
+ -80.23097657374204,
+ 26.289608771174024
+ ],
+ [
+ -80.25092023316543,
+ 26.258283265752333
+ ],
+ [
+ -80.23097657374204,
+ 26.22695776033064
+ ],
+ [
+ -80.19108925489529,
+ 26.22695776033064
+ ],
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 26.320934276595715
+ ],
+ [
+ -80.19108925489529,
+ 26.352259782017406
+ ],
+ [
+ -80.23097657374204,
+ 26.352259782017406
+ ],
+ [
+ -80.25092023316543,
+ 26.320934276595715
+ ],
+ [
+ -80.23097657374204,
+ 26.289608771174024
+ ],
+ [
+ -80.19108925489529,
+ 26.289608771174024
+ ],
+ [
+ -80.1711455954719,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 26.3835852874391
+ ],
+ [
+ -80.19108925489529,
+ 26.41491079286079
+ ],
+ [
+ -80.23097657374204,
+ 26.41491079286079
+ ],
+ [
+ -80.25092023316543,
+ 26.3835852874391
+ ],
+ [
+ -80.23097657374204,
+ 26.35225978201741
+ ],
+ [
+ -80.19108925489529,
+ 26.35225978201741
+ ],
+ [
+ -80.1711455954719,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.1711455954719,
+ 26.446236298282486
+ ],
+ [
+ -80.19108925489529,
+ 26.477561803704177
+ ],
+ [
+ -80.23097657374204,
+ 26.477561803704177
+ ],
+ [
+ -80.25092023316543,
+ 26.446236298282486
+ ],
+ [
+ -80.23097657374204,
+ 26.414910792860795
+ ],
+ [
+ -80.19108925489529,
+ 26.414910792860795
+ ],
+ [
+ -80.1711455954719,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 24.911286532619545
+ ],
+ [
+ -80.13125827662515,
+ 24.942612038041236
+ ],
+ [
+ -80.1711455954719,
+ 24.942612038041236
+ ],
+ [
+ -80.19108925489529,
+ 24.911286532619545
+ ],
+ [
+ -80.1711455954719,
+ 24.879961027197854
+ ],
+ [
+ -80.13125827662515,
+ 24.879961027197854
+ ],
+ [
+ -80.11131461720176,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 24.97393754346293
+ ],
+ [
+ -80.13125827662515,
+ 25.005263048884622
+ ],
+ [
+ -80.1711455954719,
+ 25.005263048884622
+ ],
+ [
+ -80.19108925489529,
+ 24.97393754346293
+ ],
+ [
+ -80.1711455954719,
+ 24.94261203804124
+ ],
+ [
+ -80.13125827662515,
+ 24.94261203804124
+ ],
+ [
+ -80.11131461720176,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.036588554306316
+ ],
+ [
+ -80.13125827662515,
+ 25.067914059728007
+ ],
+ [
+ -80.1711455954719,
+ 25.067914059728007
+ ],
+ [
+ -80.19108925489529,
+ 25.036588554306316
+ ],
+ [
+ -80.1711455954719,
+ 25.005263048884625
+ ],
+ [
+ -80.13125827662515,
+ 25.005263048884625
+ ],
+ [
+ -80.11131461720176,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.099239565149702
+ ],
+ [
+ -80.13125827662515,
+ 25.130565070571393
+ ],
+ [
+ -80.1711455954719,
+ 25.130565070571393
+ ],
+ [
+ -80.19108925489529,
+ 25.099239565149702
+ ],
+ [
+ -80.1711455954719,
+ 25.06791405972801
+ ],
+ [
+ -80.13125827662515,
+ 25.06791405972801
+ ],
+ [
+ -80.11131461720176,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.161890575993088
+ ],
+ [
+ -80.13125827662515,
+ 25.19321608141478
+ ],
+ [
+ -80.1711455954719,
+ 25.19321608141478
+ ],
+ [
+ -80.19108925489529,
+ 25.161890575993088
+ ],
+ [
+ -80.1711455954719,
+ 25.130565070571397
+ ],
+ [
+ -80.13125827662515,
+ 25.130565070571397
+ ],
+ [
+ -80.11131461720176,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.224541586836473
+ ],
+ [
+ -80.13125827662515,
+ 25.255867092258164
+ ],
+ [
+ -80.1711455954719,
+ 25.255867092258164
+ ],
+ [
+ -80.19108925489529,
+ 25.224541586836473
+ ],
+ [
+ -80.1711455954719,
+ 25.193216081414782
+ ],
+ [
+ -80.13125827662515,
+ 25.193216081414782
+ ],
+ [
+ -80.11131461720176,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.28719259767986
+ ],
+ [
+ -80.13125827662515,
+ 25.31851810310155
+ ],
+ [
+ -80.1711455954719,
+ 25.31851810310155
+ ],
+ [
+ -80.19108925489529,
+ 25.28719259767986
+ ],
+ [
+ -80.1711455954719,
+ 25.255867092258168
+ ],
+ [
+ -80.13125827662515,
+ 25.255867092258168
+ ],
+ [
+ -80.11131461720176,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.349843608523244
+ ],
+ [
+ -80.13125827662515,
+ 25.381169113944935
+ ],
+ [
+ -80.1711455954719,
+ 25.381169113944935
+ ],
+ [
+ -80.19108925489529,
+ 25.349843608523244
+ ],
+ [
+ -80.1711455954719,
+ 25.318518103101553
+ ],
+ [
+ -80.13125827662515,
+ 25.318518103101553
+ ],
+ [
+ -80.11131461720176,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.41249461936663
+ ],
+ [
+ -80.13125827662515,
+ 25.44382012478832
+ ],
+ [
+ -80.1711455954719,
+ 25.44382012478832
+ ],
+ [
+ -80.19108925489529,
+ 25.41249461936663
+ ],
+ [
+ -80.1711455954719,
+ 25.38116911394494
+ ],
+ [
+ -80.13125827662515,
+ 25.38116911394494
+ ],
+ [
+ -80.11131461720176,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.475145630210015
+ ],
+ [
+ -80.13125827662515,
+ 25.506471135631706
+ ],
+ [
+ -80.1711455954719,
+ 25.506471135631706
+ ],
+ [
+ -80.19108925489529,
+ 25.475145630210015
+ ],
+ [
+ -80.1711455954719,
+ 25.443820124788324
+ ],
+ [
+ -80.13125827662515,
+ 25.443820124788324
+ ],
+ [
+ -80.11131461720176,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.5377966410534
+ ],
+ [
+ -80.13125827662515,
+ 25.56912214647509
+ ],
+ [
+ -80.1711455954719,
+ 25.56912214647509
+ ],
+ [
+ -80.19108925489529,
+ 25.5377966410534
+ ],
+ [
+ -80.1711455954719,
+ 25.50647113563171
+ ],
+ [
+ -80.13125827662515,
+ 25.50647113563171
+ ],
+ [
+ -80.11131461720176,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.600447651896786
+ ],
+ [
+ -80.13125827662515,
+ 25.631773157318477
+ ],
+ [
+ -80.1711455954719,
+ 25.631773157318477
+ ],
+ [
+ -80.19108925489529,
+ 25.600447651896786
+ ],
+ [
+ -80.1711455954719,
+ 25.569122146475095
+ ],
+ [
+ -80.13125827662515,
+ 25.569122146475095
+ ],
+ [
+ -80.11131461720176,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.663098662740172
+ ],
+ [
+ -80.13125827662515,
+ 25.694424168161863
+ ],
+ [
+ -80.1711455954719,
+ 25.694424168161863
+ ],
+ [
+ -80.19108925489529,
+ 25.663098662740172
+ ],
+ [
+ -80.1711455954719,
+ 25.63177315731848
+ ],
+ [
+ -80.13125827662515,
+ 25.63177315731848
+ ],
+ [
+ -80.11131461720176,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.725749673583557
+ ],
+ [
+ -80.13125827662515,
+ 25.75707517900525
+ ],
+ [
+ -80.1711455954719,
+ 25.75707517900525
+ ],
+ [
+ -80.19108925489529,
+ 25.725749673583557
+ ],
+ [
+ -80.1711455954719,
+ 25.694424168161866
+ ],
+ [
+ -80.13125827662515,
+ 25.694424168161866
+ ],
+ [
+ -80.11131461720176,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.788400684426943
+ ],
+ [
+ -80.13125827662515,
+ 25.819726189848634
+ ],
+ [
+ -80.1711455954719,
+ 25.819726189848634
+ ],
+ [
+ -80.19108925489529,
+ 25.788400684426943
+ ],
+ [
+ -80.1711455954719,
+ 25.757075179005252
+ ],
+ [
+ -80.13125827662515,
+ 25.757075179005252
+ ],
+ [
+ -80.11131461720176,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.85105169527033
+ ],
+ [
+ -80.13125827662515,
+ 25.88237720069202
+ ],
+ [
+ -80.1711455954719,
+ 25.88237720069202
+ ],
+ [
+ -80.19108925489529,
+ 25.85105169527033
+ ],
+ [
+ -80.1711455954719,
+ 25.819726189848637
+ ],
+ [
+ -80.13125827662515,
+ 25.819726189848637
+ ],
+ [
+ -80.11131461720176,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.913702706113714
+ ],
+ [
+ -80.13125827662515,
+ 25.945028211535405
+ ],
+ [
+ -80.1711455954719,
+ 25.945028211535405
+ ],
+ [
+ -80.19108925489529,
+ 25.913702706113714
+ ],
+ [
+ -80.1711455954719,
+ 25.882377200692023
+ ],
+ [
+ -80.13125827662515,
+ 25.882377200692023
+ ],
+ [
+ -80.11131461720176,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 25.9763537169571
+ ],
+ [
+ -80.13125827662515,
+ 26.00767922237879
+ ],
+ [
+ -80.1711455954719,
+ 26.00767922237879
+ ],
+ [
+ -80.19108925489529,
+ 25.9763537169571
+ ],
+ [
+ -80.1711455954719,
+ 25.94502821153541
+ ],
+ [
+ -80.13125827662515,
+ 25.94502821153541
+ ],
+ [
+ -80.11131461720176,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 26.039004727800485
+ ],
+ [
+ -80.13125827662515,
+ 26.070330233222176
+ ],
+ [
+ -80.1711455954719,
+ 26.070330233222176
+ ],
+ [
+ -80.19108925489529,
+ 26.039004727800485
+ ],
+ [
+ -80.1711455954719,
+ 26.007679222378794
+ ],
+ [
+ -80.13125827662515,
+ 26.007679222378794
+ ],
+ [
+ -80.11131461720176,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 26.10165573864387
+ ],
+ [
+ -80.13125827662515,
+ 26.13298124406556
+ ],
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ],
+ [
+ -80.19108925489529,
+ 26.10165573864387
+ ],
+ [
+ -80.1711455954719,
+ 26.07033023322218
+ ],
+ [
+ -80.13125827662515,
+ 26.07033023322218
+ ],
+ [
+ -80.11131461720176,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 26.164306749487253
+ ],
+ [
+ -80.13125827662515,
+ 26.195632254908944
+ ],
+ [
+ -80.1711455954719,
+ 26.195632254908944
+ ],
+ [
+ -80.19108925489529,
+ 26.164306749487253
+ ],
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ],
+ [
+ -80.13125827662515,
+ 26.13298124406556
+ ],
+ [
+ -80.11131461720176,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 26.22695776033064
+ ],
+ [
+ -80.13125827662515,
+ 26.258283265752333
+ ],
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ],
+ [
+ -80.19108925489529,
+ 26.22695776033064
+ ],
+ [
+ -80.1711455954719,
+ 26.19563225490895
+ ],
+ [
+ -80.13125827662515,
+ 26.19563225490895
+ ],
+ [
+ -80.11131461720176,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 26.289608771174024
+ ],
+ [
+ -80.13125827662515,
+ 26.320934276595715
+ ],
+ [
+ -80.1711455954719,
+ 26.320934276595715
+ ],
+ [
+ -80.19108925489529,
+ 26.289608771174024
+ ],
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ],
+ [
+ -80.13125827662515,
+ 26.258283265752333
+ ],
+ [
+ -80.11131461720176,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 26.35225978201741
+ ],
+ [
+ -80.13125827662515,
+ 26.3835852874391
+ ],
+ [
+ -80.1711455954719,
+ 26.3835852874391
+ ],
+ [
+ -80.19108925489529,
+ 26.35225978201741
+ ],
+ [
+ -80.1711455954719,
+ 26.320934276595718
+ ],
+ [
+ -80.13125827662515,
+ 26.320934276595718
+ ],
+ [
+ -80.11131461720176,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.11131461720176,
+ 26.414910792860795
+ ],
+ [
+ -80.13125827662515,
+ 26.446236298282486
+ ],
+ [
+ -80.1711455954719,
+ 26.446236298282486
+ ],
+ [
+ -80.19108925489529,
+ 26.414910792860795
+ ],
+ [
+ -80.1711455954719,
+ 26.383585287439104
+ ],
+ [
+ -80.13125827662515,
+ 26.383585287439104
+ ],
+ [
+ -80.11131461720176,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 24.942612038041236
+ ],
+ [
+ -80.07142729835499,
+ 24.973937543462927
+ ],
+ [
+ -80.11131461720174,
+ 24.973937543462927
+ ],
+ [
+ -80.13125827662513,
+ 24.942612038041236
+ ],
+ [
+ -80.11131461720174,
+ 24.911286532619545
+ ],
+ [
+ -80.07142729835499,
+ 24.911286532619545
+ ],
+ [
+ -80.0514836389316,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.005263048884622
+ ],
+ [
+ -80.07142729835499,
+ 25.036588554306313
+ ],
+ [
+ -80.11131461720174,
+ 25.036588554306313
+ ],
+ [
+ -80.13125827662513,
+ 25.005263048884622
+ ],
+ [
+ -80.11131461720174,
+ 24.97393754346293
+ ],
+ [
+ -80.07142729835499,
+ 24.97393754346293
+ ],
+ [
+ -80.0514836389316,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.067914059728007
+ ],
+ [
+ -80.07142729835499,
+ 25.0992395651497
+ ],
+ [
+ -80.11131461720174,
+ 25.0992395651497
+ ],
+ [
+ -80.13125827662513,
+ 25.067914059728007
+ ],
+ [
+ -80.11131461720174,
+ 25.036588554306316
+ ],
+ [
+ -80.07142729835499,
+ 25.036588554306316
+ ],
+ [
+ -80.0514836389316,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.130565070571393
+ ],
+ [
+ -80.07142729835499,
+ 25.161890575993084
+ ],
+ [
+ -80.11131461720174,
+ 25.161890575993084
+ ],
+ [
+ -80.13125827662513,
+ 25.130565070571393
+ ],
+ [
+ -80.11131461720174,
+ 25.099239565149702
+ ],
+ [
+ -80.07142729835499,
+ 25.099239565149702
+ ],
+ [
+ -80.0514836389316,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.19321608141478
+ ],
+ [
+ -80.07142729835499,
+ 25.22454158683647
+ ],
+ [
+ -80.11131461720174,
+ 25.22454158683647
+ ],
+ [
+ -80.13125827662513,
+ 25.19321608141478
+ ],
+ [
+ -80.11131461720174,
+ 25.161890575993088
+ ],
+ [
+ -80.07142729835499,
+ 25.161890575993088
+ ],
+ [
+ -80.0514836389316,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.255867092258164
+ ],
+ [
+ -80.07142729835499,
+ 25.287192597679855
+ ],
+ [
+ -80.11131461720174,
+ 25.287192597679855
+ ],
+ [
+ -80.13125827662513,
+ 25.255867092258164
+ ],
+ [
+ -80.11131461720174,
+ 25.224541586836473
+ ],
+ [
+ -80.07142729835499,
+ 25.224541586836473
+ ],
+ [
+ -80.0514836389316,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.31851810310155
+ ],
+ [
+ -80.07142729835499,
+ 25.34984360852324
+ ],
+ [
+ -80.11131461720174,
+ 25.34984360852324
+ ],
+ [
+ -80.13125827662513,
+ 25.31851810310155
+ ],
+ [
+ -80.11131461720174,
+ 25.28719259767986
+ ],
+ [
+ -80.07142729835499,
+ 25.28719259767986
+ ],
+ [
+ -80.0514836389316,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.381169113944935
+ ],
+ [
+ -80.07142729835499,
+ 25.412494619366626
+ ],
+ [
+ -80.11131461720174,
+ 25.412494619366626
+ ],
+ [
+ -80.13125827662513,
+ 25.381169113944935
+ ],
+ [
+ -80.11131461720174,
+ 25.349843608523244
+ ],
+ [
+ -80.07142729835499,
+ 25.349843608523244
+ ],
+ [
+ -80.0514836389316,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.44382012478832
+ ],
+ [
+ -80.07142729835499,
+ 25.47514563021001
+ ],
+ [
+ -80.11131461720174,
+ 25.47514563021001
+ ],
+ [
+ -80.13125827662513,
+ 25.44382012478832
+ ],
+ [
+ -80.11131461720174,
+ 25.41249461936663
+ ],
+ [
+ -80.07142729835499,
+ 25.41249461936663
+ ],
+ [
+ -80.0514836389316,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.506471135631706
+ ],
+ [
+ -80.07142729835499,
+ 25.537796641053397
+ ],
+ [
+ -80.11131461720174,
+ 25.537796641053397
+ ],
+ [
+ -80.13125827662513,
+ 25.506471135631706
+ ],
+ [
+ -80.11131461720174,
+ 25.475145630210015
+ ],
+ [
+ -80.07142729835499,
+ 25.475145630210015
+ ],
+ [
+ -80.0514836389316,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.56912214647509
+ ],
+ [
+ -80.07142729835499,
+ 25.600447651896783
+ ],
+ [
+ -80.11131461720174,
+ 25.600447651896783
+ ],
+ [
+ -80.13125827662513,
+ 25.56912214647509
+ ],
+ [
+ -80.11131461720174,
+ 25.5377966410534
+ ],
+ [
+ -80.07142729835499,
+ 25.5377966410534
+ ],
+ [
+ -80.0514836389316,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.631773157318477
+ ],
+ [
+ -80.07142729835499,
+ 25.66309866274017
+ ],
+ [
+ -80.11131461720174,
+ 25.66309866274017
+ ],
+ [
+ -80.13125827662513,
+ 25.631773157318477
+ ],
+ [
+ -80.11131461720174,
+ 25.600447651896786
+ ],
+ [
+ -80.07142729835499,
+ 25.600447651896786
+ ],
+ [
+ -80.0514836389316,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.694424168161863
+ ],
+ [
+ -80.07142729835499,
+ 25.725749673583554
+ ],
+ [
+ -80.11131461720174,
+ 25.725749673583554
+ ],
+ [
+ -80.13125827662513,
+ 25.694424168161863
+ ],
+ [
+ -80.11131461720174,
+ 25.663098662740172
+ ],
+ [
+ -80.07142729835499,
+ 25.663098662740172
+ ],
+ [
+ -80.0514836389316,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.75707517900525
+ ],
+ [
+ -80.07142729835499,
+ 25.78840068442694
+ ],
+ [
+ -80.11131461720174,
+ 25.78840068442694
+ ],
+ [
+ -80.13125827662513,
+ 25.75707517900525
+ ],
+ [
+ -80.11131461720174,
+ 25.725749673583557
+ ],
+ [
+ -80.07142729835499,
+ 25.725749673583557
+ ],
+ [
+ -80.0514836389316,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.819726189848634
+ ],
+ [
+ -80.07142729835499,
+ 25.851051695270325
+ ],
+ [
+ -80.11131461720174,
+ 25.851051695270325
+ ],
+ [
+ -80.13125827662513,
+ 25.819726189848634
+ ],
+ [
+ -80.11131461720174,
+ 25.788400684426943
+ ],
+ [
+ -80.07142729835499,
+ 25.788400684426943
+ ],
+ [
+ -80.0514836389316,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.88237720069202
+ ],
+ [
+ -80.07142729835499,
+ 25.91370270611371
+ ],
+ [
+ -80.11131461720174,
+ 25.91370270611371
+ ],
+ [
+ -80.13125827662513,
+ 25.88237720069202
+ ],
+ [
+ -80.11131461720174,
+ 25.85105169527033
+ ],
+ [
+ -80.07142729835499,
+ 25.85105169527033
+ ],
+ [
+ -80.0514836389316,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 25.945028211535405
+ ],
+ [
+ -80.07142729835499,
+ 25.976353716957096
+ ],
+ [
+ -80.11131461720174,
+ 25.976353716957096
+ ],
+ [
+ -80.13125827662513,
+ 25.945028211535405
+ ],
+ [
+ -80.11131461720174,
+ 25.913702706113714
+ ],
+ [
+ -80.07142729835499,
+ 25.913702706113714
+ ],
+ [
+ -80.0514836389316,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 26.00767922237879
+ ],
+ [
+ -80.07142729835499,
+ 26.03900472780048
+ ],
+ [
+ -80.11131461720174,
+ 26.03900472780048
+ ],
+ [
+ -80.13125827662513,
+ 26.00767922237879
+ ],
+ [
+ -80.11131461720174,
+ 25.9763537169571
+ ],
+ [
+ -80.07142729835499,
+ 25.9763537169571
+ ],
+ [
+ -80.0514836389316,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 26.070330233222176
+ ],
+ [
+ -80.07142729835499,
+ 26.101655738643867
+ ],
+ [
+ -80.11131461720174,
+ 26.101655738643867
+ ],
+ [
+ -80.13125827662513,
+ 26.070330233222176
+ ],
+ [
+ -80.11131461720174,
+ 26.039004727800485
+ ],
+ [
+ -80.07142729835499,
+ 26.039004727800485
+ ],
+ [
+ -80.0514836389316,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ],
+ [
+ -80.07142729835499,
+ 26.164306749487253
+ ],
+ [
+ -80.11131461720174,
+ 26.164306749487253
+ ],
+ [
+ -80.13125827662513,
+ 26.13298124406556
+ ],
+ [
+ -80.11131461720174,
+ 26.10165573864387
+ ],
+ [
+ -80.07142729835499,
+ 26.10165573864387
+ ],
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 26.195632254908944
+ ],
+ [
+ -80.07142729835499,
+ 26.226957760330635
+ ],
+ [
+ -80.11131461720174,
+ 26.226957760330635
+ ],
+ [
+ -80.13125827662513,
+ 26.195632254908944
+ ],
+ [
+ -80.11131461720174,
+ 26.164306749487253
+ ],
+ [
+ -80.07142729835499,
+ 26.164306749487253
+ ],
+ [
+ -80.0514836389316,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ],
+ [
+ -80.07142729835499,
+ 26.289608771174024
+ ],
+ [
+ -80.11131461720174,
+ 26.289608771174024
+ ],
+ [
+ -80.13125827662513,
+ 26.258283265752333
+ ],
+ [
+ -80.11131461720174,
+ 26.22695776033064
+ ],
+ [
+ -80.07142729835499,
+ 26.22695776033064
+ ],
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 26.320934276595715
+ ],
+ [
+ -80.07142729835499,
+ 26.352259782017406
+ ],
+ [
+ -80.11131461720174,
+ 26.352259782017406
+ ],
+ [
+ -80.13125827662513,
+ 26.320934276595715
+ ],
+ [
+ -80.11131461720174,
+ 26.289608771174024
+ ],
+ [
+ -80.07142729835499,
+ 26.289608771174024
+ ],
+ [
+ -80.0514836389316,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 26.3835852874391
+ ],
+ [
+ -80.07142729835499,
+ 26.41491079286079
+ ],
+ [
+ -80.11131461720174,
+ 26.41491079286079
+ ],
+ [
+ -80.13125827662513,
+ 26.3835852874391
+ ],
+ [
+ -80.11131461720174,
+ 26.35225978201741
+ ],
+ [
+ -80.07142729835499,
+ 26.35225978201741
+ ],
+ [
+ -80.0514836389316,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.0514836389316,
+ 26.446236298282486
+ ],
+ [
+ -80.07142729835499,
+ 26.477561803704177
+ ],
+ [
+ -80.11131461720174,
+ 26.477561803704177
+ ],
+ [
+ -80.13125827662513,
+ 26.446236298282486
+ ],
+ [
+ -80.11131461720174,
+ 26.414910792860795
+ ],
+ [
+ -80.07142729835499,
+ 26.414910792860795
+ ],
+ [
+ -80.0514836389316,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 24.911286532619545
+ ],
+ [
+ -80.01159632008485,
+ 24.942612038041236
+ ],
+ [
+ -80.0514836389316,
+ 24.942612038041236
+ ],
+ [
+ -80.07142729835499,
+ 24.911286532619545
+ ],
+ [
+ -80.0514836389316,
+ 24.879961027197854
+ ],
+ [
+ -80.01159632008485,
+ 24.879961027197854
+ ],
+ [
+ -79.99165266066146,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 24.97393754346293
+ ],
+ [
+ -80.01159632008485,
+ 25.005263048884622
+ ],
+ [
+ -80.0514836389316,
+ 25.005263048884622
+ ],
+ [
+ -80.07142729835499,
+ 24.97393754346293
+ ],
+ [
+ -80.0514836389316,
+ 24.94261203804124
+ ],
+ [
+ -80.01159632008485,
+ 24.94261203804124
+ ],
+ [
+ -79.99165266066146,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.036588554306316
+ ],
+ [
+ -80.01159632008485,
+ 25.067914059728007
+ ],
+ [
+ -80.0514836389316,
+ 25.067914059728007
+ ],
+ [
+ -80.07142729835499,
+ 25.036588554306316
+ ],
+ [
+ -80.0514836389316,
+ 25.005263048884625
+ ],
+ [
+ -80.01159632008485,
+ 25.005263048884625
+ ],
+ [
+ -79.99165266066146,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.099239565149702
+ ],
+ [
+ -80.01159632008485,
+ 25.130565070571393
+ ],
+ [
+ -80.0514836389316,
+ 25.130565070571393
+ ],
+ [
+ -80.07142729835499,
+ 25.099239565149702
+ ],
+ [
+ -80.0514836389316,
+ 25.06791405972801
+ ],
+ [
+ -80.01159632008485,
+ 25.06791405972801
+ ],
+ [
+ -79.99165266066146,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.161890575993088
+ ],
+ [
+ -80.01159632008485,
+ 25.19321608141478
+ ],
+ [
+ -80.0514836389316,
+ 25.19321608141478
+ ],
+ [
+ -80.07142729835499,
+ 25.161890575993088
+ ],
+ [
+ -80.0514836389316,
+ 25.130565070571397
+ ],
+ [
+ -80.01159632008485,
+ 25.130565070571397
+ ],
+ [
+ -79.99165266066146,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.224541586836473
+ ],
+ [
+ -80.01159632008485,
+ 25.255867092258164
+ ],
+ [
+ -80.0514836389316,
+ 25.255867092258164
+ ],
+ [
+ -80.07142729835499,
+ 25.224541586836473
+ ],
+ [
+ -80.0514836389316,
+ 25.193216081414782
+ ],
+ [
+ -80.01159632008485,
+ 25.193216081414782
+ ],
+ [
+ -79.99165266066146,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.28719259767986
+ ],
+ [
+ -80.01159632008485,
+ 25.31851810310155
+ ],
+ [
+ -80.0514836389316,
+ 25.31851810310155
+ ],
+ [
+ -80.07142729835499,
+ 25.28719259767986
+ ],
+ [
+ -80.0514836389316,
+ 25.255867092258168
+ ],
+ [
+ -80.01159632008485,
+ 25.255867092258168
+ ],
+ [
+ -79.99165266066146,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.349843608523244
+ ],
+ [
+ -80.01159632008485,
+ 25.381169113944935
+ ],
+ [
+ -80.0514836389316,
+ 25.381169113944935
+ ],
+ [
+ -80.07142729835499,
+ 25.349843608523244
+ ],
+ [
+ -80.0514836389316,
+ 25.318518103101553
+ ],
+ [
+ -80.01159632008485,
+ 25.318518103101553
+ ],
+ [
+ -79.99165266066146,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.41249461936663
+ ],
+ [
+ -80.01159632008485,
+ 25.44382012478832
+ ],
+ [
+ -80.0514836389316,
+ 25.44382012478832
+ ],
+ [
+ -80.07142729835499,
+ 25.41249461936663
+ ],
+ [
+ -80.0514836389316,
+ 25.38116911394494
+ ],
+ [
+ -80.01159632008485,
+ 25.38116911394494
+ ],
+ [
+ -79.99165266066146,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.475145630210015
+ ],
+ [
+ -80.01159632008485,
+ 25.506471135631706
+ ],
+ [
+ -80.0514836389316,
+ 25.506471135631706
+ ],
+ [
+ -80.07142729835499,
+ 25.475145630210015
+ ],
+ [
+ -80.0514836389316,
+ 25.443820124788324
+ ],
+ [
+ -80.01159632008485,
+ 25.443820124788324
+ ],
+ [
+ -79.99165266066146,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.5377966410534
+ ],
+ [
+ -80.01159632008485,
+ 25.56912214647509
+ ],
+ [
+ -80.0514836389316,
+ 25.56912214647509
+ ],
+ [
+ -80.07142729835499,
+ 25.5377966410534
+ ],
+ [
+ -80.0514836389316,
+ 25.50647113563171
+ ],
+ [
+ -80.01159632008485,
+ 25.50647113563171
+ ],
+ [
+ -79.99165266066146,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.600447651896786
+ ],
+ [
+ -80.01159632008485,
+ 25.631773157318477
+ ],
+ [
+ -80.0514836389316,
+ 25.631773157318477
+ ],
+ [
+ -80.07142729835499,
+ 25.600447651896786
+ ],
+ [
+ -80.0514836389316,
+ 25.569122146475095
+ ],
+ [
+ -80.01159632008485,
+ 25.569122146475095
+ ],
+ [
+ -79.99165266066146,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.663098662740172
+ ],
+ [
+ -80.01159632008485,
+ 25.694424168161863
+ ],
+ [
+ -80.0514836389316,
+ 25.694424168161863
+ ],
+ [
+ -80.07142729835499,
+ 25.663098662740172
+ ],
+ [
+ -80.0514836389316,
+ 25.63177315731848
+ ],
+ [
+ -80.01159632008485,
+ 25.63177315731848
+ ],
+ [
+ -79.99165266066146,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.725749673583557
+ ],
+ [
+ -80.01159632008485,
+ 25.75707517900525
+ ],
+ [
+ -80.0514836389316,
+ 25.75707517900525
+ ],
+ [
+ -80.07142729835499,
+ 25.725749673583557
+ ],
+ [
+ -80.0514836389316,
+ 25.694424168161866
+ ],
+ [
+ -80.01159632008485,
+ 25.694424168161866
+ ],
+ [
+ -79.99165266066146,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.788400684426943
+ ],
+ [
+ -80.01159632008485,
+ 25.819726189848634
+ ],
+ [
+ -80.0514836389316,
+ 25.819726189848634
+ ],
+ [
+ -80.07142729835499,
+ 25.788400684426943
+ ],
+ [
+ -80.0514836389316,
+ 25.757075179005252
+ ],
+ [
+ -80.01159632008485,
+ 25.757075179005252
+ ],
+ [
+ -79.99165266066146,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.85105169527033
+ ],
+ [
+ -80.01159632008485,
+ 25.88237720069202
+ ],
+ [
+ -80.0514836389316,
+ 25.88237720069202
+ ],
+ [
+ -80.07142729835499,
+ 25.85105169527033
+ ],
+ [
+ -80.0514836389316,
+ 25.819726189848637
+ ],
+ [
+ -80.01159632008485,
+ 25.819726189848637
+ ],
+ [
+ -79.99165266066146,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.913702706113714
+ ],
+ [
+ -80.01159632008485,
+ 25.945028211535405
+ ],
+ [
+ -80.0514836389316,
+ 25.945028211535405
+ ],
+ [
+ -80.07142729835499,
+ 25.913702706113714
+ ],
+ [
+ -80.0514836389316,
+ 25.882377200692023
+ ],
+ [
+ -80.01159632008485,
+ 25.882377200692023
+ ],
+ [
+ -79.99165266066146,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 25.9763537169571
+ ],
+ [
+ -80.01159632008485,
+ 26.00767922237879
+ ],
+ [
+ -80.0514836389316,
+ 26.00767922237879
+ ],
+ [
+ -80.07142729835499,
+ 25.9763537169571
+ ],
+ [
+ -80.0514836389316,
+ 25.94502821153541
+ ],
+ [
+ -80.01159632008485,
+ 25.94502821153541
+ ],
+ [
+ -79.99165266066146,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 26.039004727800485
+ ],
+ [
+ -80.01159632008485,
+ 26.070330233222176
+ ],
+ [
+ -80.0514836389316,
+ 26.070330233222176
+ ],
+ [
+ -80.07142729835499,
+ 26.039004727800485
+ ],
+ [
+ -80.0514836389316,
+ 26.007679222378794
+ ],
+ [
+ -80.01159632008485,
+ 26.007679222378794
+ ],
+ [
+ -79.99165266066146,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 26.10165573864387
+ ],
+ [
+ -80.01159632008485,
+ 26.13298124406556
+ ],
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ],
+ [
+ -80.07142729835499,
+ 26.10165573864387
+ ],
+ [
+ -80.0514836389316,
+ 26.07033023322218
+ ],
+ [
+ -80.01159632008485,
+ 26.07033023322218
+ ],
+ [
+ -79.99165266066146,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 26.164306749487253
+ ],
+ [
+ -80.01159632008485,
+ 26.195632254908944
+ ],
+ [
+ -80.0514836389316,
+ 26.195632254908944
+ ],
+ [
+ -80.07142729835499,
+ 26.164306749487253
+ ],
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ],
+ [
+ -80.01159632008485,
+ 26.13298124406556
+ ],
+ [
+ -79.99165266066146,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 26.22695776033064
+ ],
+ [
+ -80.01159632008485,
+ 26.258283265752333
+ ],
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ],
+ [
+ -80.07142729835499,
+ 26.22695776033064
+ ],
+ [
+ -80.0514836389316,
+ 26.19563225490895
+ ],
+ [
+ -80.01159632008485,
+ 26.19563225490895
+ ],
+ [
+ -79.99165266066146,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 26.289608771174024
+ ],
+ [
+ -80.01159632008485,
+ 26.320934276595715
+ ],
+ [
+ -80.0514836389316,
+ 26.320934276595715
+ ],
+ [
+ -80.07142729835499,
+ 26.289608771174024
+ ],
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ],
+ [
+ -80.01159632008485,
+ 26.258283265752333
+ ],
+ [
+ -79.99165266066146,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 26.35225978201741
+ ],
+ [
+ -80.01159632008485,
+ 26.3835852874391
+ ],
+ [
+ -80.0514836389316,
+ 26.3835852874391
+ ],
+ [
+ -80.07142729835499,
+ 26.35225978201741
+ ],
+ [
+ -80.0514836389316,
+ 26.320934276595718
+ ],
+ [
+ -80.01159632008485,
+ 26.320934276595718
+ ],
+ [
+ -79.99165266066146,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.99165266066146,
+ 26.414910792860795
+ ],
+ [
+ -80.01159632008485,
+ 26.446236298282486
+ ],
+ [
+ -80.0514836389316,
+ 26.446236298282486
+ ],
+ [
+ -80.07142729835499,
+ 26.414910792860795
+ ],
+ [
+ -80.0514836389316,
+ 26.383585287439104
+ ],
+ [
+ -80.01159632008485,
+ 26.383585287439104
+ ],
+ [
+ -79.99165266066146,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 24.942612038041236
+ ],
+ [
+ -79.95176534181469,
+ 24.973937543462927
+ ],
+ [
+ -79.99165266066144,
+ 24.973937543462927
+ ],
+ [
+ -80.01159632008483,
+ 24.942612038041236
+ ],
+ [
+ -79.99165266066144,
+ 24.911286532619545
+ ],
+ [
+ -79.95176534181469,
+ 24.911286532619545
+ ],
+ [
+ -79.9318216823913,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.005263048884622
+ ],
+ [
+ -79.95176534181469,
+ 25.036588554306313
+ ],
+ [
+ -79.99165266066144,
+ 25.036588554306313
+ ],
+ [
+ -80.01159632008483,
+ 25.005263048884622
+ ],
+ [
+ -79.99165266066144,
+ 24.97393754346293
+ ],
+ [
+ -79.95176534181469,
+ 24.97393754346293
+ ],
+ [
+ -79.9318216823913,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.067914059728007
+ ],
+ [
+ -79.95176534181469,
+ 25.0992395651497
+ ],
+ [
+ -79.99165266066144,
+ 25.0992395651497
+ ],
+ [
+ -80.01159632008483,
+ 25.067914059728007
+ ],
+ [
+ -79.99165266066144,
+ 25.036588554306316
+ ],
+ [
+ -79.95176534181469,
+ 25.036588554306316
+ ],
+ [
+ -79.9318216823913,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.130565070571393
+ ],
+ [
+ -79.95176534181469,
+ 25.161890575993084
+ ],
+ [
+ -79.99165266066144,
+ 25.161890575993084
+ ],
+ [
+ -80.01159632008483,
+ 25.130565070571393
+ ],
+ [
+ -79.99165266066144,
+ 25.099239565149702
+ ],
+ [
+ -79.95176534181469,
+ 25.099239565149702
+ ],
+ [
+ -79.9318216823913,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.19321608141478
+ ],
+ [
+ -79.95176534181469,
+ 25.22454158683647
+ ],
+ [
+ -79.99165266066144,
+ 25.22454158683647
+ ],
+ [
+ -80.01159632008483,
+ 25.19321608141478
+ ],
+ [
+ -79.99165266066144,
+ 25.161890575993088
+ ],
+ [
+ -79.95176534181469,
+ 25.161890575993088
+ ],
+ [
+ -79.9318216823913,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.255867092258164
+ ],
+ [
+ -79.95176534181469,
+ 25.287192597679855
+ ],
+ [
+ -79.99165266066144,
+ 25.287192597679855
+ ],
+ [
+ -80.01159632008483,
+ 25.255867092258164
+ ],
+ [
+ -79.99165266066144,
+ 25.224541586836473
+ ],
+ [
+ -79.95176534181469,
+ 25.224541586836473
+ ],
+ [
+ -79.9318216823913,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.31851810310155
+ ],
+ [
+ -79.95176534181469,
+ 25.34984360852324
+ ],
+ [
+ -79.99165266066144,
+ 25.34984360852324
+ ],
+ [
+ -80.01159632008483,
+ 25.31851810310155
+ ],
+ [
+ -79.99165266066144,
+ 25.28719259767986
+ ],
+ [
+ -79.95176534181469,
+ 25.28719259767986
+ ],
+ [
+ -79.9318216823913,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.381169113944935
+ ],
+ [
+ -79.95176534181469,
+ 25.412494619366626
+ ],
+ [
+ -79.99165266066144,
+ 25.412494619366626
+ ],
+ [
+ -80.01159632008483,
+ 25.381169113944935
+ ],
+ [
+ -79.99165266066144,
+ 25.349843608523244
+ ],
+ [
+ -79.95176534181469,
+ 25.349843608523244
+ ],
+ [
+ -79.9318216823913,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.44382012478832
+ ],
+ [
+ -79.95176534181469,
+ 25.47514563021001
+ ],
+ [
+ -79.99165266066144,
+ 25.47514563021001
+ ],
+ [
+ -80.01159632008483,
+ 25.44382012478832
+ ],
+ [
+ -79.99165266066144,
+ 25.41249461936663
+ ],
+ [
+ -79.95176534181469,
+ 25.41249461936663
+ ],
+ [
+ -79.9318216823913,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.506471135631706
+ ],
+ [
+ -79.95176534181469,
+ 25.537796641053397
+ ],
+ [
+ -79.99165266066144,
+ 25.537796641053397
+ ],
+ [
+ -80.01159632008483,
+ 25.506471135631706
+ ],
+ [
+ -79.99165266066144,
+ 25.475145630210015
+ ],
+ [
+ -79.95176534181469,
+ 25.475145630210015
+ ],
+ [
+ -79.9318216823913,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.56912214647509
+ ],
+ [
+ -79.95176534181469,
+ 25.600447651896783
+ ],
+ [
+ -79.99165266066144,
+ 25.600447651896783
+ ],
+ [
+ -80.01159632008483,
+ 25.56912214647509
+ ],
+ [
+ -79.99165266066144,
+ 25.5377966410534
+ ],
+ [
+ -79.95176534181469,
+ 25.5377966410534
+ ],
+ [
+ -79.9318216823913,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.631773157318477
+ ],
+ [
+ -79.95176534181469,
+ 25.66309866274017
+ ],
+ [
+ -79.99165266066144,
+ 25.66309866274017
+ ],
+ [
+ -80.01159632008483,
+ 25.631773157318477
+ ],
+ [
+ -79.99165266066144,
+ 25.600447651896786
+ ],
+ [
+ -79.95176534181469,
+ 25.600447651896786
+ ],
+ [
+ -79.9318216823913,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.694424168161863
+ ],
+ [
+ -79.95176534181469,
+ 25.725749673583554
+ ],
+ [
+ -79.99165266066144,
+ 25.725749673583554
+ ],
+ [
+ -80.01159632008483,
+ 25.694424168161863
+ ],
+ [
+ -79.99165266066144,
+ 25.663098662740172
+ ],
+ [
+ -79.95176534181469,
+ 25.663098662740172
+ ],
+ [
+ -79.9318216823913,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.75707517900525
+ ],
+ [
+ -79.95176534181469,
+ 25.78840068442694
+ ],
+ [
+ -79.99165266066144,
+ 25.78840068442694
+ ],
+ [
+ -80.01159632008483,
+ 25.75707517900525
+ ],
+ [
+ -79.99165266066144,
+ 25.725749673583557
+ ],
+ [
+ -79.95176534181469,
+ 25.725749673583557
+ ],
+ [
+ -79.9318216823913,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.819726189848634
+ ],
+ [
+ -79.95176534181469,
+ 25.851051695270325
+ ],
+ [
+ -79.99165266066144,
+ 25.851051695270325
+ ],
+ [
+ -80.01159632008483,
+ 25.819726189848634
+ ],
+ [
+ -79.99165266066144,
+ 25.788400684426943
+ ],
+ [
+ -79.95176534181469,
+ 25.788400684426943
+ ],
+ [
+ -79.9318216823913,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.88237720069202
+ ],
+ [
+ -79.95176534181469,
+ 25.91370270611371
+ ],
+ [
+ -79.99165266066144,
+ 25.91370270611371
+ ],
+ [
+ -80.01159632008483,
+ 25.88237720069202
+ ],
+ [
+ -79.99165266066144,
+ 25.85105169527033
+ ],
+ [
+ -79.95176534181469,
+ 25.85105169527033
+ ],
+ [
+ -79.9318216823913,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 25.945028211535405
+ ],
+ [
+ -79.95176534181469,
+ 25.976353716957096
+ ],
+ [
+ -79.99165266066144,
+ 25.976353716957096
+ ],
+ [
+ -80.01159632008483,
+ 25.945028211535405
+ ],
+ [
+ -79.99165266066144,
+ 25.913702706113714
+ ],
+ [
+ -79.95176534181469,
+ 25.913702706113714
+ ],
+ [
+ -79.9318216823913,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 26.00767922237879
+ ],
+ [
+ -79.95176534181469,
+ 26.03900472780048
+ ],
+ [
+ -79.99165266066144,
+ 26.03900472780048
+ ],
+ [
+ -80.01159632008483,
+ 26.00767922237879
+ ],
+ [
+ -79.99165266066144,
+ 25.9763537169571
+ ],
+ [
+ -79.95176534181469,
+ 25.9763537169571
+ ],
+ [
+ -79.9318216823913,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 26.070330233222176
+ ],
+ [
+ -79.95176534181469,
+ 26.101655738643867
+ ],
+ [
+ -79.99165266066144,
+ 26.101655738643867
+ ],
+ [
+ -80.01159632008483,
+ 26.070330233222176
+ ],
+ [
+ -79.99165266066144,
+ 26.039004727800485
+ ],
+ [
+ -79.95176534181469,
+ 26.039004727800485
+ ],
+ [
+ -79.9318216823913,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ],
+ [
+ -79.95176534181469,
+ 26.164306749487253
+ ],
+ [
+ -79.99165266066144,
+ 26.164306749487253
+ ],
+ [
+ -80.01159632008483,
+ 26.13298124406556
+ ],
+ [
+ -79.99165266066144,
+ 26.10165573864387
+ ],
+ [
+ -79.95176534181469,
+ 26.10165573864387
+ ],
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 26.195632254908944
+ ],
+ [
+ -79.95176534181469,
+ 26.226957760330635
+ ],
+ [
+ -79.99165266066144,
+ 26.226957760330635
+ ],
+ [
+ -80.01159632008483,
+ 26.195632254908944
+ ],
+ [
+ -79.99165266066144,
+ 26.164306749487253
+ ],
+ [
+ -79.95176534181469,
+ 26.164306749487253
+ ],
+ [
+ -79.9318216823913,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ],
+ [
+ -79.95176534181469,
+ 26.289608771174024
+ ],
+ [
+ -79.99165266066144,
+ 26.289608771174024
+ ],
+ [
+ -80.01159632008483,
+ 26.258283265752333
+ ],
+ [
+ -79.99165266066144,
+ 26.22695776033064
+ ],
+ [
+ -79.95176534181469,
+ 26.22695776033064
+ ],
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 26.320934276595715
+ ],
+ [
+ -79.95176534181469,
+ 26.352259782017406
+ ],
+ [
+ -79.99165266066144,
+ 26.352259782017406
+ ],
+ [
+ -80.01159632008483,
+ 26.320934276595715
+ ],
+ [
+ -79.99165266066144,
+ 26.289608771174024
+ ],
+ [
+ -79.95176534181469,
+ 26.289608771174024
+ ],
+ [
+ -79.9318216823913,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 26.3835852874391
+ ],
+ [
+ -79.95176534181469,
+ 26.41491079286079
+ ],
+ [
+ -79.99165266066144,
+ 26.41491079286079
+ ],
+ [
+ -80.01159632008483,
+ 26.3835852874391
+ ],
+ [
+ -79.99165266066144,
+ 26.35225978201741
+ ],
+ [
+ -79.95176534181469,
+ 26.35225978201741
+ ],
+ [
+ -79.9318216823913,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.9318216823913,
+ 26.446236298282486
+ ],
+ [
+ -79.95176534181469,
+ 26.477561803704177
+ ],
+ [
+ -79.99165266066144,
+ 26.477561803704177
+ ],
+ [
+ -80.01159632008483,
+ 26.446236298282486
+ ],
+ [
+ -79.99165266066144,
+ 26.414910792860795
+ ],
+ [
+ -79.95176534181469,
+ 26.414910792860795
+ ],
+ [
+ -79.9318216823913,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 24.911286532619545
+ ],
+ [
+ -79.89193436354455,
+ 24.942612038041236
+ ],
+ [
+ -79.9318216823913,
+ 24.942612038041236
+ ],
+ [
+ -79.95176534181469,
+ 24.911286532619545
+ ],
+ [
+ -79.9318216823913,
+ 24.879961027197854
+ ],
+ [
+ -79.89193436354455,
+ 24.879961027197854
+ ],
+ [
+ -79.87199070412116,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 24.97393754346293
+ ],
+ [
+ -79.89193436354455,
+ 25.005263048884622
+ ],
+ [
+ -79.9318216823913,
+ 25.005263048884622
+ ],
+ [
+ -79.95176534181469,
+ 24.97393754346293
+ ],
+ [
+ -79.9318216823913,
+ 24.94261203804124
+ ],
+ [
+ -79.89193436354455,
+ 24.94261203804124
+ ],
+ [
+ -79.87199070412116,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.036588554306316
+ ],
+ [
+ -79.89193436354455,
+ 25.067914059728007
+ ],
+ [
+ -79.9318216823913,
+ 25.067914059728007
+ ],
+ [
+ -79.95176534181469,
+ 25.036588554306316
+ ],
+ [
+ -79.9318216823913,
+ 25.005263048884625
+ ],
+ [
+ -79.89193436354455,
+ 25.005263048884625
+ ],
+ [
+ -79.87199070412116,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.099239565149702
+ ],
+ [
+ -79.89193436354455,
+ 25.130565070571393
+ ],
+ [
+ -79.9318216823913,
+ 25.130565070571393
+ ],
+ [
+ -79.95176534181469,
+ 25.099239565149702
+ ],
+ [
+ -79.9318216823913,
+ 25.06791405972801
+ ],
+ [
+ -79.89193436354455,
+ 25.06791405972801
+ ],
+ [
+ -79.87199070412116,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.161890575993088
+ ],
+ [
+ -79.89193436354455,
+ 25.19321608141478
+ ],
+ [
+ -79.9318216823913,
+ 25.19321608141478
+ ],
+ [
+ -79.95176534181469,
+ 25.161890575993088
+ ],
+ [
+ -79.9318216823913,
+ 25.130565070571397
+ ],
+ [
+ -79.89193436354455,
+ 25.130565070571397
+ ],
+ [
+ -79.87199070412116,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.224541586836473
+ ],
+ [
+ -79.89193436354455,
+ 25.255867092258164
+ ],
+ [
+ -79.9318216823913,
+ 25.255867092258164
+ ],
+ [
+ -79.95176534181469,
+ 25.224541586836473
+ ],
+ [
+ -79.9318216823913,
+ 25.193216081414782
+ ],
+ [
+ -79.89193436354455,
+ 25.193216081414782
+ ],
+ [
+ -79.87199070412116,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.28719259767986
+ ],
+ [
+ -79.89193436354455,
+ 25.31851810310155
+ ],
+ [
+ -79.9318216823913,
+ 25.31851810310155
+ ],
+ [
+ -79.95176534181469,
+ 25.28719259767986
+ ],
+ [
+ -79.9318216823913,
+ 25.255867092258168
+ ],
+ [
+ -79.89193436354455,
+ 25.255867092258168
+ ],
+ [
+ -79.87199070412116,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.349843608523244
+ ],
+ [
+ -79.89193436354455,
+ 25.381169113944935
+ ],
+ [
+ -79.9318216823913,
+ 25.381169113944935
+ ],
+ [
+ -79.95176534181469,
+ 25.349843608523244
+ ],
+ [
+ -79.9318216823913,
+ 25.318518103101553
+ ],
+ [
+ -79.89193436354455,
+ 25.318518103101553
+ ],
+ [
+ -79.87199070412116,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.41249461936663
+ ],
+ [
+ -79.89193436354455,
+ 25.44382012478832
+ ],
+ [
+ -79.9318216823913,
+ 25.44382012478832
+ ],
+ [
+ -79.95176534181469,
+ 25.41249461936663
+ ],
+ [
+ -79.9318216823913,
+ 25.38116911394494
+ ],
+ [
+ -79.89193436354455,
+ 25.38116911394494
+ ],
+ [
+ -79.87199070412116,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.475145630210015
+ ],
+ [
+ -79.89193436354455,
+ 25.506471135631706
+ ],
+ [
+ -79.9318216823913,
+ 25.506471135631706
+ ],
+ [
+ -79.95176534181469,
+ 25.475145630210015
+ ],
+ [
+ -79.9318216823913,
+ 25.443820124788324
+ ],
+ [
+ -79.89193436354455,
+ 25.443820124788324
+ ],
+ [
+ -79.87199070412116,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.5377966410534
+ ],
+ [
+ -79.89193436354455,
+ 25.56912214647509
+ ],
+ [
+ -79.9318216823913,
+ 25.56912214647509
+ ],
+ [
+ -79.95176534181469,
+ 25.5377966410534
+ ],
+ [
+ -79.9318216823913,
+ 25.50647113563171
+ ],
+ [
+ -79.89193436354455,
+ 25.50647113563171
+ ],
+ [
+ -79.87199070412116,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.600447651896786
+ ],
+ [
+ -79.89193436354455,
+ 25.631773157318477
+ ],
+ [
+ -79.9318216823913,
+ 25.631773157318477
+ ],
+ [
+ -79.95176534181469,
+ 25.600447651896786
+ ],
+ [
+ -79.9318216823913,
+ 25.569122146475095
+ ],
+ [
+ -79.89193436354455,
+ 25.569122146475095
+ ],
+ [
+ -79.87199070412116,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.663098662740172
+ ],
+ [
+ -79.89193436354455,
+ 25.694424168161863
+ ],
+ [
+ -79.9318216823913,
+ 25.694424168161863
+ ],
+ [
+ -79.95176534181469,
+ 25.663098662740172
+ ],
+ [
+ -79.9318216823913,
+ 25.63177315731848
+ ],
+ [
+ -79.89193436354455,
+ 25.63177315731848
+ ],
+ [
+ -79.87199070412116,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.725749673583557
+ ],
+ [
+ -79.89193436354455,
+ 25.75707517900525
+ ],
+ [
+ -79.9318216823913,
+ 25.75707517900525
+ ],
+ [
+ -79.95176534181469,
+ 25.725749673583557
+ ],
+ [
+ -79.9318216823913,
+ 25.694424168161866
+ ],
+ [
+ -79.89193436354455,
+ 25.694424168161866
+ ],
+ [
+ -79.87199070412116,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.788400684426943
+ ],
+ [
+ -79.89193436354455,
+ 25.819726189848634
+ ],
+ [
+ -79.9318216823913,
+ 25.819726189848634
+ ],
+ [
+ -79.95176534181469,
+ 25.788400684426943
+ ],
+ [
+ -79.9318216823913,
+ 25.757075179005252
+ ],
+ [
+ -79.89193436354455,
+ 25.757075179005252
+ ],
+ [
+ -79.87199070412116,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.85105169527033
+ ],
+ [
+ -79.89193436354455,
+ 25.88237720069202
+ ],
+ [
+ -79.9318216823913,
+ 25.88237720069202
+ ],
+ [
+ -79.95176534181469,
+ 25.85105169527033
+ ],
+ [
+ -79.9318216823913,
+ 25.819726189848637
+ ],
+ [
+ -79.89193436354455,
+ 25.819726189848637
+ ],
+ [
+ -79.87199070412116,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.913702706113714
+ ],
+ [
+ -79.89193436354455,
+ 25.945028211535405
+ ],
+ [
+ -79.9318216823913,
+ 25.945028211535405
+ ],
+ [
+ -79.95176534181469,
+ 25.913702706113714
+ ],
+ [
+ -79.9318216823913,
+ 25.882377200692023
+ ],
+ [
+ -79.89193436354455,
+ 25.882377200692023
+ ],
+ [
+ -79.87199070412116,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 25.9763537169571
+ ],
+ [
+ -79.89193436354455,
+ 26.00767922237879
+ ],
+ [
+ -79.9318216823913,
+ 26.00767922237879
+ ],
+ [
+ -79.95176534181469,
+ 25.9763537169571
+ ],
+ [
+ -79.9318216823913,
+ 25.94502821153541
+ ],
+ [
+ -79.89193436354455,
+ 25.94502821153541
+ ],
+ [
+ -79.87199070412116,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 26.039004727800485
+ ],
+ [
+ -79.89193436354455,
+ 26.070330233222176
+ ],
+ [
+ -79.9318216823913,
+ 26.070330233222176
+ ],
+ [
+ -79.95176534181469,
+ 26.039004727800485
+ ],
+ [
+ -79.9318216823913,
+ 26.007679222378794
+ ],
+ [
+ -79.89193436354455,
+ 26.007679222378794
+ ],
+ [
+ -79.87199070412116,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 26.10165573864387
+ ],
+ [
+ -79.89193436354455,
+ 26.13298124406556
+ ],
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ],
+ [
+ -79.95176534181469,
+ 26.10165573864387
+ ],
+ [
+ -79.9318216823913,
+ 26.07033023322218
+ ],
+ [
+ -79.89193436354455,
+ 26.07033023322218
+ ],
+ [
+ -79.87199070412116,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 26.164306749487253
+ ],
+ [
+ -79.89193436354455,
+ 26.195632254908944
+ ],
+ [
+ -79.9318216823913,
+ 26.195632254908944
+ ],
+ [
+ -79.95176534181469,
+ 26.164306749487253
+ ],
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ],
+ [
+ -79.89193436354455,
+ 26.13298124406556
+ ],
+ [
+ -79.87199070412116,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 26.22695776033064
+ ],
+ [
+ -79.89193436354455,
+ 26.258283265752333
+ ],
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ],
+ [
+ -79.95176534181469,
+ 26.22695776033064
+ ],
+ [
+ -79.9318216823913,
+ 26.19563225490895
+ ],
+ [
+ -79.89193436354455,
+ 26.19563225490895
+ ],
+ [
+ -79.87199070412116,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 26.289608771174024
+ ],
+ [
+ -79.89193436354455,
+ 26.320934276595715
+ ],
+ [
+ -79.9318216823913,
+ 26.320934276595715
+ ],
+ [
+ -79.95176534181469,
+ 26.289608771174024
+ ],
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ],
+ [
+ -79.89193436354455,
+ 26.258283265752333
+ ],
+ [
+ -79.87199070412116,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 26.35225978201741
+ ],
+ [
+ -79.89193436354455,
+ 26.3835852874391
+ ],
+ [
+ -79.9318216823913,
+ 26.3835852874391
+ ],
+ [
+ -79.95176534181469,
+ 26.35225978201741
+ ],
+ [
+ -79.9318216823913,
+ 26.320934276595718
+ ],
+ [
+ -79.89193436354455,
+ 26.320934276595718
+ ],
+ [
+ -79.87199070412116,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.87199070412116,
+ 26.414910792860795
+ ],
+ [
+ -79.89193436354455,
+ 26.446236298282486
+ ],
+ [
+ -79.9318216823913,
+ 26.446236298282486
+ ],
+ [
+ -79.95176534181469,
+ 26.414910792860795
+ ],
+ [
+ -79.9318216823913,
+ 26.383585287439104
+ ],
+ [
+ -79.89193436354455,
+ 26.383585287439104
+ ],
+ [
+ -79.87199070412116,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 24.942612038041236
+ ],
+ [
+ -79.8321033852744,
+ 24.973937543462927
+ ],
+ [
+ -79.87199070412115,
+ 24.973937543462927
+ ],
+ [
+ -79.89193436354454,
+ 24.942612038041236
+ ],
+ [
+ -79.87199070412115,
+ 24.911286532619545
+ ],
+ [
+ -79.8321033852744,
+ 24.911286532619545
+ ],
+ [
+ -79.812159725851,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.005263048884622
+ ],
+ [
+ -79.8321033852744,
+ 25.036588554306313
+ ],
+ [
+ -79.87199070412115,
+ 25.036588554306313
+ ],
+ [
+ -79.89193436354454,
+ 25.005263048884622
+ ],
+ [
+ -79.87199070412115,
+ 24.97393754346293
+ ],
+ [
+ -79.8321033852744,
+ 24.97393754346293
+ ],
+ [
+ -79.812159725851,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.067914059728007
+ ],
+ [
+ -79.8321033852744,
+ 25.0992395651497
+ ],
+ [
+ -79.87199070412115,
+ 25.0992395651497
+ ],
+ [
+ -79.89193436354454,
+ 25.067914059728007
+ ],
+ [
+ -79.87199070412115,
+ 25.036588554306316
+ ],
+ [
+ -79.8321033852744,
+ 25.036588554306316
+ ],
+ [
+ -79.812159725851,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.130565070571393
+ ],
+ [
+ -79.8321033852744,
+ 25.161890575993084
+ ],
+ [
+ -79.87199070412115,
+ 25.161890575993084
+ ],
+ [
+ -79.89193436354454,
+ 25.130565070571393
+ ],
+ [
+ -79.87199070412115,
+ 25.099239565149702
+ ],
+ [
+ -79.8321033852744,
+ 25.099239565149702
+ ],
+ [
+ -79.812159725851,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.19321608141478
+ ],
+ [
+ -79.8321033852744,
+ 25.22454158683647
+ ],
+ [
+ -79.87199070412115,
+ 25.22454158683647
+ ],
+ [
+ -79.89193436354454,
+ 25.19321608141478
+ ],
+ [
+ -79.87199070412115,
+ 25.161890575993088
+ ],
+ [
+ -79.8321033852744,
+ 25.161890575993088
+ ],
+ [
+ -79.812159725851,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.255867092258164
+ ],
+ [
+ -79.8321033852744,
+ 25.287192597679855
+ ],
+ [
+ -79.87199070412115,
+ 25.287192597679855
+ ],
+ [
+ -79.89193436354454,
+ 25.255867092258164
+ ],
+ [
+ -79.87199070412115,
+ 25.224541586836473
+ ],
+ [
+ -79.8321033852744,
+ 25.224541586836473
+ ],
+ [
+ -79.812159725851,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.31851810310155
+ ],
+ [
+ -79.8321033852744,
+ 25.34984360852324
+ ],
+ [
+ -79.87199070412115,
+ 25.34984360852324
+ ],
+ [
+ -79.89193436354454,
+ 25.31851810310155
+ ],
+ [
+ -79.87199070412115,
+ 25.28719259767986
+ ],
+ [
+ -79.8321033852744,
+ 25.28719259767986
+ ],
+ [
+ -79.812159725851,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.381169113944935
+ ],
+ [
+ -79.8321033852744,
+ 25.412494619366626
+ ],
+ [
+ -79.87199070412115,
+ 25.412494619366626
+ ],
+ [
+ -79.89193436354454,
+ 25.381169113944935
+ ],
+ [
+ -79.87199070412115,
+ 25.349843608523244
+ ],
+ [
+ -79.8321033852744,
+ 25.349843608523244
+ ],
+ [
+ -79.812159725851,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.44382012478832
+ ],
+ [
+ -79.8321033852744,
+ 25.47514563021001
+ ],
+ [
+ -79.87199070412115,
+ 25.47514563021001
+ ],
+ [
+ -79.89193436354454,
+ 25.44382012478832
+ ],
+ [
+ -79.87199070412115,
+ 25.41249461936663
+ ],
+ [
+ -79.8321033852744,
+ 25.41249461936663
+ ],
+ [
+ -79.812159725851,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.506471135631706
+ ],
+ [
+ -79.8321033852744,
+ 25.537796641053397
+ ],
+ [
+ -79.87199070412115,
+ 25.537796641053397
+ ],
+ [
+ -79.89193436354454,
+ 25.506471135631706
+ ],
+ [
+ -79.87199070412115,
+ 25.475145630210015
+ ],
+ [
+ -79.8321033852744,
+ 25.475145630210015
+ ],
+ [
+ -79.812159725851,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.56912214647509
+ ],
+ [
+ -79.8321033852744,
+ 25.600447651896783
+ ],
+ [
+ -79.87199070412115,
+ 25.600447651896783
+ ],
+ [
+ -79.89193436354454,
+ 25.56912214647509
+ ],
+ [
+ -79.87199070412115,
+ 25.5377966410534
+ ],
+ [
+ -79.8321033852744,
+ 25.5377966410534
+ ],
+ [
+ -79.812159725851,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.631773157318477
+ ],
+ [
+ -79.8321033852744,
+ 25.66309866274017
+ ],
+ [
+ -79.87199070412115,
+ 25.66309866274017
+ ],
+ [
+ -79.89193436354454,
+ 25.631773157318477
+ ],
+ [
+ -79.87199070412115,
+ 25.600447651896786
+ ],
+ [
+ -79.8321033852744,
+ 25.600447651896786
+ ],
+ [
+ -79.812159725851,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.694424168161863
+ ],
+ [
+ -79.8321033852744,
+ 25.725749673583554
+ ],
+ [
+ -79.87199070412115,
+ 25.725749673583554
+ ],
+ [
+ -79.89193436354454,
+ 25.694424168161863
+ ],
+ [
+ -79.87199070412115,
+ 25.663098662740172
+ ],
+ [
+ -79.8321033852744,
+ 25.663098662740172
+ ],
+ [
+ -79.812159725851,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.75707517900525
+ ],
+ [
+ -79.8321033852744,
+ 25.78840068442694
+ ],
+ [
+ -79.87199070412115,
+ 25.78840068442694
+ ],
+ [
+ -79.89193436354454,
+ 25.75707517900525
+ ],
+ [
+ -79.87199070412115,
+ 25.725749673583557
+ ],
+ [
+ -79.8321033852744,
+ 25.725749673583557
+ ],
+ [
+ -79.812159725851,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.819726189848634
+ ],
+ [
+ -79.8321033852744,
+ 25.851051695270325
+ ],
+ [
+ -79.87199070412115,
+ 25.851051695270325
+ ],
+ [
+ -79.89193436354454,
+ 25.819726189848634
+ ],
+ [
+ -79.87199070412115,
+ 25.788400684426943
+ ],
+ [
+ -79.8321033852744,
+ 25.788400684426943
+ ],
+ [
+ -79.812159725851,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.88237720069202
+ ],
+ [
+ -79.8321033852744,
+ 25.91370270611371
+ ],
+ [
+ -79.87199070412115,
+ 25.91370270611371
+ ],
+ [
+ -79.89193436354454,
+ 25.88237720069202
+ ],
+ [
+ -79.87199070412115,
+ 25.85105169527033
+ ],
+ [
+ -79.8321033852744,
+ 25.85105169527033
+ ],
+ [
+ -79.812159725851,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 25.945028211535405
+ ],
+ [
+ -79.8321033852744,
+ 25.976353716957096
+ ],
+ [
+ -79.87199070412115,
+ 25.976353716957096
+ ],
+ [
+ -79.89193436354454,
+ 25.945028211535405
+ ],
+ [
+ -79.87199070412115,
+ 25.913702706113714
+ ],
+ [
+ -79.8321033852744,
+ 25.913702706113714
+ ],
+ [
+ -79.812159725851,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 26.00767922237879
+ ],
+ [
+ -79.8321033852744,
+ 26.03900472780048
+ ],
+ [
+ -79.87199070412115,
+ 26.03900472780048
+ ],
+ [
+ -79.89193436354454,
+ 26.00767922237879
+ ],
+ [
+ -79.87199070412115,
+ 25.9763537169571
+ ],
+ [
+ -79.8321033852744,
+ 25.9763537169571
+ ],
+ [
+ -79.812159725851,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 26.070330233222176
+ ],
+ [
+ -79.8321033852744,
+ 26.101655738643867
+ ],
+ [
+ -79.87199070412115,
+ 26.101655738643867
+ ],
+ [
+ -79.89193436354454,
+ 26.070330233222176
+ ],
+ [
+ -79.87199070412115,
+ 26.039004727800485
+ ],
+ [
+ -79.8321033852744,
+ 26.039004727800485
+ ],
+ [
+ -79.812159725851,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 26.13298124406556
+ ],
+ [
+ -79.8321033852744,
+ 26.164306749487253
+ ],
+ [
+ -79.87199070412115,
+ 26.164306749487253
+ ],
+ [
+ -79.89193436354454,
+ 26.13298124406556
+ ],
+ [
+ -79.87199070412115,
+ 26.10165573864387
+ ],
+ [
+ -79.8321033852744,
+ 26.10165573864387
+ ],
+ [
+ -79.812159725851,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 26.195632254908944
+ ],
+ [
+ -79.8321033852744,
+ 26.226957760330635
+ ],
+ [
+ -79.87199070412115,
+ 26.226957760330635
+ ],
+ [
+ -79.89193436354454,
+ 26.195632254908944
+ ],
+ [
+ -79.87199070412115,
+ 26.164306749487253
+ ],
+ [
+ -79.8321033852744,
+ 26.164306749487253
+ ],
+ [
+ -79.812159725851,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 26.258283265752333
+ ],
+ [
+ -79.8321033852744,
+ 26.289608771174024
+ ],
+ [
+ -79.87199070412115,
+ 26.289608771174024
+ ],
+ [
+ -79.89193436354454,
+ 26.258283265752333
+ ],
+ [
+ -79.87199070412115,
+ 26.22695776033064
+ ],
+ [
+ -79.8321033852744,
+ 26.22695776033064
+ ],
+ [
+ -79.812159725851,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 26.320934276595715
+ ],
+ [
+ -79.8321033852744,
+ 26.352259782017406
+ ],
+ [
+ -79.87199070412115,
+ 26.352259782017406
+ ],
+ [
+ -79.89193436354454,
+ 26.320934276595715
+ ],
+ [
+ -79.87199070412115,
+ 26.289608771174024
+ ],
+ [
+ -79.8321033852744,
+ 26.289608771174024
+ ],
+ [
+ -79.812159725851,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 26.3835852874391
+ ],
+ [
+ -79.8321033852744,
+ 26.41491079286079
+ ],
+ [
+ -79.87199070412115,
+ 26.41491079286079
+ ],
+ [
+ -79.89193436354454,
+ 26.3835852874391
+ ],
+ [
+ -79.87199070412115,
+ 26.35225978201741
+ ],
+ [
+ -79.8321033852744,
+ 26.35225978201741
+ ],
+ [
+ -79.812159725851,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.812159725851,
+ 26.446236298282486
+ ],
+ [
+ -79.8321033852744,
+ 26.477561803704177
+ ],
+ [
+ -79.87199070412115,
+ 26.477561803704177
+ ],
+ [
+ -79.89193436354454,
+ 26.446236298282486
+ ],
+ [
+ -79.87199070412115,
+ 26.414910792860795
+ ],
+ [
+ -79.8321033852744,
+ 26.414910792860795
+ ],
+ [
+ -79.812159725851,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "fill-opacity": 0,
+ "stroke": "#0ff"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.650390625,
+ 24.926294766395593
+ ],
+ [
+ -79.8486328125,
+ 24.926294766395593
+ ],
+ [
+ -79.8486328125,
+ 26.43122806450644
+ ],
+ [
+ -81.650390625,
+ 26.43122806450644
+ ],
+ [
+ -81.650390625,
+ 24.926294766395593
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-hex-grid/test/out/grid3.geojson b/packages/turf-hex-grid/test/out/grid3.geojson
new file mode 100644
index 0000000000..be1e52ba99
--- /dev/null
+++ b/packages/turf-hex-grid/test/out/grid3.geojson
@@ -0,0 +1,8658 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ],
+ [
+ -77.38122994109527,
+ 38.742194668655884
+ ],
+ [
+ -77.39977439249485,
+ 38.742194668655884
+ ],
+ [
+ -77.40904661819465,
+ 38.72966446648721
+ ],
+ [
+ -77.39977439249485,
+ 38.71713426431853
+ ],
+ [
+ -77.38122994109527,
+ 38.71713426431853
+ ],
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.75472487082456
+ ],
+ [
+ -77.38122994109527,
+ 38.76725507299324
+ ],
+ [
+ -77.39977439249485,
+ 38.76725507299324
+ ],
+ [
+ -77.40904661819465,
+ 38.75472487082456
+ ],
+ [
+ -77.39977439249485,
+ 38.742194668655884
+ ],
+ [
+ -77.38122994109527,
+ 38.742194668655884
+ ],
+ [
+ -77.37195771539547,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ],
+ [
+ -77.38122994109527,
+ 38.7923154773306
+ ],
+ [
+ -77.39977439249485,
+ 38.7923154773306
+ ],
+ [
+ -77.40904661819465,
+ 38.77978527516192
+ ],
+ [
+ -77.39977439249485,
+ 38.767255072993244
+ ],
+ [
+ -77.38122994109527,
+ 38.767255072993244
+ ],
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ],
+ [
+ -77.38122994109527,
+ 38.81737588166795
+ ],
+ [
+ -77.39977439249485,
+ 38.81737588166795
+ ],
+ [
+ -77.40904661819465,
+ 38.80484567949927
+ ],
+ [
+ -77.39977439249485,
+ 38.7923154773306
+ ],
+ [
+ -77.38122994109527,
+ 38.7923154773306
+ ],
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ],
+ [
+ -77.38122994109527,
+ 38.8424362860053
+ ],
+ [
+ -77.39977439249485,
+ 38.8424362860053
+ ],
+ [
+ -77.40904661819465,
+ 38.829906083836626
+ ],
+ [
+ -77.39977439249485,
+ 38.81737588166795
+ ],
+ [
+ -77.38122994109527,
+ 38.81737588166795
+ ],
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ],
+ [
+ -77.38122994109527,
+ 38.867496690342655
+ ],
+ [
+ -77.39977439249485,
+ 38.867496690342655
+ ],
+ [
+ -77.40904661819465,
+ 38.85496648817398
+ ],
+ [
+ -77.39977439249485,
+ 38.8424362860053
+ ],
+ [
+ -77.38122994109527,
+ 38.8424362860053
+ ],
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.88002689251133
+ ],
+ [
+ -77.38122994109527,
+ 38.89255709468001
+ ],
+ [
+ -77.39977439249485,
+ 38.89255709468001
+ ],
+ [
+ -77.40904661819465,
+ 38.88002689251133
+ ],
+ [
+ -77.39977439249485,
+ 38.867496690342655
+ ],
+ [
+ -77.38122994109527,
+ 38.867496690342655
+ ],
+ [
+ -77.37195771539547,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ],
+ [
+ -77.38122994109527,
+ 38.91761749901737
+ ],
+ [
+ -77.39977439249485,
+ 38.91761749901737
+ ],
+ [
+ -77.40904661819465,
+ 38.90508729684869
+ ],
+ [
+ -77.39977439249485,
+ 38.892557094680015
+ ],
+ [
+ -77.38122994109527,
+ 38.892557094680015
+ ],
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ],
+ [
+ -77.38122994109527,
+ 38.94267790335472
+ ],
+ [
+ -77.39977439249485,
+ 38.94267790335472
+ ],
+ [
+ -77.40904661819465,
+ 38.930147701186044
+ ],
+ [
+ -77.39977439249485,
+ 38.91761749901737
+ ],
+ [
+ -77.38122994109527,
+ 38.91761749901737
+ ],
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ],
+ [
+ -77.38122994109527,
+ 38.96773830769207
+ ],
+ [
+ -77.39977439249485,
+ 38.96773830769207
+ ],
+ [
+ -77.40904661819465,
+ 38.9552081055234
+ ],
+ [
+ -77.39977439249485,
+ 38.94267790335472
+ ],
+ [
+ -77.38122994109527,
+ 38.94267790335472
+ ],
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ],
+ [
+ -77.38122994109527,
+ 38.992798712029426
+ ],
+ [
+ -77.39977439249485,
+ 38.992798712029426
+ ],
+ [
+ -77.40904661819465,
+ 38.98026850986075
+ ],
+ [
+ -77.39977439249485,
+ 38.96773830769207
+ ],
+ [
+ -77.38122994109527,
+ 38.96773830769207
+ ],
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 39.0053289141981
+ ],
+ [
+ -77.38122994109527,
+ 39.01785911636678
+ ],
+ [
+ -77.39977439249485,
+ 39.01785911636678
+ ],
+ [
+ -77.40904661819465,
+ 39.0053289141981
+ ],
+ [
+ -77.39977439249485,
+ 38.992798712029426
+ ],
+ [
+ -77.38122994109527,
+ 38.992798712029426
+ ],
+ [
+ -77.37195771539547,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.37195771539547,
+ 39.03038931853546
+ ],
+ [
+ -77.38122994109527,
+ 39.04291952070414
+ ],
+ [
+ -77.39977439249485,
+ 39.04291952070414
+ ],
+ [
+ -77.40904661819465,
+ 39.03038931853546
+ ],
+ [
+ -77.39977439249485,
+ 39.017859116366786
+ ],
+ [
+ -77.38122994109527,
+ 39.017859116366786
+ ],
+ [
+ -77.37195771539547,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.71713426431853
+ ],
+ [
+ -77.35341326399589,
+ 38.72966446648721
+ ],
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ],
+ [
+ -77.38122994109527,
+ 38.71713426431853
+ ],
+ [
+ -77.37195771539547,
+ 38.704604062149855
+ ],
+ [
+ -77.35341326399589,
+ 38.704604062149855
+ ],
+ [
+ -77.34414103829609,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ],
+ [
+ -77.35341326399589,
+ 38.75472487082456
+ ],
+ [
+ -77.37195771539547,
+ 38.75472487082456
+ ],
+ [
+ -77.38122994109527,
+ 38.742194668655884
+ ],
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ],
+ [
+ -77.35341326399589,
+ 38.72966446648721
+ ],
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.767255072993244
+ ],
+ [
+ -77.35341326399589,
+ 38.77978527516192
+ ],
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ],
+ [
+ -77.38122994109527,
+ 38.767255072993244
+ ],
+ [
+ -77.37195771539547,
+ 38.75472487082457
+ ],
+ [
+ -77.35341326399589,
+ 38.75472487082457
+ ],
+ [
+ -77.34414103829609,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ],
+ [
+ -77.35341326399589,
+ 38.80484567949927
+ ],
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ],
+ [
+ -77.38122994109527,
+ 38.7923154773306
+ ],
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ],
+ [
+ -77.35341326399589,
+ 38.77978527516192
+ ],
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ],
+ [
+ -77.35341326399589,
+ 38.829906083836626
+ ],
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ],
+ [
+ -77.38122994109527,
+ 38.81737588166795
+ ],
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ],
+ [
+ -77.35341326399589,
+ 38.80484567949927
+ ],
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ],
+ [
+ -77.35341326399589,
+ 38.85496648817398
+ ],
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ],
+ [
+ -77.38122994109527,
+ 38.8424362860053
+ ],
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ],
+ [
+ -77.35341326399589,
+ 38.829906083836626
+ ],
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ],
+ [
+ -77.35341326399589,
+ 38.88002689251133
+ ],
+ [
+ -77.37195771539547,
+ 38.88002689251133
+ ],
+ [
+ -77.38122994109527,
+ 38.867496690342655
+ ],
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ],
+ [
+ -77.35341326399589,
+ 38.85496648817398
+ ],
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.892557094680015
+ ],
+ [
+ -77.35341326399589,
+ 38.90508729684869
+ ],
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ],
+ [
+ -77.38122994109527,
+ 38.892557094680015
+ ],
+ [
+ -77.37195771539547,
+ 38.88002689251134
+ ],
+ [
+ -77.35341326399589,
+ 38.88002689251134
+ ],
+ [
+ -77.34414103829609,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ],
+ [
+ -77.35341326399589,
+ 38.930147701186044
+ ],
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ],
+ [
+ -77.38122994109527,
+ 38.91761749901737
+ ],
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ],
+ [
+ -77.35341326399589,
+ 38.90508729684869
+ ],
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ],
+ [
+ -77.35341326399589,
+ 38.9552081055234
+ ],
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ],
+ [
+ -77.38122994109527,
+ 38.94267790335472
+ ],
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ],
+ [
+ -77.35341326399589,
+ 38.930147701186044
+ ],
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ],
+ [
+ -77.35341326399589,
+ 38.98026850986075
+ ],
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ],
+ [
+ -77.38122994109527,
+ 38.96773830769207
+ ],
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ],
+ [
+ -77.35341326399589,
+ 38.9552081055234
+ ],
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ],
+ [
+ -77.35341326399589,
+ 39.0053289141981
+ ],
+ [
+ -77.37195771539547,
+ 39.0053289141981
+ ],
+ [
+ -77.38122994109527,
+ 38.992798712029426
+ ],
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ],
+ [
+ -77.35341326399589,
+ 38.98026850986075
+ ],
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.34414103829609,
+ 39.017859116366786
+ ],
+ [
+ -77.35341326399589,
+ 39.03038931853546
+ ],
+ [
+ -77.37195771539547,
+ 39.03038931853546
+ ],
+ [
+ -77.38122994109527,
+ 39.017859116366786
+ ],
+ [
+ -77.37195771539547,
+ 39.00532891419811
+ ],
+ [
+ -77.35341326399589,
+ 39.00532891419811
+ ],
+ [
+ -77.34414103829609,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ],
+ [
+ -77.32559658689651,
+ 38.742194668655884
+ ],
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ],
+ [
+ -77.35341326399589,
+ 38.72966446648721
+ ],
+ [
+ -77.34414103829609,
+ 38.71713426431853
+ ],
+ [
+ -77.32559658689651,
+ 38.71713426431853
+ ],
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.75472487082456
+ ],
+ [
+ -77.32559658689651,
+ 38.76725507299324
+ ],
+ [
+ -77.34414103829609,
+ 38.76725507299324
+ ],
+ [
+ -77.35341326399589,
+ 38.75472487082456
+ ],
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ],
+ [
+ -77.32559658689651,
+ 38.742194668655884
+ ],
+ [
+ -77.3163243611967,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ],
+ [
+ -77.32559658689651,
+ 38.7923154773306
+ ],
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ],
+ [
+ -77.35341326399589,
+ 38.77978527516192
+ ],
+ [
+ -77.34414103829609,
+ 38.767255072993244
+ ],
+ [
+ -77.32559658689651,
+ 38.767255072993244
+ ],
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ],
+ [
+ -77.32559658689651,
+ 38.81737588166795
+ ],
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ],
+ [
+ -77.35341326399589,
+ 38.80484567949927
+ ],
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ],
+ [
+ -77.32559658689651,
+ 38.7923154773306
+ ],
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ],
+ [
+ -77.32559658689651,
+ 38.8424362860053
+ ],
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ],
+ [
+ -77.35341326399589,
+ 38.829906083836626
+ ],
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ],
+ [
+ -77.32559658689651,
+ 38.81737588166795
+ ],
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ],
+ [
+ -77.32559658689651,
+ 38.867496690342655
+ ],
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ],
+ [
+ -77.35341326399589,
+ 38.85496648817398
+ ],
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ],
+ [
+ -77.32559658689651,
+ 38.8424362860053
+ ],
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.88002689251133
+ ],
+ [
+ -77.32559658689651,
+ 38.89255709468001
+ ],
+ [
+ -77.34414103829609,
+ 38.89255709468001
+ ],
+ [
+ -77.35341326399589,
+ 38.88002689251133
+ ],
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ],
+ [
+ -77.32559658689651,
+ 38.867496690342655
+ ],
+ [
+ -77.3163243611967,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ],
+ [
+ -77.32559658689651,
+ 38.91761749901737
+ ],
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ],
+ [
+ -77.35341326399589,
+ 38.90508729684869
+ ],
+ [
+ -77.34414103829609,
+ 38.892557094680015
+ ],
+ [
+ -77.32559658689651,
+ 38.892557094680015
+ ],
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ],
+ [
+ -77.32559658689651,
+ 38.94267790335472
+ ],
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ],
+ [
+ -77.35341326399589,
+ 38.930147701186044
+ ],
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ],
+ [
+ -77.32559658689651,
+ 38.91761749901737
+ ],
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ],
+ [
+ -77.32559658689651,
+ 38.96773830769207
+ ],
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ],
+ [
+ -77.35341326399589,
+ 38.9552081055234
+ ],
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ],
+ [
+ -77.32559658689651,
+ 38.94267790335472
+ ],
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ],
+ [
+ -77.32559658689651,
+ 38.992798712029426
+ ],
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ],
+ [
+ -77.35341326399589,
+ 38.98026850986075
+ ],
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ],
+ [
+ -77.32559658689651,
+ 38.96773830769207
+ ],
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 39.0053289141981
+ ],
+ [
+ -77.32559658689651,
+ 39.01785911636678
+ ],
+ [
+ -77.34414103829609,
+ 39.01785911636678
+ ],
+ [
+ -77.35341326399589,
+ 39.0053289141981
+ ],
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ],
+ [
+ -77.32559658689651,
+ 38.992798712029426
+ ],
+ [
+ -77.3163243611967,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3163243611967,
+ 39.03038931853546
+ ],
+ [
+ -77.32559658689651,
+ 39.04291952070414
+ ],
+ [
+ -77.34414103829609,
+ 39.04291952070414
+ ],
+ [
+ -77.35341326399589,
+ 39.03038931853546
+ ],
+ [
+ -77.34414103829609,
+ 39.017859116366786
+ ],
+ [
+ -77.32559658689651,
+ 39.017859116366786
+ ],
+ [
+ -77.3163243611967,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.71713426431853
+ ],
+ [
+ -77.29777990979713,
+ 38.72966446648721
+ ],
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ],
+ [
+ -77.32559658689651,
+ 38.71713426431853
+ ],
+ [
+ -77.3163243611967,
+ 38.704604062149855
+ ],
+ [
+ -77.29777990979713,
+ 38.704604062149855
+ ],
+ [
+ -77.28850768409733,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ],
+ [
+ -77.29777990979713,
+ 38.75472487082456
+ ],
+ [
+ -77.3163243611967,
+ 38.75472487082456
+ ],
+ [
+ -77.32559658689651,
+ 38.742194668655884
+ ],
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ],
+ [
+ -77.29777990979713,
+ 38.72966446648721
+ ],
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.767255072993244
+ ],
+ [
+ -77.29777990979713,
+ 38.77978527516192
+ ],
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ],
+ [
+ -77.32559658689651,
+ 38.767255072993244
+ ],
+ [
+ -77.3163243611967,
+ 38.75472487082457
+ ],
+ [
+ -77.29777990979713,
+ 38.75472487082457
+ ],
+ [
+ -77.28850768409733,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ],
+ [
+ -77.29777990979713,
+ 38.80484567949927
+ ],
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ],
+ [
+ -77.32559658689651,
+ 38.7923154773306
+ ],
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ],
+ [
+ -77.29777990979713,
+ 38.77978527516192
+ ],
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ],
+ [
+ -77.29777990979713,
+ 38.829906083836626
+ ],
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ],
+ [
+ -77.32559658689651,
+ 38.81737588166795
+ ],
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ],
+ [
+ -77.29777990979713,
+ 38.80484567949927
+ ],
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ],
+ [
+ -77.29777990979713,
+ 38.85496648817398
+ ],
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ],
+ [
+ -77.32559658689651,
+ 38.8424362860053
+ ],
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ],
+ [
+ -77.29777990979713,
+ 38.829906083836626
+ ],
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ],
+ [
+ -77.29777990979713,
+ 38.88002689251133
+ ],
+ [
+ -77.3163243611967,
+ 38.88002689251133
+ ],
+ [
+ -77.32559658689651,
+ 38.867496690342655
+ ],
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ],
+ [
+ -77.29777990979713,
+ 38.85496648817398
+ ],
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.892557094680015
+ ],
+ [
+ -77.29777990979713,
+ 38.90508729684869
+ ],
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ],
+ [
+ -77.32559658689651,
+ 38.892557094680015
+ ],
+ [
+ -77.3163243611967,
+ 38.88002689251134
+ ],
+ [
+ -77.29777990979713,
+ 38.88002689251134
+ ],
+ [
+ -77.28850768409733,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ],
+ [
+ -77.29777990979713,
+ 38.930147701186044
+ ],
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ],
+ [
+ -77.32559658689651,
+ 38.91761749901737
+ ],
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ],
+ [
+ -77.29777990979713,
+ 38.90508729684869
+ ],
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ],
+ [
+ -77.29777990979713,
+ 38.9552081055234
+ ],
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ],
+ [
+ -77.32559658689651,
+ 38.94267790335472
+ ],
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ],
+ [
+ -77.29777990979713,
+ 38.930147701186044
+ ],
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ],
+ [
+ -77.29777990979713,
+ 38.98026850986075
+ ],
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ],
+ [
+ -77.32559658689651,
+ 38.96773830769207
+ ],
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ],
+ [
+ -77.29777990979713,
+ 38.9552081055234
+ ],
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ],
+ [
+ -77.29777990979713,
+ 39.0053289141981
+ ],
+ [
+ -77.3163243611967,
+ 39.0053289141981
+ ],
+ [
+ -77.32559658689651,
+ 38.992798712029426
+ ],
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ],
+ [
+ -77.29777990979713,
+ 38.98026850986075
+ ],
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.28850768409733,
+ 39.017859116366786
+ ],
+ [
+ -77.29777990979713,
+ 39.03038931853546
+ ],
+ [
+ -77.3163243611967,
+ 39.03038931853546
+ ],
+ [
+ -77.32559658689651,
+ 39.017859116366786
+ ],
+ [
+ -77.3163243611967,
+ 39.00532891419811
+ ],
+ [
+ -77.29777990979713,
+ 39.00532891419811
+ ],
+ [
+ -77.28850768409733,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ],
+ [
+ -77.26996323269775,
+ 38.742194668655884
+ ],
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ],
+ [
+ -77.29777990979713,
+ 38.72966446648721
+ ],
+ [
+ -77.28850768409733,
+ 38.71713426431853
+ ],
+ [
+ -77.26996323269775,
+ 38.71713426431853
+ ],
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.75472487082456
+ ],
+ [
+ -77.26996323269775,
+ 38.76725507299324
+ ],
+ [
+ -77.28850768409733,
+ 38.76725507299324
+ ],
+ [
+ -77.29777990979713,
+ 38.75472487082456
+ ],
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ],
+ [
+ -77.26996323269775,
+ 38.742194668655884
+ ],
+ [
+ -77.26069100699794,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ],
+ [
+ -77.26996323269775,
+ 38.7923154773306
+ ],
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ],
+ [
+ -77.29777990979713,
+ 38.77978527516192
+ ],
+ [
+ -77.28850768409733,
+ 38.767255072993244
+ ],
+ [
+ -77.26996323269775,
+ 38.767255072993244
+ ],
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ],
+ [
+ -77.26996323269775,
+ 38.81737588166795
+ ],
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ],
+ [
+ -77.29777990979713,
+ 38.80484567949927
+ ],
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ],
+ [
+ -77.26996323269775,
+ 38.7923154773306
+ ],
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ],
+ [
+ -77.26996323269775,
+ 38.8424362860053
+ ],
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ],
+ [
+ -77.29777990979713,
+ 38.829906083836626
+ ],
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ],
+ [
+ -77.26996323269775,
+ 38.81737588166795
+ ],
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ],
+ [
+ -77.26996323269775,
+ 38.867496690342655
+ ],
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ],
+ [
+ -77.29777990979713,
+ 38.85496648817398
+ ],
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ],
+ [
+ -77.26996323269775,
+ 38.8424362860053
+ ],
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.88002689251133
+ ],
+ [
+ -77.26996323269775,
+ 38.89255709468001
+ ],
+ [
+ -77.28850768409733,
+ 38.89255709468001
+ ],
+ [
+ -77.29777990979713,
+ 38.88002689251133
+ ],
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ],
+ [
+ -77.26996323269775,
+ 38.867496690342655
+ ],
+ [
+ -77.26069100699794,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ],
+ [
+ -77.26996323269775,
+ 38.91761749901737
+ ],
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ],
+ [
+ -77.29777990979713,
+ 38.90508729684869
+ ],
+ [
+ -77.28850768409733,
+ 38.892557094680015
+ ],
+ [
+ -77.26996323269775,
+ 38.892557094680015
+ ],
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ],
+ [
+ -77.26996323269775,
+ 38.94267790335472
+ ],
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ],
+ [
+ -77.29777990979713,
+ 38.930147701186044
+ ],
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ],
+ [
+ -77.26996323269775,
+ 38.91761749901737
+ ],
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ],
+ [
+ -77.26996323269775,
+ 38.96773830769207
+ ],
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ],
+ [
+ -77.29777990979713,
+ 38.9552081055234
+ ],
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ],
+ [
+ -77.26996323269775,
+ 38.94267790335472
+ ],
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ],
+ [
+ -77.26996323269775,
+ 38.992798712029426
+ ],
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ],
+ [
+ -77.29777990979713,
+ 38.98026850986075
+ ],
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ],
+ [
+ -77.26996323269775,
+ 38.96773830769207
+ ],
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 39.0053289141981
+ ],
+ [
+ -77.26996323269775,
+ 39.01785911636678
+ ],
+ [
+ -77.28850768409733,
+ 39.01785911636678
+ ],
+ [
+ -77.29777990979713,
+ 39.0053289141981
+ ],
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ],
+ [
+ -77.26996323269775,
+ 38.992798712029426
+ ],
+ [
+ -77.26069100699794,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.26069100699794,
+ 39.03038931853546
+ ],
+ [
+ -77.26996323269775,
+ 39.04291952070414
+ ],
+ [
+ -77.28850768409733,
+ 39.04291952070414
+ ],
+ [
+ -77.29777990979713,
+ 39.03038931853546
+ ],
+ [
+ -77.28850768409733,
+ 39.017859116366786
+ ],
+ [
+ -77.26996323269775,
+ 39.017859116366786
+ ],
+ [
+ -77.26069100699794,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.71713426431853
+ ],
+ [
+ -77.24214655559837,
+ 38.72966446648721
+ ],
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ],
+ [
+ -77.26996323269775,
+ 38.71713426431853
+ ],
+ [
+ -77.26069100699794,
+ 38.704604062149855
+ ],
+ [
+ -77.24214655559837,
+ 38.704604062149855
+ ],
+ [
+ -77.23287432989856,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ],
+ [
+ -77.24214655559837,
+ 38.75472487082456
+ ],
+ [
+ -77.26069100699794,
+ 38.75472487082456
+ ],
+ [
+ -77.26996323269775,
+ 38.742194668655884
+ ],
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ],
+ [
+ -77.24214655559837,
+ 38.72966446648721
+ ],
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.767255072993244
+ ],
+ [
+ -77.24214655559837,
+ 38.77978527516192
+ ],
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ],
+ [
+ -77.26996323269775,
+ 38.767255072993244
+ ],
+ [
+ -77.26069100699794,
+ 38.75472487082457
+ ],
+ [
+ -77.24214655559837,
+ 38.75472487082457
+ ],
+ [
+ -77.23287432989856,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ],
+ [
+ -77.24214655559837,
+ 38.80484567949927
+ ],
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ],
+ [
+ -77.26996323269775,
+ 38.7923154773306
+ ],
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ],
+ [
+ -77.24214655559837,
+ 38.77978527516192
+ ],
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ],
+ [
+ -77.24214655559837,
+ 38.829906083836626
+ ],
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ],
+ [
+ -77.26996323269775,
+ 38.81737588166795
+ ],
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ],
+ [
+ -77.24214655559837,
+ 38.80484567949927
+ ],
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ],
+ [
+ -77.24214655559837,
+ 38.85496648817398
+ ],
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ],
+ [
+ -77.26996323269775,
+ 38.8424362860053
+ ],
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ],
+ [
+ -77.24214655559837,
+ 38.829906083836626
+ ],
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ],
+ [
+ -77.24214655559837,
+ 38.88002689251133
+ ],
+ [
+ -77.26069100699794,
+ 38.88002689251133
+ ],
+ [
+ -77.26996323269775,
+ 38.867496690342655
+ ],
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ],
+ [
+ -77.24214655559837,
+ 38.85496648817398
+ ],
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.892557094680015
+ ],
+ [
+ -77.24214655559837,
+ 38.90508729684869
+ ],
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ],
+ [
+ -77.26996323269775,
+ 38.892557094680015
+ ],
+ [
+ -77.26069100699794,
+ 38.88002689251134
+ ],
+ [
+ -77.24214655559837,
+ 38.88002689251134
+ ],
+ [
+ -77.23287432989856,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ],
+ [
+ -77.24214655559837,
+ 38.930147701186044
+ ],
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ],
+ [
+ -77.26996323269775,
+ 38.91761749901737
+ ],
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ],
+ [
+ -77.24214655559837,
+ 38.90508729684869
+ ],
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ],
+ [
+ -77.24214655559837,
+ 38.9552081055234
+ ],
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ],
+ [
+ -77.26996323269775,
+ 38.94267790335472
+ ],
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ],
+ [
+ -77.24214655559837,
+ 38.930147701186044
+ ],
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ],
+ [
+ -77.24214655559837,
+ 38.98026850986075
+ ],
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ],
+ [
+ -77.26996323269775,
+ 38.96773830769207
+ ],
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ],
+ [
+ -77.24214655559837,
+ 38.9552081055234
+ ],
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ],
+ [
+ -77.24214655559837,
+ 39.0053289141981
+ ],
+ [
+ -77.26069100699794,
+ 39.0053289141981
+ ],
+ [
+ -77.26996323269775,
+ 38.992798712029426
+ ],
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ],
+ [
+ -77.24214655559837,
+ 38.98026850986075
+ ],
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.23287432989856,
+ 39.017859116366786
+ ],
+ [
+ -77.24214655559837,
+ 39.03038931853546
+ ],
+ [
+ -77.26069100699794,
+ 39.03038931853546
+ ],
+ [
+ -77.26996323269775,
+ 39.017859116366786
+ ],
+ [
+ -77.26069100699794,
+ 39.00532891419811
+ ],
+ [
+ -77.24214655559837,
+ 39.00532891419811
+ ],
+ [
+ -77.23287432989856,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.72966446648721
+ ],
+ [
+ -77.21432987849899,
+ 38.742194668655884
+ ],
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ],
+ [
+ -77.24214655559837,
+ 38.72966446648721
+ ],
+ [
+ -77.23287432989856,
+ 38.71713426431853
+ ],
+ [
+ -77.21432987849899,
+ 38.71713426431853
+ ],
+ [
+ -77.20505765279918,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.75472487082456
+ ],
+ [
+ -77.21432987849899,
+ 38.76725507299324
+ ],
+ [
+ -77.23287432989856,
+ 38.76725507299324
+ ],
+ [
+ -77.24214655559837,
+ 38.75472487082456
+ ],
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ],
+ [
+ -77.21432987849899,
+ 38.742194668655884
+ ],
+ [
+ -77.20505765279918,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.77978527516192
+ ],
+ [
+ -77.21432987849899,
+ 38.7923154773306
+ ],
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ],
+ [
+ -77.24214655559837,
+ 38.77978527516192
+ ],
+ [
+ -77.23287432989856,
+ 38.767255072993244
+ ],
+ [
+ -77.21432987849899,
+ 38.767255072993244
+ ],
+ [
+ -77.20505765279918,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.80484567949927
+ ],
+ [
+ -77.21432987849899,
+ 38.81737588166795
+ ],
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ],
+ [
+ -77.24214655559837,
+ 38.80484567949927
+ ],
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ],
+ [
+ -77.21432987849899,
+ 38.7923154773306
+ ],
+ [
+ -77.20505765279918,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.829906083836626
+ ],
+ [
+ -77.21432987849899,
+ 38.8424362860053
+ ],
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ],
+ [
+ -77.24214655559837,
+ 38.829906083836626
+ ],
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ],
+ [
+ -77.21432987849899,
+ 38.81737588166795
+ ],
+ [
+ -77.20505765279918,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.85496648817398
+ ],
+ [
+ -77.21432987849899,
+ 38.867496690342655
+ ],
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ],
+ [
+ -77.24214655559837,
+ 38.85496648817398
+ ],
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ],
+ [
+ -77.21432987849899,
+ 38.8424362860053
+ ],
+ [
+ -77.20505765279918,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.88002689251133
+ ],
+ [
+ -77.21432987849899,
+ 38.89255709468001
+ ],
+ [
+ -77.23287432989856,
+ 38.89255709468001
+ ],
+ [
+ -77.24214655559837,
+ 38.88002689251133
+ ],
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ],
+ [
+ -77.21432987849899,
+ 38.867496690342655
+ ],
+ [
+ -77.20505765279918,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.90508729684869
+ ],
+ [
+ -77.21432987849899,
+ 38.91761749901737
+ ],
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ],
+ [
+ -77.24214655559837,
+ 38.90508729684869
+ ],
+ [
+ -77.23287432989856,
+ 38.892557094680015
+ ],
+ [
+ -77.21432987849899,
+ 38.892557094680015
+ ],
+ [
+ -77.20505765279918,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.930147701186044
+ ],
+ [
+ -77.21432987849899,
+ 38.94267790335472
+ ],
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ],
+ [
+ -77.24214655559837,
+ 38.930147701186044
+ ],
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ],
+ [
+ -77.21432987849899,
+ 38.91761749901737
+ ],
+ [
+ -77.20505765279918,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.9552081055234
+ ],
+ [
+ -77.21432987849899,
+ 38.96773830769207
+ ],
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ],
+ [
+ -77.24214655559837,
+ 38.9552081055234
+ ],
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ],
+ [
+ -77.21432987849899,
+ 38.94267790335472
+ ],
+ [
+ -77.20505765279918,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 38.98026850986075
+ ],
+ [
+ -77.21432987849899,
+ 38.992798712029426
+ ],
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ],
+ [
+ -77.24214655559837,
+ 38.98026850986075
+ ],
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ],
+ [
+ -77.21432987849899,
+ 38.96773830769207
+ ],
+ [
+ -77.20505765279918,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 39.0053289141981
+ ],
+ [
+ -77.21432987849899,
+ 39.01785911636678
+ ],
+ [
+ -77.23287432989856,
+ 39.01785911636678
+ ],
+ [
+ -77.24214655559837,
+ 39.0053289141981
+ ],
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ],
+ [
+ -77.21432987849899,
+ 38.992798712029426
+ ],
+ [
+ -77.20505765279918,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.20505765279918,
+ 39.03038931853546
+ ],
+ [
+ -77.21432987849899,
+ 39.04291952070414
+ ],
+ [
+ -77.23287432989856,
+ 39.04291952070414
+ ],
+ [
+ -77.24214655559837,
+ 39.03038931853546
+ ],
+ [
+ -77.23287432989856,
+ 39.017859116366786
+ ],
+ [
+ -77.21432987849899,
+ 39.017859116366786
+ ],
+ [
+ -77.20505765279918,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.71713426431853
+ ],
+ [
+ -77.18651320139959,
+ 38.72966446648721
+ ],
+ [
+ -77.20505765279917,
+ 38.72966446648721
+ ],
+ [
+ -77.21432987849897,
+ 38.71713426431853
+ ],
+ [
+ -77.20505765279917,
+ 38.704604062149855
+ ],
+ [
+ -77.18651320139959,
+ 38.704604062149855
+ ],
+ [
+ -77.17724097569979,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ],
+ [
+ -77.18651320139959,
+ 38.75472487082456
+ ],
+ [
+ -77.20505765279917,
+ 38.75472487082456
+ ],
+ [
+ -77.21432987849897,
+ 38.742194668655884
+ ],
+ [
+ -77.20505765279917,
+ 38.72966446648721
+ ],
+ [
+ -77.18651320139959,
+ 38.72966446648721
+ ],
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.767255072993244
+ ],
+ [
+ -77.18651320139959,
+ 38.77978527516192
+ ],
+ [
+ -77.20505765279917,
+ 38.77978527516192
+ ],
+ [
+ -77.21432987849897,
+ 38.767255072993244
+ ],
+ [
+ -77.20505765279917,
+ 38.75472487082457
+ ],
+ [
+ -77.18651320139959,
+ 38.75472487082457
+ ],
+ [
+ -77.17724097569979,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ],
+ [
+ -77.18651320139959,
+ 38.80484567949927
+ ],
+ [
+ -77.20505765279917,
+ 38.80484567949927
+ ],
+ [
+ -77.21432987849897,
+ 38.7923154773306
+ ],
+ [
+ -77.20505765279917,
+ 38.77978527516192
+ ],
+ [
+ -77.18651320139959,
+ 38.77978527516192
+ ],
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ],
+ [
+ -77.18651320139959,
+ 38.829906083836626
+ ],
+ [
+ -77.20505765279917,
+ 38.829906083836626
+ ],
+ [
+ -77.21432987849897,
+ 38.81737588166795
+ ],
+ [
+ -77.20505765279917,
+ 38.80484567949927
+ ],
+ [
+ -77.18651320139959,
+ 38.80484567949927
+ ],
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ],
+ [
+ -77.18651320139959,
+ 38.85496648817398
+ ],
+ [
+ -77.20505765279917,
+ 38.85496648817398
+ ],
+ [
+ -77.21432987849897,
+ 38.8424362860053
+ ],
+ [
+ -77.20505765279917,
+ 38.829906083836626
+ ],
+ [
+ -77.18651320139959,
+ 38.829906083836626
+ ],
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ],
+ [
+ -77.18651320139959,
+ 38.88002689251133
+ ],
+ [
+ -77.20505765279917,
+ 38.88002689251133
+ ],
+ [
+ -77.21432987849897,
+ 38.867496690342655
+ ],
+ [
+ -77.20505765279917,
+ 38.85496648817398
+ ],
+ [
+ -77.18651320139959,
+ 38.85496648817398
+ ],
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.892557094680015
+ ],
+ [
+ -77.18651320139959,
+ 38.90508729684869
+ ],
+ [
+ -77.20505765279917,
+ 38.90508729684869
+ ],
+ [
+ -77.21432987849897,
+ 38.892557094680015
+ ],
+ [
+ -77.20505765279917,
+ 38.88002689251134
+ ],
+ [
+ -77.18651320139959,
+ 38.88002689251134
+ ],
+ [
+ -77.17724097569979,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ],
+ [
+ -77.18651320139959,
+ 38.930147701186044
+ ],
+ [
+ -77.20505765279917,
+ 38.930147701186044
+ ],
+ [
+ -77.21432987849897,
+ 38.91761749901737
+ ],
+ [
+ -77.20505765279917,
+ 38.90508729684869
+ ],
+ [
+ -77.18651320139959,
+ 38.90508729684869
+ ],
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ],
+ [
+ -77.18651320139959,
+ 38.9552081055234
+ ],
+ [
+ -77.20505765279917,
+ 38.9552081055234
+ ],
+ [
+ -77.21432987849897,
+ 38.94267790335472
+ ],
+ [
+ -77.20505765279917,
+ 38.930147701186044
+ ],
+ [
+ -77.18651320139959,
+ 38.930147701186044
+ ],
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ],
+ [
+ -77.18651320139959,
+ 38.98026850986075
+ ],
+ [
+ -77.20505765279917,
+ 38.98026850986075
+ ],
+ [
+ -77.21432987849897,
+ 38.96773830769207
+ ],
+ [
+ -77.20505765279917,
+ 38.9552081055234
+ ],
+ [
+ -77.18651320139959,
+ 38.9552081055234
+ ],
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ],
+ [
+ -77.18651320139959,
+ 39.0053289141981
+ ],
+ [
+ -77.20505765279917,
+ 39.0053289141981
+ ],
+ [
+ -77.21432987849897,
+ 38.992798712029426
+ ],
+ [
+ -77.20505765279917,
+ 38.98026850986075
+ ],
+ [
+ -77.18651320139959,
+ 38.98026850986075
+ ],
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.17724097569979,
+ 39.017859116366786
+ ],
+ [
+ -77.18651320139959,
+ 39.03038931853546
+ ],
+ [
+ -77.20505765279917,
+ 39.03038931853546
+ ],
+ [
+ -77.21432987849897,
+ 39.017859116366786
+ ],
+ [
+ -77.20505765279917,
+ 39.00532891419811
+ ],
+ [
+ -77.18651320139959,
+ 39.00532891419811
+ ],
+ [
+ -77.17724097569979,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ],
+ [
+ -77.15869652430021,
+ 38.742194668655884
+ ],
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ],
+ [
+ -77.18651320139959,
+ 38.72966446648721
+ ],
+ [
+ -77.17724097569979,
+ 38.71713426431853
+ ],
+ [
+ -77.15869652430021,
+ 38.71713426431853
+ ],
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.75472487082456
+ ],
+ [
+ -77.15869652430021,
+ 38.76725507299324
+ ],
+ [
+ -77.17724097569979,
+ 38.76725507299324
+ ],
+ [
+ -77.18651320139959,
+ 38.75472487082456
+ ],
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ],
+ [
+ -77.15869652430021,
+ 38.742194668655884
+ ],
+ [
+ -77.14942429860041,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ],
+ [
+ -77.15869652430021,
+ 38.7923154773306
+ ],
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ],
+ [
+ -77.18651320139959,
+ 38.77978527516192
+ ],
+ [
+ -77.17724097569979,
+ 38.767255072993244
+ ],
+ [
+ -77.15869652430021,
+ 38.767255072993244
+ ],
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ],
+ [
+ -77.15869652430021,
+ 38.81737588166795
+ ],
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ],
+ [
+ -77.18651320139959,
+ 38.80484567949927
+ ],
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ],
+ [
+ -77.15869652430021,
+ 38.7923154773306
+ ],
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ],
+ [
+ -77.15869652430021,
+ 38.8424362860053
+ ],
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ],
+ [
+ -77.18651320139959,
+ 38.829906083836626
+ ],
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ],
+ [
+ -77.15869652430021,
+ 38.81737588166795
+ ],
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ],
+ [
+ -77.15869652430021,
+ 38.867496690342655
+ ],
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ],
+ [
+ -77.18651320139959,
+ 38.85496648817398
+ ],
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ],
+ [
+ -77.15869652430021,
+ 38.8424362860053
+ ],
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.88002689251133
+ ],
+ [
+ -77.15869652430021,
+ 38.89255709468001
+ ],
+ [
+ -77.17724097569979,
+ 38.89255709468001
+ ],
+ [
+ -77.18651320139959,
+ 38.88002689251133
+ ],
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ],
+ [
+ -77.15869652430021,
+ 38.867496690342655
+ ],
+ [
+ -77.14942429860041,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ],
+ [
+ -77.15869652430021,
+ 38.91761749901737
+ ],
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ],
+ [
+ -77.18651320139959,
+ 38.90508729684869
+ ],
+ [
+ -77.17724097569979,
+ 38.892557094680015
+ ],
+ [
+ -77.15869652430021,
+ 38.892557094680015
+ ],
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ],
+ [
+ -77.15869652430021,
+ 38.94267790335472
+ ],
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ],
+ [
+ -77.18651320139959,
+ 38.930147701186044
+ ],
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ],
+ [
+ -77.15869652430021,
+ 38.91761749901737
+ ],
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ],
+ [
+ -77.15869652430021,
+ 38.96773830769207
+ ],
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ],
+ [
+ -77.18651320139959,
+ 38.9552081055234
+ ],
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ],
+ [
+ -77.15869652430021,
+ 38.94267790335472
+ ],
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ],
+ [
+ -77.15869652430021,
+ 38.992798712029426
+ ],
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ],
+ [
+ -77.18651320139959,
+ 38.98026850986075
+ ],
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ],
+ [
+ -77.15869652430021,
+ 38.96773830769207
+ ],
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 39.0053289141981
+ ],
+ [
+ -77.15869652430021,
+ 39.01785911636678
+ ],
+ [
+ -77.17724097569979,
+ 39.01785911636678
+ ],
+ [
+ -77.18651320139959,
+ 39.0053289141981
+ ],
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ],
+ [
+ -77.15869652430021,
+ 38.992798712029426
+ ],
+ [
+ -77.14942429860041,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14942429860041,
+ 39.03038931853546
+ ],
+ [
+ -77.15869652430021,
+ 39.04291952070414
+ ],
+ [
+ -77.17724097569979,
+ 39.04291952070414
+ ],
+ [
+ -77.18651320139959,
+ 39.03038931853546
+ ],
+ [
+ -77.17724097569979,
+ 39.017859116366786
+ ],
+ [
+ -77.15869652430021,
+ 39.017859116366786
+ ],
+ [
+ -77.14942429860041,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.71713426431853
+ ],
+ [
+ -77.13087984720083,
+ 38.72966446648721
+ ],
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ],
+ [
+ -77.15869652430021,
+ 38.71713426431853
+ ],
+ [
+ -77.14942429860041,
+ 38.704604062149855
+ ],
+ [
+ -77.13087984720083,
+ 38.704604062149855
+ ],
+ [
+ -77.12160762150103,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ],
+ [
+ -77.13087984720083,
+ 38.75472487082456
+ ],
+ [
+ -77.14942429860041,
+ 38.75472487082456
+ ],
+ [
+ -77.15869652430021,
+ 38.742194668655884
+ ],
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ],
+ [
+ -77.13087984720083,
+ 38.72966446648721
+ ],
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.767255072993244
+ ],
+ [
+ -77.13087984720083,
+ 38.77978527516192
+ ],
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ],
+ [
+ -77.15869652430021,
+ 38.767255072993244
+ ],
+ [
+ -77.14942429860041,
+ 38.75472487082457
+ ],
+ [
+ -77.13087984720083,
+ 38.75472487082457
+ ],
+ [
+ -77.12160762150103,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ],
+ [
+ -77.13087984720083,
+ 38.80484567949927
+ ],
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ],
+ [
+ -77.15869652430021,
+ 38.7923154773306
+ ],
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ],
+ [
+ -77.13087984720083,
+ 38.77978527516192
+ ],
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ],
+ [
+ -77.13087984720083,
+ 38.829906083836626
+ ],
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ],
+ [
+ -77.15869652430021,
+ 38.81737588166795
+ ],
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ],
+ [
+ -77.13087984720083,
+ 38.80484567949927
+ ],
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ],
+ [
+ -77.13087984720083,
+ 38.85496648817398
+ ],
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ],
+ [
+ -77.15869652430021,
+ 38.8424362860053
+ ],
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ],
+ [
+ -77.13087984720083,
+ 38.829906083836626
+ ],
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ],
+ [
+ -77.13087984720083,
+ 38.88002689251133
+ ],
+ [
+ -77.14942429860041,
+ 38.88002689251133
+ ],
+ [
+ -77.15869652430021,
+ 38.867496690342655
+ ],
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ],
+ [
+ -77.13087984720083,
+ 38.85496648817398
+ ],
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.892557094680015
+ ],
+ [
+ -77.13087984720083,
+ 38.90508729684869
+ ],
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ],
+ [
+ -77.15869652430021,
+ 38.892557094680015
+ ],
+ [
+ -77.14942429860041,
+ 38.88002689251134
+ ],
+ [
+ -77.13087984720083,
+ 38.88002689251134
+ ],
+ [
+ -77.12160762150103,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ],
+ [
+ -77.13087984720083,
+ 38.930147701186044
+ ],
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ],
+ [
+ -77.15869652430021,
+ 38.91761749901737
+ ],
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ],
+ [
+ -77.13087984720083,
+ 38.90508729684869
+ ],
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ],
+ [
+ -77.13087984720083,
+ 38.9552081055234
+ ],
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ],
+ [
+ -77.15869652430021,
+ 38.94267790335472
+ ],
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ],
+ [
+ -77.13087984720083,
+ 38.930147701186044
+ ],
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ],
+ [
+ -77.13087984720083,
+ 38.98026850986075
+ ],
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ],
+ [
+ -77.15869652430021,
+ 38.96773830769207
+ ],
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ],
+ [
+ -77.13087984720083,
+ 38.9552081055234
+ ],
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ],
+ [
+ -77.13087984720083,
+ 39.0053289141981
+ ],
+ [
+ -77.14942429860041,
+ 39.0053289141981
+ ],
+ [
+ -77.15869652430021,
+ 38.992798712029426
+ ],
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ],
+ [
+ -77.13087984720083,
+ 38.98026850986075
+ ],
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.12160762150103,
+ 39.017859116366786
+ ],
+ [
+ -77.13087984720083,
+ 39.03038931853546
+ ],
+ [
+ -77.14942429860041,
+ 39.03038931853546
+ ],
+ [
+ -77.15869652430021,
+ 39.017859116366786
+ ],
+ [
+ -77.14942429860041,
+ 39.00532891419811
+ ],
+ [
+ -77.13087984720083,
+ 39.00532891419811
+ ],
+ [
+ -77.12160762150103,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ],
+ [
+ -77.10306317010145,
+ 38.742194668655884
+ ],
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ],
+ [
+ -77.13087984720083,
+ 38.72966446648721
+ ],
+ [
+ -77.12160762150103,
+ 38.71713426431853
+ ],
+ [
+ -77.10306317010145,
+ 38.71713426431853
+ ],
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.75472487082456
+ ],
+ [
+ -77.10306317010145,
+ 38.76725507299324
+ ],
+ [
+ -77.12160762150103,
+ 38.76725507299324
+ ],
+ [
+ -77.13087984720083,
+ 38.75472487082456
+ ],
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ],
+ [
+ -77.10306317010145,
+ 38.742194668655884
+ ],
+ [
+ -77.09379094440165,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ],
+ [
+ -77.10306317010145,
+ 38.7923154773306
+ ],
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ],
+ [
+ -77.13087984720083,
+ 38.77978527516192
+ ],
+ [
+ -77.12160762150103,
+ 38.767255072993244
+ ],
+ [
+ -77.10306317010145,
+ 38.767255072993244
+ ],
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ],
+ [
+ -77.10306317010145,
+ 38.81737588166795
+ ],
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ],
+ [
+ -77.13087984720083,
+ 38.80484567949927
+ ],
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ],
+ [
+ -77.10306317010145,
+ 38.7923154773306
+ ],
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ],
+ [
+ -77.10306317010145,
+ 38.8424362860053
+ ],
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ],
+ [
+ -77.13087984720083,
+ 38.829906083836626
+ ],
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ],
+ [
+ -77.10306317010145,
+ 38.81737588166795
+ ],
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ],
+ [
+ -77.10306317010145,
+ 38.867496690342655
+ ],
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ],
+ [
+ -77.13087984720083,
+ 38.85496648817398
+ ],
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ],
+ [
+ -77.10306317010145,
+ 38.8424362860053
+ ],
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.88002689251133
+ ],
+ [
+ -77.10306317010145,
+ 38.89255709468001
+ ],
+ [
+ -77.12160762150103,
+ 38.89255709468001
+ ],
+ [
+ -77.13087984720083,
+ 38.88002689251133
+ ],
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ],
+ [
+ -77.10306317010145,
+ 38.867496690342655
+ ],
+ [
+ -77.09379094440165,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ],
+ [
+ -77.10306317010145,
+ 38.91761749901737
+ ],
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ],
+ [
+ -77.13087984720083,
+ 38.90508729684869
+ ],
+ [
+ -77.12160762150103,
+ 38.892557094680015
+ ],
+ [
+ -77.10306317010145,
+ 38.892557094680015
+ ],
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ],
+ [
+ -77.10306317010145,
+ 38.94267790335472
+ ],
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ],
+ [
+ -77.13087984720083,
+ 38.930147701186044
+ ],
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ],
+ [
+ -77.10306317010145,
+ 38.91761749901737
+ ],
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ],
+ [
+ -77.10306317010145,
+ 38.96773830769207
+ ],
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ],
+ [
+ -77.13087984720083,
+ 38.9552081055234
+ ],
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ],
+ [
+ -77.10306317010145,
+ 38.94267790335472
+ ],
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ],
+ [
+ -77.10306317010145,
+ 38.992798712029426
+ ],
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ],
+ [
+ -77.13087984720083,
+ 38.98026850986075
+ ],
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ],
+ [
+ -77.10306317010145,
+ 38.96773830769207
+ ],
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 39.0053289141981
+ ],
+ [
+ -77.10306317010145,
+ 39.01785911636678
+ ],
+ [
+ -77.12160762150103,
+ 39.01785911636678
+ ],
+ [
+ -77.13087984720083,
+ 39.0053289141981
+ ],
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ],
+ [
+ -77.10306317010145,
+ 38.992798712029426
+ ],
+ [
+ -77.09379094440165,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.09379094440165,
+ 39.03038931853546
+ ],
+ [
+ -77.10306317010145,
+ 39.04291952070414
+ ],
+ [
+ -77.12160762150103,
+ 39.04291952070414
+ ],
+ [
+ -77.13087984720083,
+ 39.03038931853546
+ ],
+ [
+ -77.12160762150103,
+ 39.017859116366786
+ ],
+ [
+ -77.10306317010145,
+ 39.017859116366786
+ ],
+ [
+ -77.09379094440165,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.71713426431853
+ ],
+ [
+ -77.07524649300207,
+ 38.72966446648721
+ ],
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ],
+ [
+ -77.10306317010145,
+ 38.71713426431853
+ ],
+ [
+ -77.09379094440165,
+ 38.704604062149855
+ ],
+ [
+ -77.07524649300207,
+ 38.704604062149855
+ ],
+ [
+ -77.06597426730227,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ],
+ [
+ -77.07524649300207,
+ 38.75472487082456
+ ],
+ [
+ -77.09379094440165,
+ 38.75472487082456
+ ],
+ [
+ -77.10306317010145,
+ 38.742194668655884
+ ],
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ],
+ [
+ -77.07524649300207,
+ 38.72966446648721
+ ],
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.767255072993244
+ ],
+ [
+ -77.07524649300207,
+ 38.77978527516192
+ ],
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ],
+ [
+ -77.10306317010145,
+ 38.767255072993244
+ ],
+ [
+ -77.09379094440165,
+ 38.75472487082457
+ ],
+ [
+ -77.07524649300207,
+ 38.75472487082457
+ ],
+ [
+ -77.06597426730227,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ],
+ [
+ -77.07524649300207,
+ 38.80484567949927
+ ],
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ],
+ [
+ -77.10306317010145,
+ 38.7923154773306
+ ],
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ],
+ [
+ -77.07524649300207,
+ 38.77978527516192
+ ],
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ],
+ [
+ -77.07524649300207,
+ 38.829906083836626
+ ],
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ],
+ [
+ -77.10306317010145,
+ 38.81737588166795
+ ],
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ],
+ [
+ -77.07524649300207,
+ 38.80484567949927
+ ],
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ],
+ [
+ -77.07524649300207,
+ 38.85496648817398
+ ],
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ],
+ [
+ -77.10306317010145,
+ 38.8424362860053
+ ],
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ],
+ [
+ -77.07524649300207,
+ 38.829906083836626
+ ],
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ],
+ [
+ -77.07524649300207,
+ 38.88002689251133
+ ],
+ [
+ -77.09379094440165,
+ 38.88002689251133
+ ],
+ [
+ -77.10306317010145,
+ 38.867496690342655
+ ],
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ],
+ [
+ -77.07524649300207,
+ 38.85496648817398
+ ],
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.892557094680015
+ ],
+ [
+ -77.07524649300207,
+ 38.90508729684869
+ ],
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ],
+ [
+ -77.10306317010145,
+ 38.892557094680015
+ ],
+ [
+ -77.09379094440165,
+ 38.88002689251134
+ ],
+ [
+ -77.07524649300207,
+ 38.88002689251134
+ ],
+ [
+ -77.06597426730227,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ],
+ [
+ -77.07524649300207,
+ 38.930147701186044
+ ],
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ],
+ [
+ -77.10306317010145,
+ 38.91761749901737
+ ],
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ],
+ [
+ -77.07524649300207,
+ 38.90508729684869
+ ],
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ],
+ [
+ -77.07524649300207,
+ 38.9552081055234
+ ],
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ],
+ [
+ -77.10306317010145,
+ 38.94267790335472
+ ],
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ],
+ [
+ -77.07524649300207,
+ 38.930147701186044
+ ],
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ],
+ [
+ -77.07524649300207,
+ 38.98026850986075
+ ],
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ],
+ [
+ -77.10306317010145,
+ 38.96773830769207
+ ],
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ],
+ [
+ -77.07524649300207,
+ 38.9552081055234
+ ],
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ],
+ [
+ -77.07524649300207,
+ 39.0053289141981
+ ],
+ [
+ -77.09379094440165,
+ 39.0053289141981
+ ],
+ [
+ -77.10306317010145,
+ 38.992798712029426
+ ],
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ],
+ [
+ -77.07524649300207,
+ 38.98026850986075
+ ],
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.06597426730227,
+ 39.017859116366786
+ ],
+ [
+ -77.07524649300207,
+ 39.03038931853546
+ ],
+ [
+ -77.09379094440165,
+ 39.03038931853546
+ ],
+ [
+ -77.10306317010145,
+ 39.017859116366786
+ ],
+ [
+ -77.09379094440165,
+ 39.00532891419811
+ ],
+ [
+ -77.07524649300207,
+ 39.00532891419811
+ ],
+ [
+ -77.06597426730227,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ],
+ [
+ -77.04742981590269,
+ 38.742194668655884
+ ],
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ],
+ [
+ -77.07524649300207,
+ 38.72966446648721
+ ],
+ [
+ -77.06597426730227,
+ 38.71713426431853
+ ],
+ [
+ -77.04742981590269,
+ 38.71713426431853
+ ],
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.75472487082456
+ ],
+ [
+ -77.04742981590269,
+ 38.76725507299324
+ ],
+ [
+ -77.06597426730227,
+ 38.76725507299324
+ ],
+ [
+ -77.07524649300207,
+ 38.75472487082456
+ ],
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ],
+ [
+ -77.04742981590269,
+ 38.742194668655884
+ ],
+ [
+ -77.03815759020289,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ],
+ [
+ -77.04742981590269,
+ 38.7923154773306
+ ],
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ],
+ [
+ -77.07524649300207,
+ 38.77978527516192
+ ],
+ [
+ -77.06597426730227,
+ 38.767255072993244
+ ],
+ [
+ -77.04742981590269,
+ 38.767255072993244
+ ],
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ],
+ [
+ -77.04742981590269,
+ 38.81737588166795
+ ],
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ],
+ [
+ -77.07524649300207,
+ 38.80484567949927
+ ],
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ],
+ [
+ -77.04742981590269,
+ 38.7923154773306
+ ],
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ],
+ [
+ -77.04742981590269,
+ 38.8424362860053
+ ],
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ],
+ [
+ -77.07524649300207,
+ 38.829906083836626
+ ],
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ],
+ [
+ -77.04742981590269,
+ 38.81737588166795
+ ],
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ],
+ [
+ -77.04742981590269,
+ 38.867496690342655
+ ],
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ],
+ [
+ -77.07524649300207,
+ 38.85496648817398
+ ],
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ],
+ [
+ -77.04742981590269,
+ 38.8424362860053
+ ],
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.88002689251133
+ ],
+ [
+ -77.04742981590269,
+ 38.89255709468001
+ ],
+ [
+ -77.06597426730227,
+ 38.89255709468001
+ ],
+ [
+ -77.07524649300207,
+ 38.88002689251133
+ ],
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ],
+ [
+ -77.04742981590269,
+ 38.867496690342655
+ ],
+ [
+ -77.03815759020289,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ],
+ [
+ -77.04742981590269,
+ 38.91761749901737
+ ],
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ],
+ [
+ -77.07524649300207,
+ 38.90508729684869
+ ],
+ [
+ -77.06597426730227,
+ 38.892557094680015
+ ],
+ [
+ -77.04742981590269,
+ 38.892557094680015
+ ],
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ],
+ [
+ -77.04742981590269,
+ 38.94267790335472
+ ],
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ],
+ [
+ -77.07524649300207,
+ 38.930147701186044
+ ],
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ],
+ [
+ -77.04742981590269,
+ 38.91761749901737
+ ],
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ],
+ [
+ -77.04742981590269,
+ 38.96773830769207
+ ],
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ],
+ [
+ -77.07524649300207,
+ 38.9552081055234
+ ],
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ],
+ [
+ -77.04742981590269,
+ 38.94267790335472
+ ],
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ],
+ [
+ -77.04742981590269,
+ 38.992798712029426
+ ],
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ],
+ [
+ -77.07524649300207,
+ 38.98026850986075
+ ],
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ],
+ [
+ -77.04742981590269,
+ 38.96773830769207
+ ],
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 39.0053289141981
+ ],
+ [
+ -77.04742981590269,
+ 39.01785911636678
+ ],
+ [
+ -77.06597426730227,
+ 39.01785911636678
+ ],
+ [
+ -77.07524649300207,
+ 39.0053289141981
+ ],
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ],
+ [
+ -77.04742981590269,
+ 38.992798712029426
+ ],
+ [
+ -77.03815759020289,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.03815759020289,
+ 39.03038931853546
+ ],
+ [
+ -77.04742981590269,
+ 39.04291952070414
+ ],
+ [
+ -77.06597426730227,
+ 39.04291952070414
+ ],
+ [
+ -77.07524649300207,
+ 39.03038931853546
+ ],
+ [
+ -77.06597426730227,
+ 39.017859116366786
+ ],
+ [
+ -77.04742981590269,
+ 39.017859116366786
+ ],
+ [
+ -77.03815759020289,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.71713426431853
+ ],
+ [
+ -77.01961313880331,
+ 38.72966446648721
+ ],
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ],
+ [
+ -77.04742981590269,
+ 38.71713426431853
+ ],
+ [
+ -77.03815759020289,
+ 38.704604062149855
+ ],
+ [
+ -77.01961313880331,
+ 38.704604062149855
+ ],
+ [
+ -77.0103409131035,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ],
+ [
+ -77.01961313880331,
+ 38.75472487082456
+ ],
+ [
+ -77.03815759020289,
+ 38.75472487082456
+ ],
+ [
+ -77.04742981590269,
+ 38.742194668655884
+ ],
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ],
+ [
+ -77.01961313880331,
+ 38.72966446648721
+ ],
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.767255072993244
+ ],
+ [
+ -77.01961313880331,
+ 38.77978527516192
+ ],
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ],
+ [
+ -77.04742981590269,
+ 38.767255072993244
+ ],
+ [
+ -77.03815759020289,
+ 38.75472487082457
+ ],
+ [
+ -77.01961313880331,
+ 38.75472487082457
+ ],
+ [
+ -77.0103409131035,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ],
+ [
+ -77.01961313880331,
+ 38.80484567949927
+ ],
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ],
+ [
+ -77.04742981590269,
+ 38.7923154773306
+ ],
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ],
+ [
+ -77.01961313880331,
+ 38.77978527516192
+ ],
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ],
+ [
+ -77.01961313880331,
+ 38.829906083836626
+ ],
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ],
+ [
+ -77.04742981590269,
+ 38.81737588166795
+ ],
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ],
+ [
+ -77.01961313880331,
+ 38.80484567949927
+ ],
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ],
+ [
+ -77.01961313880331,
+ 38.85496648817398
+ ],
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ],
+ [
+ -77.04742981590269,
+ 38.8424362860053
+ ],
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ],
+ [
+ -77.01961313880331,
+ 38.829906083836626
+ ],
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ],
+ [
+ -77.01961313880331,
+ 38.88002689251133
+ ],
+ [
+ -77.03815759020289,
+ 38.88002689251133
+ ],
+ [
+ -77.04742981590269,
+ 38.867496690342655
+ ],
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ],
+ [
+ -77.01961313880331,
+ 38.85496648817398
+ ],
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.892557094680015
+ ],
+ [
+ -77.01961313880331,
+ 38.90508729684869
+ ],
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ],
+ [
+ -77.04742981590269,
+ 38.892557094680015
+ ],
+ [
+ -77.03815759020289,
+ 38.88002689251134
+ ],
+ [
+ -77.01961313880331,
+ 38.88002689251134
+ ],
+ [
+ -77.0103409131035,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ],
+ [
+ -77.01961313880331,
+ 38.930147701186044
+ ],
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ],
+ [
+ -77.04742981590269,
+ 38.91761749901737
+ ],
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ],
+ [
+ -77.01961313880331,
+ 38.90508729684869
+ ],
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ],
+ [
+ -77.01961313880331,
+ 38.9552081055234
+ ],
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ],
+ [
+ -77.04742981590269,
+ 38.94267790335472
+ ],
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ],
+ [
+ -77.01961313880331,
+ 38.930147701186044
+ ],
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ],
+ [
+ -77.01961313880331,
+ 38.98026850986075
+ ],
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ],
+ [
+ -77.04742981590269,
+ 38.96773830769207
+ ],
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ],
+ [
+ -77.01961313880331,
+ 38.9552081055234
+ ],
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ],
+ [
+ -77.01961313880331,
+ 39.0053289141981
+ ],
+ [
+ -77.03815759020289,
+ 39.0053289141981
+ ],
+ [
+ -77.04742981590269,
+ 38.992798712029426
+ ],
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ],
+ [
+ -77.01961313880331,
+ 38.98026850986075
+ ],
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0103409131035,
+ 39.017859116366786
+ ],
+ [
+ -77.01961313880331,
+ 39.03038931853546
+ ],
+ [
+ -77.03815759020289,
+ 39.03038931853546
+ ],
+ [
+ -77.04742981590269,
+ 39.017859116366786
+ ],
+ [
+ -77.03815759020289,
+ 39.00532891419811
+ ],
+ [
+ -77.01961313880331,
+ 39.00532891419811
+ ],
+ [
+ -77.0103409131035,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ],
+ [
+ -76.99179646170393,
+ 38.742194668655884
+ ],
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ],
+ [
+ -77.01961313880331,
+ 38.72966446648721
+ ],
+ [
+ -77.0103409131035,
+ 38.71713426431853
+ ],
+ [
+ -76.99179646170393,
+ 38.71713426431853
+ ],
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.75472487082456
+ ],
+ [
+ -76.99179646170393,
+ 38.76725507299324
+ ],
+ [
+ -77.0103409131035,
+ 38.76725507299324
+ ],
+ [
+ -77.01961313880331,
+ 38.75472487082456
+ ],
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ],
+ [
+ -76.99179646170393,
+ 38.742194668655884
+ ],
+ [
+ -76.98252423600412,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ],
+ [
+ -76.99179646170393,
+ 38.7923154773306
+ ],
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ],
+ [
+ -77.01961313880331,
+ 38.77978527516192
+ ],
+ [
+ -77.0103409131035,
+ 38.767255072993244
+ ],
+ [
+ -76.99179646170393,
+ 38.767255072993244
+ ],
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ],
+ [
+ -76.99179646170393,
+ 38.81737588166795
+ ],
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ],
+ [
+ -77.01961313880331,
+ 38.80484567949927
+ ],
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ],
+ [
+ -76.99179646170393,
+ 38.7923154773306
+ ],
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ],
+ [
+ -76.99179646170393,
+ 38.8424362860053
+ ],
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ],
+ [
+ -77.01961313880331,
+ 38.829906083836626
+ ],
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ],
+ [
+ -76.99179646170393,
+ 38.81737588166795
+ ],
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ],
+ [
+ -76.99179646170393,
+ 38.867496690342655
+ ],
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ],
+ [
+ -77.01961313880331,
+ 38.85496648817398
+ ],
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ],
+ [
+ -76.99179646170393,
+ 38.8424362860053
+ ],
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.88002689251133
+ ],
+ [
+ -76.99179646170393,
+ 38.89255709468001
+ ],
+ [
+ -77.0103409131035,
+ 38.89255709468001
+ ],
+ [
+ -77.01961313880331,
+ 38.88002689251133
+ ],
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ],
+ [
+ -76.99179646170393,
+ 38.867496690342655
+ ],
+ [
+ -76.98252423600412,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ],
+ [
+ -76.99179646170393,
+ 38.91761749901737
+ ],
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ],
+ [
+ -77.01961313880331,
+ 38.90508729684869
+ ],
+ [
+ -77.0103409131035,
+ 38.892557094680015
+ ],
+ [
+ -76.99179646170393,
+ 38.892557094680015
+ ],
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ],
+ [
+ -76.99179646170393,
+ 38.94267790335472
+ ],
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ],
+ [
+ -77.01961313880331,
+ 38.930147701186044
+ ],
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ],
+ [
+ -76.99179646170393,
+ 38.91761749901737
+ ],
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ],
+ [
+ -76.99179646170393,
+ 38.96773830769207
+ ],
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ],
+ [
+ -77.01961313880331,
+ 38.9552081055234
+ ],
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ],
+ [
+ -76.99179646170393,
+ 38.94267790335472
+ ],
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ],
+ [
+ -76.99179646170393,
+ 38.992798712029426
+ ],
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ],
+ [
+ -77.01961313880331,
+ 38.98026850986075
+ ],
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ],
+ [
+ -76.99179646170393,
+ 38.96773830769207
+ ],
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 39.0053289141981
+ ],
+ [
+ -76.99179646170393,
+ 39.01785911636678
+ ],
+ [
+ -77.0103409131035,
+ 39.01785911636678
+ ],
+ [
+ -77.01961313880331,
+ 39.0053289141981
+ ],
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ],
+ [
+ -76.99179646170393,
+ 38.992798712029426
+ ],
+ [
+ -76.98252423600412,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.98252423600412,
+ 39.03038931853546
+ ],
+ [
+ -76.99179646170393,
+ 39.04291952070414
+ ],
+ [
+ -77.0103409131035,
+ 39.04291952070414
+ ],
+ [
+ -77.01961313880331,
+ 39.03038931853546
+ ],
+ [
+ -77.0103409131035,
+ 39.017859116366786
+ ],
+ [
+ -76.99179646170393,
+ 39.017859116366786
+ ],
+ [
+ -76.98252423600412,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.71713426431853
+ ],
+ [
+ -76.96397978460455,
+ 38.72966446648721
+ ],
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ],
+ [
+ -76.99179646170393,
+ 38.71713426431853
+ ],
+ [
+ -76.98252423600412,
+ 38.704604062149855
+ ],
+ [
+ -76.96397978460455,
+ 38.704604062149855
+ ],
+ [
+ -76.95470755890474,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ],
+ [
+ -76.96397978460455,
+ 38.75472487082456
+ ],
+ [
+ -76.98252423600412,
+ 38.75472487082456
+ ],
+ [
+ -76.99179646170393,
+ 38.742194668655884
+ ],
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ],
+ [
+ -76.96397978460455,
+ 38.72966446648721
+ ],
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.767255072993244
+ ],
+ [
+ -76.96397978460455,
+ 38.77978527516192
+ ],
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ],
+ [
+ -76.99179646170393,
+ 38.767255072993244
+ ],
+ [
+ -76.98252423600412,
+ 38.75472487082457
+ ],
+ [
+ -76.96397978460455,
+ 38.75472487082457
+ ],
+ [
+ -76.95470755890474,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ],
+ [
+ -76.96397978460455,
+ 38.80484567949927
+ ],
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ],
+ [
+ -76.99179646170393,
+ 38.7923154773306
+ ],
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ],
+ [
+ -76.96397978460455,
+ 38.77978527516192
+ ],
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ],
+ [
+ -76.96397978460455,
+ 38.829906083836626
+ ],
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ],
+ [
+ -76.99179646170393,
+ 38.81737588166795
+ ],
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ],
+ [
+ -76.96397978460455,
+ 38.80484567949927
+ ],
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ],
+ [
+ -76.96397978460455,
+ 38.85496648817398
+ ],
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ],
+ [
+ -76.99179646170393,
+ 38.8424362860053
+ ],
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ],
+ [
+ -76.96397978460455,
+ 38.829906083836626
+ ],
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ],
+ [
+ -76.96397978460455,
+ 38.88002689251133
+ ],
+ [
+ -76.98252423600412,
+ 38.88002689251133
+ ],
+ [
+ -76.99179646170393,
+ 38.867496690342655
+ ],
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ],
+ [
+ -76.96397978460455,
+ 38.85496648817398
+ ],
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.892557094680015
+ ],
+ [
+ -76.96397978460455,
+ 38.90508729684869
+ ],
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ],
+ [
+ -76.99179646170393,
+ 38.892557094680015
+ ],
+ [
+ -76.98252423600412,
+ 38.88002689251134
+ ],
+ [
+ -76.96397978460455,
+ 38.88002689251134
+ ],
+ [
+ -76.95470755890474,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ],
+ [
+ -76.96397978460455,
+ 38.930147701186044
+ ],
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ],
+ [
+ -76.99179646170393,
+ 38.91761749901737
+ ],
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ],
+ [
+ -76.96397978460455,
+ 38.90508729684869
+ ],
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ],
+ [
+ -76.96397978460455,
+ 38.9552081055234
+ ],
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ],
+ [
+ -76.99179646170393,
+ 38.94267790335472
+ ],
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ],
+ [
+ -76.96397978460455,
+ 38.930147701186044
+ ],
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ],
+ [
+ -76.96397978460455,
+ 38.98026850986075
+ ],
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ],
+ [
+ -76.99179646170393,
+ 38.96773830769207
+ ],
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ],
+ [
+ -76.96397978460455,
+ 38.9552081055234
+ ],
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ],
+ [
+ -76.96397978460455,
+ 39.0053289141981
+ ],
+ [
+ -76.98252423600412,
+ 39.0053289141981
+ ],
+ [
+ -76.99179646170393,
+ 38.992798712029426
+ ],
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ],
+ [
+ -76.96397978460455,
+ 38.98026850986075
+ ],
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.95470755890474,
+ 39.017859116366786
+ ],
+ [
+ -76.96397978460455,
+ 39.03038931853546
+ ],
+ [
+ -76.98252423600412,
+ 39.03038931853546
+ ],
+ [
+ -76.99179646170393,
+ 39.017859116366786
+ ],
+ [
+ -76.98252423600412,
+ 39.00532891419811
+ ],
+ [
+ -76.96397978460455,
+ 39.00532891419811
+ ],
+ [
+ -76.95470755890474,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.72966446648721
+ ],
+ [
+ -76.93616310750517,
+ 38.742194668655884
+ ],
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ],
+ [
+ -76.96397978460455,
+ 38.72966446648721
+ ],
+ [
+ -76.95470755890474,
+ 38.71713426431853
+ ],
+ [
+ -76.93616310750517,
+ 38.71713426431853
+ ],
+ [
+ -76.92689088180536,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.75472487082456
+ ],
+ [
+ -76.93616310750517,
+ 38.76725507299324
+ ],
+ [
+ -76.95470755890474,
+ 38.76725507299324
+ ],
+ [
+ -76.96397978460455,
+ 38.75472487082456
+ ],
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ],
+ [
+ -76.93616310750517,
+ 38.742194668655884
+ ],
+ [
+ -76.92689088180536,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.77978527516192
+ ],
+ [
+ -76.93616310750517,
+ 38.7923154773306
+ ],
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ],
+ [
+ -76.96397978460455,
+ 38.77978527516192
+ ],
+ [
+ -76.95470755890474,
+ 38.767255072993244
+ ],
+ [
+ -76.93616310750517,
+ 38.767255072993244
+ ],
+ [
+ -76.92689088180536,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.80484567949927
+ ],
+ [
+ -76.93616310750517,
+ 38.81737588166795
+ ],
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ],
+ [
+ -76.96397978460455,
+ 38.80484567949927
+ ],
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ],
+ [
+ -76.93616310750517,
+ 38.7923154773306
+ ],
+ [
+ -76.92689088180536,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.829906083836626
+ ],
+ [
+ -76.93616310750517,
+ 38.8424362860053
+ ],
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ],
+ [
+ -76.96397978460455,
+ 38.829906083836626
+ ],
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ],
+ [
+ -76.93616310750517,
+ 38.81737588166795
+ ],
+ [
+ -76.92689088180536,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.85496648817398
+ ],
+ [
+ -76.93616310750517,
+ 38.867496690342655
+ ],
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ],
+ [
+ -76.96397978460455,
+ 38.85496648817398
+ ],
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ],
+ [
+ -76.93616310750517,
+ 38.8424362860053
+ ],
+ [
+ -76.92689088180536,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.88002689251133
+ ],
+ [
+ -76.93616310750517,
+ 38.89255709468001
+ ],
+ [
+ -76.95470755890474,
+ 38.89255709468001
+ ],
+ [
+ -76.96397978460455,
+ 38.88002689251133
+ ],
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ],
+ [
+ -76.93616310750517,
+ 38.867496690342655
+ ],
+ [
+ -76.92689088180536,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.90508729684869
+ ],
+ [
+ -76.93616310750517,
+ 38.91761749901737
+ ],
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ],
+ [
+ -76.96397978460455,
+ 38.90508729684869
+ ],
+ [
+ -76.95470755890474,
+ 38.892557094680015
+ ],
+ [
+ -76.93616310750517,
+ 38.892557094680015
+ ],
+ [
+ -76.92689088180536,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.930147701186044
+ ],
+ [
+ -76.93616310750517,
+ 38.94267790335472
+ ],
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ],
+ [
+ -76.96397978460455,
+ 38.930147701186044
+ ],
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ],
+ [
+ -76.93616310750517,
+ 38.91761749901737
+ ],
+ [
+ -76.92689088180536,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.9552081055234
+ ],
+ [
+ -76.93616310750517,
+ 38.96773830769207
+ ],
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ],
+ [
+ -76.96397978460455,
+ 38.9552081055234
+ ],
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ],
+ [
+ -76.93616310750517,
+ 38.94267790335472
+ ],
+ [
+ -76.92689088180536,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 38.98026850986075
+ ],
+ [
+ -76.93616310750517,
+ 38.992798712029426
+ ],
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ],
+ [
+ -76.96397978460455,
+ 38.98026850986075
+ ],
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ],
+ [
+ -76.93616310750517,
+ 38.96773830769207
+ ],
+ [
+ -76.92689088180536,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 39.0053289141981
+ ],
+ [
+ -76.93616310750517,
+ 39.01785911636678
+ ],
+ [
+ -76.95470755890474,
+ 39.01785911636678
+ ],
+ [
+ -76.96397978460455,
+ 39.0053289141981
+ ],
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ],
+ [
+ -76.93616310750517,
+ 38.992798712029426
+ ],
+ [
+ -76.92689088180536,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.92689088180536,
+ 39.03038931853546
+ ],
+ [
+ -76.93616310750517,
+ 39.04291952070414
+ ],
+ [
+ -76.95470755890474,
+ 39.04291952070414
+ ],
+ [
+ -76.96397978460455,
+ 39.03038931853546
+ ],
+ [
+ -76.95470755890474,
+ 39.017859116366786
+ ],
+ [
+ -76.93616310750517,
+ 39.017859116366786
+ ],
+ [
+ -76.92689088180536,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "fill-opacity": 0,
+ "stroke": "#0ff"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3876953125,
+ 38.71980474264239
+ ],
+ [
+ -76.9482421875,
+ 38.71980474264239
+ ],
+ [
+ -76.9482421875,
+ 39.027718840211605
+ ],
+ [
+ -77.3876953125,
+ 39.027718840211605
+ ],
+ [
+ -77.3876953125,
+ 38.71980474264239
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-hex-grid/test/out/grid4.geojson b/packages/turf-hex-grid/test/out/grid4.geojson
new file mode 100644
index 0000000000..a0b897126b
--- /dev/null
+++ b/packages/turf-hex-grid/test/out/grid4.geojson
@@ -0,0 +1,126984 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 12.0004566996162
+ ],
+ [
+ 63.69145957581605,
+ 12.195104434544653
+ ],
+ [
+ 63.46177420884869,
+ 12.195104434544653
+ ],
+ [
+ 63.34693152536501,
+ 12.0004566996162
+ ],
+ [
+ 63.46177420884869,
+ 11.805808964687746
+ ],
+ [
+ 63.69145957581605,
+ 11.805808964687746
+ ],
+ [
+ 63.80630225929973,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ],
+ [
+ 63.69145957581605,
+ 12.58439990440156
+ ],
+ [
+ 63.46177420884869,
+ 12.58439990440156
+ ],
+ [
+ 63.34693152536501,
+ 12.389752169473105
+ ],
+ [
+ 63.46177420884869,
+ 12.195104434544652
+ ],
+ [
+ 63.69145957581605,
+ 12.195104434544652
+ ],
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 12.779047639330013
+ ],
+ [
+ 63.69145957581605,
+ 12.973695374258467
+ ],
+ [
+ 63.46177420884869,
+ 12.973695374258467
+ ],
+ [
+ 63.34693152536501,
+ 12.779047639330013
+ ],
+ [
+ 63.46177420884869,
+ 12.58439990440156
+ ],
+ [
+ 63.69145957581605,
+ 12.58439990440156
+ ],
+ [
+ 63.80630225929973,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 13.16834310918692
+ ],
+ [
+ 63.69145957581605,
+ 13.362990844115373
+ ],
+ [
+ 63.46177420884869,
+ 13.362990844115373
+ ],
+ [
+ 63.34693152536501,
+ 13.16834310918692
+ ],
+ [
+ 63.46177420884869,
+ 12.973695374258465
+ ],
+ [
+ 63.69145957581605,
+ 12.973695374258465
+ ],
+ [
+ 63.80630225929973,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 13.557638579043825
+ ],
+ [
+ 63.69145957581605,
+ 13.752286313972279
+ ],
+ [
+ 63.46177420884869,
+ 13.752286313972279
+ ],
+ [
+ 63.34693152536501,
+ 13.557638579043825
+ ],
+ [
+ 63.46177420884869,
+ 13.362990844115371
+ ],
+ [
+ 63.69145957581605,
+ 13.362990844115371
+ ],
+ [
+ 63.80630225929973,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 13.946934048900731
+ ],
+ [
+ 63.69145957581605,
+ 14.141581783829185
+ ],
+ [
+ 63.46177420884869,
+ 14.141581783829185
+ ],
+ [
+ 63.34693152536501,
+ 13.946934048900731
+ ],
+ [
+ 63.46177420884869,
+ 13.752286313972277
+ ],
+ [
+ 63.69145957581605,
+ 13.752286313972277
+ ],
+ [
+ 63.80630225929973,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ],
+ [
+ 63.69145957581605,
+ 14.530877253686091
+ ],
+ [
+ 63.46177420884869,
+ 14.530877253686091
+ ],
+ [
+ 63.34693152536501,
+ 14.336229518757637
+ ],
+ [
+ 63.46177420884869,
+ 14.141581783829183
+ ],
+ [
+ 63.69145957581605,
+ 14.141581783829183
+ ],
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 14.725524988614545
+ ],
+ [
+ 63.69145957581605,
+ 14.920172723542999
+ ],
+ [
+ 63.46177420884869,
+ 14.920172723542999
+ ],
+ [
+ 63.34693152536501,
+ 14.725524988614545
+ ],
+ [
+ 63.46177420884869,
+ 14.530877253686091
+ ],
+ [
+ 63.69145957581605,
+ 14.530877253686091
+ ],
+ [
+ 63.80630225929973,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 15.114820458471451
+ ],
+ [
+ 63.69145957581605,
+ 15.309468193399905
+ ],
+ [
+ 63.46177420884869,
+ 15.309468193399905
+ ],
+ [
+ 63.34693152536501,
+ 15.114820458471451
+ ],
+ [
+ 63.46177420884869,
+ 14.920172723542997
+ ],
+ [
+ 63.69145957581605,
+ 14.920172723542997
+ ],
+ [
+ 63.80630225929973,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ],
+ [
+ 63.69145957581605,
+ 15.69876366325681
+ ],
+ [
+ 63.46177420884869,
+ 15.69876366325681
+ ],
+ [
+ 63.34693152536501,
+ 15.504115928328357
+ ],
+ [
+ 63.46177420884869,
+ 15.309468193399903
+ ],
+ [
+ 63.69145957581605,
+ 15.309468193399903
+ ],
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 15.893411398185265
+ ],
+ [
+ 63.69145957581605,
+ 16.088059133113717
+ ],
+ [
+ 63.46177420884869,
+ 16.088059133113717
+ ],
+ [
+ 63.34693152536501,
+ 15.893411398185265
+ ],
+ [
+ 63.46177420884869,
+ 15.69876366325681
+ ],
+ [
+ 63.69145957581605,
+ 15.69876366325681
+ ],
+ [
+ 63.80630225929973,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 16.28270686804217
+ ],
+ [
+ 63.69145957581605,
+ 16.47735460297062
+ ],
+ [
+ 63.46177420884869,
+ 16.47735460297062
+ ],
+ [
+ 63.34693152536501,
+ 16.28270686804217
+ ],
+ [
+ 63.46177420884869,
+ 16.088059133113717
+ ],
+ [
+ 63.69145957581605,
+ 16.088059133113717
+ ],
+ [
+ 63.80630225929973,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ],
+ [
+ 63.69145957581605,
+ 16.86665007282753
+ ],
+ [
+ 63.46177420884869,
+ 16.86665007282753
+ ],
+ [
+ 63.34693152536501,
+ 16.672002337899077
+ ],
+ [
+ 63.46177420884869,
+ 16.477354602970625
+ ],
+ [
+ 63.69145957581605,
+ 16.477354602970625
+ ],
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 17.06129780775598
+ ],
+ [
+ 63.69145957581605,
+ 17.255945542684433
+ ],
+ [
+ 63.46177420884869,
+ 17.255945542684433
+ ],
+ [
+ 63.34693152536501,
+ 17.06129780775598
+ ],
+ [
+ 63.46177420884869,
+ 16.86665007282753
+ ],
+ [
+ 63.69145957581605,
+ 16.86665007282753
+ ],
+ [
+ 63.80630225929973,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ],
+ [
+ 63.69145957581605,
+ 17.64524101254134
+ ],
+ [
+ 63.46177420884869,
+ 17.64524101254134
+ ],
+ [
+ 63.34693152536501,
+ 17.45059327761289
+ ],
+ [
+ 63.46177420884869,
+ 17.255945542684437
+ ],
+ [
+ 63.69145957581605,
+ 17.255945542684437
+ ],
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 17.839888747469793
+ ],
+ [
+ 63.69145957581605,
+ 18.034536482398245
+ ],
+ [
+ 63.46177420884869,
+ 18.034536482398245
+ ],
+ [
+ 63.34693152536501,
+ 17.839888747469793
+ ],
+ [
+ 63.46177420884869,
+ 17.64524101254134
+ ],
+ [
+ 63.69145957581605,
+ 17.64524101254134
+ ],
+ [
+ 63.80630225929973,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 18.2291842173267
+ ],
+ [
+ 63.69145957581605,
+ 18.423831952255153
+ ],
+ [
+ 63.46177420884869,
+ 18.423831952255153
+ ],
+ [
+ 63.34693152536501,
+ 18.2291842173267
+ ],
+ [
+ 63.46177420884869,
+ 18.03453648239825
+ ],
+ [
+ 63.69145957581605,
+ 18.03453648239825
+ ],
+ [
+ 63.80630225929973,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ],
+ [
+ 63.69145957581605,
+ 18.81312742211206
+ ],
+ [
+ 63.46177420884869,
+ 18.81312742211206
+ ],
+ [
+ 63.34693152536501,
+ 18.61847968718361
+ ],
+ [
+ 63.46177420884869,
+ 18.423831952255156
+ ],
+ [
+ 63.69145957581605,
+ 18.423831952255156
+ ],
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 19.007775157040513
+ ],
+ [
+ 63.69145957581605,
+ 19.202422891968965
+ ],
+ [
+ 63.46177420884869,
+ 19.202422891968965
+ ],
+ [
+ 63.34693152536501,
+ 19.007775157040513
+ ],
+ [
+ 63.46177420884869,
+ 18.81312742211206
+ ],
+ [
+ 63.69145957581605,
+ 18.81312742211206
+ ],
+ [
+ 63.80630225929973,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 19.39707062689742
+ ],
+ [
+ 63.69145957581605,
+ 19.591718361825873
+ ],
+ [
+ 63.46177420884869,
+ 19.591718361825873
+ ],
+ [
+ 63.34693152536501,
+ 19.39707062689742
+ ],
+ [
+ 63.46177420884869,
+ 19.20242289196897
+ ],
+ [
+ 63.69145957581605,
+ 19.20242289196897
+ ],
+ [
+ 63.80630225929973,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ],
+ [
+ 63.69145957581605,
+ 19.98101383168278
+ ],
+ [
+ 63.46177420884869,
+ 19.98101383168278
+ ],
+ [
+ 63.34693152536501,
+ 19.78636609675433
+ ],
+ [
+ 63.46177420884869,
+ 19.591718361825876
+ ],
+ [
+ 63.69145957581605,
+ 19.591718361825876
+ ],
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ],
+ [
+ 63.69145957581605,
+ 20.370309301539685
+ ],
+ [
+ 63.46177420884869,
+ 20.370309301539685
+ ],
+ [
+ 63.34693152536501,
+ 20.175661566611232
+ ],
+ [
+ 63.46177420884869,
+ 19.98101383168278
+ ],
+ [
+ 63.69145957581605,
+ 19.98101383168278
+ ],
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 20.564957036468137
+ ],
+ [
+ 63.69145957581605,
+ 20.75960477139659
+ ],
+ [
+ 63.46177420884869,
+ 20.75960477139659
+ ],
+ [
+ 63.34693152536501,
+ 20.564957036468137
+ ],
+ [
+ 63.46177420884869,
+ 20.370309301539685
+ ],
+ [
+ 63.69145957581605,
+ 20.370309301539685
+ ],
+ [
+ 63.80630225929973,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 20.954252506325044
+ ],
+ [
+ 63.69145957581605,
+ 21.148900241253497
+ ],
+ [
+ 63.46177420884869,
+ 21.148900241253497
+ ],
+ [
+ 63.34693152536501,
+ 20.954252506325044
+ ],
+ [
+ 63.46177420884869,
+ 20.759604771396592
+ ],
+ [
+ 63.69145957581605,
+ 20.759604771396592
+ ],
+ [
+ 63.80630225929973,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ],
+ [
+ 63.69145957581605,
+ 21.538195711110404
+ ],
+ [
+ 63.46177420884869,
+ 21.538195711110404
+ ],
+ [
+ 63.34693152536501,
+ 21.343547976181952
+ ],
+ [
+ 63.46177420884869,
+ 21.1489002412535
+ ],
+ [
+ 63.69145957581605,
+ 21.1489002412535
+ ],
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 21.732843446038856
+ ],
+ [
+ 63.69145957581605,
+ 21.92749118096731
+ ],
+ [
+ 63.46177420884869,
+ 21.92749118096731
+ ],
+ [
+ 63.34693152536501,
+ 21.732843446038856
+ ],
+ [
+ 63.46177420884869,
+ 21.538195711110404
+ ],
+ [
+ 63.69145957581605,
+ 21.538195711110404
+ ],
+ [
+ 63.80630225929973,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 22.122138915895764
+ ],
+ [
+ 63.69145957581605,
+ 22.316786650824216
+ ],
+ [
+ 63.46177420884869,
+ 22.316786650824216
+ ],
+ [
+ 63.34693152536501,
+ 22.122138915895764
+ ],
+ [
+ 63.46177420884869,
+ 21.927491180967312
+ ],
+ [
+ 63.69145957581605,
+ 21.927491180967312
+ ],
+ [
+ 63.80630225929973,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ],
+ [
+ 63.69145957581605,
+ 22.706082120681124
+ ],
+ [
+ 63.46177420884869,
+ 22.706082120681124
+ ],
+ [
+ 63.34693152536501,
+ 22.511434385752672
+ ],
+ [
+ 63.46177420884869,
+ 22.31678665082422
+ ],
+ [
+ 63.69145957581605,
+ 22.31678665082422
+ ],
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 22.900729855609576
+ ],
+ [
+ 63.69145957581605,
+ 23.09537759053803
+ ],
+ [
+ 63.46177420884869,
+ 23.09537759053803
+ ],
+ [
+ 63.34693152536501,
+ 22.900729855609576
+ ],
+ [
+ 63.46177420884869,
+ 22.706082120681124
+ ],
+ [
+ 63.69145957581605,
+ 22.706082120681124
+ ],
+ [
+ 63.80630225929973,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 23.290025325466484
+ ],
+ [
+ 63.69145957581605,
+ 23.484673060394936
+ ],
+ [
+ 63.46177420884869,
+ 23.484673060394936
+ ],
+ [
+ 63.34693152536501,
+ 23.290025325466484
+ ],
+ [
+ 63.46177420884869,
+ 23.095377590538032
+ ],
+ [
+ 63.69145957581605,
+ 23.095377590538032
+ ],
+ [
+ 63.80630225929973,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ],
+ [
+ 63.69145957581605,
+ 23.873968530251844
+ ],
+ [
+ 63.46177420884869,
+ 23.873968530251844
+ ],
+ [
+ 63.34693152536501,
+ 23.67932079532339
+ ],
+ [
+ 63.46177420884869,
+ 23.48467306039494
+ ],
+ [
+ 63.69145957581605,
+ 23.48467306039494
+ ],
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ],
+ [
+ 63.69145957581605,
+ 24.263264000108748
+ ],
+ [
+ 63.46177420884869,
+ 24.263264000108748
+ ],
+ [
+ 63.34693152536501,
+ 24.068616265180296
+ ],
+ [
+ 63.46177420884869,
+ 23.873968530251844
+ ],
+ [
+ 63.69145957581605,
+ 23.873968530251844
+ ],
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 24.4579117350372
+ ],
+ [
+ 63.69145957581605,
+ 24.652559469965652
+ ],
+ [
+ 63.46177420884869,
+ 24.652559469965652
+ ],
+ [
+ 63.34693152536501,
+ 24.4579117350372
+ ],
+ [
+ 63.46177420884869,
+ 24.263264000108748
+ ],
+ [
+ 63.69145957581605,
+ 24.263264000108748
+ ],
+ [
+ 63.80630225929973,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 24.847207204894108
+ ],
+ [
+ 63.69145957581605,
+ 25.04185493982256
+ ],
+ [
+ 63.46177420884869,
+ 25.04185493982256
+ ],
+ [
+ 63.34693152536501,
+ 24.847207204894108
+ ],
+ [
+ 63.46177420884869,
+ 24.652559469965656
+ ],
+ [
+ 63.69145957581605,
+ 24.652559469965656
+ ],
+ [
+ 63.80630225929973,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ],
+ [
+ 63.69145957581605,
+ 25.431150409679468
+ ],
+ [
+ 63.46177420884869,
+ 25.431150409679468
+ ],
+ [
+ 63.34693152536501,
+ 25.236502674751016
+ ],
+ [
+ 63.46177420884869,
+ 25.041854939822564
+ ],
+ [
+ 63.69145957581605,
+ 25.041854939822564
+ ],
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 25.62579814460792
+ ],
+ [
+ 63.69145957581605,
+ 25.820445879536372
+ ],
+ [
+ 63.46177420884869,
+ 25.820445879536372
+ ],
+ [
+ 63.34693152536501,
+ 25.62579814460792
+ ],
+ [
+ 63.46177420884869,
+ 25.431150409679468
+ ],
+ [
+ 63.69145957581605,
+ 25.431150409679468
+ ],
+ [
+ 63.80630225929973,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 26.015093614464828
+ ],
+ [
+ 63.69145957581605,
+ 26.20974134939328
+ ],
+ [
+ 63.46177420884869,
+ 26.20974134939328
+ ],
+ [
+ 63.34693152536501,
+ 26.015093614464828
+ ],
+ [
+ 63.46177420884869,
+ 25.820445879536376
+ ],
+ [
+ 63.69145957581605,
+ 25.820445879536376
+ ],
+ [
+ 63.80630225929973,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ],
+ [
+ 63.69145957581605,
+ 26.599036819250188
+ ],
+ [
+ 63.46177420884869,
+ 26.599036819250188
+ ],
+ [
+ 63.34693152536501,
+ 26.404389084321735
+ ],
+ [
+ 63.46177420884869,
+ 26.209741349393283
+ ],
+ [
+ 63.69145957581605,
+ 26.209741349393283
+ ],
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 26.79368455417864
+ ],
+ [
+ 63.69145957581605,
+ 26.988332289107092
+ ],
+ [
+ 63.46177420884869,
+ 26.988332289107092
+ ],
+ [
+ 63.34693152536501,
+ 26.79368455417864
+ ],
+ [
+ 63.46177420884869,
+ 26.599036819250188
+ ],
+ [
+ 63.69145957581605,
+ 26.599036819250188
+ ],
+ [
+ 63.80630225929973,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 27.182980024035547
+ ],
+ [
+ 63.69145957581605,
+ 27.377627758964
+ ],
+ [
+ 63.46177420884869,
+ 27.377627758964
+ ],
+ [
+ 63.34693152536501,
+ 27.182980024035547
+ ],
+ [
+ 63.46177420884869,
+ 26.988332289107095
+ ],
+ [
+ 63.69145957581605,
+ 26.988332289107095
+ ],
+ [
+ 63.80630225929973,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ],
+ [
+ 63.69145957581605,
+ 27.766923228820907
+ ],
+ [
+ 63.46177420884869,
+ 27.766923228820907
+ ],
+ [
+ 63.34693152536501,
+ 27.572275493892455
+ ],
+ [
+ 63.46177420884869,
+ 27.377627758964003
+ ],
+ [
+ 63.69145957581605,
+ 27.377627758964003
+ ],
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 27.96157096374936
+ ],
+ [
+ 63.69145957581605,
+ 28.15621869867781
+ ],
+ [
+ 63.46177420884869,
+ 28.15621869867781
+ ],
+ [
+ 63.34693152536501,
+ 27.96157096374936
+ ],
+ [
+ 63.46177420884869,
+ 27.766923228820907
+ ],
+ [
+ 63.69145957581605,
+ 27.766923228820907
+ ],
+ [
+ 63.80630225929973,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ],
+ [
+ 63.69145957581605,
+ 28.54551416853472
+ ],
+ [
+ 63.46177420884869,
+ 28.54551416853472
+ ],
+ [
+ 63.34693152536501,
+ 28.350866433606267
+ ],
+ [
+ 63.46177420884869,
+ 28.156218698677815
+ ],
+ [
+ 63.69145957581605,
+ 28.156218698677815
+ ],
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 28.74016190346317
+ ],
+ [
+ 63.69145957581605,
+ 28.934809638391624
+ ],
+ [
+ 63.46177420884869,
+ 28.934809638391624
+ ],
+ [
+ 63.34693152536501,
+ 28.74016190346317
+ ],
+ [
+ 63.46177420884869,
+ 28.54551416853472
+ ],
+ [
+ 63.69145957581605,
+ 28.54551416853472
+ ],
+ [
+ 63.80630225929973,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ],
+ [
+ 63.69145957581605,
+ 29.32410510824853
+ ],
+ [
+ 63.46177420884869,
+ 29.32410510824853
+ ],
+ [
+ 63.34693152536501,
+ 29.12945737332008
+ ],
+ [
+ 63.46177420884869,
+ 28.934809638391627
+ ],
+ [
+ 63.69145957581605,
+ 28.934809638391627
+ ],
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 29.518752843176983
+ ],
+ [
+ 63.69145957581605,
+ 29.713400578105436
+ ],
+ [
+ 63.46177420884869,
+ 29.713400578105436
+ ],
+ [
+ 63.34693152536501,
+ 29.518752843176983
+ ],
+ [
+ 63.46177420884869,
+ 29.32410510824853
+ ],
+ [
+ 63.69145957581605,
+ 29.32410510824853
+ ],
+ [
+ 63.80630225929973,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ],
+ [
+ 63.69145957581605,
+ 30.102696047962343
+ ],
+ [
+ 63.46177420884869,
+ 30.102696047962343
+ ],
+ [
+ 63.34693152536501,
+ 29.90804831303389
+ ],
+ [
+ 63.46177420884869,
+ 29.71340057810544
+ ],
+ [
+ 63.69145957581605,
+ 29.71340057810544
+ ],
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 30.297343782890795
+ ],
+ [
+ 63.69145957581605,
+ 30.491991517819248
+ ],
+ [
+ 63.46177420884869,
+ 30.491991517819248
+ ],
+ [
+ 63.34693152536501,
+ 30.297343782890795
+ ],
+ [
+ 63.46177420884869,
+ 30.102696047962343
+ ],
+ [
+ 63.69145957581605,
+ 30.102696047962343
+ ],
+ [
+ 63.80630225929973,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 30.686639252747703
+ ],
+ [
+ 63.69145957581605,
+ 30.881286987676155
+ ],
+ [
+ 63.46177420884869,
+ 30.881286987676155
+ ],
+ [
+ 63.34693152536501,
+ 30.686639252747703
+ ],
+ [
+ 63.46177420884869,
+ 30.49199151781925
+ ],
+ [
+ 63.69145957581605,
+ 30.49199151781925
+ ],
+ [
+ 63.80630225929973,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ],
+ [
+ 63.69145957581605,
+ 31.270582457533063
+ ],
+ [
+ 63.46177420884869,
+ 31.270582457533063
+ ],
+ [
+ 63.34693152536501,
+ 31.07593472260461
+ ],
+ [
+ 63.46177420884869,
+ 30.88128698767616
+ ],
+ [
+ 63.69145957581605,
+ 30.88128698767616
+ ],
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 31.465230192461515
+ ],
+ [
+ 63.69145957581605,
+ 31.659877927389967
+ ],
+ [
+ 63.46177420884869,
+ 31.659877927389967
+ ],
+ [
+ 63.34693152536501,
+ 31.465230192461515
+ ],
+ [
+ 63.46177420884869,
+ 31.270582457533063
+ ],
+ [
+ 63.69145957581605,
+ 31.270582457533063
+ ],
+ [
+ 63.80630225929973,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ],
+ [
+ 63.69145957581605,
+ 32.049173397246875
+ ],
+ [
+ 63.46177420884869,
+ 32.049173397246875
+ ],
+ [
+ 63.34693152536501,
+ 31.854525662318423
+ ],
+ [
+ 63.46177420884869,
+ 31.65987792738997
+ ],
+ [
+ 63.69145957581605,
+ 31.65987792738997
+ ],
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 32.24382113217533
+ ],
+ [
+ 63.69145957581605,
+ 32.43846886710378
+ ],
+ [
+ 63.46177420884869,
+ 32.43846886710378
+ ],
+ [
+ 63.34693152536501,
+ 32.24382113217533
+ ],
+ [
+ 63.46177420884869,
+ 32.049173397246875
+ ],
+ [
+ 63.69145957581605,
+ 32.049173397246875
+ ],
+ [
+ 63.80630225929973,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ],
+ [
+ 63.69145957581605,
+ 32.82776433696069
+ ],
+ [
+ 63.46177420884869,
+ 32.82776433696069
+ ],
+ [
+ 63.34693152536501,
+ 32.63311660203224
+ ],
+ [
+ 63.46177420884869,
+ 32.438468867103786
+ ],
+ [
+ 63.69145957581605,
+ 32.438468867103786
+ ],
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ],
+ [
+ 63.69145957581605,
+ 33.217059806817595
+ ],
+ [
+ 63.46177420884869,
+ 33.217059806817595
+ ],
+ [
+ 63.34693152536501,
+ 33.02241207188914
+ ],
+ [
+ 63.46177420884869,
+ 32.82776433696069
+ ],
+ [
+ 63.69145957581605,
+ 32.82776433696069
+ ],
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ],
+ [
+ 63.69145957581605,
+ 33.6063552766745
+ ],
+ [
+ 63.46177420884869,
+ 33.6063552766745
+ ],
+ [
+ 63.34693152536501,
+ 33.41170754174605
+ ],
+ [
+ 63.46177420884869,
+ 33.217059806817595
+ ],
+ [
+ 63.69145957581605,
+ 33.217059806817595
+ ],
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ],
+ [
+ 63.69145957581605,
+ 33.9956507465314
+ ],
+ [
+ 63.46177420884869,
+ 33.9956507465314
+ ],
+ [
+ 63.34693152536501,
+ 33.80100301160295
+ ],
+ [
+ 63.46177420884869,
+ 33.6063552766745
+ ],
+ [
+ 63.69145957581605,
+ 33.6063552766745
+ ],
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 34.190298481459855
+ ],
+ [
+ 63.69145957581605,
+ 34.38494621638831
+ ],
+ [
+ 63.46177420884869,
+ 34.38494621638831
+ ],
+ [
+ 63.34693152536501,
+ 34.190298481459855
+ ],
+ [
+ 63.46177420884869,
+ 33.9956507465314
+ ],
+ [
+ 63.69145957581605,
+ 33.9956507465314
+ ],
+ [
+ 63.80630225929973,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 34.57959395131677
+ ],
+ [
+ 63.69145957581605,
+ 34.77424168624522
+ ],
+ [
+ 63.46177420884869,
+ 34.77424168624522
+ ],
+ [
+ 63.34693152536501,
+ 34.57959395131677
+ ],
+ [
+ 63.46177420884869,
+ 34.384946216388315
+ ],
+ [
+ 63.69145957581605,
+ 34.384946216388315
+ ],
+ [
+ 63.80630225929973,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ],
+ [
+ 63.69145957581605,
+ 35.16353715610213
+ ],
+ [
+ 63.46177420884869,
+ 35.16353715610213
+ ],
+ [
+ 63.34693152536501,
+ 34.96888942117368
+ ],
+ [
+ 63.46177420884869,
+ 34.774241686245226
+ ],
+ [
+ 63.69145957581605,
+ 34.774241686245226
+ ],
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ],
+ [
+ 63.69145957581605,
+ 35.552832625959034
+ ],
+ [
+ 63.46177420884869,
+ 35.552832625959034
+ ],
+ [
+ 63.34693152536501,
+ 35.35818489103058
+ ],
+ [
+ 63.46177420884869,
+ 35.16353715610213
+ ],
+ [
+ 63.69145957581605,
+ 35.16353715610213
+ ],
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ],
+ [
+ 63.69145957581605,
+ 35.94212809581594
+ ],
+ [
+ 63.46177420884869,
+ 35.94212809581594
+ ],
+ [
+ 63.34693152536501,
+ 35.74748036088749
+ ],
+ [
+ 63.46177420884869,
+ 35.552832625959034
+ ],
+ [
+ 63.69145957581605,
+ 35.552832625959034
+ ],
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ],
+ [
+ 63.69145957581605,
+ 36.33142356567284
+ ],
+ [
+ 63.46177420884869,
+ 36.33142356567284
+ ],
+ [
+ 63.34693152536501,
+ 36.13677583074439
+ ],
+ [
+ 63.46177420884869,
+ 35.94212809581594
+ ],
+ [
+ 63.69145957581605,
+ 35.94212809581594
+ ],
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 36.526071300601295
+ ],
+ [
+ 63.69145957581605,
+ 36.72071903552975
+ ],
+ [
+ 63.46177420884869,
+ 36.72071903552975
+ ],
+ [
+ 63.34693152536501,
+ 36.526071300601295
+ ],
+ [
+ 63.46177420884869,
+ 36.33142356567284
+ ],
+ [
+ 63.69145957581605,
+ 36.33142356567284
+ ],
+ [
+ 63.80630225929973,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ],
+ [
+ 63.69145957581605,
+ 37.11001450538666
+ ],
+ [
+ 63.46177420884869,
+ 37.11001450538666
+ ],
+ [
+ 63.34693152536501,
+ 36.915366770458206
+ ],
+ [
+ 63.46177420884869,
+ 36.720719035529754
+ ],
+ [
+ 63.69145957581605,
+ 36.720719035529754
+ ],
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 37.30466224031511
+ ],
+ [
+ 63.69145957581605,
+ 37.49930997524356
+ ],
+ [
+ 63.46177420884869,
+ 37.49930997524356
+ ],
+ [
+ 63.34693152536501,
+ 37.30466224031511
+ ],
+ [
+ 63.46177420884869,
+ 37.11001450538666
+ ],
+ [
+ 63.69145957581605,
+ 37.11001450538666
+ ],
+ [
+ 63.80630225929973,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ],
+ [
+ 63.69145957581605,
+ 37.888605445100474
+ ],
+ [
+ 63.46177420884869,
+ 37.888605445100474
+ ],
+ [
+ 63.34693152536501,
+ 37.69395771017202
+ ],
+ [
+ 63.46177420884869,
+ 37.49930997524357
+ ],
+ [
+ 63.69145957581605,
+ 37.49930997524357
+ ],
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ],
+ [
+ 63.69145957581605,
+ 38.27790091495738
+ ],
+ [
+ 63.46177420884869,
+ 38.27790091495738
+ ],
+ [
+ 63.34693152536501,
+ 38.083253180028926
+ ],
+ [
+ 63.46177420884869,
+ 37.888605445100474
+ ],
+ [
+ 63.69145957581605,
+ 37.888605445100474
+ ],
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ],
+ [
+ 63.69145957581605,
+ 38.66719638481428
+ ],
+ [
+ 63.46177420884869,
+ 38.66719638481428
+ ],
+ [
+ 63.34693152536501,
+ 38.47254864988583
+ ],
+ [
+ 63.46177420884869,
+ 38.27790091495738
+ ],
+ [
+ 63.69145957581605,
+ 38.27790091495738
+ ],
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ],
+ [
+ 63.69145957581605,
+ 39.05649185467119
+ ],
+ [
+ 63.46177420884869,
+ 39.05649185467119
+ ],
+ [
+ 63.34693152536501,
+ 38.861844119742734
+ ],
+ [
+ 63.46177420884869,
+ 38.66719638481428
+ ],
+ [
+ 63.69145957581605,
+ 38.66719638481428
+ ],
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 39.25113958959964
+ ],
+ [
+ 63.69145957581605,
+ 39.44578732452809
+ ],
+ [
+ 63.46177420884869,
+ 39.44578732452809
+ ],
+ [
+ 63.34693152536501,
+ 39.25113958959964
+ ],
+ [
+ 63.46177420884869,
+ 39.05649185467119
+ ],
+ [
+ 63.69145957581605,
+ 39.05649185467119
+ ],
+ [
+ 63.80630225929973,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ],
+ [
+ 63.69145957581605,
+ 39.835082794385
+ ],
+ [
+ 63.46177420884869,
+ 39.835082794385
+ ],
+ [
+ 63.34693152536501,
+ 39.64043505945655
+ ],
+ [
+ 63.46177420884869,
+ 39.4457873245281
+ ],
+ [
+ 63.69145957581605,
+ 39.4457873245281
+ ],
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 40.029730529313454
+ ],
+ [
+ 63.69145957581605,
+ 40.224378264241906
+ ],
+ [
+ 63.46177420884869,
+ 40.224378264241906
+ ],
+ [
+ 63.34693152536501,
+ 40.029730529313454
+ ],
+ [
+ 63.46177420884869,
+ 39.835082794385
+ ],
+ [
+ 63.69145957581605,
+ 39.835082794385
+ ],
+ [
+ 63.80630225929973,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ],
+ [
+ 63.69145957581605,
+ 40.61367373409882
+ ],
+ [
+ 63.46177420884869,
+ 40.61367373409882
+ ],
+ [
+ 63.34693152536501,
+ 40.419025999170366
+ ],
+ [
+ 63.46177420884869,
+ 40.22437826424191
+ ],
+ [
+ 63.69145957581605,
+ 40.22437826424191
+ ],
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ],
+ [
+ 63.69145957581605,
+ 41.00296920395572
+ ],
+ [
+ 63.46177420884869,
+ 41.00296920395572
+ ],
+ [
+ 63.34693152536501,
+ 40.80832146902727
+ ],
+ [
+ 63.46177420884869,
+ 40.61367373409882
+ ],
+ [
+ 63.69145957581605,
+ 40.61367373409882
+ ],
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ],
+ [
+ 63.69145957581605,
+ 41.392264673812626
+ ],
+ [
+ 63.46177420884869,
+ 41.392264673812626
+ ],
+ [
+ 63.34693152536501,
+ 41.197616938884174
+ ],
+ [
+ 63.46177420884869,
+ 41.00296920395572
+ ],
+ [
+ 63.69145957581605,
+ 41.00296920395572
+ ],
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ],
+ [
+ 63.69145957581605,
+ 41.78156014366953
+ ],
+ [
+ 63.46177420884869,
+ 41.78156014366953
+ ],
+ [
+ 63.34693152536501,
+ 41.58691240874108
+ ],
+ [
+ 63.46177420884869,
+ 41.392264673812626
+ ],
+ [
+ 63.69145957581605,
+ 41.392264673812626
+ ],
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 41.97620787859798
+ ],
+ [
+ 63.69145957581605,
+ 42.170855613526435
+ ],
+ [
+ 63.46177420884869,
+ 42.170855613526435
+ ],
+ [
+ 63.34693152536501,
+ 41.97620787859798
+ ],
+ [
+ 63.46177420884869,
+ 41.78156014366953
+ ],
+ [
+ 63.69145957581605,
+ 41.78156014366953
+ ],
+ [
+ 63.80630225929973,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 42.365503348454894
+ ],
+ [
+ 63.69145957581605,
+ 42.560151083383346
+ ],
+ [
+ 63.46177420884869,
+ 42.560151083383346
+ ],
+ [
+ 63.34693152536501,
+ 42.365503348454894
+ ],
+ [
+ 63.46177420884869,
+ 42.17085561352644
+ ],
+ [
+ 63.69145957581605,
+ 42.17085561352644
+ ],
+ [
+ 63.80630225929973,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ],
+ [
+ 63.69145957581605,
+ 42.94944655324026
+ ],
+ [
+ 63.46177420884869,
+ 42.94944655324026
+ ],
+ [
+ 63.34693152536501,
+ 42.754798818311805
+ ],
+ [
+ 63.46177420884869,
+ 42.56015108338335
+ ],
+ [
+ 63.69145957581605,
+ 42.56015108338335
+ ],
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ],
+ [
+ 63.69145957581605,
+ 43.33874202309716
+ ],
+ [
+ 63.46177420884869,
+ 43.33874202309716
+ ],
+ [
+ 63.34693152536501,
+ 43.14409428816871
+ ],
+ [
+ 63.46177420884869,
+ 42.94944655324026
+ ],
+ [
+ 63.69145957581605,
+ 42.94944655324026
+ ],
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ],
+ [
+ 63.69145957581605,
+ 43.728037492954066
+ ],
+ [
+ 63.46177420884869,
+ 43.728037492954066
+ ],
+ [
+ 63.34693152536501,
+ 43.53338975802561
+ ],
+ [
+ 63.46177420884869,
+ 43.33874202309716
+ ],
+ [
+ 63.69145957581605,
+ 43.33874202309716
+ ],
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ],
+ [
+ 63.69145957581605,
+ 44.11733296281097
+ ],
+ [
+ 63.46177420884869,
+ 44.11733296281097
+ ],
+ [
+ 63.34693152536501,
+ 43.92268522788252
+ ],
+ [
+ 63.46177420884869,
+ 43.728037492954066
+ ],
+ [
+ 63.69145957581605,
+ 43.728037492954066
+ ],
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ],
+ [
+ 63.69145957581605,
+ 44.506628432667874
+ ],
+ [
+ 63.46177420884869,
+ 44.506628432667874
+ ],
+ [
+ 63.34693152536501,
+ 44.31198069773942
+ ],
+ [
+ 63.46177420884869,
+ 44.11733296281097
+ ],
+ [
+ 63.69145957581605,
+ 44.11733296281097
+ ],
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 44.701276167596326
+ ],
+ [
+ 63.69145957581605,
+ 44.89592390252478
+ ],
+ [
+ 63.46177420884869,
+ 44.89592390252478
+ ],
+ [
+ 63.34693152536501,
+ 44.701276167596326
+ ],
+ [
+ 63.46177420884869,
+ 44.506628432667874
+ ],
+ [
+ 63.69145957581605,
+ 44.506628432667874
+ ],
+ [
+ 63.80630225929973,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ],
+ [
+ 63.69145957581605,
+ 45.2852193723817
+ ],
+ [
+ 63.46177420884869,
+ 45.2852193723817
+ ],
+ [
+ 63.34693152536501,
+ 45.090571637453245
+ ],
+ [
+ 63.46177420884869,
+ 44.89592390252479
+ ],
+ [
+ 63.69145957581605,
+ 44.89592390252479
+ ],
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ],
+ [
+ 63.69145957581605,
+ 45.6745148422386
+ ],
+ [
+ 63.46177420884869,
+ 45.6745148422386
+ ],
+ [
+ 63.34693152536501,
+ 45.47986710731015
+ ],
+ [
+ 63.46177420884869,
+ 45.2852193723817
+ ],
+ [
+ 63.69145957581605,
+ 45.2852193723817
+ ],
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ],
+ [
+ 63.69145957581605,
+ 46.063810312095505
+ ],
+ [
+ 63.46177420884869,
+ 46.063810312095505
+ ],
+ [
+ 63.34693152536501,
+ 45.86916257716705
+ ],
+ [
+ 63.46177420884869,
+ 45.6745148422386
+ ],
+ [
+ 63.69145957581605,
+ 45.6745148422386
+ ],
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ],
+ [
+ 63.69145957581605,
+ 46.45310578195241
+ ],
+ [
+ 63.46177420884869,
+ 46.45310578195241
+ ],
+ [
+ 63.34693152536501,
+ 46.25845804702396
+ ],
+ [
+ 63.46177420884869,
+ 46.063810312095505
+ ],
+ [
+ 63.69145957581605,
+ 46.063810312095505
+ ],
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ],
+ [
+ 63.69145957581605,
+ 46.842401251809314
+ ],
+ [
+ 63.46177420884869,
+ 46.842401251809314
+ ],
+ [
+ 63.34693152536501,
+ 46.64775351688086
+ ],
+ [
+ 63.46177420884869,
+ 46.45310578195241
+ ],
+ [
+ 63.69145957581605,
+ 46.45310578195241
+ ],
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ],
+ [
+ 63.69145957581605,
+ 47.23169672166622
+ ],
+ [
+ 63.46177420884869,
+ 47.23169672166622
+ ],
+ [
+ 63.34693152536501,
+ 47.037048986737766
+ ],
+ [
+ 63.46177420884869,
+ 46.842401251809314
+ ],
+ [
+ 63.69145957581605,
+ 46.842401251809314
+ ],
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 47.42634445659467
+ ],
+ [
+ 63.69145957581605,
+ 47.62099219152312
+ ],
+ [
+ 63.46177420884869,
+ 47.62099219152312
+ ],
+ [
+ 63.34693152536501,
+ 47.42634445659467
+ ],
+ [
+ 63.46177420884869,
+ 47.23169672166622
+ ],
+ [
+ 63.69145957581605,
+ 47.23169672166622
+ ],
+ [
+ 63.80630225929973,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.80630225929973,
+ 47.81563992645159
+ ],
+ [
+ 63.69145957581605,
+ 48.01028766138004
+ ],
+ [
+ 63.46177420884869,
+ 48.01028766138004
+ ],
+ [
+ 63.34693152536501,
+ 47.81563992645159
+ ],
+ [
+ 63.46177420884869,
+ 47.620992191523136
+ ],
+ [
+ 63.69145957581605,
+ 47.620992191523136
+ ],
+ [
+ 63.80630225929973,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 11.805808964687746
+ ],
+ [
+ 64.03598762626709,
+ 12.0004566996162
+ ],
+ [
+ 63.80630225929973,
+ 12.0004566996162
+ ],
+ [
+ 63.69145957581605,
+ 11.805808964687746
+ ],
+ [
+ 63.80630225929973,
+ 11.611161229759292
+ ],
+ [
+ 64.03598762626709,
+ 11.611161229759292
+ ],
+ [
+ 64.15083030975076,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 12.195104434544652
+ ],
+ [
+ 64.03598762626709,
+ 12.389752169473105
+ ],
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ],
+ [
+ 63.69145957581605,
+ 12.195104434544652
+ ],
+ [
+ 63.80630225929973,
+ 12.000456699616198
+ ],
+ [
+ 64.03598762626709,
+ 12.000456699616198
+ ],
+ [
+ 64.15083030975076,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 12.58439990440156
+ ],
+ [
+ 64.03598762626709,
+ 12.779047639330013
+ ],
+ [
+ 63.80630225929973,
+ 12.779047639330013
+ ],
+ [
+ 63.69145957581605,
+ 12.58439990440156
+ ],
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ],
+ [
+ 64.03598762626709,
+ 12.389752169473105
+ ],
+ [
+ 64.15083030975076,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 12.973695374258465
+ ],
+ [
+ 64.03598762626709,
+ 13.16834310918692
+ ],
+ [
+ 63.80630225929973,
+ 13.16834310918692
+ ],
+ [
+ 63.69145957581605,
+ 12.973695374258465
+ ],
+ [
+ 63.80630225929973,
+ 12.779047639330011
+ ],
+ [
+ 64.03598762626709,
+ 12.779047639330011
+ ],
+ [
+ 64.15083030975076,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 13.362990844115371
+ ],
+ [
+ 64.03598762626709,
+ 13.557638579043825
+ ],
+ [
+ 63.80630225929973,
+ 13.557638579043825
+ ],
+ [
+ 63.69145957581605,
+ 13.362990844115371
+ ],
+ [
+ 63.80630225929973,
+ 13.168343109186917
+ ],
+ [
+ 64.03598762626709,
+ 13.168343109186917
+ ],
+ [
+ 64.15083030975076,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 13.752286313972277
+ ],
+ [
+ 64.03598762626709,
+ 13.946934048900731
+ ],
+ [
+ 63.80630225929973,
+ 13.946934048900731
+ ],
+ [
+ 63.69145957581605,
+ 13.752286313972277
+ ],
+ [
+ 63.80630225929973,
+ 13.557638579043823
+ ],
+ [
+ 64.03598762626709,
+ 13.557638579043823
+ ],
+ [
+ 64.15083030975076,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 14.141581783829183
+ ],
+ [
+ 64.03598762626709,
+ 14.336229518757637
+ ],
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ],
+ [
+ 63.69145957581605,
+ 14.141581783829183
+ ],
+ [
+ 63.80630225929973,
+ 13.94693404890073
+ ],
+ [
+ 64.03598762626709,
+ 13.94693404890073
+ ],
+ [
+ 64.15083030975076,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 14.530877253686091
+ ],
+ [
+ 64.03598762626709,
+ 14.725524988614545
+ ],
+ [
+ 63.80630225929973,
+ 14.725524988614545
+ ],
+ [
+ 63.69145957581605,
+ 14.530877253686091
+ ],
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ],
+ [
+ 64.03598762626709,
+ 14.336229518757637
+ ],
+ [
+ 64.15083030975076,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 14.920172723542997
+ ],
+ [
+ 64.03598762626709,
+ 15.114820458471451
+ ],
+ [
+ 63.80630225929973,
+ 15.114820458471451
+ ],
+ [
+ 63.69145957581605,
+ 14.920172723542997
+ ],
+ [
+ 63.80630225929973,
+ 14.725524988614543
+ ],
+ [
+ 64.03598762626709,
+ 14.725524988614543
+ ],
+ [
+ 64.15083030975076,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 15.309468193399903
+ ],
+ [
+ 64.03598762626709,
+ 15.504115928328357
+ ],
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ],
+ [
+ 63.69145957581605,
+ 15.309468193399903
+ ],
+ [
+ 63.80630225929973,
+ 15.11482045847145
+ ],
+ [
+ 64.03598762626709,
+ 15.11482045847145
+ ],
+ [
+ 64.15083030975076,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 15.69876366325681
+ ],
+ [
+ 64.03598762626709,
+ 15.893411398185265
+ ],
+ [
+ 63.80630225929973,
+ 15.893411398185265
+ ],
+ [
+ 63.69145957581605,
+ 15.69876366325681
+ ],
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ],
+ [
+ 64.03598762626709,
+ 15.504115928328357
+ ],
+ [
+ 64.15083030975076,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 16.088059133113717
+ ],
+ [
+ 64.03598762626709,
+ 16.28270686804217
+ ],
+ [
+ 63.80630225929973,
+ 16.28270686804217
+ ],
+ [
+ 63.69145957581605,
+ 16.088059133113717
+ ],
+ [
+ 63.80630225929973,
+ 15.893411398185263
+ ],
+ [
+ 64.03598762626709,
+ 15.893411398185263
+ ],
+ [
+ 64.15083030975076,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 16.477354602970625
+ ],
+ [
+ 64.03598762626709,
+ 16.672002337899077
+ ],
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ],
+ [
+ 63.69145957581605,
+ 16.477354602970625
+ ],
+ [
+ 63.80630225929973,
+ 16.282706868042172
+ ],
+ [
+ 64.03598762626709,
+ 16.282706868042172
+ ],
+ [
+ 64.15083030975076,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 16.86665007282753
+ ],
+ [
+ 64.03598762626709,
+ 17.06129780775598
+ ],
+ [
+ 63.80630225929973,
+ 17.06129780775598
+ ],
+ [
+ 63.69145957581605,
+ 16.86665007282753
+ ],
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ],
+ [
+ 64.03598762626709,
+ 16.672002337899077
+ ],
+ [
+ 64.15083030975076,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 17.255945542684437
+ ],
+ [
+ 64.03598762626709,
+ 17.45059327761289
+ ],
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ],
+ [
+ 63.69145957581605,
+ 17.255945542684437
+ ],
+ [
+ 63.80630225929973,
+ 17.061297807755984
+ ],
+ [
+ 64.03598762626709,
+ 17.061297807755984
+ ],
+ [
+ 64.15083030975076,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 17.64524101254134
+ ],
+ [
+ 64.03598762626709,
+ 17.839888747469793
+ ],
+ [
+ 63.80630225929973,
+ 17.839888747469793
+ ],
+ [
+ 63.69145957581605,
+ 17.64524101254134
+ ],
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ],
+ [
+ 64.03598762626709,
+ 17.45059327761289
+ ],
+ [
+ 64.15083030975076,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 18.03453648239825
+ ],
+ [
+ 64.03598762626709,
+ 18.2291842173267
+ ],
+ [
+ 63.80630225929973,
+ 18.2291842173267
+ ],
+ [
+ 63.69145957581605,
+ 18.03453648239825
+ ],
+ [
+ 63.80630225929973,
+ 17.839888747469796
+ ],
+ [
+ 64.03598762626709,
+ 17.839888747469796
+ ],
+ [
+ 64.15083030975076,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 18.423831952255156
+ ],
+ [
+ 64.03598762626709,
+ 18.61847968718361
+ ],
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ],
+ [
+ 63.69145957581605,
+ 18.423831952255156
+ ],
+ [
+ 63.80630225929973,
+ 18.229184217326704
+ ],
+ [
+ 64.03598762626709,
+ 18.229184217326704
+ ],
+ [
+ 64.15083030975076,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 18.81312742211206
+ ],
+ [
+ 64.03598762626709,
+ 19.007775157040513
+ ],
+ [
+ 63.80630225929973,
+ 19.007775157040513
+ ],
+ [
+ 63.69145957581605,
+ 18.81312742211206
+ ],
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ],
+ [
+ 64.03598762626709,
+ 18.61847968718361
+ ],
+ [
+ 64.15083030975076,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 19.20242289196897
+ ],
+ [
+ 64.03598762626709,
+ 19.39707062689742
+ ],
+ [
+ 63.80630225929973,
+ 19.39707062689742
+ ],
+ [
+ 63.69145957581605,
+ 19.20242289196897
+ ],
+ [
+ 63.80630225929973,
+ 19.007775157040516
+ ],
+ [
+ 64.03598762626709,
+ 19.007775157040516
+ ],
+ [
+ 64.15083030975076,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 19.591718361825876
+ ],
+ [
+ 64.03598762626709,
+ 19.78636609675433
+ ],
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ],
+ [
+ 63.69145957581605,
+ 19.591718361825876
+ ],
+ [
+ 63.80630225929973,
+ 19.397070626897424
+ ],
+ [
+ 64.03598762626709,
+ 19.397070626897424
+ ],
+ [
+ 64.15083030975076,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 19.98101383168278
+ ],
+ [
+ 64.03598762626709,
+ 20.175661566611232
+ ],
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ],
+ [
+ 63.69145957581605,
+ 19.98101383168278
+ ],
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ],
+ [
+ 64.03598762626709,
+ 19.78636609675433
+ ],
+ [
+ 64.15083030975076,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 20.370309301539685
+ ],
+ [
+ 64.03598762626709,
+ 20.564957036468137
+ ],
+ [
+ 63.80630225929973,
+ 20.564957036468137
+ ],
+ [
+ 63.69145957581605,
+ 20.370309301539685
+ ],
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ],
+ [
+ 64.03598762626709,
+ 20.175661566611232
+ ],
+ [
+ 64.15083030975076,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 20.759604771396592
+ ],
+ [
+ 64.03598762626709,
+ 20.954252506325044
+ ],
+ [
+ 63.80630225929973,
+ 20.954252506325044
+ ],
+ [
+ 63.69145957581605,
+ 20.759604771396592
+ ],
+ [
+ 63.80630225929973,
+ 20.56495703646814
+ ],
+ [
+ 64.03598762626709,
+ 20.56495703646814
+ ],
+ [
+ 64.15083030975076,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 21.1489002412535
+ ],
+ [
+ 64.03598762626709,
+ 21.343547976181952
+ ],
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ],
+ [
+ 63.69145957581605,
+ 21.1489002412535
+ ],
+ [
+ 63.80630225929973,
+ 20.954252506325048
+ ],
+ [
+ 64.03598762626709,
+ 20.954252506325048
+ ],
+ [
+ 64.15083030975076,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 21.538195711110404
+ ],
+ [
+ 64.03598762626709,
+ 21.732843446038856
+ ],
+ [
+ 63.80630225929973,
+ 21.732843446038856
+ ],
+ [
+ 63.69145957581605,
+ 21.538195711110404
+ ],
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ],
+ [
+ 64.03598762626709,
+ 21.343547976181952
+ ],
+ [
+ 64.15083030975076,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 21.927491180967312
+ ],
+ [
+ 64.03598762626709,
+ 22.122138915895764
+ ],
+ [
+ 63.80630225929973,
+ 22.122138915895764
+ ],
+ [
+ 63.69145957581605,
+ 21.927491180967312
+ ],
+ [
+ 63.80630225929973,
+ 21.73284344603886
+ ],
+ [
+ 64.03598762626709,
+ 21.73284344603886
+ ],
+ [
+ 64.15083030975076,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 22.31678665082422
+ ],
+ [
+ 64.03598762626709,
+ 22.511434385752672
+ ],
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ],
+ [
+ 63.69145957581605,
+ 22.31678665082422
+ ],
+ [
+ 63.80630225929973,
+ 22.122138915895768
+ ],
+ [
+ 64.03598762626709,
+ 22.122138915895768
+ ],
+ [
+ 64.15083030975076,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 22.706082120681124
+ ],
+ [
+ 64.03598762626709,
+ 22.900729855609576
+ ],
+ [
+ 63.80630225929973,
+ 22.900729855609576
+ ],
+ [
+ 63.69145957581605,
+ 22.706082120681124
+ ],
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ],
+ [
+ 64.03598762626709,
+ 22.511434385752672
+ ],
+ [
+ 64.15083030975076,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 23.095377590538032
+ ],
+ [
+ 64.03598762626709,
+ 23.290025325466484
+ ],
+ [
+ 63.80630225929973,
+ 23.290025325466484
+ ],
+ [
+ 63.69145957581605,
+ 23.095377590538032
+ ],
+ [
+ 63.80630225929973,
+ 22.90072985560958
+ ],
+ [
+ 64.03598762626709,
+ 22.90072985560958
+ ],
+ [
+ 64.15083030975076,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 23.48467306039494
+ ],
+ [
+ 64.03598762626709,
+ 23.67932079532339
+ ],
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ],
+ [
+ 63.69145957581605,
+ 23.48467306039494
+ ],
+ [
+ 63.80630225929973,
+ 23.290025325466488
+ ],
+ [
+ 64.03598762626709,
+ 23.290025325466488
+ ],
+ [
+ 64.15083030975076,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 23.873968530251844
+ ],
+ [
+ 64.03598762626709,
+ 24.068616265180296
+ ],
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ],
+ [
+ 63.69145957581605,
+ 23.873968530251844
+ ],
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ],
+ [
+ 64.03598762626709,
+ 23.67932079532339
+ ],
+ [
+ 64.15083030975076,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 24.263264000108748
+ ],
+ [
+ 64.03598762626709,
+ 24.4579117350372
+ ],
+ [
+ 63.80630225929973,
+ 24.4579117350372
+ ],
+ [
+ 63.69145957581605,
+ 24.263264000108748
+ ],
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ],
+ [
+ 64.03598762626709,
+ 24.068616265180296
+ ],
+ [
+ 64.15083030975076,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 24.652559469965656
+ ],
+ [
+ 64.03598762626709,
+ 24.847207204894108
+ ],
+ [
+ 63.80630225929973,
+ 24.847207204894108
+ ],
+ [
+ 63.69145957581605,
+ 24.652559469965656
+ ],
+ [
+ 63.80630225929973,
+ 24.457911735037204
+ ],
+ [
+ 64.03598762626709,
+ 24.457911735037204
+ ],
+ [
+ 64.15083030975076,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 25.041854939822564
+ ],
+ [
+ 64.03598762626709,
+ 25.236502674751016
+ ],
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ],
+ [
+ 63.69145957581605,
+ 25.041854939822564
+ ],
+ [
+ 63.80630225929973,
+ 24.84720720489411
+ ],
+ [
+ 64.03598762626709,
+ 24.84720720489411
+ ],
+ [
+ 64.15083030975076,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 25.431150409679468
+ ],
+ [
+ 64.03598762626709,
+ 25.62579814460792
+ ],
+ [
+ 63.80630225929973,
+ 25.62579814460792
+ ],
+ [
+ 63.69145957581605,
+ 25.431150409679468
+ ],
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ],
+ [
+ 64.03598762626709,
+ 25.236502674751016
+ ],
+ [
+ 64.15083030975076,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 25.820445879536376
+ ],
+ [
+ 64.03598762626709,
+ 26.015093614464828
+ ],
+ [
+ 63.80630225929973,
+ 26.015093614464828
+ ],
+ [
+ 63.69145957581605,
+ 25.820445879536376
+ ],
+ [
+ 63.80630225929973,
+ 25.625798144607923
+ ],
+ [
+ 64.03598762626709,
+ 25.625798144607923
+ ],
+ [
+ 64.15083030975076,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 26.209741349393283
+ ],
+ [
+ 64.03598762626709,
+ 26.404389084321735
+ ],
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ],
+ [
+ 63.69145957581605,
+ 26.209741349393283
+ ],
+ [
+ 63.80630225929973,
+ 26.01509361446483
+ ],
+ [
+ 64.03598762626709,
+ 26.01509361446483
+ ],
+ [
+ 64.15083030975076,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 26.599036819250188
+ ],
+ [
+ 64.03598762626709,
+ 26.79368455417864
+ ],
+ [
+ 63.80630225929973,
+ 26.79368455417864
+ ],
+ [
+ 63.69145957581605,
+ 26.599036819250188
+ ],
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ],
+ [
+ 64.03598762626709,
+ 26.404389084321735
+ ],
+ [
+ 64.15083030975076,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 26.988332289107095
+ ],
+ [
+ 64.03598762626709,
+ 27.182980024035547
+ ],
+ [
+ 63.80630225929973,
+ 27.182980024035547
+ ],
+ [
+ 63.69145957581605,
+ 26.988332289107095
+ ],
+ [
+ 63.80630225929973,
+ 26.793684554178643
+ ],
+ [
+ 64.03598762626709,
+ 26.793684554178643
+ ],
+ [
+ 64.15083030975076,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 27.377627758964003
+ ],
+ [
+ 64.03598762626709,
+ 27.572275493892455
+ ],
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ],
+ [
+ 63.69145957581605,
+ 27.377627758964003
+ ],
+ [
+ 63.80630225929973,
+ 27.18298002403555
+ ],
+ [
+ 64.03598762626709,
+ 27.18298002403555
+ ],
+ [
+ 64.15083030975076,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 27.766923228820907
+ ],
+ [
+ 64.03598762626709,
+ 27.96157096374936
+ ],
+ [
+ 63.80630225929973,
+ 27.96157096374936
+ ],
+ [
+ 63.69145957581605,
+ 27.766923228820907
+ ],
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ],
+ [
+ 64.03598762626709,
+ 27.572275493892455
+ ],
+ [
+ 64.15083030975076,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 28.156218698677815
+ ],
+ [
+ 64.03598762626709,
+ 28.350866433606267
+ ],
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ],
+ [
+ 63.69145957581605,
+ 28.156218698677815
+ ],
+ [
+ 63.80630225929973,
+ 27.961570963749363
+ ],
+ [
+ 64.03598762626709,
+ 27.961570963749363
+ ],
+ [
+ 64.15083030975076,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 28.54551416853472
+ ],
+ [
+ 64.03598762626709,
+ 28.74016190346317
+ ],
+ [
+ 63.80630225929973,
+ 28.74016190346317
+ ],
+ [
+ 63.69145957581605,
+ 28.54551416853472
+ ],
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ],
+ [
+ 64.03598762626709,
+ 28.350866433606267
+ ],
+ [
+ 64.15083030975076,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 28.934809638391627
+ ],
+ [
+ 64.03598762626709,
+ 29.12945737332008
+ ],
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ],
+ [
+ 63.69145957581605,
+ 28.934809638391627
+ ],
+ [
+ 63.80630225929973,
+ 28.740161903463175
+ ],
+ [
+ 64.03598762626709,
+ 28.740161903463175
+ ],
+ [
+ 64.15083030975076,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 29.32410510824853
+ ],
+ [
+ 64.03598762626709,
+ 29.518752843176983
+ ],
+ [
+ 63.80630225929973,
+ 29.518752843176983
+ ],
+ [
+ 63.69145957581605,
+ 29.32410510824853
+ ],
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ],
+ [
+ 64.03598762626709,
+ 29.12945737332008
+ ],
+ [
+ 64.15083030975076,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 29.71340057810544
+ ],
+ [
+ 64.03598762626709,
+ 29.90804831303389
+ ],
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ],
+ [
+ 63.69145957581605,
+ 29.71340057810544
+ ],
+ [
+ 63.80630225929973,
+ 29.518752843176987
+ ],
+ [
+ 64.03598762626709,
+ 29.518752843176987
+ ],
+ [
+ 64.15083030975076,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 30.102696047962343
+ ],
+ [
+ 64.03598762626709,
+ 30.297343782890795
+ ],
+ [
+ 63.80630225929973,
+ 30.297343782890795
+ ],
+ [
+ 63.69145957581605,
+ 30.102696047962343
+ ],
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ],
+ [
+ 64.03598762626709,
+ 29.90804831303389
+ ],
+ [
+ 64.15083030975076,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 30.49199151781925
+ ],
+ [
+ 64.03598762626709,
+ 30.686639252747703
+ ],
+ [
+ 63.80630225929973,
+ 30.686639252747703
+ ],
+ [
+ 63.69145957581605,
+ 30.49199151781925
+ ],
+ [
+ 63.80630225929973,
+ 30.2973437828908
+ ],
+ [
+ 64.03598762626709,
+ 30.2973437828908
+ ],
+ [
+ 64.15083030975076,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 30.88128698767616
+ ],
+ [
+ 64.03598762626709,
+ 31.07593472260461
+ ],
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ],
+ [
+ 63.69145957581605,
+ 30.88128698767616
+ ],
+ [
+ 63.80630225929973,
+ 30.686639252747707
+ ],
+ [
+ 64.03598762626709,
+ 30.686639252747707
+ ],
+ [
+ 64.15083030975076,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 31.270582457533063
+ ],
+ [
+ 64.03598762626709,
+ 31.465230192461515
+ ],
+ [
+ 63.80630225929973,
+ 31.465230192461515
+ ],
+ [
+ 63.69145957581605,
+ 31.270582457533063
+ ],
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ],
+ [
+ 64.03598762626709,
+ 31.07593472260461
+ ],
+ [
+ 64.15083030975076,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 31.65987792738997
+ ],
+ [
+ 64.03598762626709,
+ 31.854525662318423
+ ],
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ],
+ [
+ 63.69145957581605,
+ 31.65987792738997
+ ],
+ [
+ 63.80630225929973,
+ 31.46523019246152
+ ],
+ [
+ 64.03598762626709,
+ 31.46523019246152
+ ],
+ [
+ 64.15083030975076,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 32.049173397246875
+ ],
+ [
+ 64.03598762626709,
+ 32.24382113217533
+ ],
+ [
+ 63.80630225929973,
+ 32.24382113217533
+ ],
+ [
+ 63.69145957581605,
+ 32.049173397246875
+ ],
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ],
+ [
+ 64.03598762626709,
+ 31.854525662318423
+ ],
+ [
+ 64.15083030975076,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 32.438468867103786
+ ],
+ [
+ 64.03598762626709,
+ 32.63311660203224
+ ],
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ],
+ [
+ 63.69145957581605,
+ 32.438468867103786
+ ],
+ [
+ 63.80630225929973,
+ 32.243821132175334
+ ],
+ [
+ 64.03598762626709,
+ 32.243821132175334
+ ],
+ [
+ 64.15083030975076,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 32.82776433696069
+ ],
+ [
+ 64.03598762626709,
+ 33.02241207188914
+ ],
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ],
+ [
+ 63.69145957581605,
+ 32.82776433696069
+ ],
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ],
+ [
+ 64.03598762626709,
+ 32.63311660203224
+ ],
+ [
+ 64.15083030975076,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 33.217059806817595
+ ],
+ [
+ 64.03598762626709,
+ 33.41170754174605
+ ],
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ],
+ [
+ 63.69145957581605,
+ 33.217059806817595
+ ],
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ],
+ [
+ 64.03598762626709,
+ 33.02241207188914
+ ],
+ [
+ 64.15083030975076,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 33.6063552766745
+ ],
+ [
+ 64.03598762626709,
+ 33.80100301160295
+ ],
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ],
+ [
+ 63.69145957581605,
+ 33.6063552766745
+ ],
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ],
+ [
+ 64.03598762626709,
+ 33.41170754174605
+ ],
+ [
+ 64.15083030975076,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 33.9956507465314
+ ],
+ [
+ 64.03598762626709,
+ 34.190298481459855
+ ],
+ [
+ 63.80630225929973,
+ 34.190298481459855
+ ],
+ [
+ 63.69145957581605,
+ 33.9956507465314
+ ],
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ],
+ [
+ 64.03598762626709,
+ 33.80100301160295
+ ],
+ [
+ 64.15083030975076,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 34.384946216388315
+ ],
+ [
+ 64.03598762626709,
+ 34.57959395131677
+ ],
+ [
+ 63.80630225929973,
+ 34.57959395131677
+ ],
+ [
+ 63.69145957581605,
+ 34.384946216388315
+ ],
+ [
+ 63.80630225929973,
+ 34.19029848145986
+ ],
+ [
+ 64.03598762626709,
+ 34.19029848145986
+ ],
+ [
+ 64.15083030975076,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 34.774241686245226
+ ],
+ [
+ 64.03598762626709,
+ 34.96888942117368
+ ],
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ],
+ [
+ 63.69145957581605,
+ 34.774241686245226
+ ],
+ [
+ 63.80630225929973,
+ 34.579593951316774
+ ],
+ [
+ 64.03598762626709,
+ 34.579593951316774
+ ],
+ [
+ 64.15083030975076,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 35.16353715610213
+ ],
+ [
+ 64.03598762626709,
+ 35.35818489103058
+ ],
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ],
+ [
+ 63.69145957581605,
+ 35.16353715610213
+ ],
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ],
+ [
+ 64.03598762626709,
+ 34.96888942117368
+ ],
+ [
+ 64.15083030975076,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 35.552832625959034
+ ],
+ [
+ 64.03598762626709,
+ 35.74748036088749
+ ],
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ],
+ [
+ 63.69145957581605,
+ 35.552832625959034
+ ],
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ],
+ [
+ 64.03598762626709,
+ 35.35818489103058
+ ],
+ [
+ 64.15083030975076,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 35.94212809581594
+ ],
+ [
+ 64.03598762626709,
+ 36.13677583074439
+ ],
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ],
+ [
+ 63.69145957581605,
+ 35.94212809581594
+ ],
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ],
+ [
+ 64.03598762626709,
+ 35.74748036088749
+ ],
+ [
+ 64.15083030975076,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 36.33142356567284
+ ],
+ [
+ 64.03598762626709,
+ 36.526071300601295
+ ],
+ [
+ 63.80630225929973,
+ 36.526071300601295
+ ],
+ [
+ 63.69145957581605,
+ 36.33142356567284
+ ],
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ],
+ [
+ 64.03598762626709,
+ 36.13677583074439
+ ],
+ [
+ 64.15083030975076,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 36.720719035529754
+ ],
+ [
+ 64.03598762626709,
+ 36.915366770458206
+ ],
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ],
+ [
+ 63.69145957581605,
+ 36.720719035529754
+ ],
+ [
+ 63.80630225929973,
+ 36.5260713006013
+ ],
+ [
+ 64.03598762626709,
+ 36.5260713006013
+ ],
+ [
+ 64.15083030975076,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 37.11001450538666
+ ],
+ [
+ 64.03598762626709,
+ 37.30466224031511
+ ],
+ [
+ 63.80630225929973,
+ 37.30466224031511
+ ],
+ [
+ 63.69145957581605,
+ 37.11001450538666
+ ],
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ],
+ [
+ 64.03598762626709,
+ 36.915366770458206
+ ],
+ [
+ 64.15083030975076,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 37.49930997524357
+ ],
+ [
+ 64.03598762626709,
+ 37.69395771017202
+ ],
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ],
+ [
+ 63.69145957581605,
+ 37.49930997524357
+ ],
+ [
+ 63.80630225929973,
+ 37.30466224031512
+ ],
+ [
+ 64.03598762626709,
+ 37.30466224031512
+ ],
+ [
+ 64.15083030975076,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 37.888605445100474
+ ],
+ [
+ 64.03598762626709,
+ 38.083253180028926
+ ],
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ],
+ [
+ 63.69145957581605,
+ 37.888605445100474
+ ],
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ],
+ [
+ 64.03598762626709,
+ 37.69395771017202
+ ],
+ [
+ 64.15083030975076,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 38.27790091495738
+ ],
+ [
+ 64.03598762626709,
+ 38.47254864988583
+ ],
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ],
+ [
+ 63.69145957581605,
+ 38.27790091495738
+ ],
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ],
+ [
+ 64.03598762626709,
+ 38.083253180028926
+ ],
+ [
+ 64.15083030975076,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 38.66719638481428
+ ],
+ [
+ 64.03598762626709,
+ 38.861844119742734
+ ],
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ],
+ [
+ 63.69145957581605,
+ 38.66719638481428
+ ],
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ],
+ [
+ 64.03598762626709,
+ 38.47254864988583
+ ],
+ [
+ 64.15083030975076,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 39.05649185467119
+ ],
+ [
+ 64.03598762626709,
+ 39.25113958959964
+ ],
+ [
+ 63.80630225929973,
+ 39.25113958959964
+ ],
+ [
+ 63.69145957581605,
+ 39.05649185467119
+ ],
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ],
+ [
+ 64.03598762626709,
+ 38.861844119742734
+ ],
+ [
+ 64.15083030975076,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 39.4457873245281
+ ],
+ [
+ 64.03598762626709,
+ 39.64043505945655
+ ],
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ],
+ [
+ 63.69145957581605,
+ 39.4457873245281
+ ],
+ [
+ 63.80630225929973,
+ 39.251139589599646
+ ],
+ [
+ 64.03598762626709,
+ 39.251139589599646
+ ],
+ [
+ 64.15083030975076,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 39.835082794385
+ ],
+ [
+ 64.03598762626709,
+ 40.029730529313454
+ ],
+ [
+ 63.80630225929973,
+ 40.029730529313454
+ ],
+ [
+ 63.69145957581605,
+ 39.835082794385
+ ],
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ],
+ [
+ 64.03598762626709,
+ 39.64043505945655
+ ],
+ [
+ 64.15083030975076,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 40.22437826424191
+ ],
+ [
+ 64.03598762626709,
+ 40.419025999170366
+ ],
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ],
+ [
+ 63.69145957581605,
+ 40.22437826424191
+ ],
+ [
+ 63.80630225929973,
+ 40.02973052931346
+ ],
+ [
+ 64.03598762626709,
+ 40.02973052931346
+ ],
+ [
+ 64.15083030975076,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 40.61367373409882
+ ],
+ [
+ 64.03598762626709,
+ 40.80832146902727
+ ],
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ],
+ [
+ 63.69145957581605,
+ 40.61367373409882
+ ],
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ],
+ [
+ 64.03598762626709,
+ 40.419025999170366
+ ],
+ [
+ 64.15083030975076,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 41.00296920395572
+ ],
+ [
+ 64.03598762626709,
+ 41.197616938884174
+ ],
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ],
+ [
+ 63.69145957581605,
+ 41.00296920395572
+ ],
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ],
+ [
+ 64.03598762626709,
+ 40.80832146902727
+ ],
+ [
+ 64.15083030975076,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 41.392264673812626
+ ],
+ [
+ 64.03598762626709,
+ 41.58691240874108
+ ],
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ],
+ [
+ 63.69145957581605,
+ 41.392264673812626
+ ],
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ],
+ [
+ 64.03598762626709,
+ 41.197616938884174
+ ],
+ [
+ 64.15083030975076,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 41.78156014366953
+ ],
+ [
+ 64.03598762626709,
+ 41.97620787859798
+ ],
+ [
+ 63.80630225929973,
+ 41.97620787859798
+ ],
+ [
+ 63.69145957581605,
+ 41.78156014366953
+ ],
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ],
+ [
+ 64.03598762626709,
+ 41.58691240874108
+ ],
+ [
+ 64.15083030975076,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 42.17085561352644
+ ],
+ [
+ 64.03598762626709,
+ 42.365503348454894
+ ],
+ [
+ 63.80630225929973,
+ 42.365503348454894
+ ],
+ [
+ 63.69145957581605,
+ 42.17085561352644
+ ],
+ [
+ 63.80630225929973,
+ 41.97620787859799
+ ],
+ [
+ 64.03598762626709,
+ 41.97620787859799
+ ],
+ [
+ 64.15083030975076,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 42.56015108338335
+ ],
+ [
+ 64.03598762626709,
+ 42.754798818311805
+ ],
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ],
+ [
+ 63.69145957581605,
+ 42.56015108338335
+ ],
+ [
+ 63.80630225929973,
+ 42.3655033484549
+ ],
+ [
+ 64.03598762626709,
+ 42.3655033484549
+ ],
+ [
+ 64.15083030975076,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 42.94944655324026
+ ],
+ [
+ 64.03598762626709,
+ 43.14409428816871
+ ],
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ],
+ [
+ 63.69145957581605,
+ 42.94944655324026
+ ],
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ],
+ [
+ 64.03598762626709,
+ 42.754798818311805
+ ],
+ [
+ 64.15083030975076,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 43.33874202309716
+ ],
+ [
+ 64.03598762626709,
+ 43.53338975802561
+ ],
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ],
+ [
+ 63.69145957581605,
+ 43.33874202309716
+ ],
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ],
+ [
+ 64.03598762626709,
+ 43.14409428816871
+ ],
+ [
+ 64.15083030975076,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 43.728037492954066
+ ],
+ [
+ 64.03598762626709,
+ 43.92268522788252
+ ],
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ],
+ [
+ 63.69145957581605,
+ 43.728037492954066
+ ],
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ],
+ [
+ 64.03598762626709,
+ 43.53338975802561
+ ],
+ [
+ 64.15083030975076,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 44.11733296281097
+ ],
+ [
+ 64.03598762626709,
+ 44.31198069773942
+ ],
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ],
+ [
+ 63.69145957581605,
+ 44.11733296281097
+ ],
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ],
+ [
+ 64.03598762626709,
+ 43.92268522788252
+ ],
+ [
+ 64.15083030975076,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 44.506628432667874
+ ],
+ [
+ 64.03598762626709,
+ 44.701276167596326
+ ],
+ [
+ 63.80630225929973,
+ 44.701276167596326
+ ],
+ [
+ 63.69145957581605,
+ 44.506628432667874
+ ],
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ],
+ [
+ 64.03598762626709,
+ 44.31198069773942
+ ],
+ [
+ 64.15083030975076,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 44.89592390252479
+ ],
+ [
+ 64.03598762626709,
+ 45.090571637453245
+ ],
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ],
+ [
+ 63.69145957581605,
+ 44.89592390252479
+ ],
+ [
+ 63.80630225929973,
+ 44.70127616759634
+ ],
+ [
+ 64.03598762626709,
+ 44.70127616759634
+ ],
+ [
+ 64.15083030975076,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 45.2852193723817
+ ],
+ [
+ 64.03598762626709,
+ 45.47986710731015
+ ],
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ],
+ [
+ 63.69145957581605,
+ 45.2852193723817
+ ],
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ],
+ [
+ 64.03598762626709,
+ 45.090571637453245
+ ],
+ [
+ 64.15083030975076,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 45.6745148422386
+ ],
+ [
+ 64.03598762626709,
+ 45.86916257716705
+ ],
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ],
+ [
+ 63.69145957581605,
+ 45.6745148422386
+ ],
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ],
+ [
+ 64.03598762626709,
+ 45.47986710731015
+ ],
+ [
+ 64.15083030975076,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 46.063810312095505
+ ],
+ [
+ 64.03598762626709,
+ 46.25845804702396
+ ],
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ],
+ [
+ 63.69145957581605,
+ 46.063810312095505
+ ],
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ],
+ [
+ 64.03598762626709,
+ 45.86916257716705
+ ],
+ [
+ 64.15083030975076,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 46.45310578195241
+ ],
+ [
+ 64.03598762626709,
+ 46.64775351688086
+ ],
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ],
+ [
+ 63.69145957581605,
+ 46.45310578195241
+ ],
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ],
+ [
+ 64.03598762626709,
+ 46.25845804702396
+ ],
+ [
+ 64.15083030975076,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 46.842401251809314
+ ],
+ [
+ 64.03598762626709,
+ 47.037048986737766
+ ],
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ],
+ [
+ 63.69145957581605,
+ 46.842401251809314
+ ],
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ],
+ [
+ 64.03598762626709,
+ 46.64775351688086
+ ],
+ [
+ 64.15083030975076,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 47.23169672166622
+ ],
+ [
+ 64.03598762626709,
+ 47.42634445659467
+ ],
+ [
+ 63.80630225929973,
+ 47.42634445659467
+ ],
+ [
+ 63.69145957581605,
+ 47.23169672166622
+ ],
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ],
+ [
+ 64.03598762626709,
+ 47.037048986737766
+ ],
+ [
+ 64.15083030975076,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.15083030975076,
+ 47.620992191523136
+ ],
+ [
+ 64.03598762626709,
+ 47.81563992645159
+ ],
+ [
+ 63.80630225929973,
+ 47.81563992645159
+ ],
+ [
+ 63.69145957581605,
+ 47.620992191523136
+ ],
+ [
+ 63.80630225929973,
+ 47.426344456594684
+ ],
+ [
+ 64.03598762626709,
+ 47.426344456594684
+ ],
+ [
+ 64.15083030975076,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 12.0004566996162
+ ],
+ [
+ 64.38051567671812,
+ 12.195104434544653
+ ],
+ [
+ 64.15083030975077,
+ 12.195104434544653
+ ],
+ [
+ 64.03598762626709,
+ 12.0004566996162
+ ],
+ [
+ 64.15083030975077,
+ 11.805808964687746
+ ],
+ [
+ 64.38051567671812,
+ 11.805808964687746
+ ],
+ [
+ 64.4953583602018,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ],
+ [
+ 64.38051567671812,
+ 12.58439990440156
+ ],
+ [
+ 64.15083030975077,
+ 12.58439990440156
+ ],
+ [
+ 64.03598762626709,
+ 12.389752169473105
+ ],
+ [
+ 64.15083030975077,
+ 12.195104434544652
+ ],
+ [
+ 64.38051567671812,
+ 12.195104434544652
+ ],
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 12.779047639330013
+ ],
+ [
+ 64.38051567671812,
+ 12.973695374258467
+ ],
+ [
+ 64.15083030975077,
+ 12.973695374258467
+ ],
+ [
+ 64.03598762626709,
+ 12.779047639330013
+ ],
+ [
+ 64.15083030975077,
+ 12.58439990440156
+ ],
+ [
+ 64.38051567671812,
+ 12.58439990440156
+ ],
+ [
+ 64.4953583602018,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 13.16834310918692
+ ],
+ [
+ 64.38051567671812,
+ 13.362990844115373
+ ],
+ [
+ 64.15083030975077,
+ 13.362990844115373
+ ],
+ [
+ 64.03598762626709,
+ 13.16834310918692
+ ],
+ [
+ 64.15083030975077,
+ 12.973695374258465
+ ],
+ [
+ 64.38051567671812,
+ 12.973695374258465
+ ],
+ [
+ 64.4953583602018,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 13.557638579043825
+ ],
+ [
+ 64.38051567671812,
+ 13.752286313972279
+ ],
+ [
+ 64.15083030975077,
+ 13.752286313972279
+ ],
+ [
+ 64.03598762626709,
+ 13.557638579043825
+ ],
+ [
+ 64.15083030975077,
+ 13.362990844115371
+ ],
+ [
+ 64.38051567671812,
+ 13.362990844115371
+ ],
+ [
+ 64.4953583602018,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 13.946934048900731
+ ],
+ [
+ 64.38051567671812,
+ 14.141581783829185
+ ],
+ [
+ 64.15083030975077,
+ 14.141581783829185
+ ],
+ [
+ 64.03598762626709,
+ 13.946934048900731
+ ],
+ [
+ 64.15083030975077,
+ 13.752286313972277
+ ],
+ [
+ 64.38051567671812,
+ 13.752286313972277
+ ],
+ [
+ 64.4953583602018,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ],
+ [
+ 64.38051567671812,
+ 14.530877253686091
+ ],
+ [
+ 64.15083030975077,
+ 14.530877253686091
+ ],
+ [
+ 64.03598762626709,
+ 14.336229518757637
+ ],
+ [
+ 64.15083030975077,
+ 14.141581783829183
+ ],
+ [
+ 64.38051567671812,
+ 14.141581783829183
+ ],
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 14.725524988614545
+ ],
+ [
+ 64.38051567671812,
+ 14.920172723542999
+ ],
+ [
+ 64.15083030975077,
+ 14.920172723542999
+ ],
+ [
+ 64.03598762626709,
+ 14.725524988614545
+ ],
+ [
+ 64.15083030975077,
+ 14.530877253686091
+ ],
+ [
+ 64.38051567671812,
+ 14.530877253686091
+ ],
+ [
+ 64.4953583602018,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 15.114820458471451
+ ],
+ [
+ 64.38051567671812,
+ 15.309468193399905
+ ],
+ [
+ 64.15083030975077,
+ 15.309468193399905
+ ],
+ [
+ 64.03598762626709,
+ 15.114820458471451
+ ],
+ [
+ 64.15083030975077,
+ 14.920172723542997
+ ],
+ [
+ 64.38051567671812,
+ 14.920172723542997
+ ],
+ [
+ 64.4953583602018,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ],
+ [
+ 64.38051567671812,
+ 15.69876366325681
+ ],
+ [
+ 64.15083030975077,
+ 15.69876366325681
+ ],
+ [
+ 64.03598762626709,
+ 15.504115928328357
+ ],
+ [
+ 64.15083030975077,
+ 15.309468193399903
+ ],
+ [
+ 64.38051567671812,
+ 15.309468193399903
+ ],
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 15.893411398185265
+ ],
+ [
+ 64.38051567671812,
+ 16.088059133113717
+ ],
+ [
+ 64.15083030975077,
+ 16.088059133113717
+ ],
+ [
+ 64.03598762626709,
+ 15.893411398185265
+ ],
+ [
+ 64.15083030975077,
+ 15.69876366325681
+ ],
+ [
+ 64.38051567671812,
+ 15.69876366325681
+ ],
+ [
+ 64.4953583602018,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 16.28270686804217
+ ],
+ [
+ 64.38051567671812,
+ 16.47735460297062
+ ],
+ [
+ 64.15083030975077,
+ 16.47735460297062
+ ],
+ [
+ 64.03598762626709,
+ 16.28270686804217
+ ],
+ [
+ 64.15083030975077,
+ 16.088059133113717
+ ],
+ [
+ 64.38051567671812,
+ 16.088059133113717
+ ],
+ [
+ 64.4953583602018,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ],
+ [
+ 64.38051567671812,
+ 16.86665007282753
+ ],
+ [
+ 64.15083030975077,
+ 16.86665007282753
+ ],
+ [
+ 64.03598762626709,
+ 16.672002337899077
+ ],
+ [
+ 64.15083030975077,
+ 16.477354602970625
+ ],
+ [
+ 64.38051567671812,
+ 16.477354602970625
+ ],
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 17.06129780775598
+ ],
+ [
+ 64.38051567671812,
+ 17.255945542684433
+ ],
+ [
+ 64.15083030975077,
+ 17.255945542684433
+ ],
+ [
+ 64.03598762626709,
+ 17.06129780775598
+ ],
+ [
+ 64.15083030975077,
+ 16.86665007282753
+ ],
+ [
+ 64.38051567671812,
+ 16.86665007282753
+ ],
+ [
+ 64.4953583602018,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ],
+ [
+ 64.38051567671812,
+ 17.64524101254134
+ ],
+ [
+ 64.15083030975077,
+ 17.64524101254134
+ ],
+ [
+ 64.03598762626709,
+ 17.45059327761289
+ ],
+ [
+ 64.15083030975077,
+ 17.255945542684437
+ ],
+ [
+ 64.38051567671812,
+ 17.255945542684437
+ ],
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 17.839888747469793
+ ],
+ [
+ 64.38051567671812,
+ 18.034536482398245
+ ],
+ [
+ 64.15083030975077,
+ 18.034536482398245
+ ],
+ [
+ 64.03598762626709,
+ 17.839888747469793
+ ],
+ [
+ 64.15083030975077,
+ 17.64524101254134
+ ],
+ [
+ 64.38051567671812,
+ 17.64524101254134
+ ],
+ [
+ 64.4953583602018,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 18.2291842173267
+ ],
+ [
+ 64.38051567671812,
+ 18.423831952255153
+ ],
+ [
+ 64.15083030975077,
+ 18.423831952255153
+ ],
+ [
+ 64.03598762626709,
+ 18.2291842173267
+ ],
+ [
+ 64.15083030975077,
+ 18.03453648239825
+ ],
+ [
+ 64.38051567671812,
+ 18.03453648239825
+ ],
+ [
+ 64.4953583602018,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ],
+ [
+ 64.38051567671812,
+ 18.81312742211206
+ ],
+ [
+ 64.15083030975077,
+ 18.81312742211206
+ ],
+ [
+ 64.03598762626709,
+ 18.61847968718361
+ ],
+ [
+ 64.15083030975077,
+ 18.423831952255156
+ ],
+ [
+ 64.38051567671812,
+ 18.423831952255156
+ ],
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 19.007775157040513
+ ],
+ [
+ 64.38051567671812,
+ 19.202422891968965
+ ],
+ [
+ 64.15083030975077,
+ 19.202422891968965
+ ],
+ [
+ 64.03598762626709,
+ 19.007775157040513
+ ],
+ [
+ 64.15083030975077,
+ 18.81312742211206
+ ],
+ [
+ 64.38051567671812,
+ 18.81312742211206
+ ],
+ [
+ 64.4953583602018,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 19.39707062689742
+ ],
+ [
+ 64.38051567671812,
+ 19.591718361825873
+ ],
+ [
+ 64.15083030975077,
+ 19.591718361825873
+ ],
+ [
+ 64.03598762626709,
+ 19.39707062689742
+ ],
+ [
+ 64.15083030975077,
+ 19.20242289196897
+ ],
+ [
+ 64.38051567671812,
+ 19.20242289196897
+ ],
+ [
+ 64.4953583602018,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ],
+ [
+ 64.38051567671812,
+ 19.98101383168278
+ ],
+ [
+ 64.15083030975077,
+ 19.98101383168278
+ ],
+ [
+ 64.03598762626709,
+ 19.78636609675433
+ ],
+ [
+ 64.15083030975077,
+ 19.591718361825876
+ ],
+ [
+ 64.38051567671812,
+ 19.591718361825876
+ ],
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ],
+ [
+ 64.38051567671812,
+ 20.370309301539685
+ ],
+ [
+ 64.15083030975077,
+ 20.370309301539685
+ ],
+ [
+ 64.03598762626709,
+ 20.175661566611232
+ ],
+ [
+ 64.15083030975077,
+ 19.98101383168278
+ ],
+ [
+ 64.38051567671812,
+ 19.98101383168278
+ ],
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 20.564957036468137
+ ],
+ [
+ 64.38051567671812,
+ 20.75960477139659
+ ],
+ [
+ 64.15083030975077,
+ 20.75960477139659
+ ],
+ [
+ 64.03598762626709,
+ 20.564957036468137
+ ],
+ [
+ 64.15083030975077,
+ 20.370309301539685
+ ],
+ [
+ 64.38051567671812,
+ 20.370309301539685
+ ],
+ [
+ 64.4953583602018,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 20.954252506325044
+ ],
+ [
+ 64.38051567671812,
+ 21.148900241253497
+ ],
+ [
+ 64.15083030975077,
+ 21.148900241253497
+ ],
+ [
+ 64.03598762626709,
+ 20.954252506325044
+ ],
+ [
+ 64.15083030975077,
+ 20.759604771396592
+ ],
+ [
+ 64.38051567671812,
+ 20.759604771396592
+ ],
+ [
+ 64.4953583602018,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ],
+ [
+ 64.38051567671812,
+ 21.538195711110404
+ ],
+ [
+ 64.15083030975077,
+ 21.538195711110404
+ ],
+ [
+ 64.03598762626709,
+ 21.343547976181952
+ ],
+ [
+ 64.15083030975077,
+ 21.1489002412535
+ ],
+ [
+ 64.38051567671812,
+ 21.1489002412535
+ ],
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 21.732843446038856
+ ],
+ [
+ 64.38051567671812,
+ 21.92749118096731
+ ],
+ [
+ 64.15083030975077,
+ 21.92749118096731
+ ],
+ [
+ 64.03598762626709,
+ 21.732843446038856
+ ],
+ [
+ 64.15083030975077,
+ 21.538195711110404
+ ],
+ [
+ 64.38051567671812,
+ 21.538195711110404
+ ],
+ [
+ 64.4953583602018,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 22.122138915895764
+ ],
+ [
+ 64.38051567671812,
+ 22.316786650824216
+ ],
+ [
+ 64.15083030975077,
+ 22.316786650824216
+ ],
+ [
+ 64.03598762626709,
+ 22.122138915895764
+ ],
+ [
+ 64.15083030975077,
+ 21.927491180967312
+ ],
+ [
+ 64.38051567671812,
+ 21.927491180967312
+ ],
+ [
+ 64.4953583602018,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ],
+ [
+ 64.38051567671812,
+ 22.706082120681124
+ ],
+ [
+ 64.15083030975077,
+ 22.706082120681124
+ ],
+ [
+ 64.03598762626709,
+ 22.511434385752672
+ ],
+ [
+ 64.15083030975077,
+ 22.31678665082422
+ ],
+ [
+ 64.38051567671812,
+ 22.31678665082422
+ ],
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 22.900729855609576
+ ],
+ [
+ 64.38051567671812,
+ 23.09537759053803
+ ],
+ [
+ 64.15083030975077,
+ 23.09537759053803
+ ],
+ [
+ 64.03598762626709,
+ 22.900729855609576
+ ],
+ [
+ 64.15083030975077,
+ 22.706082120681124
+ ],
+ [
+ 64.38051567671812,
+ 22.706082120681124
+ ],
+ [
+ 64.4953583602018,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 23.290025325466484
+ ],
+ [
+ 64.38051567671812,
+ 23.484673060394936
+ ],
+ [
+ 64.15083030975077,
+ 23.484673060394936
+ ],
+ [
+ 64.03598762626709,
+ 23.290025325466484
+ ],
+ [
+ 64.15083030975077,
+ 23.095377590538032
+ ],
+ [
+ 64.38051567671812,
+ 23.095377590538032
+ ],
+ [
+ 64.4953583602018,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ],
+ [
+ 64.38051567671812,
+ 23.873968530251844
+ ],
+ [
+ 64.15083030975077,
+ 23.873968530251844
+ ],
+ [
+ 64.03598762626709,
+ 23.67932079532339
+ ],
+ [
+ 64.15083030975077,
+ 23.48467306039494
+ ],
+ [
+ 64.38051567671812,
+ 23.48467306039494
+ ],
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ],
+ [
+ 64.38051567671812,
+ 24.263264000108748
+ ],
+ [
+ 64.15083030975077,
+ 24.263264000108748
+ ],
+ [
+ 64.03598762626709,
+ 24.068616265180296
+ ],
+ [
+ 64.15083030975077,
+ 23.873968530251844
+ ],
+ [
+ 64.38051567671812,
+ 23.873968530251844
+ ],
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 24.4579117350372
+ ],
+ [
+ 64.38051567671812,
+ 24.652559469965652
+ ],
+ [
+ 64.15083030975077,
+ 24.652559469965652
+ ],
+ [
+ 64.03598762626709,
+ 24.4579117350372
+ ],
+ [
+ 64.15083030975077,
+ 24.263264000108748
+ ],
+ [
+ 64.38051567671812,
+ 24.263264000108748
+ ],
+ [
+ 64.4953583602018,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 24.847207204894108
+ ],
+ [
+ 64.38051567671812,
+ 25.04185493982256
+ ],
+ [
+ 64.15083030975077,
+ 25.04185493982256
+ ],
+ [
+ 64.03598762626709,
+ 24.847207204894108
+ ],
+ [
+ 64.15083030975077,
+ 24.652559469965656
+ ],
+ [
+ 64.38051567671812,
+ 24.652559469965656
+ ],
+ [
+ 64.4953583602018,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ],
+ [
+ 64.38051567671812,
+ 25.431150409679468
+ ],
+ [
+ 64.15083030975077,
+ 25.431150409679468
+ ],
+ [
+ 64.03598762626709,
+ 25.236502674751016
+ ],
+ [
+ 64.15083030975077,
+ 25.041854939822564
+ ],
+ [
+ 64.38051567671812,
+ 25.041854939822564
+ ],
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 25.62579814460792
+ ],
+ [
+ 64.38051567671812,
+ 25.820445879536372
+ ],
+ [
+ 64.15083030975077,
+ 25.820445879536372
+ ],
+ [
+ 64.03598762626709,
+ 25.62579814460792
+ ],
+ [
+ 64.15083030975077,
+ 25.431150409679468
+ ],
+ [
+ 64.38051567671812,
+ 25.431150409679468
+ ],
+ [
+ 64.4953583602018,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 26.015093614464828
+ ],
+ [
+ 64.38051567671812,
+ 26.20974134939328
+ ],
+ [
+ 64.15083030975077,
+ 26.20974134939328
+ ],
+ [
+ 64.03598762626709,
+ 26.015093614464828
+ ],
+ [
+ 64.15083030975077,
+ 25.820445879536376
+ ],
+ [
+ 64.38051567671812,
+ 25.820445879536376
+ ],
+ [
+ 64.4953583602018,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ],
+ [
+ 64.38051567671812,
+ 26.599036819250188
+ ],
+ [
+ 64.15083030975077,
+ 26.599036819250188
+ ],
+ [
+ 64.03598762626709,
+ 26.404389084321735
+ ],
+ [
+ 64.15083030975077,
+ 26.209741349393283
+ ],
+ [
+ 64.38051567671812,
+ 26.209741349393283
+ ],
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 26.79368455417864
+ ],
+ [
+ 64.38051567671812,
+ 26.988332289107092
+ ],
+ [
+ 64.15083030975077,
+ 26.988332289107092
+ ],
+ [
+ 64.03598762626709,
+ 26.79368455417864
+ ],
+ [
+ 64.15083030975077,
+ 26.599036819250188
+ ],
+ [
+ 64.38051567671812,
+ 26.599036819250188
+ ],
+ [
+ 64.4953583602018,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 27.182980024035547
+ ],
+ [
+ 64.38051567671812,
+ 27.377627758964
+ ],
+ [
+ 64.15083030975077,
+ 27.377627758964
+ ],
+ [
+ 64.03598762626709,
+ 27.182980024035547
+ ],
+ [
+ 64.15083030975077,
+ 26.988332289107095
+ ],
+ [
+ 64.38051567671812,
+ 26.988332289107095
+ ],
+ [
+ 64.4953583602018,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ],
+ [
+ 64.38051567671812,
+ 27.766923228820907
+ ],
+ [
+ 64.15083030975077,
+ 27.766923228820907
+ ],
+ [
+ 64.03598762626709,
+ 27.572275493892455
+ ],
+ [
+ 64.15083030975077,
+ 27.377627758964003
+ ],
+ [
+ 64.38051567671812,
+ 27.377627758964003
+ ],
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 27.96157096374936
+ ],
+ [
+ 64.38051567671812,
+ 28.15621869867781
+ ],
+ [
+ 64.15083030975077,
+ 28.15621869867781
+ ],
+ [
+ 64.03598762626709,
+ 27.96157096374936
+ ],
+ [
+ 64.15083030975077,
+ 27.766923228820907
+ ],
+ [
+ 64.38051567671812,
+ 27.766923228820907
+ ],
+ [
+ 64.4953583602018,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ],
+ [
+ 64.38051567671812,
+ 28.54551416853472
+ ],
+ [
+ 64.15083030975077,
+ 28.54551416853472
+ ],
+ [
+ 64.03598762626709,
+ 28.350866433606267
+ ],
+ [
+ 64.15083030975077,
+ 28.156218698677815
+ ],
+ [
+ 64.38051567671812,
+ 28.156218698677815
+ ],
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 28.74016190346317
+ ],
+ [
+ 64.38051567671812,
+ 28.934809638391624
+ ],
+ [
+ 64.15083030975077,
+ 28.934809638391624
+ ],
+ [
+ 64.03598762626709,
+ 28.74016190346317
+ ],
+ [
+ 64.15083030975077,
+ 28.54551416853472
+ ],
+ [
+ 64.38051567671812,
+ 28.54551416853472
+ ],
+ [
+ 64.4953583602018,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ],
+ [
+ 64.38051567671812,
+ 29.32410510824853
+ ],
+ [
+ 64.15083030975077,
+ 29.32410510824853
+ ],
+ [
+ 64.03598762626709,
+ 29.12945737332008
+ ],
+ [
+ 64.15083030975077,
+ 28.934809638391627
+ ],
+ [
+ 64.38051567671812,
+ 28.934809638391627
+ ],
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 29.518752843176983
+ ],
+ [
+ 64.38051567671812,
+ 29.713400578105436
+ ],
+ [
+ 64.15083030975077,
+ 29.713400578105436
+ ],
+ [
+ 64.03598762626709,
+ 29.518752843176983
+ ],
+ [
+ 64.15083030975077,
+ 29.32410510824853
+ ],
+ [
+ 64.38051567671812,
+ 29.32410510824853
+ ],
+ [
+ 64.4953583602018,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ],
+ [
+ 64.38051567671812,
+ 30.102696047962343
+ ],
+ [
+ 64.15083030975077,
+ 30.102696047962343
+ ],
+ [
+ 64.03598762626709,
+ 29.90804831303389
+ ],
+ [
+ 64.15083030975077,
+ 29.71340057810544
+ ],
+ [
+ 64.38051567671812,
+ 29.71340057810544
+ ],
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 30.297343782890795
+ ],
+ [
+ 64.38051567671812,
+ 30.491991517819248
+ ],
+ [
+ 64.15083030975077,
+ 30.491991517819248
+ ],
+ [
+ 64.03598762626709,
+ 30.297343782890795
+ ],
+ [
+ 64.15083030975077,
+ 30.102696047962343
+ ],
+ [
+ 64.38051567671812,
+ 30.102696047962343
+ ],
+ [
+ 64.4953583602018,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 30.686639252747703
+ ],
+ [
+ 64.38051567671812,
+ 30.881286987676155
+ ],
+ [
+ 64.15083030975077,
+ 30.881286987676155
+ ],
+ [
+ 64.03598762626709,
+ 30.686639252747703
+ ],
+ [
+ 64.15083030975077,
+ 30.49199151781925
+ ],
+ [
+ 64.38051567671812,
+ 30.49199151781925
+ ],
+ [
+ 64.4953583602018,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ],
+ [
+ 64.38051567671812,
+ 31.270582457533063
+ ],
+ [
+ 64.15083030975077,
+ 31.270582457533063
+ ],
+ [
+ 64.03598762626709,
+ 31.07593472260461
+ ],
+ [
+ 64.15083030975077,
+ 30.88128698767616
+ ],
+ [
+ 64.38051567671812,
+ 30.88128698767616
+ ],
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 31.465230192461515
+ ],
+ [
+ 64.38051567671812,
+ 31.659877927389967
+ ],
+ [
+ 64.15083030975077,
+ 31.659877927389967
+ ],
+ [
+ 64.03598762626709,
+ 31.465230192461515
+ ],
+ [
+ 64.15083030975077,
+ 31.270582457533063
+ ],
+ [
+ 64.38051567671812,
+ 31.270582457533063
+ ],
+ [
+ 64.4953583602018,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ],
+ [
+ 64.38051567671812,
+ 32.049173397246875
+ ],
+ [
+ 64.15083030975077,
+ 32.049173397246875
+ ],
+ [
+ 64.03598762626709,
+ 31.854525662318423
+ ],
+ [
+ 64.15083030975077,
+ 31.65987792738997
+ ],
+ [
+ 64.38051567671812,
+ 31.65987792738997
+ ],
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 32.24382113217533
+ ],
+ [
+ 64.38051567671812,
+ 32.43846886710378
+ ],
+ [
+ 64.15083030975077,
+ 32.43846886710378
+ ],
+ [
+ 64.03598762626709,
+ 32.24382113217533
+ ],
+ [
+ 64.15083030975077,
+ 32.049173397246875
+ ],
+ [
+ 64.38051567671812,
+ 32.049173397246875
+ ],
+ [
+ 64.4953583602018,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ],
+ [
+ 64.38051567671812,
+ 32.82776433696069
+ ],
+ [
+ 64.15083030975077,
+ 32.82776433696069
+ ],
+ [
+ 64.03598762626709,
+ 32.63311660203224
+ ],
+ [
+ 64.15083030975077,
+ 32.438468867103786
+ ],
+ [
+ 64.38051567671812,
+ 32.438468867103786
+ ],
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ],
+ [
+ 64.38051567671812,
+ 33.217059806817595
+ ],
+ [
+ 64.15083030975077,
+ 33.217059806817595
+ ],
+ [
+ 64.03598762626709,
+ 33.02241207188914
+ ],
+ [
+ 64.15083030975077,
+ 32.82776433696069
+ ],
+ [
+ 64.38051567671812,
+ 32.82776433696069
+ ],
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ],
+ [
+ 64.38051567671812,
+ 33.6063552766745
+ ],
+ [
+ 64.15083030975077,
+ 33.6063552766745
+ ],
+ [
+ 64.03598762626709,
+ 33.41170754174605
+ ],
+ [
+ 64.15083030975077,
+ 33.217059806817595
+ ],
+ [
+ 64.38051567671812,
+ 33.217059806817595
+ ],
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ],
+ [
+ 64.38051567671812,
+ 33.9956507465314
+ ],
+ [
+ 64.15083030975077,
+ 33.9956507465314
+ ],
+ [
+ 64.03598762626709,
+ 33.80100301160295
+ ],
+ [
+ 64.15083030975077,
+ 33.6063552766745
+ ],
+ [
+ 64.38051567671812,
+ 33.6063552766745
+ ],
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 34.190298481459855
+ ],
+ [
+ 64.38051567671812,
+ 34.38494621638831
+ ],
+ [
+ 64.15083030975077,
+ 34.38494621638831
+ ],
+ [
+ 64.03598762626709,
+ 34.190298481459855
+ ],
+ [
+ 64.15083030975077,
+ 33.9956507465314
+ ],
+ [
+ 64.38051567671812,
+ 33.9956507465314
+ ],
+ [
+ 64.4953583602018,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 34.57959395131677
+ ],
+ [
+ 64.38051567671812,
+ 34.77424168624522
+ ],
+ [
+ 64.15083030975077,
+ 34.77424168624522
+ ],
+ [
+ 64.03598762626709,
+ 34.57959395131677
+ ],
+ [
+ 64.15083030975077,
+ 34.384946216388315
+ ],
+ [
+ 64.38051567671812,
+ 34.384946216388315
+ ],
+ [
+ 64.4953583602018,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ],
+ [
+ 64.38051567671812,
+ 35.16353715610213
+ ],
+ [
+ 64.15083030975077,
+ 35.16353715610213
+ ],
+ [
+ 64.03598762626709,
+ 34.96888942117368
+ ],
+ [
+ 64.15083030975077,
+ 34.774241686245226
+ ],
+ [
+ 64.38051567671812,
+ 34.774241686245226
+ ],
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ],
+ [
+ 64.38051567671812,
+ 35.552832625959034
+ ],
+ [
+ 64.15083030975077,
+ 35.552832625959034
+ ],
+ [
+ 64.03598762626709,
+ 35.35818489103058
+ ],
+ [
+ 64.15083030975077,
+ 35.16353715610213
+ ],
+ [
+ 64.38051567671812,
+ 35.16353715610213
+ ],
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ],
+ [
+ 64.38051567671812,
+ 35.94212809581594
+ ],
+ [
+ 64.15083030975077,
+ 35.94212809581594
+ ],
+ [
+ 64.03598762626709,
+ 35.74748036088749
+ ],
+ [
+ 64.15083030975077,
+ 35.552832625959034
+ ],
+ [
+ 64.38051567671812,
+ 35.552832625959034
+ ],
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ],
+ [
+ 64.38051567671812,
+ 36.33142356567284
+ ],
+ [
+ 64.15083030975077,
+ 36.33142356567284
+ ],
+ [
+ 64.03598762626709,
+ 36.13677583074439
+ ],
+ [
+ 64.15083030975077,
+ 35.94212809581594
+ ],
+ [
+ 64.38051567671812,
+ 35.94212809581594
+ ],
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 36.526071300601295
+ ],
+ [
+ 64.38051567671812,
+ 36.72071903552975
+ ],
+ [
+ 64.15083030975077,
+ 36.72071903552975
+ ],
+ [
+ 64.03598762626709,
+ 36.526071300601295
+ ],
+ [
+ 64.15083030975077,
+ 36.33142356567284
+ ],
+ [
+ 64.38051567671812,
+ 36.33142356567284
+ ],
+ [
+ 64.4953583602018,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ],
+ [
+ 64.38051567671812,
+ 37.11001450538666
+ ],
+ [
+ 64.15083030975077,
+ 37.11001450538666
+ ],
+ [
+ 64.03598762626709,
+ 36.915366770458206
+ ],
+ [
+ 64.15083030975077,
+ 36.720719035529754
+ ],
+ [
+ 64.38051567671812,
+ 36.720719035529754
+ ],
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 37.30466224031511
+ ],
+ [
+ 64.38051567671812,
+ 37.49930997524356
+ ],
+ [
+ 64.15083030975077,
+ 37.49930997524356
+ ],
+ [
+ 64.03598762626709,
+ 37.30466224031511
+ ],
+ [
+ 64.15083030975077,
+ 37.11001450538666
+ ],
+ [
+ 64.38051567671812,
+ 37.11001450538666
+ ],
+ [
+ 64.4953583602018,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ],
+ [
+ 64.38051567671812,
+ 37.888605445100474
+ ],
+ [
+ 64.15083030975077,
+ 37.888605445100474
+ ],
+ [
+ 64.03598762626709,
+ 37.69395771017202
+ ],
+ [
+ 64.15083030975077,
+ 37.49930997524357
+ ],
+ [
+ 64.38051567671812,
+ 37.49930997524357
+ ],
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ],
+ [
+ 64.38051567671812,
+ 38.27790091495738
+ ],
+ [
+ 64.15083030975077,
+ 38.27790091495738
+ ],
+ [
+ 64.03598762626709,
+ 38.083253180028926
+ ],
+ [
+ 64.15083030975077,
+ 37.888605445100474
+ ],
+ [
+ 64.38051567671812,
+ 37.888605445100474
+ ],
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ],
+ [
+ 64.38051567671812,
+ 38.66719638481428
+ ],
+ [
+ 64.15083030975077,
+ 38.66719638481428
+ ],
+ [
+ 64.03598762626709,
+ 38.47254864988583
+ ],
+ [
+ 64.15083030975077,
+ 38.27790091495738
+ ],
+ [
+ 64.38051567671812,
+ 38.27790091495738
+ ],
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ],
+ [
+ 64.38051567671812,
+ 39.05649185467119
+ ],
+ [
+ 64.15083030975077,
+ 39.05649185467119
+ ],
+ [
+ 64.03598762626709,
+ 38.861844119742734
+ ],
+ [
+ 64.15083030975077,
+ 38.66719638481428
+ ],
+ [
+ 64.38051567671812,
+ 38.66719638481428
+ ],
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 39.25113958959964
+ ],
+ [
+ 64.38051567671812,
+ 39.44578732452809
+ ],
+ [
+ 64.15083030975077,
+ 39.44578732452809
+ ],
+ [
+ 64.03598762626709,
+ 39.25113958959964
+ ],
+ [
+ 64.15083030975077,
+ 39.05649185467119
+ ],
+ [
+ 64.38051567671812,
+ 39.05649185467119
+ ],
+ [
+ 64.4953583602018,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ],
+ [
+ 64.38051567671812,
+ 39.835082794385
+ ],
+ [
+ 64.15083030975077,
+ 39.835082794385
+ ],
+ [
+ 64.03598762626709,
+ 39.64043505945655
+ ],
+ [
+ 64.15083030975077,
+ 39.4457873245281
+ ],
+ [
+ 64.38051567671812,
+ 39.4457873245281
+ ],
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 40.029730529313454
+ ],
+ [
+ 64.38051567671812,
+ 40.224378264241906
+ ],
+ [
+ 64.15083030975077,
+ 40.224378264241906
+ ],
+ [
+ 64.03598762626709,
+ 40.029730529313454
+ ],
+ [
+ 64.15083030975077,
+ 39.835082794385
+ ],
+ [
+ 64.38051567671812,
+ 39.835082794385
+ ],
+ [
+ 64.4953583602018,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ],
+ [
+ 64.38051567671812,
+ 40.61367373409882
+ ],
+ [
+ 64.15083030975077,
+ 40.61367373409882
+ ],
+ [
+ 64.03598762626709,
+ 40.419025999170366
+ ],
+ [
+ 64.15083030975077,
+ 40.22437826424191
+ ],
+ [
+ 64.38051567671812,
+ 40.22437826424191
+ ],
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ],
+ [
+ 64.38051567671812,
+ 41.00296920395572
+ ],
+ [
+ 64.15083030975077,
+ 41.00296920395572
+ ],
+ [
+ 64.03598762626709,
+ 40.80832146902727
+ ],
+ [
+ 64.15083030975077,
+ 40.61367373409882
+ ],
+ [
+ 64.38051567671812,
+ 40.61367373409882
+ ],
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ],
+ [
+ 64.38051567671812,
+ 41.392264673812626
+ ],
+ [
+ 64.15083030975077,
+ 41.392264673812626
+ ],
+ [
+ 64.03598762626709,
+ 41.197616938884174
+ ],
+ [
+ 64.15083030975077,
+ 41.00296920395572
+ ],
+ [
+ 64.38051567671812,
+ 41.00296920395572
+ ],
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ],
+ [
+ 64.38051567671812,
+ 41.78156014366953
+ ],
+ [
+ 64.15083030975077,
+ 41.78156014366953
+ ],
+ [
+ 64.03598762626709,
+ 41.58691240874108
+ ],
+ [
+ 64.15083030975077,
+ 41.392264673812626
+ ],
+ [
+ 64.38051567671812,
+ 41.392264673812626
+ ],
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 41.97620787859798
+ ],
+ [
+ 64.38051567671812,
+ 42.170855613526435
+ ],
+ [
+ 64.15083030975077,
+ 42.170855613526435
+ ],
+ [
+ 64.03598762626709,
+ 41.97620787859798
+ ],
+ [
+ 64.15083030975077,
+ 41.78156014366953
+ ],
+ [
+ 64.38051567671812,
+ 41.78156014366953
+ ],
+ [
+ 64.4953583602018,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 42.365503348454894
+ ],
+ [
+ 64.38051567671812,
+ 42.560151083383346
+ ],
+ [
+ 64.15083030975077,
+ 42.560151083383346
+ ],
+ [
+ 64.03598762626709,
+ 42.365503348454894
+ ],
+ [
+ 64.15083030975077,
+ 42.17085561352644
+ ],
+ [
+ 64.38051567671812,
+ 42.17085561352644
+ ],
+ [
+ 64.4953583602018,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ],
+ [
+ 64.38051567671812,
+ 42.94944655324026
+ ],
+ [
+ 64.15083030975077,
+ 42.94944655324026
+ ],
+ [
+ 64.03598762626709,
+ 42.754798818311805
+ ],
+ [
+ 64.15083030975077,
+ 42.56015108338335
+ ],
+ [
+ 64.38051567671812,
+ 42.56015108338335
+ ],
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ],
+ [
+ 64.38051567671812,
+ 43.33874202309716
+ ],
+ [
+ 64.15083030975077,
+ 43.33874202309716
+ ],
+ [
+ 64.03598762626709,
+ 43.14409428816871
+ ],
+ [
+ 64.15083030975077,
+ 42.94944655324026
+ ],
+ [
+ 64.38051567671812,
+ 42.94944655324026
+ ],
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ],
+ [
+ 64.38051567671812,
+ 43.728037492954066
+ ],
+ [
+ 64.15083030975077,
+ 43.728037492954066
+ ],
+ [
+ 64.03598762626709,
+ 43.53338975802561
+ ],
+ [
+ 64.15083030975077,
+ 43.33874202309716
+ ],
+ [
+ 64.38051567671812,
+ 43.33874202309716
+ ],
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ],
+ [
+ 64.38051567671812,
+ 44.11733296281097
+ ],
+ [
+ 64.15083030975077,
+ 44.11733296281097
+ ],
+ [
+ 64.03598762626709,
+ 43.92268522788252
+ ],
+ [
+ 64.15083030975077,
+ 43.728037492954066
+ ],
+ [
+ 64.38051567671812,
+ 43.728037492954066
+ ],
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ],
+ [
+ 64.38051567671812,
+ 44.506628432667874
+ ],
+ [
+ 64.15083030975077,
+ 44.506628432667874
+ ],
+ [
+ 64.03598762626709,
+ 44.31198069773942
+ ],
+ [
+ 64.15083030975077,
+ 44.11733296281097
+ ],
+ [
+ 64.38051567671812,
+ 44.11733296281097
+ ],
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 44.701276167596326
+ ],
+ [
+ 64.38051567671812,
+ 44.89592390252478
+ ],
+ [
+ 64.15083030975077,
+ 44.89592390252478
+ ],
+ [
+ 64.03598762626709,
+ 44.701276167596326
+ ],
+ [
+ 64.15083030975077,
+ 44.506628432667874
+ ],
+ [
+ 64.38051567671812,
+ 44.506628432667874
+ ],
+ [
+ 64.4953583602018,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ],
+ [
+ 64.38051567671812,
+ 45.2852193723817
+ ],
+ [
+ 64.15083030975077,
+ 45.2852193723817
+ ],
+ [
+ 64.03598762626709,
+ 45.090571637453245
+ ],
+ [
+ 64.15083030975077,
+ 44.89592390252479
+ ],
+ [
+ 64.38051567671812,
+ 44.89592390252479
+ ],
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ],
+ [
+ 64.38051567671812,
+ 45.6745148422386
+ ],
+ [
+ 64.15083030975077,
+ 45.6745148422386
+ ],
+ [
+ 64.03598762626709,
+ 45.47986710731015
+ ],
+ [
+ 64.15083030975077,
+ 45.2852193723817
+ ],
+ [
+ 64.38051567671812,
+ 45.2852193723817
+ ],
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ],
+ [
+ 64.38051567671812,
+ 46.063810312095505
+ ],
+ [
+ 64.15083030975077,
+ 46.063810312095505
+ ],
+ [
+ 64.03598762626709,
+ 45.86916257716705
+ ],
+ [
+ 64.15083030975077,
+ 45.6745148422386
+ ],
+ [
+ 64.38051567671812,
+ 45.6745148422386
+ ],
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ],
+ [
+ 64.38051567671812,
+ 46.45310578195241
+ ],
+ [
+ 64.15083030975077,
+ 46.45310578195241
+ ],
+ [
+ 64.03598762626709,
+ 46.25845804702396
+ ],
+ [
+ 64.15083030975077,
+ 46.063810312095505
+ ],
+ [
+ 64.38051567671812,
+ 46.063810312095505
+ ],
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ],
+ [
+ 64.38051567671812,
+ 46.842401251809314
+ ],
+ [
+ 64.15083030975077,
+ 46.842401251809314
+ ],
+ [
+ 64.03598762626709,
+ 46.64775351688086
+ ],
+ [
+ 64.15083030975077,
+ 46.45310578195241
+ ],
+ [
+ 64.38051567671812,
+ 46.45310578195241
+ ],
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ],
+ [
+ 64.38051567671812,
+ 47.23169672166622
+ ],
+ [
+ 64.15083030975077,
+ 47.23169672166622
+ ],
+ [
+ 64.03598762626709,
+ 47.037048986737766
+ ],
+ [
+ 64.15083030975077,
+ 46.842401251809314
+ ],
+ [
+ 64.38051567671812,
+ 46.842401251809314
+ ],
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 47.42634445659467
+ ],
+ [
+ 64.38051567671812,
+ 47.62099219152312
+ ],
+ [
+ 64.15083030975077,
+ 47.62099219152312
+ ],
+ [
+ 64.03598762626709,
+ 47.42634445659467
+ ],
+ [
+ 64.15083030975077,
+ 47.23169672166622
+ ],
+ [
+ 64.38051567671812,
+ 47.23169672166622
+ ],
+ [
+ 64.4953583602018,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.4953583602018,
+ 47.81563992645159
+ ],
+ [
+ 64.38051567671812,
+ 48.01028766138004
+ ],
+ [
+ 64.15083030975077,
+ 48.01028766138004
+ ],
+ [
+ 64.03598762626709,
+ 47.81563992645159
+ ],
+ [
+ 64.15083030975077,
+ 47.620992191523136
+ ],
+ [
+ 64.38051567671812,
+ 47.620992191523136
+ ],
+ [
+ 64.4953583602018,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 11.805808964687746
+ ],
+ [
+ 64.72504372716915,
+ 12.0004566996162
+ ],
+ [
+ 64.4953583602018,
+ 12.0004566996162
+ ],
+ [
+ 64.38051567671812,
+ 11.805808964687746
+ ],
+ [
+ 64.4953583602018,
+ 11.611161229759292
+ ],
+ [
+ 64.72504372716915,
+ 11.611161229759292
+ ],
+ [
+ 64.83988641065284,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 12.195104434544652
+ ],
+ [
+ 64.72504372716915,
+ 12.389752169473105
+ ],
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ],
+ [
+ 64.38051567671812,
+ 12.195104434544652
+ ],
+ [
+ 64.4953583602018,
+ 12.000456699616198
+ ],
+ [
+ 64.72504372716915,
+ 12.000456699616198
+ ],
+ [
+ 64.83988641065284,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ],
+ [
+ 64.72504372716915,
+ 12.779047639330013
+ ],
+ [
+ 64.4953583602018,
+ 12.779047639330013
+ ],
+ [
+ 64.38051567671812,
+ 12.58439990440156
+ ],
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ],
+ [
+ 64.72504372716915,
+ 12.389752169473105
+ ],
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 12.973695374258465
+ ],
+ [
+ 64.72504372716915,
+ 13.16834310918692
+ ],
+ [
+ 64.4953583602018,
+ 13.16834310918692
+ ],
+ [
+ 64.38051567671812,
+ 12.973695374258465
+ ],
+ [
+ 64.4953583602018,
+ 12.779047639330011
+ ],
+ [
+ 64.72504372716915,
+ 12.779047639330011
+ ],
+ [
+ 64.83988641065284,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 13.362990844115371
+ ],
+ [
+ 64.72504372716915,
+ 13.557638579043825
+ ],
+ [
+ 64.4953583602018,
+ 13.557638579043825
+ ],
+ [
+ 64.38051567671812,
+ 13.362990844115371
+ ],
+ [
+ 64.4953583602018,
+ 13.168343109186917
+ ],
+ [
+ 64.72504372716915,
+ 13.168343109186917
+ ],
+ [
+ 64.83988641065284,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 13.752286313972277
+ ],
+ [
+ 64.72504372716915,
+ 13.946934048900731
+ ],
+ [
+ 64.4953583602018,
+ 13.946934048900731
+ ],
+ [
+ 64.38051567671812,
+ 13.752286313972277
+ ],
+ [
+ 64.4953583602018,
+ 13.557638579043823
+ ],
+ [
+ 64.72504372716915,
+ 13.557638579043823
+ ],
+ [
+ 64.83988641065284,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 14.141581783829183
+ ],
+ [
+ 64.72504372716915,
+ 14.336229518757637
+ ],
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ],
+ [
+ 64.38051567671812,
+ 14.141581783829183
+ ],
+ [
+ 64.4953583602018,
+ 13.94693404890073
+ ],
+ [
+ 64.72504372716915,
+ 13.94693404890073
+ ],
+ [
+ 64.83988641065284,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ],
+ [
+ 64.72504372716915,
+ 14.725524988614545
+ ],
+ [
+ 64.4953583602018,
+ 14.725524988614545
+ ],
+ [
+ 64.38051567671812,
+ 14.530877253686091
+ ],
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ],
+ [
+ 64.72504372716915,
+ 14.336229518757637
+ ],
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 14.920172723542997
+ ],
+ [
+ 64.72504372716915,
+ 15.114820458471451
+ ],
+ [
+ 64.4953583602018,
+ 15.114820458471451
+ ],
+ [
+ 64.38051567671812,
+ 14.920172723542997
+ ],
+ [
+ 64.4953583602018,
+ 14.725524988614543
+ ],
+ [
+ 64.72504372716915,
+ 14.725524988614543
+ ],
+ [
+ 64.83988641065284,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 15.309468193399903
+ ],
+ [
+ 64.72504372716915,
+ 15.504115928328357
+ ],
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ],
+ [
+ 64.38051567671812,
+ 15.309468193399903
+ ],
+ [
+ 64.4953583602018,
+ 15.11482045847145
+ ],
+ [
+ 64.72504372716915,
+ 15.11482045847145
+ ],
+ [
+ 64.83988641065284,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ],
+ [
+ 64.72504372716915,
+ 15.893411398185265
+ ],
+ [
+ 64.4953583602018,
+ 15.893411398185265
+ ],
+ [
+ 64.38051567671812,
+ 15.69876366325681
+ ],
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ],
+ [
+ 64.72504372716915,
+ 15.504115928328357
+ ],
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ],
+ [
+ 64.72504372716915,
+ 16.28270686804217
+ ],
+ [
+ 64.4953583602018,
+ 16.28270686804217
+ ],
+ [
+ 64.38051567671812,
+ 16.088059133113717
+ ],
+ [
+ 64.4953583602018,
+ 15.893411398185263
+ ],
+ [
+ 64.72504372716915,
+ 15.893411398185263
+ ],
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 16.477354602970625
+ ],
+ [
+ 64.72504372716915,
+ 16.672002337899077
+ ],
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ],
+ [
+ 64.38051567671812,
+ 16.477354602970625
+ ],
+ [
+ 64.4953583602018,
+ 16.282706868042172
+ ],
+ [
+ 64.72504372716915,
+ 16.282706868042172
+ ],
+ [
+ 64.83988641065284,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ],
+ [
+ 64.72504372716915,
+ 17.06129780775598
+ ],
+ [
+ 64.4953583602018,
+ 17.06129780775598
+ ],
+ [
+ 64.38051567671812,
+ 16.86665007282753
+ ],
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ],
+ [
+ 64.72504372716915,
+ 16.672002337899077
+ ],
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 17.255945542684437
+ ],
+ [
+ 64.72504372716915,
+ 17.45059327761289
+ ],
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ],
+ [
+ 64.38051567671812,
+ 17.255945542684437
+ ],
+ [
+ 64.4953583602018,
+ 17.061297807755984
+ ],
+ [
+ 64.72504372716915,
+ 17.061297807755984
+ ],
+ [
+ 64.83988641065284,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ],
+ [
+ 64.72504372716915,
+ 17.839888747469793
+ ],
+ [
+ 64.4953583602018,
+ 17.839888747469793
+ ],
+ [
+ 64.38051567671812,
+ 17.64524101254134
+ ],
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ],
+ [
+ 64.72504372716915,
+ 17.45059327761289
+ ],
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 18.03453648239825
+ ],
+ [
+ 64.72504372716915,
+ 18.2291842173267
+ ],
+ [
+ 64.4953583602018,
+ 18.2291842173267
+ ],
+ [
+ 64.38051567671812,
+ 18.03453648239825
+ ],
+ [
+ 64.4953583602018,
+ 17.839888747469796
+ ],
+ [
+ 64.72504372716915,
+ 17.839888747469796
+ ],
+ [
+ 64.83988641065284,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 18.423831952255156
+ ],
+ [
+ 64.72504372716915,
+ 18.61847968718361
+ ],
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ],
+ [
+ 64.38051567671812,
+ 18.423831952255156
+ ],
+ [
+ 64.4953583602018,
+ 18.229184217326704
+ ],
+ [
+ 64.72504372716915,
+ 18.229184217326704
+ ],
+ [
+ 64.83988641065284,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ],
+ [
+ 64.72504372716915,
+ 19.007775157040513
+ ],
+ [
+ 64.4953583602018,
+ 19.007775157040513
+ ],
+ [
+ 64.38051567671812,
+ 18.81312742211206
+ ],
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ],
+ [
+ 64.72504372716915,
+ 18.61847968718361
+ ],
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 19.20242289196897
+ ],
+ [
+ 64.72504372716915,
+ 19.39707062689742
+ ],
+ [
+ 64.4953583602018,
+ 19.39707062689742
+ ],
+ [
+ 64.38051567671812,
+ 19.20242289196897
+ ],
+ [
+ 64.4953583602018,
+ 19.007775157040516
+ ],
+ [
+ 64.72504372716915,
+ 19.007775157040516
+ ],
+ [
+ 64.83988641065284,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 19.591718361825876
+ ],
+ [
+ 64.72504372716915,
+ 19.78636609675433
+ ],
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ],
+ [
+ 64.38051567671812,
+ 19.591718361825876
+ ],
+ [
+ 64.4953583602018,
+ 19.397070626897424
+ ],
+ [
+ 64.72504372716915,
+ 19.397070626897424
+ ],
+ [
+ 64.83988641065284,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ],
+ [
+ 64.72504372716915,
+ 20.175661566611232
+ ],
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ],
+ [
+ 64.38051567671812,
+ 19.98101383168278
+ ],
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ],
+ [
+ 64.72504372716915,
+ 19.78636609675433
+ ],
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ],
+ [
+ 64.72504372716915,
+ 20.564957036468137
+ ],
+ [
+ 64.4953583602018,
+ 20.564957036468137
+ ],
+ [
+ 64.38051567671812,
+ 20.370309301539685
+ ],
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ],
+ [
+ 64.72504372716915,
+ 20.175661566611232
+ ],
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 20.759604771396592
+ ],
+ [
+ 64.72504372716915,
+ 20.954252506325044
+ ],
+ [
+ 64.4953583602018,
+ 20.954252506325044
+ ],
+ [
+ 64.38051567671812,
+ 20.759604771396592
+ ],
+ [
+ 64.4953583602018,
+ 20.56495703646814
+ ],
+ [
+ 64.72504372716915,
+ 20.56495703646814
+ ],
+ [
+ 64.83988641065284,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 21.1489002412535
+ ],
+ [
+ 64.72504372716915,
+ 21.343547976181952
+ ],
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ],
+ [
+ 64.38051567671812,
+ 21.1489002412535
+ ],
+ [
+ 64.4953583602018,
+ 20.954252506325048
+ ],
+ [
+ 64.72504372716915,
+ 20.954252506325048
+ ],
+ [
+ 64.83988641065284,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ],
+ [
+ 64.72504372716915,
+ 21.732843446038856
+ ],
+ [
+ 64.4953583602018,
+ 21.732843446038856
+ ],
+ [
+ 64.38051567671812,
+ 21.538195711110404
+ ],
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ],
+ [
+ 64.72504372716915,
+ 21.343547976181952
+ ],
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 21.927491180967312
+ ],
+ [
+ 64.72504372716915,
+ 22.122138915895764
+ ],
+ [
+ 64.4953583602018,
+ 22.122138915895764
+ ],
+ [
+ 64.38051567671812,
+ 21.927491180967312
+ ],
+ [
+ 64.4953583602018,
+ 21.73284344603886
+ ],
+ [
+ 64.72504372716915,
+ 21.73284344603886
+ ],
+ [
+ 64.83988641065284,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 22.31678665082422
+ ],
+ [
+ 64.72504372716915,
+ 22.511434385752672
+ ],
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ],
+ [
+ 64.38051567671812,
+ 22.31678665082422
+ ],
+ [
+ 64.4953583602018,
+ 22.122138915895768
+ ],
+ [
+ 64.72504372716915,
+ 22.122138915895768
+ ],
+ [
+ 64.83988641065284,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ],
+ [
+ 64.72504372716915,
+ 22.900729855609576
+ ],
+ [
+ 64.4953583602018,
+ 22.900729855609576
+ ],
+ [
+ 64.38051567671812,
+ 22.706082120681124
+ ],
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ],
+ [
+ 64.72504372716915,
+ 22.511434385752672
+ ],
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 23.095377590538032
+ ],
+ [
+ 64.72504372716915,
+ 23.290025325466484
+ ],
+ [
+ 64.4953583602018,
+ 23.290025325466484
+ ],
+ [
+ 64.38051567671812,
+ 23.095377590538032
+ ],
+ [
+ 64.4953583602018,
+ 22.90072985560958
+ ],
+ [
+ 64.72504372716915,
+ 22.90072985560958
+ ],
+ [
+ 64.83988641065284,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 23.48467306039494
+ ],
+ [
+ 64.72504372716915,
+ 23.67932079532339
+ ],
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ],
+ [
+ 64.38051567671812,
+ 23.48467306039494
+ ],
+ [
+ 64.4953583602018,
+ 23.290025325466488
+ ],
+ [
+ 64.72504372716915,
+ 23.290025325466488
+ ],
+ [
+ 64.83988641065284,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ],
+ [
+ 64.72504372716915,
+ 24.068616265180296
+ ],
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ],
+ [
+ 64.38051567671812,
+ 23.873968530251844
+ ],
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ],
+ [
+ 64.72504372716915,
+ 23.67932079532339
+ ],
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ],
+ [
+ 64.72504372716915,
+ 24.4579117350372
+ ],
+ [
+ 64.4953583602018,
+ 24.4579117350372
+ ],
+ [
+ 64.38051567671812,
+ 24.263264000108748
+ ],
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ],
+ [
+ 64.72504372716915,
+ 24.068616265180296
+ ],
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 24.652559469965656
+ ],
+ [
+ 64.72504372716915,
+ 24.847207204894108
+ ],
+ [
+ 64.4953583602018,
+ 24.847207204894108
+ ],
+ [
+ 64.38051567671812,
+ 24.652559469965656
+ ],
+ [
+ 64.4953583602018,
+ 24.457911735037204
+ ],
+ [
+ 64.72504372716915,
+ 24.457911735037204
+ ],
+ [
+ 64.83988641065284,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 25.041854939822564
+ ],
+ [
+ 64.72504372716915,
+ 25.236502674751016
+ ],
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ],
+ [
+ 64.38051567671812,
+ 25.041854939822564
+ ],
+ [
+ 64.4953583602018,
+ 24.84720720489411
+ ],
+ [
+ 64.72504372716915,
+ 24.84720720489411
+ ],
+ [
+ 64.83988641065284,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ],
+ [
+ 64.72504372716915,
+ 25.62579814460792
+ ],
+ [
+ 64.4953583602018,
+ 25.62579814460792
+ ],
+ [
+ 64.38051567671812,
+ 25.431150409679468
+ ],
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ],
+ [
+ 64.72504372716915,
+ 25.236502674751016
+ ],
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 25.820445879536376
+ ],
+ [
+ 64.72504372716915,
+ 26.015093614464828
+ ],
+ [
+ 64.4953583602018,
+ 26.015093614464828
+ ],
+ [
+ 64.38051567671812,
+ 25.820445879536376
+ ],
+ [
+ 64.4953583602018,
+ 25.625798144607923
+ ],
+ [
+ 64.72504372716915,
+ 25.625798144607923
+ ],
+ [
+ 64.83988641065284,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 26.209741349393283
+ ],
+ [
+ 64.72504372716915,
+ 26.404389084321735
+ ],
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ],
+ [
+ 64.38051567671812,
+ 26.209741349393283
+ ],
+ [
+ 64.4953583602018,
+ 26.01509361446483
+ ],
+ [
+ 64.72504372716915,
+ 26.01509361446483
+ ],
+ [
+ 64.83988641065284,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ],
+ [
+ 64.72504372716915,
+ 26.79368455417864
+ ],
+ [
+ 64.4953583602018,
+ 26.79368455417864
+ ],
+ [
+ 64.38051567671812,
+ 26.599036819250188
+ ],
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ],
+ [
+ 64.72504372716915,
+ 26.404389084321735
+ ],
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 26.988332289107095
+ ],
+ [
+ 64.72504372716915,
+ 27.182980024035547
+ ],
+ [
+ 64.4953583602018,
+ 27.182980024035547
+ ],
+ [
+ 64.38051567671812,
+ 26.988332289107095
+ ],
+ [
+ 64.4953583602018,
+ 26.793684554178643
+ ],
+ [
+ 64.72504372716915,
+ 26.793684554178643
+ ],
+ [
+ 64.83988641065284,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 27.377627758964003
+ ],
+ [
+ 64.72504372716915,
+ 27.572275493892455
+ ],
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ],
+ [
+ 64.38051567671812,
+ 27.377627758964003
+ ],
+ [
+ 64.4953583602018,
+ 27.18298002403555
+ ],
+ [
+ 64.72504372716915,
+ 27.18298002403555
+ ],
+ [
+ 64.83988641065284,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ],
+ [
+ 64.72504372716915,
+ 27.96157096374936
+ ],
+ [
+ 64.4953583602018,
+ 27.96157096374936
+ ],
+ [
+ 64.38051567671812,
+ 27.766923228820907
+ ],
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ],
+ [
+ 64.72504372716915,
+ 27.572275493892455
+ ],
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 28.156218698677815
+ ],
+ [
+ 64.72504372716915,
+ 28.350866433606267
+ ],
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ],
+ [
+ 64.38051567671812,
+ 28.156218698677815
+ ],
+ [
+ 64.4953583602018,
+ 27.961570963749363
+ ],
+ [
+ 64.72504372716915,
+ 27.961570963749363
+ ],
+ [
+ 64.83988641065284,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ],
+ [
+ 64.72504372716915,
+ 28.74016190346317
+ ],
+ [
+ 64.4953583602018,
+ 28.74016190346317
+ ],
+ [
+ 64.38051567671812,
+ 28.54551416853472
+ ],
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ],
+ [
+ 64.72504372716915,
+ 28.350866433606267
+ ],
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 28.934809638391627
+ ],
+ [
+ 64.72504372716915,
+ 29.12945737332008
+ ],
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ],
+ [
+ 64.38051567671812,
+ 28.934809638391627
+ ],
+ [
+ 64.4953583602018,
+ 28.740161903463175
+ ],
+ [
+ 64.72504372716915,
+ 28.740161903463175
+ ],
+ [
+ 64.83988641065284,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 29.32410510824853
+ ],
+ [
+ 64.72504372716915,
+ 29.518752843176983
+ ],
+ [
+ 64.4953583602018,
+ 29.518752843176983
+ ],
+ [
+ 64.38051567671812,
+ 29.32410510824853
+ ],
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ],
+ [
+ 64.72504372716915,
+ 29.12945737332008
+ ],
+ [
+ 64.83988641065284,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 29.71340057810544
+ ],
+ [
+ 64.72504372716915,
+ 29.90804831303389
+ ],
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ],
+ [
+ 64.38051567671812,
+ 29.71340057810544
+ ],
+ [
+ 64.4953583602018,
+ 29.518752843176987
+ ],
+ [
+ 64.72504372716915,
+ 29.518752843176987
+ ],
+ [
+ 64.83988641065284,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 30.102696047962343
+ ],
+ [
+ 64.72504372716915,
+ 30.297343782890795
+ ],
+ [
+ 64.4953583602018,
+ 30.297343782890795
+ ],
+ [
+ 64.38051567671812,
+ 30.102696047962343
+ ],
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ],
+ [
+ 64.72504372716915,
+ 29.90804831303389
+ ],
+ [
+ 64.83988641065284,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 30.49199151781925
+ ],
+ [
+ 64.72504372716915,
+ 30.686639252747703
+ ],
+ [
+ 64.4953583602018,
+ 30.686639252747703
+ ],
+ [
+ 64.38051567671812,
+ 30.49199151781925
+ ],
+ [
+ 64.4953583602018,
+ 30.2973437828908
+ ],
+ [
+ 64.72504372716915,
+ 30.2973437828908
+ ],
+ [
+ 64.83988641065284,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 30.88128698767616
+ ],
+ [
+ 64.72504372716915,
+ 31.07593472260461
+ ],
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ],
+ [
+ 64.38051567671812,
+ 30.88128698767616
+ ],
+ [
+ 64.4953583602018,
+ 30.686639252747707
+ ],
+ [
+ 64.72504372716915,
+ 30.686639252747707
+ ],
+ [
+ 64.83988641065284,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 31.270582457533063
+ ],
+ [
+ 64.72504372716915,
+ 31.465230192461515
+ ],
+ [
+ 64.4953583602018,
+ 31.465230192461515
+ ],
+ [
+ 64.38051567671812,
+ 31.270582457533063
+ ],
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ],
+ [
+ 64.72504372716915,
+ 31.07593472260461
+ ],
+ [
+ 64.83988641065284,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 31.65987792738997
+ ],
+ [
+ 64.72504372716915,
+ 31.854525662318423
+ ],
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ],
+ [
+ 64.38051567671812,
+ 31.65987792738997
+ ],
+ [
+ 64.4953583602018,
+ 31.46523019246152
+ ],
+ [
+ 64.72504372716915,
+ 31.46523019246152
+ ],
+ [
+ 64.83988641065284,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 32.049173397246875
+ ],
+ [
+ 64.72504372716915,
+ 32.24382113217533
+ ],
+ [
+ 64.4953583602018,
+ 32.24382113217533
+ ],
+ [
+ 64.38051567671812,
+ 32.049173397246875
+ ],
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ],
+ [
+ 64.72504372716915,
+ 31.854525662318423
+ ],
+ [
+ 64.83988641065284,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 32.438468867103786
+ ],
+ [
+ 64.72504372716915,
+ 32.63311660203224
+ ],
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ],
+ [
+ 64.38051567671812,
+ 32.438468867103786
+ ],
+ [
+ 64.4953583602018,
+ 32.243821132175334
+ ],
+ [
+ 64.72504372716915,
+ 32.243821132175334
+ ],
+ [
+ 64.83988641065284,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 32.82776433696069
+ ],
+ [
+ 64.72504372716915,
+ 33.02241207188914
+ ],
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ],
+ [
+ 64.38051567671812,
+ 32.82776433696069
+ ],
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ],
+ [
+ 64.72504372716915,
+ 32.63311660203224
+ ],
+ [
+ 64.83988641065284,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 33.217059806817595
+ ],
+ [
+ 64.72504372716915,
+ 33.41170754174605
+ ],
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ],
+ [
+ 64.38051567671812,
+ 33.217059806817595
+ ],
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ],
+ [
+ 64.72504372716915,
+ 33.02241207188914
+ ],
+ [
+ 64.83988641065284,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 33.6063552766745
+ ],
+ [
+ 64.72504372716915,
+ 33.80100301160295
+ ],
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ],
+ [
+ 64.38051567671812,
+ 33.6063552766745
+ ],
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ],
+ [
+ 64.72504372716915,
+ 33.41170754174605
+ ],
+ [
+ 64.83988641065284,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 33.9956507465314
+ ],
+ [
+ 64.72504372716915,
+ 34.190298481459855
+ ],
+ [
+ 64.4953583602018,
+ 34.190298481459855
+ ],
+ [
+ 64.38051567671812,
+ 33.9956507465314
+ ],
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ],
+ [
+ 64.72504372716915,
+ 33.80100301160295
+ ],
+ [
+ 64.83988641065284,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 34.384946216388315
+ ],
+ [
+ 64.72504372716915,
+ 34.57959395131677
+ ],
+ [
+ 64.4953583602018,
+ 34.57959395131677
+ ],
+ [
+ 64.38051567671812,
+ 34.384946216388315
+ ],
+ [
+ 64.4953583602018,
+ 34.19029848145986
+ ],
+ [
+ 64.72504372716915,
+ 34.19029848145986
+ ],
+ [
+ 64.83988641065284,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 34.774241686245226
+ ],
+ [
+ 64.72504372716915,
+ 34.96888942117368
+ ],
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ],
+ [
+ 64.38051567671812,
+ 34.774241686245226
+ ],
+ [
+ 64.4953583602018,
+ 34.579593951316774
+ ],
+ [
+ 64.72504372716915,
+ 34.579593951316774
+ ],
+ [
+ 64.83988641065284,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 35.16353715610213
+ ],
+ [
+ 64.72504372716915,
+ 35.35818489103058
+ ],
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ],
+ [
+ 64.38051567671812,
+ 35.16353715610213
+ ],
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ],
+ [
+ 64.72504372716915,
+ 34.96888942117368
+ ],
+ [
+ 64.83988641065284,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 35.552832625959034
+ ],
+ [
+ 64.72504372716915,
+ 35.74748036088749
+ ],
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ],
+ [
+ 64.38051567671812,
+ 35.552832625959034
+ ],
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ],
+ [
+ 64.72504372716915,
+ 35.35818489103058
+ ],
+ [
+ 64.83988641065284,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 35.94212809581594
+ ],
+ [
+ 64.72504372716915,
+ 36.13677583074439
+ ],
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ],
+ [
+ 64.38051567671812,
+ 35.94212809581594
+ ],
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ],
+ [
+ 64.72504372716915,
+ 35.74748036088749
+ ],
+ [
+ 64.83988641065284,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 36.33142356567284
+ ],
+ [
+ 64.72504372716915,
+ 36.526071300601295
+ ],
+ [
+ 64.4953583602018,
+ 36.526071300601295
+ ],
+ [
+ 64.38051567671812,
+ 36.33142356567284
+ ],
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ],
+ [
+ 64.72504372716915,
+ 36.13677583074439
+ ],
+ [
+ 64.83988641065284,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 36.720719035529754
+ ],
+ [
+ 64.72504372716915,
+ 36.915366770458206
+ ],
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ],
+ [
+ 64.38051567671812,
+ 36.720719035529754
+ ],
+ [
+ 64.4953583602018,
+ 36.5260713006013
+ ],
+ [
+ 64.72504372716915,
+ 36.5260713006013
+ ],
+ [
+ 64.83988641065284,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 37.11001450538666
+ ],
+ [
+ 64.72504372716915,
+ 37.30466224031511
+ ],
+ [
+ 64.4953583602018,
+ 37.30466224031511
+ ],
+ [
+ 64.38051567671812,
+ 37.11001450538666
+ ],
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ],
+ [
+ 64.72504372716915,
+ 36.915366770458206
+ ],
+ [
+ 64.83988641065284,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 37.49930997524357
+ ],
+ [
+ 64.72504372716915,
+ 37.69395771017202
+ ],
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ],
+ [
+ 64.38051567671812,
+ 37.49930997524357
+ ],
+ [
+ 64.4953583602018,
+ 37.30466224031512
+ ],
+ [
+ 64.72504372716915,
+ 37.30466224031512
+ ],
+ [
+ 64.83988641065284,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 37.888605445100474
+ ],
+ [
+ 64.72504372716915,
+ 38.083253180028926
+ ],
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ],
+ [
+ 64.38051567671812,
+ 37.888605445100474
+ ],
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ],
+ [
+ 64.72504372716915,
+ 37.69395771017202
+ ],
+ [
+ 64.83988641065284,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 38.27790091495738
+ ],
+ [
+ 64.72504372716915,
+ 38.47254864988583
+ ],
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ],
+ [
+ 64.38051567671812,
+ 38.27790091495738
+ ],
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ],
+ [
+ 64.72504372716915,
+ 38.083253180028926
+ ],
+ [
+ 64.83988641065284,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 38.66719638481428
+ ],
+ [
+ 64.72504372716915,
+ 38.861844119742734
+ ],
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ],
+ [
+ 64.38051567671812,
+ 38.66719638481428
+ ],
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ],
+ [
+ 64.72504372716915,
+ 38.47254864988583
+ ],
+ [
+ 64.83988641065284,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 39.05649185467119
+ ],
+ [
+ 64.72504372716915,
+ 39.25113958959964
+ ],
+ [
+ 64.4953583602018,
+ 39.25113958959964
+ ],
+ [
+ 64.38051567671812,
+ 39.05649185467119
+ ],
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ],
+ [
+ 64.72504372716915,
+ 38.861844119742734
+ ],
+ [
+ 64.83988641065284,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 39.4457873245281
+ ],
+ [
+ 64.72504372716915,
+ 39.64043505945655
+ ],
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ],
+ [
+ 64.38051567671812,
+ 39.4457873245281
+ ],
+ [
+ 64.4953583602018,
+ 39.251139589599646
+ ],
+ [
+ 64.72504372716915,
+ 39.251139589599646
+ ],
+ [
+ 64.83988641065284,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 39.835082794385
+ ],
+ [
+ 64.72504372716915,
+ 40.029730529313454
+ ],
+ [
+ 64.4953583602018,
+ 40.029730529313454
+ ],
+ [
+ 64.38051567671812,
+ 39.835082794385
+ ],
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ],
+ [
+ 64.72504372716915,
+ 39.64043505945655
+ ],
+ [
+ 64.83988641065284,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 40.22437826424191
+ ],
+ [
+ 64.72504372716915,
+ 40.419025999170366
+ ],
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ],
+ [
+ 64.38051567671812,
+ 40.22437826424191
+ ],
+ [
+ 64.4953583602018,
+ 40.02973052931346
+ ],
+ [
+ 64.72504372716915,
+ 40.02973052931346
+ ],
+ [
+ 64.83988641065284,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 40.61367373409882
+ ],
+ [
+ 64.72504372716915,
+ 40.80832146902727
+ ],
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ],
+ [
+ 64.38051567671812,
+ 40.61367373409882
+ ],
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ],
+ [
+ 64.72504372716915,
+ 40.419025999170366
+ ],
+ [
+ 64.83988641065284,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 41.00296920395572
+ ],
+ [
+ 64.72504372716915,
+ 41.197616938884174
+ ],
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ],
+ [
+ 64.38051567671812,
+ 41.00296920395572
+ ],
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ],
+ [
+ 64.72504372716915,
+ 40.80832146902727
+ ],
+ [
+ 64.83988641065284,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 41.392264673812626
+ ],
+ [
+ 64.72504372716915,
+ 41.58691240874108
+ ],
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ],
+ [
+ 64.38051567671812,
+ 41.392264673812626
+ ],
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ],
+ [
+ 64.72504372716915,
+ 41.197616938884174
+ ],
+ [
+ 64.83988641065284,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 41.78156014366953
+ ],
+ [
+ 64.72504372716915,
+ 41.97620787859798
+ ],
+ [
+ 64.4953583602018,
+ 41.97620787859798
+ ],
+ [
+ 64.38051567671812,
+ 41.78156014366953
+ ],
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ],
+ [
+ 64.72504372716915,
+ 41.58691240874108
+ ],
+ [
+ 64.83988641065284,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 42.17085561352644
+ ],
+ [
+ 64.72504372716915,
+ 42.365503348454894
+ ],
+ [
+ 64.4953583602018,
+ 42.365503348454894
+ ],
+ [
+ 64.38051567671812,
+ 42.17085561352644
+ ],
+ [
+ 64.4953583602018,
+ 41.97620787859799
+ ],
+ [
+ 64.72504372716915,
+ 41.97620787859799
+ ],
+ [
+ 64.83988641065284,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 42.56015108338335
+ ],
+ [
+ 64.72504372716915,
+ 42.754798818311805
+ ],
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ],
+ [
+ 64.38051567671812,
+ 42.56015108338335
+ ],
+ [
+ 64.4953583602018,
+ 42.3655033484549
+ ],
+ [
+ 64.72504372716915,
+ 42.3655033484549
+ ],
+ [
+ 64.83988641065284,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 42.94944655324026
+ ],
+ [
+ 64.72504372716915,
+ 43.14409428816871
+ ],
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ],
+ [
+ 64.38051567671812,
+ 42.94944655324026
+ ],
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ],
+ [
+ 64.72504372716915,
+ 42.754798818311805
+ ],
+ [
+ 64.83988641065284,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 43.33874202309716
+ ],
+ [
+ 64.72504372716915,
+ 43.53338975802561
+ ],
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ],
+ [
+ 64.38051567671812,
+ 43.33874202309716
+ ],
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ],
+ [
+ 64.72504372716915,
+ 43.14409428816871
+ ],
+ [
+ 64.83988641065284,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 43.728037492954066
+ ],
+ [
+ 64.72504372716915,
+ 43.92268522788252
+ ],
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ],
+ [
+ 64.38051567671812,
+ 43.728037492954066
+ ],
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ],
+ [
+ 64.72504372716915,
+ 43.53338975802561
+ ],
+ [
+ 64.83988641065284,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 44.11733296281097
+ ],
+ [
+ 64.72504372716915,
+ 44.31198069773942
+ ],
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ],
+ [
+ 64.38051567671812,
+ 44.11733296281097
+ ],
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ],
+ [
+ 64.72504372716915,
+ 43.92268522788252
+ ],
+ [
+ 64.83988641065284,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 44.506628432667874
+ ],
+ [
+ 64.72504372716915,
+ 44.701276167596326
+ ],
+ [
+ 64.4953583602018,
+ 44.701276167596326
+ ],
+ [
+ 64.38051567671812,
+ 44.506628432667874
+ ],
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ],
+ [
+ 64.72504372716915,
+ 44.31198069773942
+ ],
+ [
+ 64.83988641065284,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 44.89592390252479
+ ],
+ [
+ 64.72504372716915,
+ 45.090571637453245
+ ],
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ],
+ [
+ 64.38051567671812,
+ 44.89592390252479
+ ],
+ [
+ 64.4953583602018,
+ 44.70127616759634
+ ],
+ [
+ 64.72504372716915,
+ 44.70127616759634
+ ],
+ [
+ 64.83988641065284,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 45.2852193723817
+ ],
+ [
+ 64.72504372716915,
+ 45.47986710731015
+ ],
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ],
+ [
+ 64.38051567671812,
+ 45.2852193723817
+ ],
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ],
+ [
+ 64.72504372716915,
+ 45.090571637453245
+ ],
+ [
+ 64.83988641065284,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 45.6745148422386
+ ],
+ [
+ 64.72504372716915,
+ 45.86916257716705
+ ],
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ],
+ [
+ 64.38051567671812,
+ 45.6745148422386
+ ],
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ],
+ [
+ 64.72504372716915,
+ 45.47986710731015
+ ],
+ [
+ 64.83988641065284,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 46.063810312095505
+ ],
+ [
+ 64.72504372716915,
+ 46.25845804702396
+ ],
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ],
+ [
+ 64.38051567671812,
+ 46.063810312095505
+ ],
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ],
+ [
+ 64.72504372716915,
+ 45.86916257716705
+ ],
+ [
+ 64.83988641065284,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 46.45310578195241
+ ],
+ [
+ 64.72504372716915,
+ 46.64775351688086
+ ],
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ],
+ [
+ 64.38051567671812,
+ 46.45310578195241
+ ],
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ],
+ [
+ 64.72504372716915,
+ 46.25845804702396
+ ],
+ [
+ 64.83988641065284,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 46.842401251809314
+ ],
+ [
+ 64.72504372716915,
+ 47.037048986737766
+ ],
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ],
+ [
+ 64.38051567671812,
+ 46.842401251809314
+ ],
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ],
+ [
+ 64.72504372716915,
+ 46.64775351688086
+ ],
+ [
+ 64.83988641065284,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 47.23169672166622
+ ],
+ [
+ 64.72504372716915,
+ 47.42634445659467
+ ],
+ [
+ 64.4953583602018,
+ 47.42634445659467
+ ],
+ [
+ 64.38051567671812,
+ 47.23169672166622
+ ],
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ],
+ [
+ 64.72504372716915,
+ 47.037048986737766
+ ],
+ [
+ 64.83988641065284,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.83988641065284,
+ 47.620992191523136
+ ],
+ [
+ 64.72504372716915,
+ 47.81563992645159
+ ],
+ [
+ 64.4953583602018,
+ 47.81563992645159
+ ],
+ [
+ 64.38051567671812,
+ 47.620992191523136
+ ],
+ [
+ 64.4953583602018,
+ 47.426344456594684
+ ],
+ [
+ 64.72504372716915,
+ 47.426344456594684
+ ],
+ [
+ 64.83988641065284,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 12.0004566996162
+ ],
+ [
+ 65.06957177762018,
+ 12.195104434544653
+ ],
+ [
+ 64.83988641065284,
+ 12.195104434544653
+ ],
+ [
+ 64.72504372716915,
+ 12.0004566996162
+ ],
+ [
+ 64.83988641065284,
+ 11.805808964687746
+ ],
+ [
+ 65.06957177762018,
+ 11.805808964687746
+ ],
+ [
+ 65.18441446110387,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 12.389752169473105
+ ],
+ [
+ 65.06957177762018,
+ 12.58439990440156
+ ],
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ],
+ [
+ 64.72504372716915,
+ 12.389752169473105
+ ],
+ [
+ 64.83988641065284,
+ 12.195104434544652
+ ],
+ [
+ 65.06957177762018,
+ 12.195104434544652
+ ],
+ [
+ 65.18441446110387,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 12.779047639330013
+ ],
+ [
+ 65.06957177762018,
+ 12.973695374258467
+ ],
+ [
+ 64.83988641065284,
+ 12.973695374258467
+ ],
+ [
+ 64.72504372716915,
+ 12.779047639330013
+ ],
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ],
+ [
+ 65.06957177762018,
+ 12.58439990440156
+ ],
+ [
+ 65.18441446110387,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 13.16834310918692
+ ],
+ [
+ 65.06957177762018,
+ 13.362990844115373
+ ],
+ [
+ 64.83988641065284,
+ 13.362990844115373
+ ],
+ [
+ 64.72504372716915,
+ 13.16834310918692
+ ],
+ [
+ 64.83988641065284,
+ 12.973695374258465
+ ],
+ [
+ 65.06957177762018,
+ 12.973695374258465
+ ],
+ [
+ 65.18441446110387,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 13.557638579043825
+ ],
+ [
+ 65.06957177762018,
+ 13.752286313972279
+ ],
+ [
+ 64.83988641065284,
+ 13.752286313972279
+ ],
+ [
+ 64.72504372716915,
+ 13.557638579043825
+ ],
+ [
+ 64.83988641065284,
+ 13.362990844115371
+ ],
+ [
+ 65.06957177762018,
+ 13.362990844115371
+ ],
+ [
+ 65.18441446110387,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 13.946934048900731
+ ],
+ [
+ 65.06957177762018,
+ 14.141581783829185
+ ],
+ [
+ 64.83988641065284,
+ 14.141581783829185
+ ],
+ [
+ 64.72504372716915,
+ 13.946934048900731
+ ],
+ [
+ 64.83988641065284,
+ 13.752286313972277
+ ],
+ [
+ 65.06957177762018,
+ 13.752286313972277
+ ],
+ [
+ 65.18441446110387,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 14.336229518757637
+ ],
+ [
+ 65.06957177762018,
+ 14.530877253686091
+ ],
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ],
+ [
+ 64.72504372716915,
+ 14.336229518757637
+ ],
+ [
+ 64.83988641065284,
+ 14.141581783829183
+ ],
+ [
+ 65.06957177762018,
+ 14.141581783829183
+ ],
+ [
+ 65.18441446110387,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 14.725524988614545
+ ],
+ [
+ 65.06957177762018,
+ 14.920172723542999
+ ],
+ [
+ 64.83988641065284,
+ 14.920172723542999
+ ],
+ [
+ 64.72504372716915,
+ 14.725524988614545
+ ],
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ],
+ [
+ 65.06957177762018,
+ 14.530877253686091
+ ],
+ [
+ 65.18441446110387,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 15.114820458471451
+ ],
+ [
+ 65.06957177762018,
+ 15.309468193399905
+ ],
+ [
+ 64.83988641065284,
+ 15.309468193399905
+ ],
+ [
+ 64.72504372716915,
+ 15.114820458471451
+ ],
+ [
+ 64.83988641065284,
+ 14.920172723542997
+ ],
+ [
+ 65.06957177762018,
+ 14.920172723542997
+ ],
+ [
+ 65.18441446110387,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 15.504115928328357
+ ],
+ [
+ 65.06957177762018,
+ 15.69876366325681
+ ],
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ],
+ [
+ 64.72504372716915,
+ 15.504115928328357
+ ],
+ [
+ 64.83988641065284,
+ 15.309468193399903
+ ],
+ [
+ 65.06957177762018,
+ 15.309468193399903
+ ],
+ [
+ 65.18441446110387,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 15.893411398185265
+ ],
+ [
+ 65.06957177762018,
+ 16.088059133113717
+ ],
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ],
+ [
+ 64.72504372716915,
+ 15.893411398185265
+ ],
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ],
+ [
+ 65.06957177762018,
+ 15.69876366325681
+ ],
+ [
+ 65.18441446110387,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 16.28270686804217
+ ],
+ [
+ 65.06957177762018,
+ 16.47735460297062
+ ],
+ [
+ 64.83988641065284,
+ 16.47735460297062
+ ],
+ [
+ 64.72504372716915,
+ 16.28270686804217
+ ],
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ],
+ [
+ 65.06957177762018,
+ 16.088059133113717
+ ],
+ [
+ 65.18441446110387,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 16.672002337899077
+ ],
+ [
+ 65.06957177762018,
+ 16.86665007282753
+ ],
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ],
+ [
+ 64.72504372716915,
+ 16.672002337899077
+ ],
+ [
+ 64.83988641065284,
+ 16.477354602970625
+ ],
+ [
+ 65.06957177762018,
+ 16.477354602970625
+ ],
+ [
+ 65.18441446110387,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 17.06129780775598
+ ],
+ [
+ 65.06957177762018,
+ 17.255945542684433
+ ],
+ [
+ 64.83988641065284,
+ 17.255945542684433
+ ],
+ [
+ 64.72504372716915,
+ 17.06129780775598
+ ],
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ],
+ [
+ 65.06957177762018,
+ 16.86665007282753
+ ],
+ [
+ 65.18441446110387,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 17.45059327761289
+ ],
+ [
+ 65.06957177762018,
+ 17.64524101254134
+ ],
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ],
+ [
+ 64.72504372716915,
+ 17.45059327761289
+ ],
+ [
+ 64.83988641065284,
+ 17.255945542684437
+ ],
+ [
+ 65.06957177762018,
+ 17.255945542684437
+ ],
+ [
+ 65.18441446110387,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 17.839888747469793
+ ],
+ [
+ 65.06957177762018,
+ 18.034536482398245
+ ],
+ [
+ 64.83988641065284,
+ 18.034536482398245
+ ],
+ [
+ 64.72504372716915,
+ 17.839888747469793
+ ],
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ],
+ [
+ 65.06957177762018,
+ 17.64524101254134
+ ],
+ [
+ 65.18441446110387,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 18.2291842173267
+ ],
+ [
+ 65.06957177762018,
+ 18.423831952255153
+ ],
+ [
+ 64.83988641065284,
+ 18.423831952255153
+ ],
+ [
+ 64.72504372716915,
+ 18.2291842173267
+ ],
+ [
+ 64.83988641065284,
+ 18.03453648239825
+ ],
+ [
+ 65.06957177762018,
+ 18.03453648239825
+ ],
+ [
+ 65.18441446110387,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 18.61847968718361
+ ],
+ [
+ 65.06957177762018,
+ 18.81312742211206
+ ],
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ],
+ [
+ 64.72504372716915,
+ 18.61847968718361
+ ],
+ [
+ 64.83988641065284,
+ 18.423831952255156
+ ],
+ [
+ 65.06957177762018,
+ 18.423831952255156
+ ],
+ [
+ 65.18441446110387,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 19.007775157040513
+ ],
+ [
+ 65.06957177762018,
+ 19.202422891968965
+ ],
+ [
+ 64.83988641065284,
+ 19.202422891968965
+ ],
+ [
+ 64.72504372716915,
+ 19.007775157040513
+ ],
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ],
+ [
+ 65.06957177762018,
+ 18.81312742211206
+ ],
+ [
+ 65.18441446110387,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 19.39707062689742
+ ],
+ [
+ 65.06957177762018,
+ 19.591718361825873
+ ],
+ [
+ 64.83988641065284,
+ 19.591718361825873
+ ],
+ [
+ 64.72504372716915,
+ 19.39707062689742
+ ],
+ [
+ 64.83988641065284,
+ 19.20242289196897
+ ],
+ [
+ 65.06957177762018,
+ 19.20242289196897
+ ],
+ [
+ 65.18441446110387,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 19.78636609675433
+ ],
+ [
+ 65.06957177762018,
+ 19.98101383168278
+ ],
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ],
+ [
+ 64.72504372716915,
+ 19.78636609675433
+ ],
+ [
+ 64.83988641065284,
+ 19.591718361825876
+ ],
+ [
+ 65.06957177762018,
+ 19.591718361825876
+ ],
+ [
+ 65.18441446110387,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 20.175661566611232
+ ],
+ [
+ 65.06957177762018,
+ 20.370309301539685
+ ],
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ],
+ [
+ 64.72504372716915,
+ 20.175661566611232
+ ],
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ],
+ [
+ 65.06957177762018,
+ 19.98101383168278
+ ],
+ [
+ 65.18441446110387,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 20.564957036468137
+ ],
+ [
+ 65.06957177762018,
+ 20.75960477139659
+ ],
+ [
+ 64.83988641065284,
+ 20.75960477139659
+ ],
+ [
+ 64.72504372716915,
+ 20.564957036468137
+ ],
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ],
+ [
+ 65.06957177762018,
+ 20.370309301539685
+ ],
+ [
+ 65.18441446110387,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 20.954252506325044
+ ],
+ [
+ 65.06957177762018,
+ 21.148900241253497
+ ],
+ [
+ 64.83988641065284,
+ 21.148900241253497
+ ],
+ [
+ 64.72504372716915,
+ 20.954252506325044
+ ],
+ [
+ 64.83988641065284,
+ 20.759604771396592
+ ],
+ [
+ 65.06957177762018,
+ 20.759604771396592
+ ],
+ [
+ 65.18441446110387,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 21.343547976181952
+ ],
+ [
+ 65.06957177762018,
+ 21.538195711110404
+ ],
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ],
+ [
+ 64.72504372716915,
+ 21.343547976181952
+ ],
+ [
+ 64.83988641065284,
+ 21.1489002412535
+ ],
+ [
+ 65.06957177762018,
+ 21.1489002412535
+ ],
+ [
+ 65.18441446110387,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 21.732843446038856
+ ],
+ [
+ 65.06957177762018,
+ 21.92749118096731
+ ],
+ [
+ 64.83988641065284,
+ 21.92749118096731
+ ],
+ [
+ 64.72504372716915,
+ 21.732843446038856
+ ],
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ],
+ [
+ 65.06957177762018,
+ 21.538195711110404
+ ],
+ [
+ 65.18441446110387,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 22.122138915895764
+ ],
+ [
+ 65.06957177762018,
+ 22.316786650824216
+ ],
+ [
+ 64.83988641065284,
+ 22.316786650824216
+ ],
+ [
+ 64.72504372716915,
+ 22.122138915895764
+ ],
+ [
+ 64.83988641065284,
+ 21.927491180967312
+ ],
+ [
+ 65.06957177762018,
+ 21.927491180967312
+ ],
+ [
+ 65.18441446110387,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 22.511434385752672
+ ],
+ [
+ 65.06957177762018,
+ 22.706082120681124
+ ],
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ],
+ [
+ 64.72504372716915,
+ 22.511434385752672
+ ],
+ [
+ 64.83988641065284,
+ 22.31678665082422
+ ],
+ [
+ 65.06957177762018,
+ 22.31678665082422
+ ],
+ [
+ 65.18441446110387,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 22.900729855609576
+ ],
+ [
+ 65.06957177762018,
+ 23.09537759053803
+ ],
+ [
+ 64.83988641065284,
+ 23.09537759053803
+ ],
+ [
+ 64.72504372716915,
+ 22.900729855609576
+ ],
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ],
+ [
+ 65.06957177762018,
+ 22.706082120681124
+ ],
+ [
+ 65.18441446110387,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 23.290025325466484
+ ],
+ [
+ 65.06957177762018,
+ 23.484673060394936
+ ],
+ [
+ 64.83988641065284,
+ 23.484673060394936
+ ],
+ [
+ 64.72504372716915,
+ 23.290025325466484
+ ],
+ [
+ 64.83988641065284,
+ 23.095377590538032
+ ],
+ [
+ 65.06957177762018,
+ 23.095377590538032
+ ],
+ [
+ 65.18441446110387,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 23.67932079532339
+ ],
+ [
+ 65.06957177762018,
+ 23.873968530251844
+ ],
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ],
+ [
+ 64.72504372716915,
+ 23.67932079532339
+ ],
+ [
+ 64.83988641065284,
+ 23.48467306039494
+ ],
+ [
+ 65.06957177762018,
+ 23.48467306039494
+ ],
+ [
+ 65.18441446110387,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 24.068616265180296
+ ],
+ [
+ 65.06957177762018,
+ 24.263264000108748
+ ],
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ],
+ [
+ 64.72504372716915,
+ 24.068616265180296
+ ],
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ],
+ [
+ 65.06957177762018,
+ 23.873968530251844
+ ],
+ [
+ 65.18441446110387,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 24.4579117350372
+ ],
+ [
+ 65.06957177762018,
+ 24.652559469965652
+ ],
+ [
+ 64.83988641065284,
+ 24.652559469965652
+ ],
+ [
+ 64.72504372716915,
+ 24.4579117350372
+ ],
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ],
+ [
+ 65.06957177762018,
+ 24.263264000108748
+ ],
+ [
+ 65.18441446110387,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 24.847207204894108
+ ],
+ [
+ 65.06957177762018,
+ 25.04185493982256
+ ],
+ [
+ 64.83988641065284,
+ 25.04185493982256
+ ],
+ [
+ 64.72504372716915,
+ 24.847207204894108
+ ],
+ [
+ 64.83988641065284,
+ 24.652559469965656
+ ],
+ [
+ 65.06957177762018,
+ 24.652559469965656
+ ],
+ [
+ 65.18441446110387,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 25.236502674751016
+ ],
+ [
+ 65.06957177762018,
+ 25.431150409679468
+ ],
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ],
+ [
+ 64.72504372716915,
+ 25.236502674751016
+ ],
+ [
+ 64.83988641065284,
+ 25.041854939822564
+ ],
+ [
+ 65.06957177762018,
+ 25.041854939822564
+ ],
+ [
+ 65.18441446110387,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 25.62579814460792
+ ],
+ [
+ 65.06957177762018,
+ 25.820445879536372
+ ],
+ [
+ 64.83988641065284,
+ 25.820445879536372
+ ],
+ [
+ 64.72504372716915,
+ 25.62579814460792
+ ],
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ],
+ [
+ 65.06957177762018,
+ 25.431150409679468
+ ],
+ [
+ 65.18441446110387,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 26.015093614464828
+ ],
+ [
+ 65.06957177762018,
+ 26.20974134939328
+ ],
+ [
+ 64.83988641065284,
+ 26.20974134939328
+ ],
+ [
+ 64.72504372716915,
+ 26.015093614464828
+ ],
+ [
+ 64.83988641065284,
+ 25.820445879536376
+ ],
+ [
+ 65.06957177762018,
+ 25.820445879536376
+ ],
+ [
+ 65.18441446110387,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 26.404389084321735
+ ],
+ [
+ 65.06957177762018,
+ 26.599036819250188
+ ],
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ],
+ [
+ 64.72504372716915,
+ 26.404389084321735
+ ],
+ [
+ 64.83988641065284,
+ 26.209741349393283
+ ],
+ [
+ 65.06957177762018,
+ 26.209741349393283
+ ],
+ [
+ 65.18441446110387,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 26.79368455417864
+ ],
+ [
+ 65.06957177762018,
+ 26.988332289107092
+ ],
+ [
+ 64.83988641065284,
+ 26.988332289107092
+ ],
+ [
+ 64.72504372716915,
+ 26.79368455417864
+ ],
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ],
+ [
+ 65.06957177762018,
+ 26.599036819250188
+ ],
+ [
+ 65.18441446110387,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 27.182980024035547
+ ],
+ [
+ 65.06957177762018,
+ 27.377627758964
+ ],
+ [
+ 64.83988641065284,
+ 27.377627758964
+ ],
+ [
+ 64.72504372716915,
+ 27.182980024035547
+ ],
+ [
+ 64.83988641065284,
+ 26.988332289107095
+ ],
+ [
+ 65.06957177762018,
+ 26.988332289107095
+ ],
+ [
+ 65.18441446110387,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 27.572275493892455
+ ],
+ [
+ 65.06957177762018,
+ 27.766923228820907
+ ],
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ],
+ [
+ 64.72504372716915,
+ 27.572275493892455
+ ],
+ [
+ 64.83988641065284,
+ 27.377627758964003
+ ],
+ [
+ 65.06957177762018,
+ 27.377627758964003
+ ],
+ [
+ 65.18441446110387,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 27.96157096374936
+ ],
+ [
+ 65.06957177762018,
+ 28.15621869867781
+ ],
+ [
+ 64.83988641065284,
+ 28.15621869867781
+ ],
+ [
+ 64.72504372716915,
+ 27.96157096374936
+ ],
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ],
+ [
+ 65.06957177762018,
+ 27.766923228820907
+ ],
+ [
+ 65.18441446110387,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 28.350866433606267
+ ],
+ [
+ 65.06957177762018,
+ 28.54551416853472
+ ],
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ],
+ [
+ 64.72504372716915,
+ 28.350866433606267
+ ],
+ [
+ 64.83988641065284,
+ 28.156218698677815
+ ],
+ [
+ 65.06957177762018,
+ 28.156218698677815
+ ],
+ [
+ 65.18441446110387,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 28.74016190346317
+ ],
+ [
+ 65.06957177762018,
+ 28.934809638391624
+ ],
+ [
+ 64.83988641065284,
+ 28.934809638391624
+ ],
+ [
+ 64.72504372716915,
+ 28.74016190346317
+ ],
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ],
+ [
+ 65.06957177762018,
+ 28.54551416853472
+ ],
+ [
+ 65.18441446110387,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 29.12945737332008
+ ],
+ [
+ 65.06957177762018,
+ 29.32410510824853
+ ],
+ [
+ 64.83988641065284,
+ 29.32410510824853
+ ],
+ [
+ 64.72504372716915,
+ 29.12945737332008
+ ],
+ [
+ 64.83988641065284,
+ 28.934809638391627
+ ],
+ [
+ 65.06957177762018,
+ 28.934809638391627
+ ],
+ [
+ 65.18441446110387,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 29.518752843176983
+ ],
+ [
+ 65.06957177762018,
+ 29.713400578105436
+ ],
+ [
+ 64.83988641065284,
+ 29.713400578105436
+ ],
+ [
+ 64.72504372716915,
+ 29.518752843176983
+ ],
+ [
+ 64.83988641065284,
+ 29.32410510824853
+ ],
+ [
+ 65.06957177762018,
+ 29.32410510824853
+ ],
+ [
+ 65.18441446110387,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 29.90804831303389
+ ],
+ [
+ 65.06957177762018,
+ 30.102696047962343
+ ],
+ [
+ 64.83988641065284,
+ 30.102696047962343
+ ],
+ [
+ 64.72504372716915,
+ 29.90804831303389
+ ],
+ [
+ 64.83988641065284,
+ 29.71340057810544
+ ],
+ [
+ 65.06957177762018,
+ 29.71340057810544
+ ],
+ [
+ 65.18441446110387,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 30.297343782890795
+ ],
+ [
+ 65.06957177762018,
+ 30.491991517819248
+ ],
+ [
+ 64.83988641065284,
+ 30.491991517819248
+ ],
+ [
+ 64.72504372716915,
+ 30.297343782890795
+ ],
+ [
+ 64.83988641065284,
+ 30.102696047962343
+ ],
+ [
+ 65.06957177762018,
+ 30.102696047962343
+ ],
+ [
+ 65.18441446110387,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 30.686639252747703
+ ],
+ [
+ 65.06957177762018,
+ 30.881286987676155
+ ],
+ [
+ 64.83988641065284,
+ 30.881286987676155
+ ],
+ [
+ 64.72504372716915,
+ 30.686639252747703
+ ],
+ [
+ 64.83988641065284,
+ 30.49199151781925
+ ],
+ [
+ 65.06957177762018,
+ 30.49199151781925
+ ],
+ [
+ 65.18441446110387,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 31.07593472260461
+ ],
+ [
+ 65.06957177762018,
+ 31.270582457533063
+ ],
+ [
+ 64.83988641065284,
+ 31.270582457533063
+ ],
+ [
+ 64.72504372716915,
+ 31.07593472260461
+ ],
+ [
+ 64.83988641065284,
+ 30.88128698767616
+ ],
+ [
+ 65.06957177762018,
+ 30.88128698767616
+ ],
+ [
+ 65.18441446110387,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 31.465230192461515
+ ],
+ [
+ 65.06957177762018,
+ 31.659877927389967
+ ],
+ [
+ 64.83988641065284,
+ 31.659877927389967
+ ],
+ [
+ 64.72504372716915,
+ 31.465230192461515
+ ],
+ [
+ 64.83988641065284,
+ 31.270582457533063
+ ],
+ [
+ 65.06957177762018,
+ 31.270582457533063
+ ],
+ [
+ 65.18441446110387,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 31.854525662318423
+ ],
+ [
+ 65.06957177762018,
+ 32.049173397246875
+ ],
+ [
+ 64.83988641065284,
+ 32.049173397246875
+ ],
+ [
+ 64.72504372716915,
+ 31.854525662318423
+ ],
+ [
+ 64.83988641065284,
+ 31.65987792738997
+ ],
+ [
+ 65.06957177762018,
+ 31.65987792738997
+ ],
+ [
+ 65.18441446110387,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 32.24382113217533
+ ],
+ [
+ 65.06957177762018,
+ 32.43846886710378
+ ],
+ [
+ 64.83988641065284,
+ 32.43846886710378
+ ],
+ [
+ 64.72504372716915,
+ 32.24382113217533
+ ],
+ [
+ 64.83988641065284,
+ 32.049173397246875
+ ],
+ [
+ 65.06957177762018,
+ 32.049173397246875
+ ],
+ [
+ 65.18441446110387,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 32.63311660203224
+ ],
+ [
+ 65.06957177762018,
+ 32.82776433696069
+ ],
+ [
+ 64.83988641065284,
+ 32.82776433696069
+ ],
+ [
+ 64.72504372716915,
+ 32.63311660203224
+ ],
+ [
+ 64.83988641065284,
+ 32.438468867103786
+ ],
+ [
+ 65.06957177762018,
+ 32.438468867103786
+ ],
+ [
+ 65.18441446110387,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 33.02241207188914
+ ],
+ [
+ 65.06957177762018,
+ 33.217059806817595
+ ],
+ [
+ 64.83988641065284,
+ 33.217059806817595
+ ],
+ [
+ 64.72504372716915,
+ 33.02241207188914
+ ],
+ [
+ 64.83988641065284,
+ 32.82776433696069
+ ],
+ [
+ 65.06957177762018,
+ 32.82776433696069
+ ],
+ [
+ 65.18441446110387,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 33.41170754174605
+ ],
+ [
+ 65.06957177762018,
+ 33.6063552766745
+ ],
+ [
+ 64.83988641065284,
+ 33.6063552766745
+ ],
+ [
+ 64.72504372716915,
+ 33.41170754174605
+ ],
+ [
+ 64.83988641065284,
+ 33.217059806817595
+ ],
+ [
+ 65.06957177762018,
+ 33.217059806817595
+ ],
+ [
+ 65.18441446110387,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 33.80100301160295
+ ],
+ [
+ 65.06957177762018,
+ 33.9956507465314
+ ],
+ [
+ 64.83988641065284,
+ 33.9956507465314
+ ],
+ [
+ 64.72504372716915,
+ 33.80100301160295
+ ],
+ [
+ 64.83988641065284,
+ 33.6063552766745
+ ],
+ [
+ 65.06957177762018,
+ 33.6063552766745
+ ],
+ [
+ 65.18441446110387,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 34.190298481459855
+ ],
+ [
+ 65.06957177762018,
+ 34.38494621638831
+ ],
+ [
+ 64.83988641065284,
+ 34.38494621638831
+ ],
+ [
+ 64.72504372716915,
+ 34.190298481459855
+ ],
+ [
+ 64.83988641065284,
+ 33.9956507465314
+ ],
+ [
+ 65.06957177762018,
+ 33.9956507465314
+ ],
+ [
+ 65.18441446110387,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 34.57959395131677
+ ],
+ [
+ 65.06957177762018,
+ 34.77424168624522
+ ],
+ [
+ 64.83988641065284,
+ 34.77424168624522
+ ],
+ [
+ 64.72504372716915,
+ 34.57959395131677
+ ],
+ [
+ 64.83988641065284,
+ 34.384946216388315
+ ],
+ [
+ 65.06957177762018,
+ 34.384946216388315
+ ],
+ [
+ 65.18441446110387,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 34.96888942117368
+ ],
+ [
+ 65.06957177762018,
+ 35.16353715610213
+ ],
+ [
+ 64.83988641065284,
+ 35.16353715610213
+ ],
+ [
+ 64.72504372716915,
+ 34.96888942117368
+ ],
+ [
+ 64.83988641065284,
+ 34.774241686245226
+ ],
+ [
+ 65.06957177762018,
+ 34.774241686245226
+ ],
+ [
+ 65.18441446110387,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 35.35818489103058
+ ],
+ [
+ 65.06957177762018,
+ 35.552832625959034
+ ],
+ [
+ 64.83988641065284,
+ 35.552832625959034
+ ],
+ [
+ 64.72504372716915,
+ 35.35818489103058
+ ],
+ [
+ 64.83988641065284,
+ 35.16353715610213
+ ],
+ [
+ 65.06957177762018,
+ 35.16353715610213
+ ],
+ [
+ 65.18441446110387,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 35.74748036088749
+ ],
+ [
+ 65.06957177762018,
+ 35.94212809581594
+ ],
+ [
+ 64.83988641065284,
+ 35.94212809581594
+ ],
+ [
+ 64.72504372716915,
+ 35.74748036088749
+ ],
+ [
+ 64.83988641065284,
+ 35.552832625959034
+ ],
+ [
+ 65.06957177762018,
+ 35.552832625959034
+ ],
+ [
+ 65.18441446110387,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 36.13677583074439
+ ],
+ [
+ 65.06957177762018,
+ 36.33142356567284
+ ],
+ [
+ 64.83988641065284,
+ 36.33142356567284
+ ],
+ [
+ 64.72504372716915,
+ 36.13677583074439
+ ],
+ [
+ 64.83988641065284,
+ 35.94212809581594
+ ],
+ [
+ 65.06957177762018,
+ 35.94212809581594
+ ],
+ [
+ 65.18441446110387,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 36.526071300601295
+ ],
+ [
+ 65.06957177762018,
+ 36.72071903552975
+ ],
+ [
+ 64.83988641065284,
+ 36.72071903552975
+ ],
+ [
+ 64.72504372716915,
+ 36.526071300601295
+ ],
+ [
+ 64.83988641065284,
+ 36.33142356567284
+ ],
+ [
+ 65.06957177762018,
+ 36.33142356567284
+ ],
+ [
+ 65.18441446110387,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 36.915366770458206
+ ],
+ [
+ 65.06957177762018,
+ 37.11001450538666
+ ],
+ [
+ 64.83988641065284,
+ 37.11001450538666
+ ],
+ [
+ 64.72504372716915,
+ 36.915366770458206
+ ],
+ [
+ 64.83988641065284,
+ 36.720719035529754
+ ],
+ [
+ 65.06957177762018,
+ 36.720719035529754
+ ],
+ [
+ 65.18441446110387,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 37.30466224031511
+ ],
+ [
+ 65.06957177762018,
+ 37.49930997524356
+ ],
+ [
+ 64.83988641065284,
+ 37.49930997524356
+ ],
+ [
+ 64.72504372716915,
+ 37.30466224031511
+ ],
+ [
+ 64.83988641065284,
+ 37.11001450538666
+ ],
+ [
+ 65.06957177762018,
+ 37.11001450538666
+ ],
+ [
+ 65.18441446110387,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 37.69395771017202
+ ],
+ [
+ 65.06957177762018,
+ 37.888605445100474
+ ],
+ [
+ 64.83988641065284,
+ 37.888605445100474
+ ],
+ [
+ 64.72504372716915,
+ 37.69395771017202
+ ],
+ [
+ 64.83988641065284,
+ 37.49930997524357
+ ],
+ [
+ 65.06957177762018,
+ 37.49930997524357
+ ],
+ [
+ 65.18441446110387,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 38.083253180028926
+ ],
+ [
+ 65.06957177762018,
+ 38.27790091495738
+ ],
+ [
+ 64.83988641065284,
+ 38.27790091495738
+ ],
+ [
+ 64.72504372716915,
+ 38.083253180028926
+ ],
+ [
+ 64.83988641065284,
+ 37.888605445100474
+ ],
+ [
+ 65.06957177762018,
+ 37.888605445100474
+ ],
+ [
+ 65.18441446110387,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 38.47254864988583
+ ],
+ [
+ 65.06957177762018,
+ 38.66719638481428
+ ],
+ [
+ 64.83988641065284,
+ 38.66719638481428
+ ],
+ [
+ 64.72504372716915,
+ 38.47254864988583
+ ],
+ [
+ 64.83988641065284,
+ 38.27790091495738
+ ],
+ [
+ 65.06957177762018,
+ 38.27790091495738
+ ],
+ [
+ 65.18441446110387,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 38.861844119742734
+ ],
+ [
+ 65.06957177762018,
+ 39.05649185467119
+ ],
+ [
+ 64.83988641065284,
+ 39.05649185467119
+ ],
+ [
+ 64.72504372716915,
+ 38.861844119742734
+ ],
+ [
+ 64.83988641065284,
+ 38.66719638481428
+ ],
+ [
+ 65.06957177762018,
+ 38.66719638481428
+ ],
+ [
+ 65.18441446110387,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 39.25113958959964
+ ],
+ [
+ 65.06957177762018,
+ 39.44578732452809
+ ],
+ [
+ 64.83988641065284,
+ 39.44578732452809
+ ],
+ [
+ 64.72504372716915,
+ 39.25113958959964
+ ],
+ [
+ 64.83988641065284,
+ 39.05649185467119
+ ],
+ [
+ 65.06957177762018,
+ 39.05649185467119
+ ],
+ [
+ 65.18441446110387,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 39.64043505945655
+ ],
+ [
+ 65.06957177762018,
+ 39.835082794385
+ ],
+ [
+ 64.83988641065284,
+ 39.835082794385
+ ],
+ [
+ 64.72504372716915,
+ 39.64043505945655
+ ],
+ [
+ 64.83988641065284,
+ 39.4457873245281
+ ],
+ [
+ 65.06957177762018,
+ 39.4457873245281
+ ],
+ [
+ 65.18441446110387,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 40.029730529313454
+ ],
+ [
+ 65.06957177762018,
+ 40.224378264241906
+ ],
+ [
+ 64.83988641065284,
+ 40.224378264241906
+ ],
+ [
+ 64.72504372716915,
+ 40.029730529313454
+ ],
+ [
+ 64.83988641065284,
+ 39.835082794385
+ ],
+ [
+ 65.06957177762018,
+ 39.835082794385
+ ],
+ [
+ 65.18441446110387,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 40.419025999170366
+ ],
+ [
+ 65.06957177762018,
+ 40.61367373409882
+ ],
+ [
+ 64.83988641065284,
+ 40.61367373409882
+ ],
+ [
+ 64.72504372716915,
+ 40.419025999170366
+ ],
+ [
+ 64.83988641065284,
+ 40.22437826424191
+ ],
+ [
+ 65.06957177762018,
+ 40.22437826424191
+ ],
+ [
+ 65.18441446110387,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 40.80832146902727
+ ],
+ [
+ 65.06957177762018,
+ 41.00296920395572
+ ],
+ [
+ 64.83988641065284,
+ 41.00296920395572
+ ],
+ [
+ 64.72504372716915,
+ 40.80832146902727
+ ],
+ [
+ 64.83988641065284,
+ 40.61367373409882
+ ],
+ [
+ 65.06957177762018,
+ 40.61367373409882
+ ],
+ [
+ 65.18441446110387,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 41.197616938884174
+ ],
+ [
+ 65.06957177762018,
+ 41.392264673812626
+ ],
+ [
+ 64.83988641065284,
+ 41.392264673812626
+ ],
+ [
+ 64.72504372716915,
+ 41.197616938884174
+ ],
+ [
+ 64.83988641065284,
+ 41.00296920395572
+ ],
+ [
+ 65.06957177762018,
+ 41.00296920395572
+ ],
+ [
+ 65.18441446110387,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 41.58691240874108
+ ],
+ [
+ 65.06957177762018,
+ 41.78156014366953
+ ],
+ [
+ 64.83988641065284,
+ 41.78156014366953
+ ],
+ [
+ 64.72504372716915,
+ 41.58691240874108
+ ],
+ [
+ 64.83988641065284,
+ 41.392264673812626
+ ],
+ [
+ 65.06957177762018,
+ 41.392264673812626
+ ],
+ [
+ 65.18441446110387,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 41.97620787859798
+ ],
+ [
+ 65.06957177762018,
+ 42.170855613526435
+ ],
+ [
+ 64.83988641065284,
+ 42.170855613526435
+ ],
+ [
+ 64.72504372716915,
+ 41.97620787859798
+ ],
+ [
+ 64.83988641065284,
+ 41.78156014366953
+ ],
+ [
+ 65.06957177762018,
+ 41.78156014366953
+ ],
+ [
+ 65.18441446110387,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 42.365503348454894
+ ],
+ [
+ 65.06957177762018,
+ 42.560151083383346
+ ],
+ [
+ 64.83988641065284,
+ 42.560151083383346
+ ],
+ [
+ 64.72504372716915,
+ 42.365503348454894
+ ],
+ [
+ 64.83988641065284,
+ 42.17085561352644
+ ],
+ [
+ 65.06957177762018,
+ 42.17085561352644
+ ],
+ [
+ 65.18441446110387,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 42.754798818311805
+ ],
+ [
+ 65.06957177762018,
+ 42.94944655324026
+ ],
+ [
+ 64.83988641065284,
+ 42.94944655324026
+ ],
+ [
+ 64.72504372716915,
+ 42.754798818311805
+ ],
+ [
+ 64.83988641065284,
+ 42.56015108338335
+ ],
+ [
+ 65.06957177762018,
+ 42.56015108338335
+ ],
+ [
+ 65.18441446110387,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 43.14409428816871
+ ],
+ [
+ 65.06957177762018,
+ 43.33874202309716
+ ],
+ [
+ 64.83988641065284,
+ 43.33874202309716
+ ],
+ [
+ 64.72504372716915,
+ 43.14409428816871
+ ],
+ [
+ 64.83988641065284,
+ 42.94944655324026
+ ],
+ [
+ 65.06957177762018,
+ 42.94944655324026
+ ],
+ [
+ 65.18441446110387,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 43.53338975802561
+ ],
+ [
+ 65.06957177762018,
+ 43.728037492954066
+ ],
+ [
+ 64.83988641065284,
+ 43.728037492954066
+ ],
+ [
+ 64.72504372716915,
+ 43.53338975802561
+ ],
+ [
+ 64.83988641065284,
+ 43.33874202309716
+ ],
+ [
+ 65.06957177762018,
+ 43.33874202309716
+ ],
+ [
+ 65.18441446110387,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 43.92268522788252
+ ],
+ [
+ 65.06957177762018,
+ 44.11733296281097
+ ],
+ [
+ 64.83988641065284,
+ 44.11733296281097
+ ],
+ [
+ 64.72504372716915,
+ 43.92268522788252
+ ],
+ [
+ 64.83988641065284,
+ 43.728037492954066
+ ],
+ [
+ 65.06957177762018,
+ 43.728037492954066
+ ],
+ [
+ 65.18441446110387,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 44.31198069773942
+ ],
+ [
+ 65.06957177762018,
+ 44.506628432667874
+ ],
+ [
+ 64.83988641065284,
+ 44.506628432667874
+ ],
+ [
+ 64.72504372716915,
+ 44.31198069773942
+ ],
+ [
+ 64.83988641065284,
+ 44.11733296281097
+ ],
+ [
+ 65.06957177762018,
+ 44.11733296281097
+ ],
+ [
+ 65.18441446110387,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 44.701276167596326
+ ],
+ [
+ 65.06957177762018,
+ 44.89592390252478
+ ],
+ [
+ 64.83988641065284,
+ 44.89592390252478
+ ],
+ [
+ 64.72504372716915,
+ 44.701276167596326
+ ],
+ [
+ 64.83988641065284,
+ 44.506628432667874
+ ],
+ [
+ 65.06957177762018,
+ 44.506628432667874
+ ],
+ [
+ 65.18441446110387,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 45.090571637453245
+ ],
+ [
+ 65.06957177762018,
+ 45.2852193723817
+ ],
+ [
+ 64.83988641065284,
+ 45.2852193723817
+ ],
+ [
+ 64.72504372716915,
+ 45.090571637453245
+ ],
+ [
+ 64.83988641065284,
+ 44.89592390252479
+ ],
+ [
+ 65.06957177762018,
+ 44.89592390252479
+ ],
+ [
+ 65.18441446110387,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 45.47986710731015
+ ],
+ [
+ 65.06957177762018,
+ 45.6745148422386
+ ],
+ [
+ 64.83988641065284,
+ 45.6745148422386
+ ],
+ [
+ 64.72504372716915,
+ 45.47986710731015
+ ],
+ [
+ 64.83988641065284,
+ 45.2852193723817
+ ],
+ [
+ 65.06957177762018,
+ 45.2852193723817
+ ],
+ [
+ 65.18441446110387,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 45.86916257716705
+ ],
+ [
+ 65.06957177762018,
+ 46.063810312095505
+ ],
+ [
+ 64.83988641065284,
+ 46.063810312095505
+ ],
+ [
+ 64.72504372716915,
+ 45.86916257716705
+ ],
+ [
+ 64.83988641065284,
+ 45.6745148422386
+ ],
+ [
+ 65.06957177762018,
+ 45.6745148422386
+ ],
+ [
+ 65.18441446110387,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 46.25845804702396
+ ],
+ [
+ 65.06957177762018,
+ 46.45310578195241
+ ],
+ [
+ 64.83988641065284,
+ 46.45310578195241
+ ],
+ [
+ 64.72504372716915,
+ 46.25845804702396
+ ],
+ [
+ 64.83988641065284,
+ 46.063810312095505
+ ],
+ [
+ 65.06957177762018,
+ 46.063810312095505
+ ],
+ [
+ 65.18441446110387,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 46.64775351688086
+ ],
+ [
+ 65.06957177762018,
+ 46.842401251809314
+ ],
+ [
+ 64.83988641065284,
+ 46.842401251809314
+ ],
+ [
+ 64.72504372716915,
+ 46.64775351688086
+ ],
+ [
+ 64.83988641065284,
+ 46.45310578195241
+ ],
+ [
+ 65.06957177762018,
+ 46.45310578195241
+ ],
+ [
+ 65.18441446110387,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 47.037048986737766
+ ],
+ [
+ 65.06957177762018,
+ 47.23169672166622
+ ],
+ [
+ 64.83988641065284,
+ 47.23169672166622
+ ],
+ [
+ 64.72504372716915,
+ 47.037048986737766
+ ],
+ [
+ 64.83988641065284,
+ 46.842401251809314
+ ],
+ [
+ 65.06957177762018,
+ 46.842401251809314
+ ],
+ [
+ 65.18441446110387,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 47.42634445659467
+ ],
+ [
+ 65.06957177762018,
+ 47.62099219152312
+ ],
+ [
+ 64.83988641065284,
+ 47.62099219152312
+ ],
+ [
+ 64.72504372716915,
+ 47.42634445659467
+ ],
+ [
+ 64.83988641065284,
+ 47.23169672166622
+ ],
+ [
+ 65.06957177762018,
+ 47.23169672166622
+ ],
+ [
+ 65.18441446110387,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.18441446110387,
+ 47.81563992645159
+ ],
+ [
+ 65.06957177762018,
+ 48.01028766138004
+ ],
+ [
+ 64.83988641065284,
+ 48.01028766138004
+ ],
+ [
+ 64.72504372716915,
+ 47.81563992645159
+ ],
+ [
+ 64.83988641065284,
+ 47.620992191523136
+ ],
+ [
+ 65.06957177762018,
+ 47.620992191523136
+ ],
+ [
+ 65.18441446110387,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 11.805808964687746
+ ],
+ [
+ 65.41409982807123,
+ 12.0004566996162
+ ],
+ [
+ 65.18441446110388,
+ 12.0004566996162
+ ],
+ [
+ 65.0695717776202,
+ 11.805808964687746
+ ],
+ [
+ 65.18441446110388,
+ 11.611161229759292
+ ],
+ [
+ 65.41409982807123,
+ 11.611161229759292
+ ],
+ [
+ 65.52894251155492,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 12.195104434544652
+ ],
+ [
+ 65.41409982807123,
+ 12.389752169473105
+ ],
+ [
+ 65.18441446110388,
+ 12.389752169473105
+ ],
+ [
+ 65.0695717776202,
+ 12.195104434544652
+ ],
+ [
+ 65.18441446110388,
+ 12.000456699616198
+ ],
+ [
+ 65.41409982807123,
+ 12.000456699616198
+ ],
+ [
+ 65.52894251155492,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 12.58439990440156
+ ],
+ [
+ 65.41409982807123,
+ 12.779047639330013
+ ],
+ [
+ 65.18441446110388,
+ 12.779047639330013
+ ],
+ [
+ 65.0695717776202,
+ 12.58439990440156
+ ],
+ [
+ 65.18441446110388,
+ 12.389752169473105
+ ],
+ [
+ 65.41409982807123,
+ 12.389752169473105
+ ],
+ [
+ 65.52894251155492,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 12.973695374258465
+ ],
+ [
+ 65.41409982807123,
+ 13.16834310918692
+ ],
+ [
+ 65.18441446110388,
+ 13.16834310918692
+ ],
+ [
+ 65.0695717776202,
+ 12.973695374258465
+ ],
+ [
+ 65.18441446110388,
+ 12.779047639330011
+ ],
+ [
+ 65.41409982807123,
+ 12.779047639330011
+ ],
+ [
+ 65.52894251155492,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 13.362990844115371
+ ],
+ [
+ 65.41409982807123,
+ 13.557638579043825
+ ],
+ [
+ 65.18441446110388,
+ 13.557638579043825
+ ],
+ [
+ 65.0695717776202,
+ 13.362990844115371
+ ],
+ [
+ 65.18441446110388,
+ 13.168343109186917
+ ],
+ [
+ 65.41409982807123,
+ 13.168343109186917
+ ],
+ [
+ 65.52894251155492,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 13.752286313972277
+ ],
+ [
+ 65.41409982807123,
+ 13.946934048900731
+ ],
+ [
+ 65.18441446110388,
+ 13.946934048900731
+ ],
+ [
+ 65.0695717776202,
+ 13.752286313972277
+ ],
+ [
+ 65.18441446110388,
+ 13.557638579043823
+ ],
+ [
+ 65.41409982807123,
+ 13.557638579043823
+ ],
+ [
+ 65.52894251155492,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 14.141581783829183
+ ],
+ [
+ 65.41409982807123,
+ 14.336229518757637
+ ],
+ [
+ 65.18441446110388,
+ 14.336229518757637
+ ],
+ [
+ 65.0695717776202,
+ 14.141581783829183
+ ],
+ [
+ 65.18441446110388,
+ 13.94693404890073
+ ],
+ [
+ 65.41409982807123,
+ 13.94693404890073
+ ],
+ [
+ 65.52894251155492,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 14.530877253686091
+ ],
+ [
+ 65.41409982807123,
+ 14.725524988614545
+ ],
+ [
+ 65.18441446110388,
+ 14.725524988614545
+ ],
+ [
+ 65.0695717776202,
+ 14.530877253686091
+ ],
+ [
+ 65.18441446110388,
+ 14.336229518757637
+ ],
+ [
+ 65.41409982807123,
+ 14.336229518757637
+ ],
+ [
+ 65.52894251155492,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 14.920172723542997
+ ],
+ [
+ 65.41409982807123,
+ 15.114820458471451
+ ],
+ [
+ 65.18441446110388,
+ 15.114820458471451
+ ],
+ [
+ 65.0695717776202,
+ 14.920172723542997
+ ],
+ [
+ 65.18441446110388,
+ 14.725524988614543
+ ],
+ [
+ 65.41409982807123,
+ 14.725524988614543
+ ],
+ [
+ 65.52894251155492,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 15.309468193399903
+ ],
+ [
+ 65.41409982807123,
+ 15.504115928328357
+ ],
+ [
+ 65.18441446110388,
+ 15.504115928328357
+ ],
+ [
+ 65.0695717776202,
+ 15.309468193399903
+ ],
+ [
+ 65.18441446110388,
+ 15.11482045847145
+ ],
+ [
+ 65.41409982807123,
+ 15.11482045847145
+ ],
+ [
+ 65.52894251155492,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 15.69876366325681
+ ],
+ [
+ 65.41409982807123,
+ 15.893411398185265
+ ],
+ [
+ 65.18441446110388,
+ 15.893411398185265
+ ],
+ [
+ 65.0695717776202,
+ 15.69876366325681
+ ],
+ [
+ 65.18441446110388,
+ 15.504115928328357
+ ],
+ [
+ 65.41409982807123,
+ 15.504115928328357
+ ],
+ [
+ 65.52894251155492,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 16.088059133113717
+ ],
+ [
+ 65.41409982807123,
+ 16.28270686804217
+ ],
+ [
+ 65.18441446110388,
+ 16.28270686804217
+ ],
+ [
+ 65.0695717776202,
+ 16.088059133113717
+ ],
+ [
+ 65.18441446110388,
+ 15.893411398185263
+ ],
+ [
+ 65.41409982807123,
+ 15.893411398185263
+ ],
+ [
+ 65.52894251155492,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 16.477354602970625
+ ],
+ [
+ 65.41409982807123,
+ 16.672002337899077
+ ],
+ [
+ 65.18441446110388,
+ 16.672002337899077
+ ],
+ [
+ 65.0695717776202,
+ 16.477354602970625
+ ],
+ [
+ 65.18441446110388,
+ 16.282706868042172
+ ],
+ [
+ 65.41409982807123,
+ 16.282706868042172
+ ],
+ [
+ 65.52894251155492,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 16.86665007282753
+ ],
+ [
+ 65.41409982807123,
+ 17.06129780775598
+ ],
+ [
+ 65.18441446110388,
+ 17.06129780775598
+ ],
+ [
+ 65.0695717776202,
+ 16.86665007282753
+ ],
+ [
+ 65.18441446110388,
+ 16.672002337899077
+ ],
+ [
+ 65.41409982807123,
+ 16.672002337899077
+ ],
+ [
+ 65.52894251155492,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 17.255945542684437
+ ],
+ [
+ 65.41409982807123,
+ 17.45059327761289
+ ],
+ [
+ 65.18441446110388,
+ 17.45059327761289
+ ],
+ [
+ 65.0695717776202,
+ 17.255945542684437
+ ],
+ [
+ 65.18441446110388,
+ 17.061297807755984
+ ],
+ [
+ 65.41409982807123,
+ 17.061297807755984
+ ],
+ [
+ 65.52894251155492,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 17.64524101254134
+ ],
+ [
+ 65.41409982807123,
+ 17.839888747469793
+ ],
+ [
+ 65.18441446110388,
+ 17.839888747469793
+ ],
+ [
+ 65.0695717776202,
+ 17.64524101254134
+ ],
+ [
+ 65.18441446110388,
+ 17.45059327761289
+ ],
+ [
+ 65.41409982807123,
+ 17.45059327761289
+ ],
+ [
+ 65.52894251155492,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 18.03453648239825
+ ],
+ [
+ 65.41409982807123,
+ 18.2291842173267
+ ],
+ [
+ 65.18441446110388,
+ 18.2291842173267
+ ],
+ [
+ 65.0695717776202,
+ 18.03453648239825
+ ],
+ [
+ 65.18441446110388,
+ 17.839888747469796
+ ],
+ [
+ 65.41409982807123,
+ 17.839888747469796
+ ],
+ [
+ 65.52894251155492,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 18.423831952255156
+ ],
+ [
+ 65.41409982807123,
+ 18.61847968718361
+ ],
+ [
+ 65.18441446110388,
+ 18.61847968718361
+ ],
+ [
+ 65.0695717776202,
+ 18.423831952255156
+ ],
+ [
+ 65.18441446110388,
+ 18.229184217326704
+ ],
+ [
+ 65.41409982807123,
+ 18.229184217326704
+ ],
+ [
+ 65.52894251155492,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 18.81312742211206
+ ],
+ [
+ 65.41409982807123,
+ 19.007775157040513
+ ],
+ [
+ 65.18441446110388,
+ 19.007775157040513
+ ],
+ [
+ 65.0695717776202,
+ 18.81312742211206
+ ],
+ [
+ 65.18441446110388,
+ 18.61847968718361
+ ],
+ [
+ 65.41409982807123,
+ 18.61847968718361
+ ],
+ [
+ 65.52894251155492,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 19.20242289196897
+ ],
+ [
+ 65.41409982807123,
+ 19.39707062689742
+ ],
+ [
+ 65.18441446110388,
+ 19.39707062689742
+ ],
+ [
+ 65.0695717776202,
+ 19.20242289196897
+ ],
+ [
+ 65.18441446110388,
+ 19.007775157040516
+ ],
+ [
+ 65.41409982807123,
+ 19.007775157040516
+ ],
+ [
+ 65.52894251155492,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 19.591718361825876
+ ],
+ [
+ 65.41409982807123,
+ 19.78636609675433
+ ],
+ [
+ 65.18441446110388,
+ 19.78636609675433
+ ],
+ [
+ 65.0695717776202,
+ 19.591718361825876
+ ],
+ [
+ 65.18441446110388,
+ 19.397070626897424
+ ],
+ [
+ 65.41409982807123,
+ 19.397070626897424
+ ],
+ [
+ 65.52894251155492,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 19.98101383168278
+ ],
+ [
+ 65.41409982807123,
+ 20.175661566611232
+ ],
+ [
+ 65.18441446110388,
+ 20.175661566611232
+ ],
+ [
+ 65.0695717776202,
+ 19.98101383168278
+ ],
+ [
+ 65.18441446110388,
+ 19.78636609675433
+ ],
+ [
+ 65.41409982807123,
+ 19.78636609675433
+ ],
+ [
+ 65.52894251155492,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 20.370309301539685
+ ],
+ [
+ 65.41409982807123,
+ 20.564957036468137
+ ],
+ [
+ 65.18441446110388,
+ 20.564957036468137
+ ],
+ [
+ 65.0695717776202,
+ 20.370309301539685
+ ],
+ [
+ 65.18441446110388,
+ 20.175661566611232
+ ],
+ [
+ 65.41409982807123,
+ 20.175661566611232
+ ],
+ [
+ 65.52894251155492,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 20.759604771396592
+ ],
+ [
+ 65.41409982807123,
+ 20.954252506325044
+ ],
+ [
+ 65.18441446110388,
+ 20.954252506325044
+ ],
+ [
+ 65.0695717776202,
+ 20.759604771396592
+ ],
+ [
+ 65.18441446110388,
+ 20.56495703646814
+ ],
+ [
+ 65.41409982807123,
+ 20.56495703646814
+ ],
+ [
+ 65.52894251155492,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 21.1489002412535
+ ],
+ [
+ 65.41409982807123,
+ 21.343547976181952
+ ],
+ [
+ 65.18441446110388,
+ 21.343547976181952
+ ],
+ [
+ 65.0695717776202,
+ 21.1489002412535
+ ],
+ [
+ 65.18441446110388,
+ 20.954252506325048
+ ],
+ [
+ 65.41409982807123,
+ 20.954252506325048
+ ],
+ [
+ 65.52894251155492,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 21.538195711110404
+ ],
+ [
+ 65.41409982807123,
+ 21.732843446038856
+ ],
+ [
+ 65.18441446110388,
+ 21.732843446038856
+ ],
+ [
+ 65.0695717776202,
+ 21.538195711110404
+ ],
+ [
+ 65.18441446110388,
+ 21.343547976181952
+ ],
+ [
+ 65.41409982807123,
+ 21.343547976181952
+ ],
+ [
+ 65.52894251155492,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 21.927491180967312
+ ],
+ [
+ 65.41409982807123,
+ 22.122138915895764
+ ],
+ [
+ 65.18441446110388,
+ 22.122138915895764
+ ],
+ [
+ 65.0695717776202,
+ 21.927491180967312
+ ],
+ [
+ 65.18441446110388,
+ 21.73284344603886
+ ],
+ [
+ 65.41409982807123,
+ 21.73284344603886
+ ],
+ [
+ 65.52894251155492,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 22.31678665082422
+ ],
+ [
+ 65.41409982807123,
+ 22.511434385752672
+ ],
+ [
+ 65.18441446110388,
+ 22.511434385752672
+ ],
+ [
+ 65.0695717776202,
+ 22.31678665082422
+ ],
+ [
+ 65.18441446110388,
+ 22.122138915895768
+ ],
+ [
+ 65.41409982807123,
+ 22.122138915895768
+ ],
+ [
+ 65.52894251155492,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 22.706082120681124
+ ],
+ [
+ 65.41409982807123,
+ 22.900729855609576
+ ],
+ [
+ 65.18441446110388,
+ 22.900729855609576
+ ],
+ [
+ 65.0695717776202,
+ 22.706082120681124
+ ],
+ [
+ 65.18441446110388,
+ 22.511434385752672
+ ],
+ [
+ 65.41409982807123,
+ 22.511434385752672
+ ],
+ [
+ 65.52894251155492,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 23.095377590538032
+ ],
+ [
+ 65.41409982807123,
+ 23.290025325466484
+ ],
+ [
+ 65.18441446110388,
+ 23.290025325466484
+ ],
+ [
+ 65.0695717776202,
+ 23.095377590538032
+ ],
+ [
+ 65.18441446110388,
+ 22.90072985560958
+ ],
+ [
+ 65.41409982807123,
+ 22.90072985560958
+ ],
+ [
+ 65.52894251155492,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 23.48467306039494
+ ],
+ [
+ 65.41409982807123,
+ 23.67932079532339
+ ],
+ [
+ 65.18441446110388,
+ 23.67932079532339
+ ],
+ [
+ 65.0695717776202,
+ 23.48467306039494
+ ],
+ [
+ 65.18441446110388,
+ 23.290025325466488
+ ],
+ [
+ 65.41409982807123,
+ 23.290025325466488
+ ],
+ [
+ 65.52894251155492,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 23.873968530251844
+ ],
+ [
+ 65.41409982807123,
+ 24.068616265180296
+ ],
+ [
+ 65.18441446110388,
+ 24.068616265180296
+ ],
+ [
+ 65.0695717776202,
+ 23.873968530251844
+ ],
+ [
+ 65.18441446110388,
+ 23.67932079532339
+ ],
+ [
+ 65.41409982807123,
+ 23.67932079532339
+ ],
+ [
+ 65.52894251155492,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 24.263264000108748
+ ],
+ [
+ 65.41409982807123,
+ 24.4579117350372
+ ],
+ [
+ 65.18441446110388,
+ 24.4579117350372
+ ],
+ [
+ 65.0695717776202,
+ 24.263264000108748
+ ],
+ [
+ 65.18441446110388,
+ 24.068616265180296
+ ],
+ [
+ 65.41409982807123,
+ 24.068616265180296
+ ],
+ [
+ 65.52894251155492,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 24.652559469965656
+ ],
+ [
+ 65.41409982807123,
+ 24.847207204894108
+ ],
+ [
+ 65.18441446110388,
+ 24.847207204894108
+ ],
+ [
+ 65.0695717776202,
+ 24.652559469965656
+ ],
+ [
+ 65.18441446110388,
+ 24.457911735037204
+ ],
+ [
+ 65.41409982807123,
+ 24.457911735037204
+ ],
+ [
+ 65.52894251155492,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 25.041854939822564
+ ],
+ [
+ 65.41409982807123,
+ 25.236502674751016
+ ],
+ [
+ 65.18441446110388,
+ 25.236502674751016
+ ],
+ [
+ 65.0695717776202,
+ 25.041854939822564
+ ],
+ [
+ 65.18441446110388,
+ 24.84720720489411
+ ],
+ [
+ 65.41409982807123,
+ 24.84720720489411
+ ],
+ [
+ 65.52894251155492,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 25.431150409679468
+ ],
+ [
+ 65.41409982807123,
+ 25.62579814460792
+ ],
+ [
+ 65.18441446110388,
+ 25.62579814460792
+ ],
+ [
+ 65.0695717776202,
+ 25.431150409679468
+ ],
+ [
+ 65.18441446110388,
+ 25.236502674751016
+ ],
+ [
+ 65.41409982807123,
+ 25.236502674751016
+ ],
+ [
+ 65.52894251155492,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 25.820445879536376
+ ],
+ [
+ 65.41409982807123,
+ 26.015093614464828
+ ],
+ [
+ 65.18441446110388,
+ 26.015093614464828
+ ],
+ [
+ 65.0695717776202,
+ 25.820445879536376
+ ],
+ [
+ 65.18441446110388,
+ 25.625798144607923
+ ],
+ [
+ 65.41409982807123,
+ 25.625798144607923
+ ],
+ [
+ 65.52894251155492,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 26.209741349393283
+ ],
+ [
+ 65.41409982807123,
+ 26.404389084321735
+ ],
+ [
+ 65.18441446110388,
+ 26.404389084321735
+ ],
+ [
+ 65.0695717776202,
+ 26.209741349393283
+ ],
+ [
+ 65.18441446110388,
+ 26.01509361446483
+ ],
+ [
+ 65.41409982807123,
+ 26.01509361446483
+ ],
+ [
+ 65.52894251155492,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 26.599036819250188
+ ],
+ [
+ 65.41409982807123,
+ 26.79368455417864
+ ],
+ [
+ 65.18441446110388,
+ 26.79368455417864
+ ],
+ [
+ 65.0695717776202,
+ 26.599036819250188
+ ],
+ [
+ 65.18441446110388,
+ 26.404389084321735
+ ],
+ [
+ 65.41409982807123,
+ 26.404389084321735
+ ],
+ [
+ 65.52894251155492,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 26.988332289107095
+ ],
+ [
+ 65.41409982807123,
+ 27.182980024035547
+ ],
+ [
+ 65.18441446110388,
+ 27.182980024035547
+ ],
+ [
+ 65.0695717776202,
+ 26.988332289107095
+ ],
+ [
+ 65.18441446110388,
+ 26.793684554178643
+ ],
+ [
+ 65.41409982807123,
+ 26.793684554178643
+ ],
+ [
+ 65.52894251155492,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 27.377627758964003
+ ],
+ [
+ 65.41409982807123,
+ 27.572275493892455
+ ],
+ [
+ 65.18441446110388,
+ 27.572275493892455
+ ],
+ [
+ 65.0695717776202,
+ 27.377627758964003
+ ],
+ [
+ 65.18441446110388,
+ 27.18298002403555
+ ],
+ [
+ 65.41409982807123,
+ 27.18298002403555
+ ],
+ [
+ 65.52894251155492,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 27.766923228820907
+ ],
+ [
+ 65.41409982807123,
+ 27.96157096374936
+ ],
+ [
+ 65.18441446110388,
+ 27.96157096374936
+ ],
+ [
+ 65.0695717776202,
+ 27.766923228820907
+ ],
+ [
+ 65.18441446110388,
+ 27.572275493892455
+ ],
+ [
+ 65.41409982807123,
+ 27.572275493892455
+ ],
+ [
+ 65.52894251155492,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 28.156218698677815
+ ],
+ [
+ 65.41409982807123,
+ 28.350866433606267
+ ],
+ [
+ 65.18441446110388,
+ 28.350866433606267
+ ],
+ [
+ 65.0695717776202,
+ 28.156218698677815
+ ],
+ [
+ 65.18441446110388,
+ 27.961570963749363
+ ],
+ [
+ 65.41409982807123,
+ 27.961570963749363
+ ],
+ [
+ 65.52894251155492,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 28.54551416853472
+ ],
+ [
+ 65.41409982807123,
+ 28.74016190346317
+ ],
+ [
+ 65.18441446110388,
+ 28.74016190346317
+ ],
+ [
+ 65.0695717776202,
+ 28.54551416853472
+ ],
+ [
+ 65.18441446110388,
+ 28.350866433606267
+ ],
+ [
+ 65.41409982807123,
+ 28.350866433606267
+ ],
+ [
+ 65.52894251155492,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 28.934809638391627
+ ],
+ [
+ 65.41409982807123,
+ 29.12945737332008
+ ],
+ [
+ 65.18441446110388,
+ 29.12945737332008
+ ],
+ [
+ 65.0695717776202,
+ 28.934809638391627
+ ],
+ [
+ 65.18441446110388,
+ 28.740161903463175
+ ],
+ [
+ 65.41409982807123,
+ 28.740161903463175
+ ],
+ [
+ 65.52894251155492,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 29.32410510824853
+ ],
+ [
+ 65.41409982807123,
+ 29.518752843176983
+ ],
+ [
+ 65.18441446110388,
+ 29.518752843176983
+ ],
+ [
+ 65.0695717776202,
+ 29.32410510824853
+ ],
+ [
+ 65.18441446110388,
+ 29.12945737332008
+ ],
+ [
+ 65.41409982807123,
+ 29.12945737332008
+ ],
+ [
+ 65.52894251155492,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 29.71340057810544
+ ],
+ [
+ 65.41409982807123,
+ 29.90804831303389
+ ],
+ [
+ 65.18441446110388,
+ 29.90804831303389
+ ],
+ [
+ 65.0695717776202,
+ 29.71340057810544
+ ],
+ [
+ 65.18441446110388,
+ 29.518752843176987
+ ],
+ [
+ 65.41409982807123,
+ 29.518752843176987
+ ],
+ [
+ 65.52894251155492,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 30.102696047962343
+ ],
+ [
+ 65.41409982807123,
+ 30.297343782890795
+ ],
+ [
+ 65.18441446110388,
+ 30.297343782890795
+ ],
+ [
+ 65.0695717776202,
+ 30.102696047962343
+ ],
+ [
+ 65.18441446110388,
+ 29.90804831303389
+ ],
+ [
+ 65.41409982807123,
+ 29.90804831303389
+ ],
+ [
+ 65.52894251155492,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 30.49199151781925
+ ],
+ [
+ 65.41409982807123,
+ 30.686639252747703
+ ],
+ [
+ 65.18441446110388,
+ 30.686639252747703
+ ],
+ [
+ 65.0695717776202,
+ 30.49199151781925
+ ],
+ [
+ 65.18441446110388,
+ 30.2973437828908
+ ],
+ [
+ 65.41409982807123,
+ 30.2973437828908
+ ],
+ [
+ 65.52894251155492,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 30.88128698767616
+ ],
+ [
+ 65.41409982807123,
+ 31.07593472260461
+ ],
+ [
+ 65.18441446110388,
+ 31.07593472260461
+ ],
+ [
+ 65.0695717776202,
+ 30.88128698767616
+ ],
+ [
+ 65.18441446110388,
+ 30.686639252747707
+ ],
+ [
+ 65.41409982807123,
+ 30.686639252747707
+ ],
+ [
+ 65.52894251155492,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 31.270582457533063
+ ],
+ [
+ 65.41409982807123,
+ 31.465230192461515
+ ],
+ [
+ 65.18441446110388,
+ 31.465230192461515
+ ],
+ [
+ 65.0695717776202,
+ 31.270582457533063
+ ],
+ [
+ 65.18441446110388,
+ 31.07593472260461
+ ],
+ [
+ 65.41409982807123,
+ 31.07593472260461
+ ],
+ [
+ 65.52894251155492,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 31.65987792738997
+ ],
+ [
+ 65.41409982807123,
+ 31.854525662318423
+ ],
+ [
+ 65.18441446110388,
+ 31.854525662318423
+ ],
+ [
+ 65.0695717776202,
+ 31.65987792738997
+ ],
+ [
+ 65.18441446110388,
+ 31.46523019246152
+ ],
+ [
+ 65.41409982807123,
+ 31.46523019246152
+ ],
+ [
+ 65.52894251155492,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 32.049173397246875
+ ],
+ [
+ 65.41409982807123,
+ 32.24382113217533
+ ],
+ [
+ 65.18441446110388,
+ 32.24382113217533
+ ],
+ [
+ 65.0695717776202,
+ 32.049173397246875
+ ],
+ [
+ 65.18441446110388,
+ 31.854525662318423
+ ],
+ [
+ 65.41409982807123,
+ 31.854525662318423
+ ],
+ [
+ 65.52894251155492,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 32.438468867103786
+ ],
+ [
+ 65.41409982807123,
+ 32.63311660203224
+ ],
+ [
+ 65.18441446110388,
+ 32.63311660203224
+ ],
+ [
+ 65.0695717776202,
+ 32.438468867103786
+ ],
+ [
+ 65.18441446110388,
+ 32.243821132175334
+ ],
+ [
+ 65.41409982807123,
+ 32.243821132175334
+ ],
+ [
+ 65.52894251155492,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 32.82776433696069
+ ],
+ [
+ 65.41409982807123,
+ 33.02241207188914
+ ],
+ [
+ 65.18441446110388,
+ 33.02241207188914
+ ],
+ [
+ 65.0695717776202,
+ 32.82776433696069
+ ],
+ [
+ 65.18441446110388,
+ 32.63311660203224
+ ],
+ [
+ 65.41409982807123,
+ 32.63311660203224
+ ],
+ [
+ 65.52894251155492,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 33.217059806817595
+ ],
+ [
+ 65.41409982807123,
+ 33.41170754174605
+ ],
+ [
+ 65.18441446110388,
+ 33.41170754174605
+ ],
+ [
+ 65.0695717776202,
+ 33.217059806817595
+ ],
+ [
+ 65.18441446110388,
+ 33.02241207188914
+ ],
+ [
+ 65.41409982807123,
+ 33.02241207188914
+ ],
+ [
+ 65.52894251155492,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 33.6063552766745
+ ],
+ [
+ 65.41409982807123,
+ 33.80100301160295
+ ],
+ [
+ 65.18441446110388,
+ 33.80100301160295
+ ],
+ [
+ 65.0695717776202,
+ 33.6063552766745
+ ],
+ [
+ 65.18441446110388,
+ 33.41170754174605
+ ],
+ [
+ 65.41409982807123,
+ 33.41170754174605
+ ],
+ [
+ 65.52894251155492,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 33.9956507465314
+ ],
+ [
+ 65.41409982807123,
+ 34.190298481459855
+ ],
+ [
+ 65.18441446110388,
+ 34.190298481459855
+ ],
+ [
+ 65.0695717776202,
+ 33.9956507465314
+ ],
+ [
+ 65.18441446110388,
+ 33.80100301160295
+ ],
+ [
+ 65.41409982807123,
+ 33.80100301160295
+ ],
+ [
+ 65.52894251155492,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 34.384946216388315
+ ],
+ [
+ 65.41409982807123,
+ 34.57959395131677
+ ],
+ [
+ 65.18441446110388,
+ 34.57959395131677
+ ],
+ [
+ 65.0695717776202,
+ 34.384946216388315
+ ],
+ [
+ 65.18441446110388,
+ 34.19029848145986
+ ],
+ [
+ 65.41409982807123,
+ 34.19029848145986
+ ],
+ [
+ 65.52894251155492,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 34.774241686245226
+ ],
+ [
+ 65.41409982807123,
+ 34.96888942117368
+ ],
+ [
+ 65.18441446110388,
+ 34.96888942117368
+ ],
+ [
+ 65.0695717776202,
+ 34.774241686245226
+ ],
+ [
+ 65.18441446110388,
+ 34.579593951316774
+ ],
+ [
+ 65.41409982807123,
+ 34.579593951316774
+ ],
+ [
+ 65.52894251155492,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 35.16353715610213
+ ],
+ [
+ 65.41409982807123,
+ 35.35818489103058
+ ],
+ [
+ 65.18441446110388,
+ 35.35818489103058
+ ],
+ [
+ 65.0695717776202,
+ 35.16353715610213
+ ],
+ [
+ 65.18441446110388,
+ 34.96888942117368
+ ],
+ [
+ 65.41409982807123,
+ 34.96888942117368
+ ],
+ [
+ 65.52894251155492,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 35.552832625959034
+ ],
+ [
+ 65.41409982807123,
+ 35.74748036088749
+ ],
+ [
+ 65.18441446110388,
+ 35.74748036088749
+ ],
+ [
+ 65.0695717776202,
+ 35.552832625959034
+ ],
+ [
+ 65.18441446110388,
+ 35.35818489103058
+ ],
+ [
+ 65.41409982807123,
+ 35.35818489103058
+ ],
+ [
+ 65.52894251155492,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 35.94212809581594
+ ],
+ [
+ 65.41409982807123,
+ 36.13677583074439
+ ],
+ [
+ 65.18441446110388,
+ 36.13677583074439
+ ],
+ [
+ 65.0695717776202,
+ 35.94212809581594
+ ],
+ [
+ 65.18441446110388,
+ 35.74748036088749
+ ],
+ [
+ 65.41409982807123,
+ 35.74748036088749
+ ],
+ [
+ 65.52894251155492,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 36.33142356567284
+ ],
+ [
+ 65.41409982807123,
+ 36.526071300601295
+ ],
+ [
+ 65.18441446110388,
+ 36.526071300601295
+ ],
+ [
+ 65.0695717776202,
+ 36.33142356567284
+ ],
+ [
+ 65.18441446110388,
+ 36.13677583074439
+ ],
+ [
+ 65.41409982807123,
+ 36.13677583074439
+ ],
+ [
+ 65.52894251155492,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 36.720719035529754
+ ],
+ [
+ 65.41409982807123,
+ 36.915366770458206
+ ],
+ [
+ 65.18441446110388,
+ 36.915366770458206
+ ],
+ [
+ 65.0695717776202,
+ 36.720719035529754
+ ],
+ [
+ 65.18441446110388,
+ 36.5260713006013
+ ],
+ [
+ 65.41409982807123,
+ 36.5260713006013
+ ],
+ [
+ 65.52894251155492,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 37.11001450538666
+ ],
+ [
+ 65.41409982807123,
+ 37.30466224031511
+ ],
+ [
+ 65.18441446110388,
+ 37.30466224031511
+ ],
+ [
+ 65.0695717776202,
+ 37.11001450538666
+ ],
+ [
+ 65.18441446110388,
+ 36.915366770458206
+ ],
+ [
+ 65.41409982807123,
+ 36.915366770458206
+ ],
+ [
+ 65.52894251155492,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 37.49930997524357
+ ],
+ [
+ 65.41409982807123,
+ 37.69395771017202
+ ],
+ [
+ 65.18441446110388,
+ 37.69395771017202
+ ],
+ [
+ 65.0695717776202,
+ 37.49930997524357
+ ],
+ [
+ 65.18441446110388,
+ 37.30466224031512
+ ],
+ [
+ 65.41409982807123,
+ 37.30466224031512
+ ],
+ [
+ 65.52894251155492,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 37.888605445100474
+ ],
+ [
+ 65.41409982807123,
+ 38.083253180028926
+ ],
+ [
+ 65.18441446110388,
+ 38.083253180028926
+ ],
+ [
+ 65.0695717776202,
+ 37.888605445100474
+ ],
+ [
+ 65.18441446110388,
+ 37.69395771017202
+ ],
+ [
+ 65.41409982807123,
+ 37.69395771017202
+ ],
+ [
+ 65.52894251155492,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 38.27790091495738
+ ],
+ [
+ 65.41409982807123,
+ 38.47254864988583
+ ],
+ [
+ 65.18441446110388,
+ 38.47254864988583
+ ],
+ [
+ 65.0695717776202,
+ 38.27790091495738
+ ],
+ [
+ 65.18441446110388,
+ 38.083253180028926
+ ],
+ [
+ 65.41409982807123,
+ 38.083253180028926
+ ],
+ [
+ 65.52894251155492,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 38.66719638481428
+ ],
+ [
+ 65.41409982807123,
+ 38.861844119742734
+ ],
+ [
+ 65.18441446110388,
+ 38.861844119742734
+ ],
+ [
+ 65.0695717776202,
+ 38.66719638481428
+ ],
+ [
+ 65.18441446110388,
+ 38.47254864988583
+ ],
+ [
+ 65.41409982807123,
+ 38.47254864988583
+ ],
+ [
+ 65.52894251155492,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 39.05649185467119
+ ],
+ [
+ 65.41409982807123,
+ 39.25113958959964
+ ],
+ [
+ 65.18441446110388,
+ 39.25113958959964
+ ],
+ [
+ 65.0695717776202,
+ 39.05649185467119
+ ],
+ [
+ 65.18441446110388,
+ 38.861844119742734
+ ],
+ [
+ 65.41409982807123,
+ 38.861844119742734
+ ],
+ [
+ 65.52894251155492,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 39.4457873245281
+ ],
+ [
+ 65.41409982807123,
+ 39.64043505945655
+ ],
+ [
+ 65.18441446110388,
+ 39.64043505945655
+ ],
+ [
+ 65.0695717776202,
+ 39.4457873245281
+ ],
+ [
+ 65.18441446110388,
+ 39.251139589599646
+ ],
+ [
+ 65.41409982807123,
+ 39.251139589599646
+ ],
+ [
+ 65.52894251155492,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 39.835082794385
+ ],
+ [
+ 65.41409982807123,
+ 40.029730529313454
+ ],
+ [
+ 65.18441446110388,
+ 40.029730529313454
+ ],
+ [
+ 65.0695717776202,
+ 39.835082794385
+ ],
+ [
+ 65.18441446110388,
+ 39.64043505945655
+ ],
+ [
+ 65.41409982807123,
+ 39.64043505945655
+ ],
+ [
+ 65.52894251155492,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 40.22437826424191
+ ],
+ [
+ 65.41409982807123,
+ 40.419025999170366
+ ],
+ [
+ 65.18441446110388,
+ 40.419025999170366
+ ],
+ [
+ 65.0695717776202,
+ 40.22437826424191
+ ],
+ [
+ 65.18441446110388,
+ 40.02973052931346
+ ],
+ [
+ 65.41409982807123,
+ 40.02973052931346
+ ],
+ [
+ 65.52894251155492,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 40.61367373409882
+ ],
+ [
+ 65.41409982807123,
+ 40.80832146902727
+ ],
+ [
+ 65.18441446110388,
+ 40.80832146902727
+ ],
+ [
+ 65.0695717776202,
+ 40.61367373409882
+ ],
+ [
+ 65.18441446110388,
+ 40.419025999170366
+ ],
+ [
+ 65.41409982807123,
+ 40.419025999170366
+ ],
+ [
+ 65.52894251155492,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 41.00296920395572
+ ],
+ [
+ 65.41409982807123,
+ 41.197616938884174
+ ],
+ [
+ 65.18441446110388,
+ 41.197616938884174
+ ],
+ [
+ 65.0695717776202,
+ 41.00296920395572
+ ],
+ [
+ 65.18441446110388,
+ 40.80832146902727
+ ],
+ [
+ 65.41409982807123,
+ 40.80832146902727
+ ],
+ [
+ 65.52894251155492,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 41.392264673812626
+ ],
+ [
+ 65.41409982807123,
+ 41.58691240874108
+ ],
+ [
+ 65.18441446110388,
+ 41.58691240874108
+ ],
+ [
+ 65.0695717776202,
+ 41.392264673812626
+ ],
+ [
+ 65.18441446110388,
+ 41.197616938884174
+ ],
+ [
+ 65.41409982807123,
+ 41.197616938884174
+ ],
+ [
+ 65.52894251155492,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 41.78156014366953
+ ],
+ [
+ 65.41409982807123,
+ 41.97620787859798
+ ],
+ [
+ 65.18441446110388,
+ 41.97620787859798
+ ],
+ [
+ 65.0695717776202,
+ 41.78156014366953
+ ],
+ [
+ 65.18441446110388,
+ 41.58691240874108
+ ],
+ [
+ 65.41409982807123,
+ 41.58691240874108
+ ],
+ [
+ 65.52894251155492,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 42.17085561352644
+ ],
+ [
+ 65.41409982807123,
+ 42.365503348454894
+ ],
+ [
+ 65.18441446110388,
+ 42.365503348454894
+ ],
+ [
+ 65.0695717776202,
+ 42.17085561352644
+ ],
+ [
+ 65.18441446110388,
+ 41.97620787859799
+ ],
+ [
+ 65.41409982807123,
+ 41.97620787859799
+ ],
+ [
+ 65.52894251155492,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 42.56015108338335
+ ],
+ [
+ 65.41409982807123,
+ 42.754798818311805
+ ],
+ [
+ 65.18441446110388,
+ 42.754798818311805
+ ],
+ [
+ 65.0695717776202,
+ 42.56015108338335
+ ],
+ [
+ 65.18441446110388,
+ 42.3655033484549
+ ],
+ [
+ 65.41409982807123,
+ 42.3655033484549
+ ],
+ [
+ 65.52894251155492,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 42.94944655324026
+ ],
+ [
+ 65.41409982807123,
+ 43.14409428816871
+ ],
+ [
+ 65.18441446110388,
+ 43.14409428816871
+ ],
+ [
+ 65.0695717776202,
+ 42.94944655324026
+ ],
+ [
+ 65.18441446110388,
+ 42.754798818311805
+ ],
+ [
+ 65.41409982807123,
+ 42.754798818311805
+ ],
+ [
+ 65.52894251155492,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 43.33874202309716
+ ],
+ [
+ 65.41409982807123,
+ 43.53338975802561
+ ],
+ [
+ 65.18441446110388,
+ 43.53338975802561
+ ],
+ [
+ 65.0695717776202,
+ 43.33874202309716
+ ],
+ [
+ 65.18441446110388,
+ 43.14409428816871
+ ],
+ [
+ 65.41409982807123,
+ 43.14409428816871
+ ],
+ [
+ 65.52894251155492,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 43.728037492954066
+ ],
+ [
+ 65.41409982807123,
+ 43.92268522788252
+ ],
+ [
+ 65.18441446110388,
+ 43.92268522788252
+ ],
+ [
+ 65.0695717776202,
+ 43.728037492954066
+ ],
+ [
+ 65.18441446110388,
+ 43.53338975802561
+ ],
+ [
+ 65.41409982807123,
+ 43.53338975802561
+ ],
+ [
+ 65.52894251155492,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 44.11733296281097
+ ],
+ [
+ 65.41409982807123,
+ 44.31198069773942
+ ],
+ [
+ 65.18441446110388,
+ 44.31198069773942
+ ],
+ [
+ 65.0695717776202,
+ 44.11733296281097
+ ],
+ [
+ 65.18441446110388,
+ 43.92268522788252
+ ],
+ [
+ 65.41409982807123,
+ 43.92268522788252
+ ],
+ [
+ 65.52894251155492,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 44.506628432667874
+ ],
+ [
+ 65.41409982807123,
+ 44.701276167596326
+ ],
+ [
+ 65.18441446110388,
+ 44.701276167596326
+ ],
+ [
+ 65.0695717776202,
+ 44.506628432667874
+ ],
+ [
+ 65.18441446110388,
+ 44.31198069773942
+ ],
+ [
+ 65.41409982807123,
+ 44.31198069773942
+ ],
+ [
+ 65.52894251155492,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 44.89592390252479
+ ],
+ [
+ 65.41409982807123,
+ 45.090571637453245
+ ],
+ [
+ 65.18441446110388,
+ 45.090571637453245
+ ],
+ [
+ 65.0695717776202,
+ 44.89592390252479
+ ],
+ [
+ 65.18441446110388,
+ 44.70127616759634
+ ],
+ [
+ 65.41409982807123,
+ 44.70127616759634
+ ],
+ [
+ 65.52894251155492,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 45.2852193723817
+ ],
+ [
+ 65.41409982807123,
+ 45.47986710731015
+ ],
+ [
+ 65.18441446110388,
+ 45.47986710731015
+ ],
+ [
+ 65.0695717776202,
+ 45.2852193723817
+ ],
+ [
+ 65.18441446110388,
+ 45.090571637453245
+ ],
+ [
+ 65.41409982807123,
+ 45.090571637453245
+ ],
+ [
+ 65.52894251155492,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 45.6745148422386
+ ],
+ [
+ 65.41409982807123,
+ 45.86916257716705
+ ],
+ [
+ 65.18441446110388,
+ 45.86916257716705
+ ],
+ [
+ 65.0695717776202,
+ 45.6745148422386
+ ],
+ [
+ 65.18441446110388,
+ 45.47986710731015
+ ],
+ [
+ 65.41409982807123,
+ 45.47986710731015
+ ],
+ [
+ 65.52894251155492,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 46.063810312095505
+ ],
+ [
+ 65.41409982807123,
+ 46.25845804702396
+ ],
+ [
+ 65.18441446110388,
+ 46.25845804702396
+ ],
+ [
+ 65.0695717776202,
+ 46.063810312095505
+ ],
+ [
+ 65.18441446110388,
+ 45.86916257716705
+ ],
+ [
+ 65.41409982807123,
+ 45.86916257716705
+ ],
+ [
+ 65.52894251155492,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 46.45310578195241
+ ],
+ [
+ 65.41409982807123,
+ 46.64775351688086
+ ],
+ [
+ 65.18441446110388,
+ 46.64775351688086
+ ],
+ [
+ 65.0695717776202,
+ 46.45310578195241
+ ],
+ [
+ 65.18441446110388,
+ 46.25845804702396
+ ],
+ [
+ 65.41409982807123,
+ 46.25845804702396
+ ],
+ [
+ 65.52894251155492,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 46.842401251809314
+ ],
+ [
+ 65.41409982807123,
+ 47.037048986737766
+ ],
+ [
+ 65.18441446110388,
+ 47.037048986737766
+ ],
+ [
+ 65.0695717776202,
+ 46.842401251809314
+ ],
+ [
+ 65.18441446110388,
+ 46.64775351688086
+ ],
+ [
+ 65.41409982807123,
+ 46.64775351688086
+ ],
+ [
+ 65.52894251155492,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 47.23169672166622
+ ],
+ [
+ 65.41409982807123,
+ 47.42634445659467
+ ],
+ [
+ 65.18441446110388,
+ 47.42634445659467
+ ],
+ [
+ 65.0695717776202,
+ 47.23169672166622
+ ],
+ [
+ 65.18441446110388,
+ 47.037048986737766
+ ],
+ [
+ 65.41409982807123,
+ 47.037048986737766
+ ],
+ [
+ 65.52894251155492,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.52894251155492,
+ 47.620992191523136
+ ],
+ [
+ 65.41409982807123,
+ 47.81563992645159
+ ],
+ [
+ 65.18441446110388,
+ 47.81563992645159
+ ],
+ [
+ 65.0695717776202,
+ 47.620992191523136
+ ],
+ [
+ 65.18441446110388,
+ 47.426344456594684
+ ],
+ [
+ 65.41409982807123,
+ 47.426344456594684
+ ],
+ [
+ 65.52894251155492,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 12.0004566996162
+ ],
+ [
+ 65.75862787852226,
+ 12.195104434544653
+ ],
+ [
+ 65.52894251155492,
+ 12.195104434544653
+ ],
+ [
+ 65.41409982807123,
+ 12.0004566996162
+ ],
+ [
+ 65.52894251155492,
+ 11.805808964687746
+ ],
+ [
+ 65.75862787852226,
+ 11.805808964687746
+ ],
+ [
+ 65.87347056200595,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 12.389752169473105
+ ],
+ [
+ 65.75862787852226,
+ 12.58439990440156
+ ],
+ [
+ 65.52894251155492,
+ 12.58439990440156
+ ],
+ [
+ 65.41409982807123,
+ 12.389752169473105
+ ],
+ [
+ 65.52894251155492,
+ 12.195104434544652
+ ],
+ [
+ 65.75862787852226,
+ 12.195104434544652
+ ],
+ [
+ 65.87347056200595,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 12.779047639330013
+ ],
+ [
+ 65.75862787852226,
+ 12.973695374258467
+ ],
+ [
+ 65.52894251155492,
+ 12.973695374258467
+ ],
+ [
+ 65.41409982807123,
+ 12.779047639330013
+ ],
+ [
+ 65.52894251155492,
+ 12.58439990440156
+ ],
+ [
+ 65.75862787852226,
+ 12.58439990440156
+ ],
+ [
+ 65.87347056200595,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 13.16834310918692
+ ],
+ [
+ 65.75862787852226,
+ 13.362990844115373
+ ],
+ [
+ 65.52894251155492,
+ 13.362990844115373
+ ],
+ [
+ 65.41409982807123,
+ 13.16834310918692
+ ],
+ [
+ 65.52894251155492,
+ 12.973695374258465
+ ],
+ [
+ 65.75862787852226,
+ 12.973695374258465
+ ],
+ [
+ 65.87347056200595,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 13.557638579043825
+ ],
+ [
+ 65.75862787852226,
+ 13.752286313972279
+ ],
+ [
+ 65.52894251155492,
+ 13.752286313972279
+ ],
+ [
+ 65.41409982807123,
+ 13.557638579043825
+ ],
+ [
+ 65.52894251155492,
+ 13.362990844115371
+ ],
+ [
+ 65.75862787852226,
+ 13.362990844115371
+ ],
+ [
+ 65.87347056200595,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 13.946934048900731
+ ],
+ [
+ 65.75862787852226,
+ 14.141581783829185
+ ],
+ [
+ 65.52894251155492,
+ 14.141581783829185
+ ],
+ [
+ 65.41409982807123,
+ 13.946934048900731
+ ],
+ [
+ 65.52894251155492,
+ 13.752286313972277
+ ],
+ [
+ 65.75862787852226,
+ 13.752286313972277
+ ],
+ [
+ 65.87347056200595,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 14.336229518757637
+ ],
+ [
+ 65.75862787852226,
+ 14.530877253686091
+ ],
+ [
+ 65.52894251155492,
+ 14.530877253686091
+ ],
+ [
+ 65.41409982807123,
+ 14.336229518757637
+ ],
+ [
+ 65.52894251155492,
+ 14.141581783829183
+ ],
+ [
+ 65.75862787852226,
+ 14.141581783829183
+ ],
+ [
+ 65.87347056200595,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 14.725524988614545
+ ],
+ [
+ 65.75862787852226,
+ 14.920172723542999
+ ],
+ [
+ 65.52894251155492,
+ 14.920172723542999
+ ],
+ [
+ 65.41409982807123,
+ 14.725524988614545
+ ],
+ [
+ 65.52894251155492,
+ 14.530877253686091
+ ],
+ [
+ 65.75862787852226,
+ 14.530877253686091
+ ],
+ [
+ 65.87347056200595,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 15.114820458471451
+ ],
+ [
+ 65.75862787852226,
+ 15.309468193399905
+ ],
+ [
+ 65.52894251155492,
+ 15.309468193399905
+ ],
+ [
+ 65.41409982807123,
+ 15.114820458471451
+ ],
+ [
+ 65.52894251155492,
+ 14.920172723542997
+ ],
+ [
+ 65.75862787852226,
+ 14.920172723542997
+ ],
+ [
+ 65.87347056200595,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 15.504115928328357
+ ],
+ [
+ 65.75862787852226,
+ 15.69876366325681
+ ],
+ [
+ 65.52894251155492,
+ 15.69876366325681
+ ],
+ [
+ 65.41409982807123,
+ 15.504115928328357
+ ],
+ [
+ 65.52894251155492,
+ 15.309468193399903
+ ],
+ [
+ 65.75862787852226,
+ 15.309468193399903
+ ],
+ [
+ 65.87347056200595,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 15.893411398185265
+ ],
+ [
+ 65.75862787852226,
+ 16.088059133113717
+ ],
+ [
+ 65.52894251155492,
+ 16.088059133113717
+ ],
+ [
+ 65.41409982807123,
+ 15.893411398185265
+ ],
+ [
+ 65.52894251155492,
+ 15.69876366325681
+ ],
+ [
+ 65.75862787852226,
+ 15.69876366325681
+ ],
+ [
+ 65.87347056200595,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 16.28270686804217
+ ],
+ [
+ 65.75862787852226,
+ 16.47735460297062
+ ],
+ [
+ 65.52894251155492,
+ 16.47735460297062
+ ],
+ [
+ 65.41409982807123,
+ 16.28270686804217
+ ],
+ [
+ 65.52894251155492,
+ 16.088059133113717
+ ],
+ [
+ 65.75862787852226,
+ 16.088059133113717
+ ],
+ [
+ 65.87347056200595,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 16.672002337899077
+ ],
+ [
+ 65.75862787852226,
+ 16.86665007282753
+ ],
+ [
+ 65.52894251155492,
+ 16.86665007282753
+ ],
+ [
+ 65.41409982807123,
+ 16.672002337899077
+ ],
+ [
+ 65.52894251155492,
+ 16.477354602970625
+ ],
+ [
+ 65.75862787852226,
+ 16.477354602970625
+ ],
+ [
+ 65.87347056200595,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 17.06129780775598
+ ],
+ [
+ 65.75862787852226,
+ 17.255945542684433
+ ],
+ [
+ 65.52894251155492,
+ 17.255945542684433
+ ],
+ [
+ 65.41409982807123,
+ 17.06129780775598
+ ],
+ [
+ 65.52894251155492,
+ 16.86665007282753
+ ],
+ [
+ 65.75862787852226,
+ 16.86665007282753
+ ],
+ [
+ 65.87347056200595,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 17.45059327761289
+ ],
+ [
+ 65.75862787852226,
+ 17.64524101254134
+ ],
+ [
+ 65.52894251155492,
+ 17.64524101254134
+ ],
+ [
+ 65.41409982807123,
+ 17.45059327761289
+ ],
+ [
+ 65.52894251155492,
+ 17.255945542684437
+ ],
+ [
+ 65.75862787852226,
+ 17.255945542684437
+ ],
+ [
+ 65.87347056200595,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 17.839888747469793
+ ],
+ [
+ 65.75862787852226,
+ 18.034536482398245
+ ],
+ [
+ 65.52894251155492,
+ 18.034536482398245
+ ],
+ [
+ 65.41409982807123,
+ 17.839888747469793
+ ],
+ [
+ 65.52894251155492,
+ 17.64524101254134
+ ],
+ [
+ 65.75862787852226,
+ 17.64524101254134
+ ],
+ [
+ 65.87347056200595,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 18.2291842173267
+ ],
+ [
+ 65.75862787852226,
+ 18.423831952255153
+ ],
+ [
+ 65.52894251155492,
+ 18.423831952255153
+ ],
+ [
+ 65.41409982807123,
+ 18.2291842173267
+ ],
+ [
+ 65.52894251155492,
+ 18.03453648239825
+ ],
+ [
+ 65.75862787852226,
+ 18.03453648239825
+ ],
+ [
+ 65.87347056200595,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 18.61847968718361
+ ],
+ [
+ 65.75862787852226,
+ 18.81312742211206
+ ],
+ [
+ 65.52894251155492,
+ 18.81312742211206
+ ],
+ [
+ 65.41409982807123,
+ 18.61847968718361
+ ],
+ [
+ 65.52894251155492,
+ 18.423831952255156
+ ],
+ [
+ 65.75862787852226,
+ 18.423831952255156
+ ],
+ [
+ 65.87347056200595,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 19.007775157040513
+ ],
+ [
+ 65.75862787852226,
+ 19.202422891968965
+ ],
+ [
+ 65.52894251155492,
+ 19.202422891968965
+ ],
+ [
+ 65.41409982807123,
+ 19.007775157040513
+ ],
+ [
+ 65.52894251155492,
+ 18.81312742211206
+ ],
+ [
+ 65.75862787852226,
+ 18.81312742211206
+ ],
+ [
+ 65.87347056200595,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 19.39707062689742
+ ],
+ [
+ 65.75862787852226,
+ 19.591718361825873
+ ],
+ [
+ 65.52894251155492,
+ 19.591718361825873
+ ],
+ [
+ 65.41409982807123,
+ 19.39707062689742
+ ],
+ [
+ 65.52894251155492,
+ 19.20242289196897
+ ],
+ [
+ 65.75862787852226,
+ 19.20242289196897
+ ],
+ [
+ 65.87347056200595,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 19.78636609675433
+ ],
+ [
+ 65.75862787852226,
+ 19.98101383168278
+ ],
+ [
+ 65.52894251155492,
+ 19.98101383168278
+ ],
+ [
+ 65.41409982807123,
+ 19.78636609675433
+ ],
+ [
+ 65.52894251155492,
+ 19.591718361825876
+ ],
+ [
+ 65.75862787852226,
+ 19.591718361825876
+ ],
+ [
+ 65.87347056200595,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 20.175661566611232
+ ],
+ [
+ 65.75862787852226,
+ 20.370309301539685
+ ],
+ [
+ 65.52894251155492,
+ 20.370309301539685
+ ],
+ [
+ 65.41409982807123,
+ 20.175661566611232
+ ],
+ [
+ 65.52894251155492,
+ 19.98101383168278
+ ],
+ [
+ 65.75862787852226,
+ 19.98101383168278
+ ],
+ [
+ 65.87347056200595,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 20.564957036468137
+ ],
+ [
+ 65.75862787852226,
+ 20.75960477139659
+ ],
+ [
+ 65.52894251155492,
+ 20.75960477139659
+ ],
+ [
+ 65.41409982807123,
+ 20.564957036468137
+ ],
+ [
+ 65.52894251155492,
+ 20.370309301539685
+ ],
+ [
+ 65.75862787852226,
+ 20.370309301539685
+ ],
+ [
+ 65.87347056200595,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 20.954252506325044
+ ],
+ [
+ 65.75862787852226,
+ 21.148900241253497
+ ],
+ [
+ 65.52894251155492,
+ 21.148900241253497
+ ],
+ [
+ 65.41409982807123,
+ 20.954252506325044
+ ],
+ [
+ 65.52894251155492,
+ 20.759604771396592
+ ],
+ [
+ 65.75862787852226,
+ 20.759604771396592
+ ],
+ [
+ 65.87347056200595,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 21.343547976181952
+ ],
+ [
+ 65.75862787852226,
+ 21.538195711110404
+ ],
+ [
+ 65.52894251155492,
+ 21.538195711110404
+ ],
+ [
+ 65.41409982807123,
+ 21.343547976181952
+ ],
+ [
+ 65.52894251155492,
+ 21.1489002412535
+ ],
+ [
+ 65.75862787852226,
+ 21.1489002412535
+ ],
+ [
+ 65.87347056200595,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 21.732843446038856
+ ],
+ [
+ 65.75862787852226,
+ 21.92749118096731
+ ],
+ [
+ 65.52894251155492,
+ 21.92749118096731
+ ],
+ [
+ 65.41409982807123,
+ 21.732843446038856
+ ],
+ [
+ 65.52894251155492,
+ 21.538195711110404
+ ],
+ [
+ 65.75862787852226,
+ 21.538195711110404
+ ],
+ [
+ 65.87347056200595,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 22.122138915895764
+ ],
+ [
+ 65.75862787852226,
+ 22.316786650824216
+ ],
+ [
+ 65.52894251155492,
+ 22.316786650824216
+ ],
+ [
+ 65.41409982807123,
+ 22.122138915895764
+ ],
+ [
+ 65.52894251155492,
+ 21.927491180967312
+ ],
+ [
+ 65.75862787852226,
+ 21.927491180967312
+ ],
+ [
+ 65.87347056200595,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 22.511434385752672
+ ],
+ [
+ 65.75862787852226,
+ 22.706082120681124
+ ],
+ [
+ 65.52894251155492,
+ 22.706082120681124
+ ],
+ [
+ 65.41409982807123,
+ 22.511434385752672
+ ],
+ [
+ 65.52894251155492,
+ 22.31678665082422
+ ],
+ [
+ 65.75862787852226,
+ 22.31678665082422
+ ],
+ [
+ 65.87347056200595,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 22.900729855609576
+ ],
+ [
+ 65.75862787852226,
+ 23.09537759053803
+ ],
+ [
+ 65.52894251155492,
+ 23.09537759053803
+ ],
+ [
+ 65.41409982807123,
+ 22.900729855609576
+ ],
+ [
+ 65.52894251155492,
+ 22.706082120681124
+ ],
+ [
+ 65.75862787852226,
+ 22.706082120681124
+ ],
+ [
+ 65.87347056200595,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 23.290025325466484
+ ],
+ [
+ 65.75862787852226,
+ 23.484673060394936
+ ],
+ [
+ 65.52894251155492,
+ 23.484673060394936
+ ],
+ [
+ 65.41409982807123,
+ 23.290025325466484
+ ],
+ [
+ 65.52894251155492,
+ 23.095377590538032
+ ],
+ [
+ 65.75862787852226,
+ 23.095377590538032
+ ],
+ [
+ 65.87347056200595,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 23.67932079532339
+ ],
+ [
+ 65.75862787852226,
+ 23.873968530251844
+ ],
+ [
+ 65.52894251155492,
+ 23.873968530251844
+ ],
+ [
+ 65.41409982807123,
+ 23.67932079532339
+ ],
+ [
+ 65.52894251155492,
+ 23.48467306039494
+ ],
+ [
+ 65.75862787852226,
+ 23.48467306039494
+ ],
+ [
+ 65.87347056200595,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 24.068616265180296
+ ],
+ [
+ 65.75862787852226,
+ 24.263264000108748
+ ],
+ [
+ 65.52894251155492,
+ 24.263264000108748
+ ],
+ [
+ 65.41409982807123,
+ 24.068616265180296
+ ],
+ [
+ 65.52894251155492,
+ 23.873968530251844
+ ],
+ [
+ 65.75862787852226,
+ 23.873968530251844
+ ],
+ [
+ 65.87347056200595,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 24.4579117350372
+ ],
+ [
+ 65.75862787852226,
+ 24.652559469965652
+ ],
+ [
+ 65.52894251155492,
+ 24.652559469965652
+ ],
+ [
+ 65.41409982807123,
+ 24.4579117350372
+ ],
+ [
+ 65.52894251155492,
+ 24.263264000108748
+ ],
+ [
+ 65.75862787852226,
+ 24.263264000108748
+ ],
+ [
+ 65.87347056200595,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 24.847207204894108
+ ],
+ [
+ 65.75862787852226,
+ 25.04185493982256
+ ],
+ [
+ 65.52894251155492,
+ 25.04185493982256
+ ],
+ [
+ 65.41409982807123,
+ 24.847207204894108
+ ],
+ [
+ 65.52894251155492,
+ 24.652559469965656
+ ],
+ [
+ 65.75862787852226,
+ 24.652559469965656
+ ],
+ [
+ 65.87347056200595,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 25.236502674751016
+ ],
+ [
+ 65.75862787852226,
+ 25.431150409679468
+ ],
+ [
+ 65.52894251155492,
+ 25.431150409679468
+ ],
+ [
+ 65.41409982807123,
+ 25.236502674751016
+ ],
+ [
+ 65.52894251155492,
+ 25.041854939822564
+ ],
+ [
+ 65.75862787852226,
+ 25.041854939822564
+ ],
+ [
+ 65.87347056200595,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 25.62579814460792
+ ],
+ [
+ 65.75862787852226,
+ 25.820445879536372
+ ],
+ [
+ 65.52894251155492,
+ 25.820445879536372
+ ],
+ [
+ 65.41409982807123,
+ 25.62579814460792
+ ],
+ [
+ 65.52894251155492,
+ 25.431150409679468
+ ],
+ [
+ 65.75862787852226,
+ 25.431150409679468
+ ],
+ [
+ 65.87347056200595,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 26.015093614464828
+ ],
+ [
+ 65.75862787852226,
+ 26.20974134939328
+ ],
+ [
+ 65.52894251155492,
+ 26.20974134939328
+ ],
+ [
+ 65.41409982807123,
+ 26.015093614464828
+ ],
+ [
+ 65.52894251155492,
+ 25.820445879536376
+ ],
+ [
+ 65.75862787852226,
+ 25.820445879536376
+ ],
+ [
+ 65.87347056200595,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 26.404389084321735
+ ],
+ [
+ 65.75862787852226,
+ 26.599036819250188
+ ],
+ [
+ 65.52894251155492,
+ 26.599036819250188
+ ],
+ [
+ 65.41409982807123,
+ 26.404389084321735
+ ],
+ [
+ 65.52894251155492,
+ 26.209741349393283
+ ],
+ [
+ 65.75862787852226,
+ 26.209741349393283
+ ],
+ [
+ 65.87347056200595,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 26.79368455417864
+ ],
+ [
+ 65.75862787852226,
+ 26.988332289107092
+ ],
+ [
+ 65.52894251155492,
+ 26.988332289107092
+ ],
+ [
+ 65.41409982807123,
+ 26.79368455417864
+ ],
+ [
+ 65.52894251155492,
+ 26.599036819250188
+ ],
+ [
+ 65.75862787852226,
+ 26.599036819250188
+ ],
+ [
+ 65.87347056200595,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 27.182980024035547
+ ],
+ [
+ 65.75862787852226,
+ 27.377627758964
+ ],
+ [
+ 65.52894251155492,
+ 27.377627758964
+ ],
+ [
+ 65.41409982807123,
+ 27.182980024035547
+ ],
+ [
+ 65.52894251155492,
+ 26.988332289107095
+ ],
+ [
+ 65.75862787852226,
+ 26.988332289107095
+ ],
+ [
+ 65.87347056200595,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 27.572275493892455
+ ],
+ [
+ 65.75862787852226,
+ 27.766923228820907
+ ],
+ [
+ 65.52894251155492,
+ 27.766923228820907
+ ],
+ [
+ 65.41409982807123,
+ 27.572275493892455
+ ],
+ [
+ 65.52894251155492,
+ 27.377627758964003
+ ],
+ [
+ 65.75862787852226,
+ 27.377627758964003
+ ],
+ [
+ 65.87347056200595,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 27.96157096374936
+ ],
+ [
+ 65.75862787852226,
+ 28.15621869867781
+ ],
+ [
+ 65.52894251155492,
+ 28.15621869867781
+ ],
+ [
+ 65.41409982807123,
+ 27.96157096374936
+ ],
+ [
+ 65.52894251155492,
+ 27.766923228820907
+ ],
+ [
+ 65.75862787852226,
+ 27.766923228820907
+ ],
+ [
+ 65.87347056200595,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 28.350866433606267
+ ],
+ [
+ 65.75862787852226,
+ 28.54551416853472
+ ],
+ [
+ 65.52894251155492,
+ 28.54551416853472
+ ],
+ [
+ 65.41409982807123,
+ 28.350866433606267
+ ],
+ [
+ 65.52894251155492,
+ 28.156218698677815
+ ],
+ [
+ 65.75862787852226,
+ 28.156218698677815
+ ],
+ [
+ 65.87347056200595,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 28.74016190346317
+ ],
+ [
+ 65.75862787852226,
+ 28.934809638391624
+ ],
+ [
+ 65.52894251155492,
+ 28.934809638391624
+ ],
+ [
+ 65.41409982807123,
+ 28.74016190346317
+ ],
+ [
+ 65.52894251155492,
+ 28.54551416853472
+ ],
+ [
+ 65.75862787852226,
+ 28.54551416853472
+ ],
+ [
+ 65.87347056200595,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 29.12945737332008
+ ],
+ [
+ 65.75862787852226,
+ 29.32410510824853
+ ],
+ [
+ 65.52894251155492,
+ 29.32410510824853
+ ],
+ [
+ 65.41409982807123,
+ 29.12945737332008
+ ],
+ [
+ 65.52894251155492,
+ 28.934809638391627
+ ],
+ [
+ 65.75862787852226,
+ 28.934809638391627
+ ],
+ [
+ 65.87347056200595,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 29.518752843176983
+ ],
+ [
+ 65.75862787852226,
+ 29.713400578105436
+ ],
+ [
+ 65.52894251155492,
+ 29.713400578105436
+ ],
+ [
+ 65.41409982807123,
+ 29.518752843176983
+ ],
+ [
+ 65.52894251155492,
+ 29.32410510824853
+ ],
+ [
+ 65.75862787852226,
+ 29.32410510824853
+ ],
+ [
+ 65.87347056200595,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 29.90804831303389
+ ],
+ [
+ 65.75862787852226,
+ 30.102696047962343
+ ],
+ [
+ 65.52894251155492,
+ 30.102696047962343
+ ],
+ [
+ 65.41409982807123,
+ 29.90804831303389
+ ],
+ [
+ 65.52894251155492,
+ 29.71340057810544
+ ],
+ [
+ 65.75862787852226,
+ 29.71340057810544
+ ],
+ [
+ 65.87347056200595,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 30.297343782890795
+ ],
+ [
+ 65.75862787852226,
+ 30.491991517819248
+ ],
+ [
+ 65.52894251155492,
+ 30.491991517819248
+ ],
+ [
+ 65.41409982807123,
+ 30.297343782890795
+ ],
+ [
+ 65.52894251155492,
+ 30.102696047962343
+ ],
+ [
+ 65.75862787852226,
+ 30.102696047962343
+ ],
+ [
+ 65.87347056200595,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 30.686639252747703
+ ],
+ [
+ 65.75862787852226,
+ 30.881286987676155
+ ],
+ [
+ 65.52894251155492,
+ 30.881286987676155
+ ],
+ [
+ 65.41409982807123,
+ 30.686639252747703
+ ],
+ [
+ 65.52894251155492,
+ 30.49199151781925
+ ],
+ [
+ 65.75862787852226,
+ 30.49199151781925
+ ],
+ [
+ 65.87347056200595,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 31.07593472260461
+ ],
+ [
+ 65.75862787852226,
+ 31.270582457533063
+ ],
+ [
+ 65.52894251155492,
+ 31.270582457533063
+ ],
+ [
+ 65.41409982807123,
+ 31.07593472260461
+ ],
+ [
+ 65.52894251155492,
+ 30.88128698767616
+ ],
+ [
+ 65.75862787852226,
+ 30.88128698767616
+ ],
+ [
+ 65.87347056200595,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 31.465230192461515
+ ],
+ [
+ 65.75862787852226,
+ 31.659877927389967
+ ],
+ [
+ 65.52894251155492,
+ 31.659877927389967
+ ],
+ [
+ 65.41409982807123,
+ 31.465230192461515
+ ],
+ [
+ 65.52894251155492,
+ 31.270582457533063
+ ],
+ [
+ 65.75862787852226,
+ 31.270582457533063
+ ],
+ [
+ 65.87347056200595,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 31.854525662318423
+ ],
+ [
+ 65.75862787852226,
+ 32.049173397246875
+ ],
+ [
+ 65.52894251155492,
+ 32.049173397246875
+ ],
+ [
+ 65.41409982807123,
+ 31.854525662318423
+ ],
+ [
+ 65.52894251155492,
+ 31.65987792738997
+ ],
+ [
+ 65.75862787852226,
+ 31.65987792738997
+ ],
+ [
+ 65.87347056200595,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 32.24382113217533
+ ],
+ [
+ 65.75862787852226,
+ 32.43846886710378
+ ],
+ [
+ 65.52894251155492,
+ 32.43846886710378
+ ],
+ [
+ 65.41409982807123,
+ 32.24382113217533
+ ],
+ [
+ 65.52894251155492,
+ 32.049173397246875
+ ],
+ [
+ 65.75862787852226,
+ 32.049173397246875
+ ],
+ [
+ 65.87347056200595,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 32.63311660203224
+ ],
+ [
+ 65.75862787852226,
+ 32.82776433696069
+ ],
+ [
+ 65.52894251155492,
+ 32.82776433696069
+ ],
+ [
+ 65.41409982807123,
+ 32.63311660203224
+ ],
+ [
+ 65.52894251155492,
+ 32.438468867103786
+ ],
+ [
+ 65.75862787852226,
+ 32.438468867103786
+ ],
+ [
+ 65.87347056200595,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 33.02241207188914
+ ],
+ [
+ 65.75862787852226,
+ 33.217059806817595
+ ],
+ [
+ 65.52894251155492,
+ 33.217059806817595
+ ],
+ [
+ 65.41409982807123,
+ 33.02241207188914
+ ],
+ [
+ 65.52894251155492,
+ 32.82776433696069
+ ],
+ [
+ 65.75862787852226,
+ 32.82776433696069
+ ],
+ [
+ 65.87347056200595,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 33.41170754174605
+ ],
+ [
+ 65.75862787852226,
+ 33.6063552766745
+ ],
+ [
+ 65.52894251155492,
+ 33.6063552766745
+ ],
+ [
+ 65.41409982807123,
+ 33.41170754174605
+ ],
+ [
+ 65.52894251155492,
+ 33.217059806817595
+ ],
+ [
+ 65.75862787852226,
+ 33.217059806817595
+ ],
+ [
+ 65.87347056200595,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 33.80100301160295
+ ],
+ [
+ 65.75862787852226,
+ 33.9956507465314
+ ],
+ [
+ 65.52894251155492,
+ 33.9956507465314
+ ],
+ [
+ 65.41409982807123,
+ 33.80100301160295
+ ],
+ [
+ 65.52894251155492,
+ 33.6063552766745
+ ],
+ [
+ 65.75862787852226,
+ 33.6063552766745
+ ],
+ [
+ 65.87347056200595,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 34.190298481459855
+ ],
+ [
+ 65.75862787852226,
+ 34.38494621638831
+ ],
+ [
+ 65.52894251155492,
+ 34.38494621638831
+ ],
+ [
+ 65.41409982807123,
+ 34.190298481459855
+ ],
+ [
+ 65.52894251155492,
+ 33.9956507465314
+ ],
+ [
+ 65.75862787852226,
+ 33.9956507465314
+ ],
+ [
+ 65.87347056200595,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 34.57959395131677
+ ],
+ [
+ 65.75862787852226,
+ 34.77424168624522
+ ],
+ [
+ 65.52894251155492,
+ 34.77424168624522
+ ],
+ [
+ 65.41409982807123,
+ 34.57959395131677
+ ],
+ [
+ 65.52894251155492,
+ 34.384946216388315
+ ],
+ [
+ 65.75862787852226,
+ 34.384946216388315
+ ],
+ [
+ 65.87347056200595,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 34.96888942117368
+ ],
+ [
+ 65.75862787852226,
+ 35.16353715610213
+ ],
+ [
+ 65.52894251155492,
+ 35.16353715610213
+ ],
+ [
+ 65.41409982807123,
+ 34.96888942117368
+ ],
+ [
+ 65.52894251155492,
+ 34.774241686245226
+ ],
+ [
+ 65.75862787852226,
+ 34.774241686245226
+ ],
+ [
+ 65.87347056200595,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 35.35818489103058
+ ],
+ [
+ 65.75862787852226,
+ 35.552832625959034
+ ],
+ [
+ 65.52894251155492,
+ 35.552832625959034
+ ],
+ [
+ 65.41409982807123,
+ 35.35818489103058
+ ],
+ [
+ 65.52894251155492,
+ 35.16353715610213
+ ],
+ [
+ 65.75862787852226,
+ 35.16353715610213
+ ],
+ [
+ 65.87347056200595,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 35.74748036088749
+ ],
+ [
+ 65.75862787852226,
+ 35.94212809581594
+ ],
+ [
+ 65.52894251155492,
+ 35.94212809581594
+ ],
+ [
+ 65.41409982807123,
+ 35.74748036088749
+ ],
+ [
+ 65.52894251155492,
+ 35.552832625959034
+ ],
+ [
+ 65.75862787852226,
+ 35.552832625959034
+ ],
+ [
+ 65.87347056200595,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 36.13677583074439
+ ],
+ [
+ 65.75862787852226,
+ 36.33142356567284
+ ],
+ [
+ 65.52894251155492,
+ 36.33142356567284
+ ],
+ [
+ 65.41409982807123,
+ 36.13677583074439
+ ],
+ [
+ 65.52894251155492,
+ 35.94212809581594
+ ],
+ [
+ 65.75862787852226,
+ 35.94212809581594
+ ],
+ [
+ 65.87347056200595,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 36.526071300601295
+ ],
+ [
+ 65.75862787852226,
+ 36.72071903552975
+ ],
+ [
+ 65.52894251155492,
+ 36.72071903552975
+ ],
+ [
+ 65.41409982807123,
+ 36.526071300601295
+ ],
+ [
+ 65.52894251155492,
+ 36.33142356567284
+ ],
+ [
+ 65.75862787852226,
+ 36.33142356567284
+ ],
+ [
+ 65.87347056200595,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 36.915366770458206
+ ],
+ [
+ 65.75862787852226,
+ 37.11001450538666
+ ],
+ [
+ 65.52894251155492,
+ 37.11001450538666
+ ],
+ [
+ 65.41409982807123,
+ 36.915366770458206
+ ],
+ [
+ 65.52894251155492,
+ 36.720719035529754
+ ],
+ [
+ 65.75862787852226,
+ 36.720719035529754
+ ],
+ [
+ 65.87347056200595,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 37.30466224031511
+ ],
+ [
+ 65.75862787852226,
+ 37.49930997524356
+ ],
+ [
+ 65.52894251155492,
+ 37.49930997524356
+ ],
+ [
+ 65.41409982807123,
+ 37.30466224031511
+ ],
+ [
+ 65.52894251155492,
+ 37.11001450538666
+ ],
+ [
+ 65.75862787852226,
+ 37.11001450538666
+ ],
+ [
+ 65.87347056200595,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 37.69395771017202
+ ],
+ [
+ 65.75862787852226,
+ 37.888605445100474
+ ],
+ [
+ 65.52894251155492,
+ 37.888605445100474
+ ],
+ [
+ 65.41409982807123,
+ 37.69395771017202
+ ],
+ [
+ 65.52894251155492,
+ 37.49930997524357
+ ],
+ [
+ 65.75862787852226,
+ 37.49930997524357
+ ],
+ [
+ 65.87347056200595,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 38.083253180028926
+ ],
+ [
+ 65.75862787852226,
+ 38.27790091495738
+ ],
+ [
+ 65.52894251155492,
+ 38.27790091495738
+ ],
+ [
+ 65.41409982807123,
+ 38.083253180028926
+ ],
+ [
+ 65.52894251155492,
+ 37.888605445100474
+ ],
+ [
+ 65.75862787852226,
+ 37.888605445100474
+ ],
+ [
+ 65.87347056200595,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 38.47254864988583
+ ],
+ [
+ 65.75862787852226,
+ 38.66719638481428
+ ],
+ [
+ 65.52894251155492,
+ 38.66719638481428
+ ],
+ [
+ 65.41409982807123,
+ 38.47254864988583
+ ],
+ [
+ 65.52894251155492,
+ 38.27790091495738
+ ],
+ [
+ 65.75862787852226,
+ 38.27790091495738
+ ],
+ [
+ 65.87347056200595,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 38.861844119742734
+ ],
+ [
+ 65.75862787852226,
+ 39.05649185467119
+ ],
+ [
+ 65.52894251155492,
+ 39.05649185467119
+ ],
+ [
+ 65.41409982807123,
+ 38.861844119742734
+ ],
+ [
+ 65.52894251155492,
+ 38.66719638481428
+ ],
+ [
+ 65.75862787852226,
+ 38.66719638481428
+ ],
+ [
+ 65.87347056200595,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 39.25113958959964
+ ],
+ [
+ 65.75862787852226,
+ 39.44578732452809
+ ],
+ [
+ 65.52894251155492,
+ 39.44578732452809
+ ],
+ [
+ 65.41409982807123,
+ 39.25113958959964
+ ],
+ [
+ 65.52894251155492,
+ 39.05649185467119
+ ],
+ [
+ 65.75862787852226,
+ 39.05649185467119
+ ],
+ [
+ 65.87347056200595,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 39.64043505945655
+ ],
+ [
+ 65.75862787852226,
+ 39.835082794385
+ ],
+ [
+ 65.52894251155492,
+ 39.835082794385
+ ],
+ [
+ 65.41409982807123,
+ 39.64043505945655
+ ],
+ [
+ 65.52894251155492,
+ 39.4457873245281
+ ],
+ [
+ 65.75862787852226,
+ 39.4457873245281
+ ],
+ [
+ 65.87347056200595,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 40.029730529313454
+ ],
+ [
+ 65.75862787852226,
+ 40.224378264241906
+ ],
+ [
+ 65.52894251155492,
+ 40.224378264241906
+ ],
+ [
+ 65.41409982807123,
+ 40.029730529313454
+ ],
+ [
+ 65.52894251155492,
+ 39.835082794385
+ ],
+ [
+ 65.75862787852226,
+ 39.835082794385
+ ],
+ [
+ 65.87347056200595,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 40.419025999170366
+ ],
+ [
+ 65.75862787852226,
+ 40.61367373409882
+ ],
+ [
+ 65.52894251155492,
+ 40.61367373409882
+ ],
+ [
+ 65.41409982807123,
+ 40.419025999170366
+ ],
+ [
+ 65.52894251155492,
+ 40.22437826424191
+ ],
+ [
+ 65.75862787852226,
+ 40.22437826424191
+ ],
+ [
+ 65.87347056200595,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 40.80832146902727
+ ],
+ [
+ 65.75862787852226,
+ 41.00296920395572
+ ],
+ [
+ 65.52894251155492,
+ 41.00296920395572
+ ],
+ [
+ 65.41409982807123,
+ 40.80832146902727
+ ],
+ [
+ 65.52894251155492,
+ 40.61367373409882
+ ],
+ [
+ 65.75862787852226,
+ 40.61367373409882
+ ],
+ [
+ 65.87347056200595,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 41.197616938884174
+ ],
+ [
+ 65.75862787852226,
+ 41.392264673812626
+ ],
+ [
+ 65.52894251155492,
+ 41.392264673812626
+ ],
+ [
+ 65.41409982807123,
+ 41.197616938884174
+ ],
+ [
+ 65.52894251155492,
+ 41.00296920395572
+ ],
+ [
+ 65.75862787852226,
+ 41.00296920395572
+ ],
+ [
+ 65.87347056200595,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 41.58691240874108
+ ],
+ [
+ 65.75862787852226,
+ 41.78156014366953
+ ],
+ [
+ 65.52894251155492,
+ 41.78156014366953
+ ],
+ [
+ 65.41409982807123,
+ 41.58691240874108
+ ],
+ [
+ 65.52894251155492,
+ 41.392264673812626
+ ],
+ [
+ 65.75862787852226,
+ 41.392264673812626
+ ],
+ [
+ 65.87347056200595,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 41.97620787859798
+ ],
+ [
+ 65.75862787852226,
+ 42.170855613526435
+ ],
+ [
+ 65.52894251155492,
+ 42.170855613526435
+ ],
+ [
+ 65.41409982807123,
+ 41.97620787859798
+ ],
+ [
+ 65.52894251155492,
+ 41.78156014366953
+ ],
+ [
+ 65.75862787852226,
+ 41.78156014366953
+ ],
+ [
+ 65.87347056200595,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 42.365503348454894
+ ],
+ [
+ 65.75862787852226,
+ 42.560151083383346
+ ],
+ [
+ 65.52894251155492,
+ 42.560151083383346
+ ],
+ [
+ 65.41409982807123,
+ 42.365503348454894
+ ],
+ [
+ 65.52894251155492,
+ 42.17085561352644
+ ],
+ [
+ 65.75862787852226,
+ 42.17085561352644
+ ],
+ [
+ 65.87347056200595,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 42.754798818311805
+ ],
+ [
+ 65.75862787852226,
+ 42.94944655324026
+ ],
+ [
+ 65.52894251155492,
+ 42.94944655324026
+ ],
+ [
+ 65.41409982807123,
+ 42.754798818311805
+ ],
+ [
+ 65.52894251155492,
+ 42.56015108338335
+ ],
+ [
+ 65.75862787852226,
+ 42.56015108338335
+ ],
+ [
+ 65.87347056200595,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 43.14409428816871
+ ],
+ [
+ 65.75862787852226,
+ 43.33874202309716
+ ],
+ [
+ 65.52894251155492,
+ 43.33874202309716
+ ],
+ [
+ 65.41409982807123,
+ 43.14409428816871
+ ],
+ [
+ 65.52894251155492,
+ 42.94944655324026
+ ],
+ [
+ 65.75862787852226,
+ 42.94944655324026
+ ],
+ [
+ 65.87347056200595,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 43.53338975802561
+ ],
+ [
+ 65.75862787852226,
+ 43.728037492954066
+ ],
+ [
+ 65.52894251155492,
+ 43.728037492954066
+ ],
+ [
+ 65.41409982807123,
+ 43.53338975802561
+ ],
+ [
+ 65.52894251155492,
+ 43.33874202309716
+ ],
+ [
+ 65.75862787852226,
+ 43.33874202309716
+ ],
+ [
+ 65.87347056200595,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 43.92268522788252
+ ],
+ [
+ 65.75862787852226,
+ 44.11733296281097
+ ],
+ [
+ 65.52894251155492,
+ 44.11733296281097
+ ],
+ [
+ 65.41409982807123,
+ 43.92268522788252
+ ],
+ [
+ 65.52894251155492,
+ 43.728037492954066
+ ],
+ [
+ 65.75862787852226,
+ 43.728037492954066
+ ],
+ [
+ 65.87347056200595,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 44.31198069773942
+ ],
+ [
+ 65.75862787852226,
+ 44.506628432667874
+ ],
+ [
+ 65.52894251155492,
+ 44.506628432667874
+ ],
+ [
+ 65.41409982807123,
+ 44.31198069773942
+ ],
+ [
+ 65.52894251155492,
+ 44.11733296281097
+ ],
+ [
+ 65.75862787852226,
+ 44.11733296281097
+ ],
+ [
+ 65.87347056200595,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 44.701276167596326
+ ],
+ [
+ 65.75862787852226,
+ 44.89592390252478
+ ],
+ [
+ 65.52894251155492,
+ 44.89592390252478
+ ],
+ [
+ 65.41409982807123,
+ 44.701276167596326
+ ],
+ [
+ 65.52894251155492,
+ 44.506628432667874
+ ],
+ [
+ 65.75862787852226,
+ 44.506628432667874
+ ],
+ [
+ 65.87347056200595,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 45.090571637453245
+ ],
+ [
+ 65.75862787852226,
+ 45.2852193723817
+ ],
+ [
+ 65.52894251155492,
+ 45.2852193723817
+ ],
+ [
+ 65.41409982807123,
+ 45.090571637453245
+ ],
+ [
+ 65.52894251155492,
+ 44.89592390252479
+ ],
+ [
+ 65.75862787852226,
+ 44.89592390252479
+ ],
+ [
+ 65.87347056200595,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 45.47986710731015
+ ],
+ [
+ 65.75862787852226,
+ 45.6745148422386
+ ],
+ [
+ 65.52894251155492,
+ 45.6745148422386
+ ],
+ [
+ 65.41409982807123,
+ 45.47986710731015
+ ],
+ [
+ 65.52894251155492,
+ 45.2852193723817
+ ],
+ [
+ 65.75862787852226,
+ 45.2852193723817
+ ],
+ [
+ 65.87347056200595,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 45.86916257716705
+ ],
+ [
+ 65.75862787852226,
+ 46.063810312095505
+ ],
+ [
+ 65.52894251155492,
+ 46.063810312095505
+ ],
+ [
+ 65.41409982807123,
+ 45.86916257716705
+ ],
+ [
+ 65.52894251155492,
+ 45.6745148422386
+ ],
+ [
+ 65.75862787852226,
+ 45.6745148422386
+ ],
+ [
+ 65.87347056200595,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 46.25845804702396
+ ],
+ [
+ 65.75862787852226,
+ 46.45310578195241
+ ],
+ [
+ 65.52894251155492,
+ 46.45310578195241
+ ],
+ [
+ 65.41409982807123,
+ 46.25845804702396
+ ],
+ [
+ 65.52894251155492,
+ 46.063810312095505
+ ],
+ [
+ 65.75862787852226,
+ 46.063810312095505
+ ],
+ [
+ 65.87347056200595,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 46.64775351688086
+ ],
+ [
+ 65.75862787852226,
+ 46.842401251809314
+ ],
+ [
+ 65.52894251155492,
+ 46.842401251809314
+ ],
+ [
+ 65.41409982807123,
+ 46.64775351688086
+ ],
+ [
+ 65.52894251155492,
+ 46.45310578195241
+ ],
+ [
+ 65.75862787852226,
+ 46.45310578195241
+ ],
+ [
+ 65.87347056200595,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 47.037048986737766
+ ],
+ [
+ 65.75862787852226,
+ 47.23169672166622
+ ],
+ [
+ 65.52894251155492,
+ 47.23169672166622
+ ],
+ [
+ 65.41409982807123,
+ 47.037048986737766
+ ],
+ [
+ 65.52894251155492,
+ 46.842401251809314
+ ],
+ [
+ 65.75862787852226,
+ 46.842401251809314
+ ],
+ [
+ 65.87347056200595,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 47.42634445659467
+ ],
+ [
+ 65.75862787852226,
+ 47.62099219152312
+ ],
+ [
+ 65.52894251155492,
+ 47.62099219152312
+ ],
+ [
+ 65.41409982807123,
+ 47.42634445659467
+ ],
+ [
+ 65.52894251155492,
+ 47.23169672166622
+ ],
+ [
+ 65.75862787852226,
+ 47.23169672166622
+ ],
+ [
+ 65.87347056200595,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 65.87347056200595,
+ 47.81563992645159
+ ],
+ [
+ 65.75862787852226,
+ 48.01028766138004
+ ],
+ [
+ 65.52894251155492,
+ 48.01028766138004
+ ],
+ [
+ 65.41409982807123,
+ 47.81563992645159
+ ],
+ [
+ 65.52894251155492,
+ 47.620992191523136
+ ],
+ [
+ 65.75862787852226,
+ 47.620992191523136
+ ],
+ [
+ 65.87347056200595,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 11.805808964687746
+ ],
+ [
+ 66.10315592897331,
+ 12.0004566996162
+ ],
+ [
+ 65.87347056200596,
+ 12.0004566996162
+ ],
+ [
+ 65.75862787852228,
+ 11.805808964687746
+ ],
+ [
+ 65.87347056200596,
+ 11.611161229759292
+ ],
+ [
+ 66.10315592897331,
+ 11.611161229759292
+ ],
+ [
+ 66.217998612457,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 12.195104434544652
+ ],
+ [
+ 66.10315592897331,
+ 12.389752169473105
+ ],
+ [
+ 65.87347056200596,
+ 12.389752169473105
+ ],
+ [
+ 65.75862787852228,
+ 12.195104434544652
+ ],
+ [
+ 65.87347056200596,
+ 12.000456699616198
+ ],
+ [
+ 66.10315592897331,
+ 12.000456699616198
+ ],
+ [
+ 66.217998612457,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 12.58439990440156
+ ],
+ [
+ 66.10315592897331,
+ 12.779047639330013
+ ],
+ [
+ 65.87347056200596,
+ 12.779047639330013
+ ],
+ [
+ 65.75862787852228,
+ 12.58439990440156
+ ],
+ [
+ 65.87347056200596,
+ 12.389752169473105
+ ],
+ [
+ 66.10315592897331,
+ 12.389752169473105
+ ],
+ [
+ 66.217998612457,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 12.973695374258465
+ ],
+ [
+ 66.10315592897331,
+ 13.16834310918692
+ ],
+ [
+ 65.87347056200596,
+ 13.16834310918692
+ ],
+ [
+ 65.75862787852228,
+ 12.973695374258465
+ ],
+ [
+ 65.87347056200596,
+ 12.779047639330011
+ ],
+ [
+ 66.10315592897331,
+ 12.779047639330011
+ ],
+ [
+ 66.217998612457,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 13.362990844115371
+ ],
+ [
+ 66.10315592897331,
+ 13.557638579043825
+ ],
+ [
+ 65.87347056200596,
+ 13.557638579043825
+ ],
+ [
+ 65.75862787852228,
+ 13.362990844115371
+ ],
+ [
+ 65.87347056200596,
+ 13.168343109186917
+ ],
+ [
+ 66.10315592897331,
+ 13.168343109186917
+ ],
+ [
+ 66.217998612457,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 13.752286313972277
+ ],
+ [
+ 66.10315592897331,
+ 13.946934048900731
+ ],
+ [
+ 65.87347056200596,
+ 13.946934048900731
+ ],
+ [
+ 65.75862787852228,
+ 13.752286313972277
+ ],
+ [
+ 65.87347056200596,
+ 13.557638579043823
+ ],
+ [
+ 66.10315592897331,
+ 13.557638579043823
+ ],
+ [
+ 66.217998612457,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 14.141581783829183
+ ],
+ [
+ 66.10315592897331,
+ 14.336229518757637
+ ],
+ [
+ 65.87347056200596,
+ 14.336229518757637
+ ],
+ [
+ 65.75862787852228,
+ 14.141581783829183
+ ],
+ [
+ 65.87347056200596,
+ 13.94693404890073
+ ],
+ [
+ 66.10315592897331,
+ 13.94693404890073
+ ],
+ [
+ 66.217998612457,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 14.530877253686091
+ ],
+ [
+ 66.10315592897331,
+ 14.725524988614545
+ ],
+ [
+ 65.87347056200596,
+ 14.725524988614545
+ ],
+ [
+ 65.75862787852228,
+ 14.530877253686091
+ ],
+ [
+ 65.87347056200596,
+ 14.336229518757637
+ ],
+ [
+ 66.10315592897331,
+ 14.336229518757637
+ ],
+ [
+ 66.217998612457,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 14.920172723542997
+ ],
+ [
+ 66.10315592897331,
+ 15.114820458471451
+ ],
+ [
+ 65.87347056200596,
+ 15.114820458471451
+ ],
+ [
+ 65.75862787852228,
+ 14.920172723542997
+ ],
+ [
+ 65.87347056200596,
+ 14.725524988614543
+ ],
+ [
+ 66.10315592897331,
+ 14.725524988614543
+ ],
+ [
+ 66.217998612457,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 15.309468193399903
+ ],
+ [
+ 66.10315592897331,
+ 15.504115928328357
+ ],
+ [
+ 65.87347056200596,
+ 15.504115928328357
+ ],
+ [
+ 65.75862787852228,
+ 15.309468193399903
+ ],
+ [
+ 65.87347056200596,
+ 15.11482045847145
+ ],
+ [
+ 66.10315592897331,
+ 15.11482045847145
+ ],
+ [
+ 66.217998612457,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 15.69876366325681
+ ],
+ [
+ 66.10315592897331,
+ 15.893411398185265
+ ],
+ [
+ 65.87347056200596,
+ 15.893411398185265
+ ],
+ [
+ 65.75862787852228,
+ 15.69876366325681
+ ],
+ [
+ 65.87347056200596,
+ 15.504115928328357
+ ],
+ [
+ 66.10315592897331,
+ 15.504115928328357
+ ],
+ [
+ 66.217998612457,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 16.088059133113717
+ ],
+ [
+ 66.10315592897331,
+ 16.28270686804217
+ ],
+ [
+ 65.87347056200596,
+ 16.28270686804217
+ ],
+ [
+ 65.75862787852228,
+ 16.088059133113717
+ ],
+ [
+ 65.87347056200596,
+ 15.893411398185263
+ ],
+ [
+ 66.10315592897331,
+ 15.893411398185263
+ ],
+ [
+ 66.217998612457,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 16.477354602970625
+ ],
+ [
+ 66.10315592897331,
+ 16.672002337899077
+ ],
+ [
+ 65.87347056200596,
+ 16.672002337899077
+ ],
+ [
+ 65.75862787852228,
+ 16.477354602970625
+ ],
+ [
+ 65.87347056200596,
+ 16.282706868042172
+ ],
+ [
+ 66.10315592897331,
+ 16.282706868042172
+ ],
+ [
+ 66.217998612457,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 16.86665007282753
+ ],
+ [
+ 66.10315592897331,
+ 17.06129780775598
+ ],
+ [
+ 65.87347056200596,
+ 17.06129780775598
+ ],
+ [
+ 65.75862787852228,
+ 16.86665007282753
+ ],
+ [
+ 65.87347056200596,
+ 16.672002337899077
+ ],
+ [
+ 66.10315592897331,
+ 16.672002337899077
+ ],
+ [
+ 66.217998612457,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 17.255945542684437
+ ],
+ [
+ 66.10315592897331,
+ 17.45059327761289
+ ],
+ [
+ 65.87347056200596,
+ 17.45059327761289
+ ],
+ [
+ 65.75862787852228,
+ 17.255945542684437
+ ],
+ [
+ 65.87347056200596,
+ 17.061297807755984
+ ],
+ [
+ 66.10315592897331,
+ 17.061297807755984
+ ],
+ [
+ 66.217998612457,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 17.64524101254134
+ ],
+ [
+ 66.10315592897331,
+ 17.839888747469793
+ ],
+ [
+ 65.87347056200596,
+ 17.839888747469793
+ ],
+ [
+ 65.75862787852228,
+ 17.64524101254134
+ ],
+ [
+ 65.87347056200596,
+ 17.45059327761289
+ ],
+ [
+ 66.10315592897331,
+ 17.45059327761289
+ ],
+ [
+ 66.217998612457,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 18.03453648239825
+ ],
+ [
+ 66.10315592897331,
+ 18.2291842173267
+ ],
+ [
+ 65.87347056200596,
+ 18.2291842173267
+ ],
+ [
+ 65.75862787852228,
+ 18.03453648239825
+ ],
+ [
+ 65.87347056200596,
+ 17.839888747469796
+ ],
+ [
+ 66.10315592897331,
+ 17.839888747469796
+ ],
+ [
+ 66.217998612457,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 18.423831952255156
+ ],
+ [
+ 66.10315592897331,
+ 18.61847968718361
+ ],
+ [
+ 65.87347056200596,
+ 18.61847968718361
+ ],
+ [
+ 65.75862787852228,
+ 18.423831952255156
+ ],
+ [
+ 65.87347056200596,
+ 18.229184217326704
+ ],
+ [
+ 66.10315592897331,
+ 18.229184217326704
+ ],
+ [
+ 66.217998612457,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 18.81312742211206
+ ],
+ [
+ 66.10315592897331,
+ 19.007775157040513
+ ],
+ [
+ 65.87347056200596,
+ 19.007775157040513
+ ],
+ [
+ 65.75862787852228,
+ 18.81312742211206
+ ],
+ [
+ 65.87347056200596,
+ 18.61847968718361
+ ],
+ [
+ 66.10315592897331,
+ 18.61847968718361
+ ],
+ [
+ 66.217998612457,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 19.20242289196897
+ ],
+ [
+ 66.10315592897331,
+ 19.39707062689742
+ ],
+ [
+ 65.87347056200596,
+ 19.39707062689742
+ ],
+ [
+ 65.75862787852228,
+ 19.20242289196897
+ ],
+ [
+ 65.87347056200596,
+ 19.007775157040516
+ ],
+ [
+ 66.10315592897331,
+ 19.007775157040516
+ ],
+ [
+ 66.217998612457,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 19.591718361825876
+ ],
+ [
+ 66.10315592897331,
+ 19.78636609675433
+ ],
+ [
+ 65.87347056200596,
+ 19.78636609675433
+ ],
+ [
+ 65.75862787852228,
+ 19.591718361825876
+ ],
+ [
+ 65.87347056200596,
+ 19.397070626897424
+ ],
+ [
+ 66.10315592897331,
+ 19.397070626897424
+ ],
+ [
+ 66.217998612457,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 19.98101383168278
+ ],
+ [
+ 66.10315592897331,
+ 20.175661566611232
+ ],
+ [
+ 65.87347056200596,
+ 20.175661566611232
+ ],
+ [
+ 65.75862787852228,
+ 19.98101383168278
+ ],
+ [
+ 65.87347056200596,
+ 19.78636609675433
+ ],
+ [
+ 66.10315592897331,
+ 19.78636609675433
+ ],
+ [
+ 66.217998612457,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 20.370309301539685
+ ],
+ [
+ 66.10315592897331,
+ 20.564957036468137
+ ],
+ [
+ 65.87347056200596,
+ 20.564957036468137
+ ],
+ [
+ 65.75862787852228,
+ 20.370309301539685
+ ],
+ [
+ 65.87347056200596,
+ 20.175661566611232
+ ],
+ [
+ 66.10315592897331,
+ 20.175661566611232
+ ],
+ [
+ 66.217998612457,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 20.759604771396592
+ ],
+ [
+ 66.10315592897331,
+ 20.954252506325044
+ ],
+ [
+ 65.87347056200596,
+ 20.954252506325044
+ ],
+ [
+ 65.75862787852228,
+ 20.759604771396592
+ ],
+ [
+ 65.87347056200596,
+ 20.56495703646814
+ ],
+ [
+ 66.10315592897331,
+ 20.56495703646814
+ ],
+ [
+ 66.217998612457,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 21.1489002412535
+ ],
+ [
+ 66.10315592897331,
+ 21.343547976181952
+ ],
+ [
+ 65.87347056200596,
+ 21.343547976181952
+ ],
+ [
+ 65.75862787852228,
+ 21.1489002412535
+ ],
+ [
+ 65.87347056200596,
+ 20.954252506325048
+ ],
+ [
+ 66.10315592897331,
+ 20.954252506325048
+ ],
+ [
+ 66.217998612457,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 21.538195711110404
+ ],
+ [
+ 66.10315592897331,
+ 21.732843446038856
+ ],
+ [
+ 65.87347056200596,
+ 21.732843446038856
+ ],
+ [
+ 65.75862787852228,
+ 21.538195711110404
+ ],
+ [
+ 65.87347056200596,
+ 21.343547976181952
+ ],
+ [
+ 66.10315592897331,
+ 21.343547976181952
+ ],
+ [
+ 66.217998612457,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 21.927491180967312
+ ],
+ [
+ 66.10315592897331,
+ 22.122138915895764
+ ],
+ [
+ 65.87347056200596,
+ 22.122138915895764
+ ],
+ [
+ 65.75862787852228,
+ 21.927491180967312
+ ],
+ [
+ 65.87347056200596,
+ 21.73284344603886
+ ],
+ [
+ 66.10315592897331,
+ 21.73284344603886
+ ],
+ [
+ 66.217998612457,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 22.31678665082422
+ ],
+ [
+ 66.10315592897331,
+ 22.511434385752672
+ ],
+ [
+ 65.87347056200596,
+ 22.511434385752672
+ ],
+ [
+ 65.75862787852228,
+ 22.31678665082422
+ ],
+ [
+ 65.87347056200596,
+ 22.122138915895768
+ ],
+ [
+ 66.10315592897331,
+ 22.122138915895768
+ ],
+ [
+ 66.217998612457,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 22.706082120681124
+ ],
+ [
+ 66.10315592897331,
+ 22.900729855609576
+ ],
+ [
+ 65.87347056200596,
+ 22.900729855609576
+ ],
+ [
+ 65.75862787852228,
+ 22.706082120681124
+ ],
+ [
+ 65.87347056200596,
+ 22.511434385752672
+ ],
+ [
+ 66.10315592897331,
+ 22.511434385752672
+ ],
+ [
+ 66.217998612457,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 23.095377590538032
+ ],
+ [
+ 66.10315592897331,
+ 23.290025325466484
+ ],
+ [
+ 65.87347056200596,
+ 23.290025325466484
+ ],
+ [
+ 65.75862787852228,
+ 23.095377590538032
+ ],
+ [
+ 65.87347056200596,
+ 22.90072985560958
+ ],
+ [
+ 66.10315592897331,
+ 22.90072985560958
+ ],
+ [
+ 66.217998612457,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 23.48467306039494
+ ],
+ [
+ 66.10315592897331,
+ 23.67932079532339
+ ],
+ [
+ 65.87347056200596,
+ 23.67932079532339
+ ],
+ [
+ 65.75862787852228,
+ 23.48467306039494
+ ],
+ [
+ 65.87347056200596,
+ 23.290025325466488
+ ],
+ [
+ 66.10315592897331,
+ 23.290025325466488
+ ],
+ [
+ 66.217998612457,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 23.873968530251844
+ ],
+ [
+ 66.10315592897331,
+ 24.068616265180296
+ ],
+ [
+ 65.87347056200596,
+ 24.068616265180296
+ ],
+ [
+ 65.75862787852228,
+ 23.873968530251844
+ ],
+ [
+ 65.87347056200596,
+ 23.67932079532339
+ ],
+ [
+ 66.10315592897331,
+ 23.67932079532339
+ ],
+ [
+ 66.217998612457,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 24.263264000108748
+ ],
+ [
+ 66.10315592897331,
+ 24.4579117350372
+ ],
+ [
+ 65.87347056200596,
+ 24.4579117350372
+ ],
+ [
+ 65.75862787852228,
+ 24.263264000108748
+ ],
+ [
+ 65.87347056200596,
+ 24.068616265180296
+ ],
+ [
+ 66.10315592897331,
+ 24.068616265180296
+ ],
+ [
+ 66.217998612457,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 24.652559469965656
+ ],
+ [
+ 66.10315592897331,
+ 24.847207204894108
+ ],
+ [
+ 65.87347056200596,
+ 24.847207204894108
+ ],
+ [
+ 65.75862787852228,
+ 24.652559469965656
+ ],
+ [
+ 65.87347056200596,
+ 24.457911735037204
+ ],
+ [
+ 66.10315592897331,
+ 24.457911735037204
+ ],
+ [
+ 66.217998612457,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 25.041854939822564
+ ],
+ [
+ 66.10315592897331,
+ 25.236502674751016
+ ],
+ [
+ 65.87347056200596,
+ 25.236502674751016
+ ],
+ [
+ 65.75862787852228,
+ 25.041854939822564
+ ],
+ [
+ 65.87347056200596,
+ 24.84720720489411
+ ],
+ [
+ 66.10315592897331,
+ 24.84720720489411
+ ],
+ [
+ 66.217998612457,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 25.431150409679468
+ ],
+ [
+ 66.10315592897331,
+ 25.62579814460792
+ ],
+ [
+ 65.87347056200596,
+ 25.62579814460792
+ ],
+ [
+ 65.75862787852228,
+ 25.431150409679468
+ ],
+ [
+ 65.87347056200596,
+ 25.236502674751016
+ ],
+ [
+ 66.10315592897331,
+ 25.236502674751016
+ ],
+ [
+ 66.217998612457,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 25.820445879536376
+ ],
+ [
+ 66.10315592897331,
+ 26.015093614464828
+ ],
+ [
+ 65.87347056200596,
+ 26.015093614464828
+ ],
+ [
+ 65.75862787852228,
+ 25.820445879536376
+ ],
+ [
+ 65.87347056200596,
+ 25.625798144607923
+ ],
+ [
+ 66.10315592897331,
+ 25.625798144607923
+ ],
+ [
+ 66.217998612457,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 26.209741349393283
+ ],
+ [
+ 66.10315592897331,
+ 26.404389084321735
+ ],
+ [
+ 65.87347056200596,
+ 26.404389084321735
+ ],
+ [
+ 65.75862787852228,
+ 26.209741349393283
+ ],
+ [
+ 65.87347056200596,
+ 26.01509361446483
+ ],
+ [
+ 66.10315592897331,
+ 26.01509361446483
+ ],
+ [
+ 66.217998612457,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 26.599036819250188
+ ],
+ [
+ 66.10315592897331,
+ 26.79368455417864
+ ],
+ [
+ 65.87347056200596,
+ 26.79368455417864
+ ],
+ [
+ 65.75862787852228,
+ 26.599036819250188
+ ],
+ [
+ 65.87347056200596,
+ 26.404389084321735
+ ],
+ [
+ 66.10315592897331,
+ 26.404389084321735
+ ],
+ [
+ 66.217998612457,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 26.988332289107095
+ ],
+ [
+ 66.10315592897331,
+ 27.182980024035547
+ ],
+ [
+ 65.87347056200596,
+ 27.182980024035547
+ ],
+ [
+ 65.75862787852228,
+ 26.988332289107095
+ ],
+ [
+ 65.87347056200596,
+ 26.793684554178643
+ ],
+ [
+ 66.10315592897331,
+ 26.793684554178643
+ ],
+ [
+ 66.217998612457,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 27.377627758964003
+ ],
+ [
+ 66.10315592897331,
+ 27.572275493892455
+ ],
+ [
+ 65.87347056200596,
+ 27.572275493892455
+ ],
+ [
+ 65.75862787852228,
+ 27.377627758964003
+ ],
+ [
+ 65.87347056200596,
+ 27.18298002403555
+ ],
+ [
+ 66.10315592897331,
+ 27.18298002403555
+ ],
+ [
+ 66.217998612457,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 27.766923228820907
+ ],
+ [
+ 66.10315592897331,
+ 27.96157096374936
+ ],
+ [
+ 65.87347056200596,
+ 27.96157096374936
+ ],
+ [
+ 65.75862787852228,
+ 27.766923228820907
+ ],
+ [
+ 65.87347056200596,
+ 27.572275493892455
+ ],
+ [
+ 66.10315592897331,
+ 27.572275493892455
+ ],
+ [
+ 66.217998612457,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 28.156218698677815
+ ],
+ [
+ 66.10315592897331,
+ 28.350866433606267
+ ],
+ [
+ 65.87347056200596,
+ 28.350866433606267
+ ],
+ [
+ 65.75862787852228,
+ 28.156218698677815
+ ],
+ [
+ 65.87347056200596,
+ 27.961570963749363
+ ],
+ [
+ 66.10315592897331,
+ 27.961570963749363
+ ],
+ [
+ 66.217998612457,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 28.54551416853472
+ ],
+ [
+ 66.10315592897331,
+ 28.74016190346317
+ ],
+ [
+ 65.87347056200596,
+ 28.74016190346317
+ ],
+ [
+ 65.75862787852228,
+ 28.54551416853472
+ ],
+ [
+ 65.87347056200596,
+ 28.350866433606267
+ ],
+ [
+ 66.10315592897331,
+ 28.350866433606267
+ ],
+ [
+ 66.217998612457,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 28.934809638391627
+ ],
+ [
+ 66.10315592897331,
+ 29.12945737332008
+ ],
+ [
+ 65.87347056200596,
+ 29.12945737332008
+ ],
+ [
+ 65.75862787852228,
+ 28.934809638391627
+ ],
+ [
+ 65.87347056200596,
+ 28.740161903463175
+ ],
+ [
+ 66.10315592897331,
+ 28.740161903463175
+ ],
+ [
+ 66.217998612457,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 29.32410510824853
+ ],
+ [
+ 66.10315592897331,
+ 29.518752843176983
+ ],
+ [
+ 65.87347056200596,
+ 29.518752843176983
+ ],
+ [
+ 65.75862787852228,
+ 29.32410510824853
+ ],
+ [
+ 65.87347056200596,
+ 29.12945737332008
+ ],
+ [
+ 66.10315592897331,
+ 29.12945737332008
+ ],
+ [
+ 66.217998612457,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 29.71340057810544
+ ],
+ [
+ 66.10315592897331,
+ 29.90804831303389
+ ],
+ [
+ 65.87347056200596,
+ 29.90804831303389
+ ],
+ [
+ 65.75862787852228,
+ 29.71340057810544
+ ],
+ [
+ 65.87347056200596,
+ 29.518752843176987
+ ],
+ [
+ 66.10315592897331,
+ 29.518752843176987
+ ],
+ [
+ 66.217998612457,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 30.102696047962343
+ ],
+ [
+ 66.10315592897331,
+ 30.297343782890795
+ ],
+ [
+ 65.87347056200596,
+ 30.297343782890795
+ ],
+ [
+ 65.75862787852228,
+ 30.102696047962343
+ ],
+ [
+ 65.87347056200596,
+ 29.90804831303389
+ ],
+ [
+ 66.10315592897331,
+ 29.90804831303389
+ ],
+ [
+ 66.217998612457,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 30.49199151781925
+ ],
+ [
+ 66.10315592897331,
+ 30.686639252747703
+ ],
+ [
+ 65.87347056200596,
+ 30.686639252747703
+ ],
+ [
+ 65.75862787852228,
+ 30.49199151781925
+ ],
+ [
+ 65.87347056200596,
+ 30.2973437828908
+ ],
+ [
+ 66.10315592897331,
+ 30.2973437828908
+ ],
+ [
+ 66.217998612457,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 30.88128698767616
+ ],
+ [
+ 66.10315592897331,
+ 31.07593472260461
+ ],
+ [
+ 65.87347056200596,
+ 31.07593472260461
+ ],
+ [
+ 65.75862787852228,
+ 30.88128698767616
+ ],
+ [
+ 65.87347056200596,
+ 30.686639252747707
+ ],
+ [
+ 66.10315592897331,
+ 30.686639252747707
+ ],
+ [
+ 66.217998612457,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 31.270582457533063
+ ],
+ [
+ 66.10315592897331,
+ 31.465230192461515
+ ],
+ [
+ 65.87347056200596,
+ 31.465230192461515
+ ],
+ [
+ 65.75862787852228,
+ 31.270582457533063
+ ],
+ [
+ 65.87347056200596,
+ 31.07593472260461
+ ],
+ [
+ 66.10315592897331,
+ 31.07593472260461
+ ],
+ [
+ 66.217998612457,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 31.65987792738997
+ ],
+ [
+ 66.10315592897331,
+ 31.854525662318423
+ ],
+ [
+ 65.87347056200596,
+ 31.854525662318423
+ ],
+ [
+ 65.75862787852228,
+ 31.65987792738997
+ ],
+ [
+ 65.87347056200596,
+ 31.46523019246152
+ ],
+ [
+ 66.10315592897331,
+ 31.46523019246152
+ ],
+ [
+ 66.217998612457,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 32.049173397246875
+ ],
+ [
+ 66.10315592897331,
+ 32.24382113217533
+ ],
+ [
+ 65.87347056200596,
+ 32.24382113217533
+ ],
+ [
+ 65.75862787852228,
+ 32.049173397246875
+ ],
+ [
+ 65.87347056200596,
+ 31.854525662318423
+ ],
+ [
+ 66.10315592897331,
+ 31.854525662318423
+ ],
+ [
+ 66.217998612457,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 32.438468867103786
+ ],
+ [
+ 66.10315592897331,
+ 32.63311660203224
+ ],
+ [
+ 65.87347056200596,
+ 32.63311660203224
+ ],
+ [
+ 65.75862787852228,
+ 32.438468867103786
+ ],
+ [
+ 65.87347056200596,
+ 32.243821132175334
+ ],
+ [
+ 66.10315592897331,
+ 32.243821132175334
+ ],
+ [
+ 66.217998612457,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 32.82776433696069
+ ],
+ [
+ 66.10315592897331,
+ 33.02241207188914
+ ],
+ [
+ 65.87347056200596,
+ 33.02241207188914
+ ],
+ [
+ 65.75862787852228,
+ 32.82776433696069
+ ],
+ [
+ 65.87347056200596,
+ 32.63311660203224
+ ],
+ [
+ 66.10315592897331,
+ 32.63311660203224
+ ],
+ [
+ 66.217998612457,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 33.217059806817595
+ ],
+ [
+ 66.10315592897331,
+ 33.41170754174605
+ ],
+ [
+ 65.87347056200596,
+ 33.41170754174605
+ ],
+ [
+ 65.75862787852228,
+ 33.217059806817595
+ ],
+ [
+ 65.87347056200596,
+ 33.02241207188914
+ ],
+ [
+ 66.10315592897331,
+ 33.02241207188914
+ ],
+ [
+ 66.217998612457,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 33.6063552766745
+ ],
+ [
+ 66.10315592897331,
+ 33.80100301160295
+ ],
+ [
+ 65.87347056200596,
+ 33.80100301160295
+ ],
+ [
+ 65.75862787852228,
+ 33.6063552766745
+ ],
+ [
+ 65.87347056200596,
+ 33.41170754174605
+ ],
+ [
+ 66.10315592897331,
+ 33.41170754174605
+ ],
+ [
+ 66.217998612457,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 33.9956507465314
+ ],
+ [
+ 66.10315592897331,
+ 34.190298481459855
+ ],
+ [
+ 65.87347056200596,
+ 34.190298481459855
+ ],
+ [
+ 65.75862787852228,
+ 33.9956507465314
+ ],
+ [
+ 65.87347056200596,
+ 33.80100301160295
+ ],
+ [
+ 66.10315592897331,
+ 33.80100301160295
+ ],
+ [
+ 66.217998612457,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 34.384946216388315
+ ],
+ [
+ 66.10315592897331,
+ 34.57959395131677
+ ],
+ [
+ 65.87347056200596,
+ 34.57959395131677
+ ],
+ [
+ 65.75862787852228,
+ 34.384946216388315
+ ],
+ [
+ 65.87347056200596,
+ 34.19029848145986
+ ],
+ [
+ 66.10315592897331,
+ 34.19029848145986
+ ],
+ [
+ 66.217998612457,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 34.774241686245226
+ ],
+ [
+ 66.10315592897331,
+ 34.96888942117368
+ ],
+ [
+ 65.87347056200596,
+ 34.96888942117368
+ ],
+ [
+ 65.75862787852228,
+ 34.774241686245226
+ ],
+ [
+ 65.87347056200596,
+ 34.579593951316774
+ ],
+ [
+ 66.10315592897331,
+ 34.579593951316774
+ ],
+ [
+ 66.217998612457,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 35.16353715610213
+ ],
+ [
+ 66.10315592897331,
+ 35.35818489103058
+ ],
+ [
+ 65.87347056200596,
+ 35.35818489103058
+ ],
+ [
+ 65.75862787852228,
+ 35.16353715610213
+ ],
+ [
+ 65.87347056200596,
+ 34.96888942117368
+ ],
+ [
+ 66.10315592897331,
+ 34.96888942117368
+ ],
+ [
+ 66.217998612457,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 35.552832625959034
+ ],
+ [
+ 66.10315592897331,
+ 35.74748036088749
+ ],
+ [
+ 65.87347056200596,
+ 35.74748036088749
+ ],
+ [
+ 65.75862787852228,
+ 35.552832625959034
+ ],
+ [
+ 65.87347056200596,
+ 35.35818489103058
+ ],
+ [
+ 66.10315592897331,
+ 35.35818489103058
+ ],
+ [
+ 66.217998612457,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 35.94212809581594
+ ],
+ [
+ 66.10315592897331,
+ 36.13677583074439
+ ],
+ [
+ 65.87347056200596,
+ 36.13677583074439
+ ],
+ [
+ 65.75862787852228,
+ 35.94212809581594
+ ],
+ [
+ 65.87347056200596,
+ 35.74748036088749
+ ],
+ [
+ 66.10315592897331,
+ 35.74748036088749
+ ],
+ [
+ 66.217998612457,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 36.33142356567284
+ ],
+ [
+ 66.10315592897331,
+ 36.526071300601295
+ ],
+ [
+ 65.87347056200596,
+ 36.526071300601295
+ ],
+ [
+ 65.75862787852228,
+ 36.33142356567284
+ ],
+ [
+ 65.87347056200596,
+ 36.13677583074439
+ ],
+ [
+ 66.10315592897331,
+ 36.13677583074439
+ ],
+ [
+ 66.217998612457,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 36.720719035529754
+ ],
+ [
+ 66.10315592897331,
+ 36.915366770458206
+ ],
+ [
+ 65.87347056200596,
+ 36.915366770458206
+ ],
+ [
+ 65.75862787852228,
+ 36.720719035529754
+ ],
+ [
+ 65.87347056200596,
+ 36.5260713006013
+ ],
+ [
+ 66.10315592897331,
+ 36.5260713006013
+ ],
+ [
+ 66.217998612457,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 37.11001450538666
+ ],
+ [
+ 66.10315592897331,
+ 37.30466224031511
+ ],
+ [
+ 65.87347056200596,
+ 37.30466224031511
+ ],
+ [
+ 65.75862787852228,
+ 37.11001450538666
+ ],
+ [
+ 65.87347056200596,
+ 36.915366770458206
+ ],
+ [
+ 66.10315592897331,
+ 36.915366770458206
+ ],
+ [
+ 66.217998612457,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 37.49930997524357
+ ],
+ [
+ 66.10315592897331,
+ 37.69395771017202
+ ],
+ [
+ 65.87347056200596,
+ 37.69395771017202
+ ],
+ [
+ 65.75862787852228,
+ 37.49930997524357
+ ],
+ [
+ 65.87347056200596,
+ 37.30466224031512
+ ],
+ [
+ 66.10315592897331,
+ 37.30466224031512
+ ],
+ [
+ 66.217998612457,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 37.888605445100474
+ ],
+ [
+ 66.10315592897331,
+ 38.083253180028926
+ ],
+ [
+ 65.87347056200596,
+ 38.083253180028926
+ ],
+ [
+ 65.75862787852228,
+ 37.888605445100474
+ ],
+ [
+ 65.87347056200596,
+ 37.69395771017202
+ ],
+ [
+ 66.10315592897331,
+ 37.69395771017202
+ ],
+ [
+ 66.217998612457,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 38.27790091495738
+ ],
+ [
+ 66.10315592897331,
+ 38.47254864988583
+ ],
+ [
+ 65.87347056200596,
+ 38.47254864988583
+ ],
+ [
+ 65.75862787852228,
+ 38.27790091495738
+ ],
+ [
+ 65.87347056200596,
+ 38.083253180028926
+ ],
+ [
+ 66.10315592897331,
+ 38.083253180028926
+ ],
+ [
+ 66.217998612457,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 38.66719638481428
+ ],
+ [
+ 66.10315592897331,
+ 38.861844119742734
+ ],
+ [
+ 65.87347056200596,
+ 38.861844119742734
+ ],
+ [
+ 65.75862787852228,
+ 38.66719638481428
+ ],
+ [
+ 65.87347056200596,
+ 38.47254864988583
+ ],
+ [
+ 66.10315592897331,
+ 38.47254864988583
+ ],
+ [
+ 66.217998612457,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 39.05649185467119
+ ],
+ [
+ 66.10315592897331,
+ 39.25113958959964
+ ],
+ [
+ 65.87347056200596,
+ 39.25113958959964
+ ],
+ [
+ 65.75862787852228,
+ 39.05649185467119
+ ],
+ [
+ 65.87347056200596,
+ 38.861844119742734
+ ],
+ [
+ 66.10315592897331,
+ 38.861844119742734
+ ],
+ [
+ 66.217998612457,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 39.4457873245281
+ ],
+ [
+ 66.10315592897331,
+ 39.64043505945655
+ ],
+ [
+ 65.87347056200596,
+ 39.64043505945655
+ ],
+ [
+ 65.75862787852228,
+ 39.4457873245281
+ ],
+ [
+ 65.87347056200596,
+ 39.251139589599646
+ ],
+ [
+ 66.10315592897331,
+ 39.251139589599646
+ ],
+ [
+ 66.217998612457,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 39.835082794385
+ ],
+ [
+ 66.10315592897331,
+ 40.029730529313454
+ ],
+ [
+ 65.87347056200596,
+ 40.029730529313454
+ ],
+ [
+ 65.75862787852228,
+ 39.835082794385
+ ],
+ [
+ 65.87347056200596,
+ 39.64043505945655
+ ],
+ [
+ 66.10315592897331,
+ 39.64043505945655
+ ],
+ [
+ 66.217998612457,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 40.22437826424191
+ ],
+ [
+ 66.10315592897331,
+ 40.419025999170366
+ ],
+ [
+ 65.87347056200596,
+ 40.419025999170366
+ ],
+ [
+ 65.75862787852228,
+ 40.22437826424191
+ ],
+ [
+ 65.87347056200596,
+ 40.02973052931346
+ ],
+ [
+ 66.10315592897331,
+ 40.02973052931346
+ ],
+ [
+ 66.217998612457,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 40.61367373409882
+ ],
+ [
+ 66.10315592897331,
+ 40.80832146902727
+ ],
+ [
+ 65.87347056200596,
+ 40.80832146902727
+ ],
+ [
+ 65.75862787852228,
+ 40.61367373409882
+ ],
+ [
+ 65.87347056200596,
+ 40.419025999170366
+ ],
+ [
+ 66.10315592897331,
+ 40.419025999170366
+ ],
+ [
+ 66.217998612457,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 41.00296920395572
+ ],
+ [
+ 66.10315592897331,
+ 41.197616938884174
+ ],
+ [
+ 65.87347056200596,
+ 41.197616938884174
+ ],
+ [
+ 65.75862787852228,
+ 41.00296920395572
+ ],
+ [
+ 65.87347056200596,
+ 40.80832146902727
+ ],
+ [
+ 66.10315592897331,
+ 40.80832146902727
+ ],
+ [
+ 66.217998612457,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 41.392264673812626
+ ],
+ [
+ 66.10315592897331,
+ 41.58691240874108
+ ],
+ [
+ 65.87347056200596,
+ 41.58691240874108
+ ],
+ [
+ 65.75862787852228,
+ 41.392264673812626
+ ],
+ [
+ 65.87347056200596,
+ 41.197616938884174
+ ],
+ [
+ 66.10315592897331,
+ 41.197616938884174
+ ],
+ [
+ 66.217998612457,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 41.78156014366953
+ ],
+ [
+ 66.10315592897331,
+ 41.97620787859798
+ ],
+ [
+ 65.87347056200596,
+ 41.97620787859798
+ ],
+ [
+ 65.75862787852228,
+ 41.78156014366953
+ ],
+ [
+ 65.87347056200596,
+ 41.58691240874108
+ ],
+ [
+ 66.10315592897331,
+ 41.58691240874108
+ ],
+ [
+ 66.217998612457,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 42.17085561352644
+ ],
+ [
+ 66.10315592897331,
+ 42.365503348454894
+ ],
+ [
+ 65.87347056200596,
+ 42.365503348454894
+ ],
+ [
+ 65.75862787852228,
+ 42.17085561352644
+ ],
+ [
+ 65.87347056200596,
+ 41.97620787859799
+ ],
+ [
+ 66.10315592897331,
+ 41.97620787859799
+ ],
+ [
+ 66.217998612457,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 42.56015108338335
+ ],
+ [
+ 66.10315592897331,
+ 42.754798818311805
+ ],
+ [
+ 65.87347056200596,
+ 42.754798818311805
+ ],
+ [
+ 65.75862787852228,
+ 42.56015108338335
+ ],
+ [
+ 65.87347056200596,
+ 42.3655033484549
+ ],
+ [
+ 66.10315592897331,
+ 42.3655033484549
+ ],
+ [
+ 66.217998612457,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 42.94944655324026
+ ],
+ [
+ 66.10315592897331,
+ 43.14409428816871
+ ],
+ [
+ 65.87347056200596,
+ 43.14409428816871
+ ],
+ [
+ 65.75862787852228,
+ 42.94944655324026
+ ],
+ [
+ 65.87347056200596,
+ 42.754798818311805
+ ],
+ [
+ 66.10315592897331,
+ 42.754798818311805
+ ],
+ [
+ 66.217998612457,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 43.33874202309716
+ ],
+ [
+ 66.10315592897331,
+ 43.53338975802561
+ ],
+ [
+ 65.87347056200596,
+ 43.53338975802561
+ ],
+ [
+ 65.75862787852228,
+ 43.33874202309716
+ ],
+ [
+ 65.87347056200596,
+ 43.14409428816871
+ ],
+ [
+ 66.10315592897331,
+ 43.14409428816871
+ ],
+ [
+ 66.217998612457,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 43.728037492954066
+ ],
+ [
+ 66.10315592897331,
+ 43.92268522788252
+ ],
+ [
+ 65.87347056200596,
+ 43.92268522788252
+ ],
+ [
+ 65.75862787852228,
+ 43.728037492954066
+ ],
+ [
+ 65.87347056200596,
+ 43.53338975802561
+ ],
+ [
+ 66.10315592897331,
+ 43.53338975802561
+ ],
+ [
+ 66.217998612457,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 44.11733296281097
+ ],
+ [
+ 66.10315592897331,
+ 44.31198069773942
+ ],
+ [
+ 65.87347056200596,
+ 44.31198069773942
+ ],
+ [
+ 65.75862787852228,
+ 44.11733296281097
+ ],
+ [
+ 65.87347056200596,
+ 43.92268522788252
+ ],
+ [
+ 66.10315592897331,
+ 43.92268522788252
+ ],
+ [
+ 66.217998612457,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 44.506628432667874
+ ],
+ [
+ 66.10315592897331,
+ 44.701276167596326
+ ],
+ [
+ 65.87347056200596,
+ 44.701276167596326
+ ],
+ [
+ 65.75862787852228,
+ 44.506628432667874
+ ],
+ [
+ 65.87347056200596,
+ 44.31198069773942
+ ],
+ [
+ 66.10315592897331,
+ 44.31198069773942
+ ],
+ [
+ 66.217998612457,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 44.89592390252479
+ ],
+ [
+ 66.10315592897331,
+ 45.090571637453245
+ ],
+ [
+ 65.87347056200596,
+ 45.090571637453245
+ ],
+ [
+ 65.75862787852228,
+ 44.89592390252479
+ ],
+ [
+ 65.87347056200596,
+ 44.70127616759634
+ ],
+ [
+ 66.10315592897331,
+ 44.70127616759634
+ ],
+ [
+ 66.217998612457,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 45.2852193723817
+ ],
+ [
+ 66.10315592897331,
+ 45.47986710731015
+ ],
+ [
+ 65.87347056200596,
+ 45.47986710731015
+ ],
+ [
+ 65.75862787852228,
+ 45.2852193723817
+ ],
+ [
+ 65.87347056200596,
+ 45.090571637453245
+ ],
+ [
+ 66.10315592897331,
+ 45.090571637453245
+ ],
+ [
+ 66.217998612457,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 45.6745148422386
+ ],
+ [
+ 66.10315592897331,
+ 45.86916257716705
+ ],
+ [
+ 65.87347056200596,
+ 45.86916257716705
+ ],
+ [
+ 65.75862787852228,
+ 45.6745148422386
+ ],
+ [
+ 65.87347056200596,
+ 45.47986710731015
+ ],
+ [
+ 66.10315592897331,
+ 45.47986710731015
+ ],
+ [
+ 66.217998612457,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 46.063810312095505
+ ],
+ [
+ 66.10315592897331,
+ 46.25845804702396
+ ],
+ [
+ 65.87347056200596,
+ 46.25845804702396
+ ],
+ [
+ 65.75862787852228,
+ 46.063810312095505
+ ],
+ [
+ 65.87347056200596,
+ 45.86916257716705
+ ],
+ [
+ 66.10315592897331,
+ 45.86916257716705
+ ],
+ [
+ 66.217998612457,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 46.45310578195241
+ ],
+ [
+ 66.10315592897331,
+ 46.64775351688086
+ ],
+ [
+ 65.87347056200596,
+ 46.64775351688086
+ ],
+ [
+ 65.75862787852228,
+ 46.45310578195241
+ ],
+ [
+ 65.87347056200596,
+ 46.25845804702396
+ ],
+ [
+ 66.10315592897331,
+ 46.25845804702396
+ ],
+ [
+ 66.217998612457,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 46.842401251809314
+ ],
+ [
+ 66.10315592897331,
+ 47.037048986737766
+ ],
+ [
+ 65.87347056200596,
+ 47.037048986737766
+ ],
+ [
+ 65.75862787852228,
+ 46.842401251809314
+ ],
+ [
+ 65.87347056200596,
+ 46.64775351688086
+ ],
+ [
+ 66.10315592897331,
+ 46.64775351688086
+ ],
+ [
+ 66.217998612457,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 47.23169672166622
+ ],
+ [
+ 66.10315592897331,
+ 47.42634445659467
+ ],
+ [
+ 65.87347056200596,
+ 47.42634445659467
+ ],
+ [
+ 65.75862787852228,
+ 47.23169672166622
+ ],
+ [
+ 65.87347056200596,
+ 47.037048986737766
+ ],
+ [
+ 66.10315592897331,
+ 47.037048986737766
+ ],
+ [
+ 66.217998612457,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.217998612457,
+ 47.620992191523136
+ ],
+ [
+ 66.10315592897331,
+ 47.81563992645159
+ ],
+ [
+ 65.87347056200596,
+ 47.81563992645159
+ ],
+ [
+ 65.75862787852228,
+ 47.620992191523136
+ ],
+ [
+ 65.87347056200596,
+ 47.426344456594684
+ ],
+ [
+ 66.10315592897331,
+ 47.426344456594684
+ ],
+ [
+ 66.217998612457,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 12.0004566996162
+ ],
+ [
+ 66.44768397942434,
+ 12.195104434544653
+ ],
+ [
+ 66.217998612457,
+ 12.195104434544653
+ ],
+ [
+ 66.10315592897331,
+ 12.0004566996162
+ ],
+ [
+ 66.217998612457,
+ 11.805808964687746
+ ],
+ [
+ 66.44768397942434,
+ 11.805808964687746
+ ],
+ [
+ 66.56252666290803,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 12.389752169473105
+ ],
+ [
+ 66.44768397942434,
+ 12.58439990440156
+ ],
+ [
+ 66.217998612457,
+ 12.58439990440156
+ ],
+ [
+ 66.10315592897331,
+ 12.389752169473105
+ ],
+ [
+ 66.217998612457,
+ 12.195104434544652
+ ],
+ [
+ 66.44768397942434,
+ 12.195104434544652
+ ],
+ [
+ 66.56252666290803,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 12.779047639330013
+ ],
+ [
+ 66.44768397942434,
+ 12.973695374258467
+ ],
+ [
+ 66.217998612457,
+ 12.973695374258467
+ ],
+ [
+ 66.10315592897331,
+ 12.779047639330013
+ ],
+ [
+ 66.217998612457,
+ 12.58439990440156
+ ],
+ [
+ 66.44768397942434,
+ 12.58439990440156
+ ],
+ [
+ 66.56252666290803,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 13.16834310918692
+ ],
+ [
+ 66.44768397942434,
+ 13.362990844115373
+ ],
+ [
+ 66.217998612457,
+ 13.362990844115373
+ ],
+ [
+ 66.10315592897331,
+ 13.16834310918692
+ ],
+ [
+ 66.217998612457,
+ 12.973695374258465
+ ],
+ [
+ 66.44768397942434,
+ 12.973695374258465
+ ],
+ [
+ 66.56252666290803,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 13.557638579043825
+ ],
+ [
+ 66.44768397942434,
+ 13.752286313972279
+ ],
+ [
+ 66.217998612457,
+ 13.752286313972279
+ ],
+ [
+ 66.10315592897331,
+ 13.557638579043825
+ ],
+ [
+ 66.217998612457,
+ 13.362990844115371
+ ],
+ [
+ 66.44768397942434,
+ 13.362990844115371
+ ],
+ [
+ 66.56252666290803,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 13.946934048900731
+ ],
+ [
+ 66.44768397942434,
+ 14.141581783829185
+ ],
+ [
+ 66.217998612457,
+ 14.141581783829185
+ ],
+ [
+ 66.10315592897331,
+ 13.946934048900731
+ ],
+ [
+ 66.217998612457,
+ 13.752286313972277
+ ],
+ [
+ 66.44768397942434,
+ 13.752286313972277
+ ],
+ [
+ 66.56252666290803,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 14.336229518757637
+ ],
+ [
+ 66.44768397942434,
+ 14.530877253686091
+ ],
+ [
+ 66.217998612457,
+ 14.530877253686091
+ ],
+ [
+ 66.10315592897331,
+ 14.336229518757637
+ ],
+ [
+ 66.217998612457,
+ 14.141581783829183
+ ],
+ [
+ 66.44768397942434,
+ 14.141581783829183
+ ],
+ [
+ 66.56252666290803,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 14.725524988614545
+ ],
+ [
+ 66.44768397942434,
+ 14.920172723542999
+ ],
+ [
+ 66.217998612457,
+ 14.920172723542999
+ ],
+ [
+ 66.10315592897331,
+ 14.725524988614545
+ ],
+ [
+ 66.217998612457,
+ 14.530877253686091
+ ],
+ [
+ 66.44768397942434,
+ 14.530877253686091
+ ],
+ [
+ 66.56252666290803,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 15.114820458471451
+ ],
+ [
+ 66.44768397942434,
+ 15.309468193399905
+ ],
+ [
+ 66.217998612457,
+ 15.309468193399905
+ ],
+ [
+ 66.10315592897331,
+ 15.114820458471451
+ ],
+ [
+ 66.217998612457,
+ 14.920172723542997
+ ],
+ [
+ 66.44768397942434,
+ 14.920172723542997
+ ],
+ [
+ 66.56252666290803,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 15.504115928328357
+ ],
+ [
+ 66.44768397942434,
+ 15.69876366325681
+ ],
+ [
+ 66.217998612457,
+ 15.69876366325681
+ ],
+ [
+ 66.10315592897331,
+ 15.504115928328357
+ ],
+ [
+ 66.217998612457,
+ 15.309468193399903
+ ],
+ [
+ 66.44768397942434,
+ 15.309468193399903
+ ],
+ [
+ 66.56252666290803,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 15.893411398185265
+ ],
+ [
+ 66.44768397942434,
+ 16.088059133113717
+ ],
+ [
+ 66.217998612457,
+ 16.088059133113717
+ ],
+ [
+ 66.10315592897331,
+ 15.893411398185265
+ ],
+ [
+ 66.217998612457,
+ 15.69876366325681
+ ],
+ [
+ 66.44768397942434,
+ 15.69876366325681
+ ],
+ [
+ 66.56252666290803,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 16.28270686804217
+ ],
+ [
+ 66.44768397942434,
+ 16.47735460297062
+ ],
+ [
+ 66.217998612457,
+ 16.47735460297062
+ ],
+ [
+ 66.10315592897331,
+ 16.28270686804217
+ ],
+ [
+ 66.217998612457,
+ 16.088059133113717
+ ],
+ [
+ 66.44768397942434,
+ 16.088059133113717
+ ],
+ [
+ 66.56252666290803,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 16.672002337899077
+ ],
+ [
+ 66.44768397942434,
+ 16.86665007282753
+ ],
+ [
+ 66.217998612457,
+ 16.86665007282753
+ ],
+ [
+ 66.10315592897331,
+ 16.672002337899077
+ ],
+ [
+ 66.217998612457,
+ 16.477354602970625
+ ],
+ [
+ 66.44768397942434,
+ 16.477354602970625
+ ],
+ [
+ 66.56252666290803,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 17.06129780775598
+ ],
+ [
+ 66.44768397942434,
+ 17.255945542684433
+ ],
+ [
+ 66.217998612457,
+ 17.255945542684433
+ ],
+ [
+ 66.10315592897331,
+ 17.06129780775598
+ ],
+ [
+ 66.217998612457,
+ 16.86665007282753
+ ],
+ [
+ 66.44768397942434,
+ 16.86665007282753
+ ],
+ [
+ 66.56252666290803,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 17.45059327761289
+ ],
+ [
+ 66.44768397942434,
+ 17.64524101254134
+ ],
+ [
+ 66.217998612457,
+ 17.64524101254134
+ ],
+ [
+ 66.10315592897331,
+ 17.45059327761289
+ ],
+ [
+ 66.217998612457,
+ 17.255945542684437
+ ],
+ [
+ 66.44768397942434,
+ 17.255945542684437
+ ],
+ [
+ 66.56252666290803,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 17.839888747469793
+ ],
+ [
+ 66.44768397942434,
+ 18.034536482398245
+ ],
+ [
+ 66.217998612457,
+ 18.034536482398245
+ ],
+ [
+ 66.10315592897331,
+ 17.839888747469793
+ ],
+ [
+ 66.217998612457,
+ 17.64524101254134
+ ],
+ [
+ 66.44768397942434,
+ 17.64524101254134
+ ],
+ [
+ 66.56252666290803,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 18.2291842173267
+ ],
+ [
+ 66.44768397942434,
+ 18.423831952255153
+ ],
+ [
+ 66.217998612457,
+ 18.423831952255153
+ ],
+ [
+ 66.10315592897331,
+ 18.2291842173267
+ ],
+ [
+ 66.217998612457,
+ 18.03453648239825
+ ],
+ [
+ 66.44768397942434,
+ 18.03453648239825
+ ],
+ [
+ 66.56252666290803,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 18.61847968718361
+ ],
+ [
+ 66.44768397942434,
+ 18.81312742211206
+ ],
+ [
+ 66.217998612457,
+ 18.81312742211206
+ ],
+ [
+ 66.10315592897331,
+ 18.61847968718361
+ ],
+ [
+ 66.217998612457,
+ 18.423831952255156
+ ],
+ [
+ 66.44768397942434,
+ 18.423831952255156
+ ],
+ [
+ 66.56252666290803,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 19.007775157040513
+ ],
+ [
+ 66.44768397942434,
+ 19.202422891968965
+ ],
+ [
+ 66.217998612457,
+ 19.202422891968965
+ ],
+ [
+ 66.10315592897331,
+ 19.007775157040513
+ ],
+ [
+ 66.217998612457,
+ 18.81312742211206
+ ],
+ [
+ 66.44768397942434,
+ 18.81312742211206
+ ],
+ [
+ 66.56252666290803,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 19.39707062689742
+ ],
+ [
+ 66.44768397942434,
+ 19.591718361825873
+ ],
+ [
+ 66.217998612457,
+ 19.591718361825873
+ ],
+ [
+ 66.10315592897331,
+ 19.39707062689742
+ ],
+ [
+ 66.217998612457,
+ 19.20242289196897
+ ],
+ [
+ 66.44768397942434,
+ 19.20242289196897
+ ],
+ [
+ 66.56252666290803,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 19.78636609675433
+ ],
+ [
+ 66.44768397942434,
+ 19.98101383168278
+ ],
+ [
+ 66.217998612457,
+ 19.98101383168278
+ ],
+ [
+ 66.10315592897331,
+ 19.78636609675433
+ ],
+ [
+ 66.217998612457,
+ 19.591718361825876
+ ],
+ [
+ 66.44768397942434,
+ 19.591718361825876
+ ],
+ [
+ 66.56252666290803,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 20.175661566611232
+ ],
+ [
+ 66.44768397942434,
+ 20.370309301539685
+ ],
+ [
+ 66.217998612457,
+ 20.370309301539685
+ ],
+ [
+ 66.10315592897331,
+ 20.175661566611232
+ ],
+ [
+ 66.217998612457,
+ 19.98101383168278
+ ],
+ [
+ 66.44768397942434,
+ 19.98101383168278
+ ],
+ [
+ 66.56252666290803,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 20.564957036468137
+ ],
+ [
+ 66.44768397942434,
+ 20.75960477139659
+ ],
+ [
+ 66.217998612457,
+ 20.75960477139659
+ ],
+ [
+ 66.10315592897331,
+ 20.564957036468137
+ ],
+ [
+ 66.217998612457,
+ 20.370309301539685
+ ],
+ [
+ 66.44768397942434,
+ 20.370309301539685
+ ],
+ [
+ 66.56252666290803,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 20.954252506325044
+ ],
+ [
+ 66.44768397942434,
+ 21.148900241253497
+ ],
+ [
+ 66.217998612457,
+ 21.148900241253497
+ ],
+ [
+ 66.10315592897331,
+ 20.954252506325044
+ ],
+ [
+ 66.217998612457,
+ 20.759604771396592
+ ],
+ [
+ 66.44768397942434,
+ 20.759604771396592
+ ],
+ [
+ 66.56252666290803,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 21.343547976181952
+ ],
+ [
+ 66.44768397942434,
+ 21.538195711110404
+ ],
+ [
+ 66.217998612457,
+ 21.538195711110404
+ ],
+ [
+ 66.10315592897331,
+ 21.343547976181952
+ ],
+ [
+ 66.217998612457,
+ 21.1489002412535
+ ],
+ [
+ 66.44768397942434,
+ 21.1489002412535
+ ],
+ [
+ 66.56252666290803,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 21.732843446038856
+ ],
+ [
+ 66.44768397942434,
+ 21.92749118096731
+ ],
+ [
+ 66.217998612457,
+ 21.92749118096731
+ ],
+ [
+ 66.10315592897331,
+ 21.732843446038856
+ ],
+ [
+ 66.217998612457,
+ 21.538195711110404
+ ],
+ [
+ 66.44768397942434,
+ 21.538195711110404
+ ],
+ [
+ 66.56252666290803,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 22.122138915895764
+ ],
+ [
+ 66.44768397942434,
+ 22.316786650824216
+ ],
+ [
+ 66.217998612457,
+ 22.316786650824216
+ ],
+ [
+ 66.10315592897331,
+ 22.122138915895764
+ ],
+ [
+ 66.217998612457,
+ 21.927491180967312
+ ],
+ [
+ 66.44768397942434,
+ 21.927491180967312
+ ],
+ [
+ 66.56252666290803,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 22.511434385752672
+ ],
+ [
+ 66.44768397942434,
+ 22.706082120681124
+ ],
+ [
+ 66.217998612457,
+ 22.706082120681124
+ ],
+ [
+ 66.10315592897331,
+ 22.511434385752672
+ ],
+ [
+ 66.217998612457,
+ 22.31678665082422
+ ],
+ [
+ 66.44768397942434,
+ 22.31678665082422
+ ],
+ [
+ 66.56252666290803,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 22.900729855609576
+ ],
+ [
+ 66.44768397942434,
+ 23.09537759053803
+ ],
+ [
+ 66.217998612457,
+ 23.09537759053803
+ ],
+ [
+ 66.10315592897331,
+ 22.900729855609576
+ ],
+ [
+ 66.217998612457,
+ 22.706082120681124
+ ],
+ [
+ 66.44768397942434,
+ 22.706082120681124
+ ],
+ [
+ 66.56252666290803,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 23.290025325466484
+ ],
+ [
+ 66.44768397942434,
+ 23.484673060394936
+ ],
+ [
+ 66.217998612457,
+ 23.484673060394936
+ ],
+ [
+ 66.10315592897331,
+ 23.290025325466484
+ ],
+ [
+ 66.217998612457,
+ 23.095377590538032
+ ],
+ [
+ 66.44768397942434,
+ 23.095377590538032
+ ],
+ [
+ 66.56252666290803,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 23.67932079532339
+ ],
+ [
+ 66.44768397942434,
+ 23.873968530251844
+ ],
+ [
+ 66.217998612457,
+ 23.873968530251844
+ ],
+ [
+ 66.10315592897331,
+ 23.67932079532339
+ ],
+ [
+ 66.217998612457,
+ 23.48467306039494
+ ],
+ [
+ 66.44768397942434,
+ 23.48467306039494
+ ],
+ [
+ 66.56252666290803,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 24.068616265180296
+ ],
+ [
+ 66.44768397942434,
+ 24.263264000108748
+ ],
+ [
+ 66.217998612457,
+ 24.263264000108748
+ ],
+ [
+ 66.10315592897331,
+ 24.068616265180296
+ ],
+ [
+ 66.217998612457,
+ 23.873968530251844
+ ],
+ [
+ 66.44768397942434,
+ 23.873968530251844
+ ],
+ [
+ 66.56252666290803,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 24.4579117350372
+ ],
+ [
+ 66.44768397942434,
+ 24.652559469965652
+ ],
+ [
+ 66.217998612457,
+ 24.652559469965652
+ ],
+ [
+ 66.10315592897331,
+ 24.4579117350372
+ ],
+ [
+ 66.217998612457,
+ 24.263264000108748
+ ],
+ [
+ 66.44768397942434,
+ 24.263264000108748
+ ],
+ [
+ 66.56252666290803,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 24.847207204894108
+ ],
+ [
+ 66.44768397942434,
+ 25.04185493982256
+ ],
+ [
+ 66.217998612457,
+ 25.04185493982256
+ ],
+ [
+ 66.10315592897331,
+ 24.847207204894108
+ ],
+ [
+ 66.217998612457,
+ 24.652559469965656
+ ],
+ [
+ 66.44768397942434,
+ 24.652559469965656
+ ],
+ [
+ 66.56252666290803,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 25.236502674751016
+ ],
+ [
+ 66.44768397942434,
+ 25.431150409679468
+ ],
+ [
+ 66.217998612457,
+ 25.431150409679468
+ ],
+ [
+ 66.10315592897331,
+ 25.236502674751016
+ ],
+ [
+ 66.217998612457,
+ 25.041854939822564
+ ],
+ [
+ 66.44768397942434,
+ 25.041854939822564
+ ],
+ [
+ 66.56252666290803,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 25.62579814460792
+ ],
+ [
+ 66.44768397942434,
+ 25.820445879536372
+ ],
+ [
+ 66.217998612457,
+ 25.820445879536372
+ ],
+ [
+ 66.10315592897331,
+ 25.62579814460792
+ ],
+ [
+ 66.217998612457,
+ 25.431150409679468
+ ],
+ [
+ 66.44768397942434,
+ 25.431150409679468
+ ],
+ [
+ 66.56252666290803,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 26.015093614464828
+ ],
+ [
+ 66.44768397942434,
+ 26.20974134939328
+ ],
+ [
+ 66.217998612457,
+ 26.20974134939328
+ ],
+ [
+ 66.10315592897331,
+ 26.015093614464828
+ ],
+ [
+ 66.217998612457,
+ 25.820445879536376
+ ],
+ [
+ 66.44768397942434,
+ 25.820445879536376
+ ],
+ [
+ 66.56252666290803,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 26.404389084321735
+ ],
+ [
+ 66.44768397942434,
+ 26.599036819250188
+ ],
+ [
+ 66.217998612457,
+ 26.599036819250188
+ ],
+ [
+ 66.10315592897331,
+ 26.404389084321735
+ ],
+ [
+ 66.217998612457,
+ 26.209741349393283
+ ],
+ [
+ 66.44768397942434,
+ 26.209741349393283
+ ],
+ [
+ 66.56252666290803,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 26.79368455417864
+ ],
+ [
+ 66.44768397942434,
+ 26.988332289107092
+ ],
+ [
+ 66.217998612457,
+ 26.988332289107092
+ ],
+ [
+ 66.10315592897331,
+ 26.79368455417864
+ ],
+ [
+ 66.217998612457,
+ 26.599036819250188
+ ],
+ [
+ 66.44768397942434,
+ 26.599036819250188
+ ],
+ [
+ 66.56252666290803,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 27.182980024035547
+ ],
+ [
+ 66.44768397942434,
+ 27.377627758964
+ ],
+ [
+ 66.217998612457,
+ 27.377627758964
+ ],
+ [
+ 66.10315592897331,
+ 27.182980024035547
+ ],
+ [
+ 66.217998612457,
+ 26.988332289107095
+ ],
+ [
+ 66.44768397942434,
+ 26.988332289107095
+ ],
+ [
+ 66.56252666290803,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 27.572275493892455
+ ],
+ [
+ 66.44768397942434,
+ 27.766923228820907
+ ],
+ [
+ 66.217998612457,
+ 27.766923228820907
+ ],
+ [
+ 66.10315592897331,
+ 27.572275493892455
+ ],
+ [
+ 66.217998612457,
+ 27.377627758964003
+ ],
+ [
+ 66.44768397942434,
+ 27.377627758964003
+ ],
+ [
+ 66.56252666290803,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 27.96157096374936
+ ],
+ [
+ 66.44768397942434,
+ 28.15621869867781
+ ],
+ [
+ 66.217998612457,
+ 28.15621869867781
+ ],
+ [
+ 66.10315592897331,
+ 27.96157096374936
+ ],
+ [
+ 66.217998612457,
+ 27.766923228820907
+ ],
+ [
+ 66.44768397942434,
+ 27.766923228820907
+ ],
+ [
+ 66.56252666290803,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 28.350866433606267
+ ],
+ [
+ 66.44768397942434,
+ 28.54551416853472
+ ],
+ [
+ 66.217998612457,
+ 28.54551416853472
+ ],
+ [
+ 66.10315592897331,
+ 28.350866433606267
+ ],
+ [
+ 66.217998612457,
+ 28.156218698677815
+ ],
+ [
+ 66.44768397942434,
+ 28.156218698677815
+ ],
+ [
+ 66.56252666290803,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 28.74016190346317
+ ],
+ [
+ 66.44768397942434,
+ 28.934809638391624
+ ],
+ [
+ 66.217998612457,
+ 28.934809638391624
+ ],
+ [
+ 66.10315592897331,
+ 28.74016190346317
+ ],
+ [
+ 66.217998612457,
+ 28.54551416853472
+ ],
+ [
+ 66.44768397942434,
+ 28.54551416853472
+ ],
+ [
+ 66.56252666290803,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 29.12945737332008
+ ],
+ [
+ 66.44768397942434,
+ 29.32410510824853
+ ],
+ [
+ 66.217998612457,
+ 29.32410510824853
+ ],
+ [
+ 66.10315592897331,
+ 29.12945737332008
+ ],
+ [
+ 66.217998612457,
+ 28.934809638391627
+ ],
+ [
+ 66.44768397942434,
+ 28.934809638391627
+ ],
+ [
+ 66.56252666290803,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 29.518752843176983
+ ],
+ [
+ 66.44768397942434,
+ 29.713400578105436
+ ],
+ [
+ 66.217998612457,
+ 29.713400578105436
+ ],
+ [
+ 66.10315592897331,
+ 29.518752843176983
+ ],
+ [
+ 66.217998612457,
+ 29.32410510824853
+ ],
+ [
+ 66.44768397942434,
+ 29.32410510824853
+ ],
+ [
+ 66.56252666290803,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 29.90804831303389
+ ],
+ [
+ 66.44768397942434,
+ 30.102696047962343
+ ],
+ [
+ 66.217998612457,
+ 30.102696047962343
+ ],
+ [
+ 66.10315592897331,
+ 29.90804831303389
+ ],
+ [
+ 66.217998612457,
+ 29.71340057810544
+ ],
+ [
+ 66.44768397942434,
+ 29.71340057810544
+ ],
+ [
+ 66.56252666290803,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 30.297343782890795
+ ],
+ [
+ 66.44768397942434,
+ 30.491991517819248
+ ],
+ [
+ 66.217998612457,
+ 30.491991517819248
+ ],
+ [
+ 66.10315592897331,
+ 30.297343782890795
+ ],
+ [
+ 66.217998612457,
+ 30.102696047962343
+ ],
+ [
+ 66.44768397942434,
+ 30.102696047962343
+ ],
+ [
+ 66.56252666290803,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 30.686639252747703
+ ],
+ [
+ 66.44768397942434,
+ 30.881286987676155
+ ],
+ [
+ 66.217998612457,
+ 30.881286987676155
+ ],
+ [
+ 66.10315592897331,
+ 30.686639252747703
+ ],
+ [
+ 66.217998612457,
+ 30.49199151781925
+ ],
+ [
+ 66.44768397942434,
+ 30.49199151781925
+ ],
+ [
+ 66.56252666290803,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 31.07593472260461
+ ],
+ [
+ 66.44768397942434,
+ 31.270582457533063
+ ],
+ [
+ 66.217998612457,
+ 31.270582457533063
+ ],
+ [
+ 66.10315592897331,
+ 31.07593472260461
+ ],
+ [
+ 66.217998612457,
+ 30.88128698767616
+ ],
+ [
+ 66.44768397942434,
+ 30.88128698767616
+ ],
+ [
+ 66.56252666290803,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 31.465230192461515
+ ],
+ [
+ 66.44768397942434,
+ 31.659877927389967
+ ],
+ [
+ 66.217998612457,
+ 31.659877927389967
+ ],
+ [
+ 66.10315592897331,
+ 31.465230192461515
+ ],
+ [
+ 66.217998612457,
+ 31.270582457533063
+ ],
+ [
+ 66.44768397942434,
+ 31.270582457533063
+ ],
+ [
+ 66.56252666290803,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 31.854525662318423
+ ],
+ [
+ 66.44768397942434,
+ 32.049173397246875
+ ],
+ [
+ 66.217998612457,
+ 32.049173397246875
+ ],
+ [
+ 66.10315592897331,
+ 31.854525662318423
+ ],
+ [
+ 66.217998612457,
+ 31.65987792738997
+ ],
+ [
+ 66.44768397942434,
+ 31.65987792738997
+ ],
+ [
+ 66.56252666290803,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 32.24382113217533
+ ],
+ [
+ 66.44768397942434,
+ 32.43846886710378
+ ],
+ [
+ 66.217998612457,
+ 32.43846886710378
+ ],
+ [
+ 66.10315592897331,
+ 32.24382113217533
+ ],
+ [
+ 66.217998612457,
+ 32.049173397246875
+ ],
+ [
+ 66.44768397942434,
+ 32.049173397246875
+ ],
+ [
+ 66.56252666290803,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 32.63311660203224
+ ],
+ [
+ 66.44768397942434,
+ 32.82776433696069
+ ],
+ [
+ 66.217998612457,
+ 32.82776433696069
+ ],
+ [
+ 66.10315592897331,
+ 32.63311660203224
+ ],
+ [
+ 66.217998612457,
+ 32.438468867103786
+ ],
+ [
+ 66.44768397942434,
+ 32.438468867103786
+ ],
+ [
+ 66.56252666290803,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 33.02241207188914
+ ],
+ [
+ 66.44768397942434,
+ 33.217059806817595
+ ],
+ [
+ 66.217998612457,
+ 33.217059806817595
+ ],
+ [
+ 66.10315592897331,
+ 33.02241207188914
+ ],
+ [
+ 66.217998612457,
+ 32.82776433696069
+ ],
+ [
+ 66.44768397942434,
+ 32.82776433696069
+ ],
+ [
+ 66.56252666290803,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 33.41170754174605
+ ],
+ [
+ 66.44768397942434,
+ 33.6063552766745
+ ],
+ [
+ 66.217998612457,
+ 33.6063552766745
+ ],
+ [
+ 66.10315592897331,
+ 33.41170754174605
+ ],
+ [
+ 66.217998612457,
+ 33.217059806817595
+ ],
+ [
+ 66.44768397942434,
+ 33.217059806817595
+ ],
+ [
+ 66.56252666290803,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 33.80100301160295
+ ],
+ [
+ 66.44768397942434,
+ 33.9956507465314
+ ],
+ [
+ 66.217998612457,
+ 33.9956507465314
+ ],
+ [
+ 66.10315592897331,
+ 33.80100301160295
+ ],
+ [
+ 66.217998612457,
+ 33.6063552766745
+ ],
+ [
+ 66.44768397942434,
+ 33.6063552766745
+ ],
+ [
+ 66.56252666290803,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 34.190298481459855
+ ],
+ [
+ 66.44768397942434,
+ 34.38494621638831
+ ],
+ [
+ 66.217998612457,
+ 34.38494621638831
+ ],
+ [
+ 66.10315592897331,
+ 34.190298481459855
+ ],
+ [
+ 66.217998612457,
+ 33.9956507465314
+ ],
+ [
+ 66.44768397942434,
+ 33.9956507465314
+ ],
+ [
+ 66.56252666290803,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 34.57959395131677
+ ],
+ [
+ 66.44768397942434,
+ 34.77424168624522
+ ],
+ [
+ 66.217998612457,
+ 34.77424168624522
+ ],
+ [
+ 66.10315592897331,
+ 34.57959395131677
+ ],
+ [
+ 66.217998612457,
+ 34.384946216388315
+ ],
+ [
+ 66.44768397942434,
+ 34.384946216388315
+ ],
+ [
+ 66.56252666290803,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 34.96888942117368
+ ],
+ [
+ 66.44768397942434,
+ 35.16353715610213
+ ],
+ [
+ 66.217998612457,
+ 35.16353715610213
+ ],
+ [
+ 66.10315592897331,
+ 34.96888942117368
+ ],
+ [
+ 66.217998612457,
+ 34.774241686245226
+ ],
+ [
+ 66.44768397942434,
+ 34.774241686245226
+ ],
+ [
+ 66.56252666290803,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 35.35818489103058
+ ],
+ [
+ 66.44768397942434,
+ 35.552832625959034
+ ],
+ [
+ 66.217998612457,
+ 35.552832625959034
+ ],
+ [
+ 66.10315592897331,
+ 35.35818489103058
+ ],
+ [
+ 66.217998612457,
+ 35.16353715610213
+ ],
+ [
+ 66.44768397942434,
+ 35.16353715610213
+ ],
+ [
+ 66.56252666290803,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 35.74748036088749
+ ],
+ [
+ 66.44768397942434,
+ 35.94212809581594
+ ],
+ [
+ 66.217998612457,
+ 35.94212809581594
+ ],
+ [
+ 66.10315592897331,
+ 35.74748036088749
+ ],
+ [
+ 66.217998612457,
+ 35.552832625959034
+ ],
+ [
+ 66.44768397942434,
+ 35.552832625959034
+ ],
+ [
+ 66.56252666290803,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 36.13677583074439
+ ],
+ [
+ 66.44768397942434,
+ 36.33142356567284
+ ],
+ [
+ 66.217998612457,
+ 36.33142356567284
+ ],
+ [
+ 66.10315592897331,
+ 36.13677583074439
+ ],
+ [
+ 66.217998612457,
+ 35.94212809581594
+ ],
+ [
+ 66.44768397942434,
+ 35.94212809581594
+ ],
+ [
+ 66.56252666290803,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 36.526071300601295
+ ],
+ [
+ 66.44768397942434,
+ 36.72071903552975
+ ],
+ [
+ 66.217998612457,
+ 36.72071903552975
+ ],
+ [
+ 66.10315592897331,
+ 36.526071300601295
+ ],
+ [
+ 66.217998612457,
+ 36.33142356567284
+ ],
+ [
+ 66.44768397942434,
+ 36.33142356567284
+ ],
+ [
+ 66.56252666290803,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 36.915366770458206
+ ],
+ [
+ 66.44768397942434,
+ 37.11001450538666
+ ],
+ [
+ 66.217998612457,
+ 37.11001450538666
+ ],
+ [
+ 66.10315592897331,
+ 36.915366770458206
+ ],
+ [
+ 66.217998612457,
+ 36.720719035529754
+ ],
+ [
+ 66.44768397942434,
+ 36.720719035529754
+ ],
+ [
+ 66.56252666290803,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 37.30466224031511
+ ],
+ [
+ 66.44768397942434,
+ 37.49930997524356
+ ],
+ [
+ 66.217998612457,
+ 37.49930997524356
+ ],
+ [
+ 66.10315592897331,
+ 37.30466224031511
+ ],
+ [
+ 66.217998612457,
+ 37.11001450538666
+ ],
+ [
+ 66.44768397942434,
+ 37.11001450538666
+ ],
+ [
+ 66.56252666290803,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 37.69395771017202
+ ],
+ [
+ 66.44768397942434,
+ 37.888605445100474
+ ],
+ [
+ 66.217998612457,
+ 37.888605445100474
+ ],
+ [
+ 66.10315592897331,
+ 37.69395771017202
+ ],
+ [
+ 66.217998612457,
+ 37.49930997524357
+ ],
+ [
+ 66.44768397942434,
+ 37.49930997524357
+ ],
+ [
+ 66.56252666290803,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 38.083253180028926
+ ],
+ [
+ 66.44768397942434,
+ 38.27790091495738
+ ],
+ [
+ 66.217998612457,
+ 38.27790091495738
+ ],
+ [
+ 66.10315592897331,
+ 38.083253180028926
+ ],
+ [
+ 66.217998612457,
+ 37.888605445100474
+ ],
+ [
+ 66.44768397942434,
+ 37.888605445100474
+ ],
+ [
+ 66.56252666290803,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 38.47254864988583
+ ],
+ [
+ 66.44768397942434,
+ 38.66719638481428
+ ],
+ [
+ 66.217998612457,
+ 38.66719638481428
+ ],
+ [
+ 66.10315592897331,
+ 38.47254864988583
+ ],
+ [
+ 66.217998612457,
+ 38.27790091495738
+ ],
+ [
+ 66.44768397942434,
+ 38.27790091495738
+ ],
+ [
+ 66.56252666290803,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 38.861844119742734
+ ],
+ [
+ 66.44768397942434,
+ 39.05649185467119
+ ],
+ [
+ 66.217998612457,
+ 39.05649185467119
+ ],
+ [
+ 66.10315592897331,
+ 38.861844119742734
+ ],
+ [
+ 66.217998612457,
+ 38.66719638481428
+ ],
+ [
+ 66.44768397942434,
+ 38.66719638481428
+ ],
+ [
+ 66.56252666290803,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 39.25113958959964
+ ],
+ [
+ 66.44768397942434,
+ 39.44578732452809
+ ],
+ [
+ 66.217998612457,
+ 39.44578732452809
+ ],
+ [
+ 66.10315592897331,
+ 39.25113958959964
+ ],
+ [
+ 66.217998612457,
+ 39.05649185467119
+ ],
+ [
+ 66.44768397942434,
+ 39.05649185467119
+ ],
+ [
+ 66.56252666290803,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 39.64043505945655
+ ],
+ [
+ 66.44768397942434,
+ 39.835082794385
+ ],
+ [
+ 66.217998612457,
+ 39.835082794385
+ ],
+ [
+ 66.10315592897331,
+ 39.64043505945655
+ ],
+ [
+ 66.217998612457,
+ 39.4457873245281
+ ],
+ [
+ 66.44768397942434,
+ 39.4457873245281
+ ],
+ [
+ 66.56252666290803,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 40.029730529313454
+ ],
+ [
+ 66.44768397942434,
+ 40.224378264241906
+ ],
+ [
+ 66.217998612457,
+ 40.224378264241906
+ ],
+ [
+ 66.10315592897331,
+ 40.029730529313454
+ ],
+ [
+ 66.217998612457,
+ 39.835082794385
+ ],
+ [
+ 66.44768397942434,
+ 39.835082794385
+ ],
+ [
+ 66.56252666290803,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 40.419025999170366
+ ],
+ [
+ 66.44768397942434,
+ 40.61367373409882
+ ],
+ [
+ 66.217998612457,
+ 40.61367373409882
+ ],
+ [
+ 66.10315592897331,
+ 40.419025999170366
+ ],
+ [
+ 66.217998612457,
+ 40.22437826424191
+ ],
+ [
+ 66.44768397942434,
+ 40.22437826424191
+ ],
+ [
+ 66.56252666290803,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 40.80832146902727
+ ],
+ [
+ 66.44768397942434,
+ 41.00296920395572
+ ],
+ [
+ 66.217998612457,
+ 41.00296920395572
+ ],
+ [
+ 66.10315592897331,
+ 40.80832146902727
+ ],
+ [
+ 66.217998612457,
+ 40.61367373409882
+ ],
+ [
+ 66.44768397942434,
+ 40.61367373409882
+ ],
+ [
+ 66.56252666290803,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 41.197616938884174
+ ],
+ [
+ 66.44768397942434,
+ 41.392264673812626
+ ],
+ [
+ 66.217998612457,
+ 41.392264673812626
+ ],
+ [
+ 66.10315592897331,
+ 41.197616938884174
+ ],
+ [
+ 66.217998612457,
+ 41.00296920395572
+ ],
+ [
+ 66.44768397942434,
+ 41.00296920395572
+ ],
+ [
+ 66.56252666290803,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 41.58691240874108
+ ],
+ [
+ 66.44768397942434,
+ 41.78156014366953
+ ],
+ [
+ 66.217998612457,
+ 41.78156014366953
+ ],
+ [
+ 66.10315592897331,
+ 41.58691240874108
+ ],
+ [
+ 66.217998612457,
+ 41.392264673812626
+ ],
+ [
+ 66.44768397942434,
+ 41.392264673812626
+ ],
+ [
+ 66.56252666290803,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 41.97620787859798
+ ],
+ [
+ 66.44768397942434,
+ 42.170855613526435
+ ],
+ [
+ 66.217998612457,
+ 42.170855613526435
+ ],
+ [
+ 66.10315592897331,
+ 41.97620787859798
+ ],
+ [
+ 66.217998612457,
+ 41.78156014366953
+ ],
+ [
+ 66.44768397942434,
+ 41.78156014366953
+ ],
+ [
+ 66.56252666290803,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 42.365503348454894
+ ],
+ [
+ 66.44768397942434,
+ 42.560151083383346
+ ],
+ [
+ 66.217998612457,
+ 42.560151083383346
+ ],
+ [
+ 66.10315592897331,
+ 42.365503348454894
+ ],
+ [
+ 66.217998612457,
+ 42.17085561352644
+ ],
+ [
+ 66.44768397942434,
+ 42.17085561352644
+ ],
+ [
+ 66.56252666290803,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 42.754798818311805
+ ],
+ [
+ 66.44768397942434,
+ 42.94944655324026
+ ],
+ [
+ 66.217998612457,
+ 42.94944655324026
+ ],
+ [
+ 66.10315592897331,
+ 42.754798818311805
+ ],
+ [
+ 66.217998612457,
+ 42.56015108338335
+ ],
+ [
+ 66.44768397942434,
+ 42.56015108338335
+ ],
+ [
+ 66.56252666290803,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 43.14409428816871
+ ],
+ [
+ 66.44768397942434,
+ 43.33874202309716
+ ],
+ [
+ 66.217998612457,
+ 43.33874202309716
+ ],
+ [
+ 66.10315592897331,
+ 43.14409428816871
+ ],
+ [
+ 66.217998612457,
+ 42.94944655324026
+ ],
+ [
+ 66.44768397942434,
+ 42.94944655324026
+ ],
+ [
+ 66.56252666290803,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 43.53338975802561
+ ],
+ [
+ 66.44768397942434,
+ 43.728037492954066
+ ],
+ [
+ 66.217998612457,
+ 43.728037492954066
+ ],
+ [
+ 66.10315592897331,
+ 43.53338975802561
+ ],
+ [
+ 66.217998612457,
+ 43.33874202309716
+ ],
+ [
+ 66.44768397942434,
+ 43.33874202309716
+ ],
+ [
+ 66.56252666290803,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 43.92268522788252
+ ],
+ [
+ 66.44768397942434,
+ 44.11733296281097
+ ],
+ [
+ 66.217998612457,
+ 44.11733296281097
+ ],
+ [
+ 66.10315592897331,
+ 43.92268522788252
+ ],
+ [
+ 66.217998612457,
+ 43.728037492954066
+ ],
+ [
+ 66.44768397942434,
+ 43.728037492954066
+ ],
+ [
+ 66.56252666290803,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 44.31198069773942
+ ],
+ [
+ 66.44768397942434,
+ 44.506628432667874
+ ],
+ [
+ 66.217998612457,
+ 44.506628432667874
+ ],
+ [
+ 66.10315592897331,
+ 44.31198069773942
+ ],
+ [
+ 66.217998612457,
+ 44.11733296281097
+ ],
+ [
+ 66.44768397942434,
+ 44.11733296281097
+ ],
+ [
+ 66.56252666290803,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 44.701276167596326
+ ],
+ [
+ 66.44768397942434,
+ 44.89592390252478
+ ],
+ [
+ 66.217998612457,
+ 44.89592390252478
+ ],
+ [
+ 66.10315592897331,
+ 44.701276167596326
+ ],
+ [
+ 66.217998612457,
+ 44.506628432667874
+ ],
+ [
+ 66.44768397942434,
+ 44.506628432667874
+ ],
+ [
+ 66.56252666290803,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 45.090571637453245
+ ],
+ [
+ 66.44768397942434,
+ 45.2852193723817
+ ],
+ [
+ 66.217998612457,
+ 45.2852193723817
+ ],
+ [
+ 66.10315592897331,
+ 45.090571637453245
+ ],
+ [
+ 66.217998612457,
+ 44.89592390252479
+ ],
+ [
+ 66.44768397942434,
+ 44.89592390252479
+ ],
+ [
+ 66.56252666290803,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 45.47986710731015
+ ],
+ [
+ 66.44768397942434,
+ 45.6745148422386
+ ],
+ [
+ 66.217998612457,
+ 45.6745148422386
+ ],
+ [
+ 66.10315592897331,
+ 45.47986710731015
+ ],
+ [
+ 66.217998612457,
+ 45.2852193723817
+ ],
+ [
+ 66.44768397942434,
+ 45.2852193723817
+ ],
+ [
+ 66.56252666290803,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 45.86916257716705
+ ],
+ [
+ 66.44768397942434,
+ 46.063810312095505
+ ],
+ [
+ 66.217998612457,
+ 46.063810312095505
+ ],
+ [
+ 66.10315592897331,
+ 45.86916257716705
+ ],
+ [
+ 66.217998612457,
+ 45.6745148422386
+ ],
+ [
+ 66.44768397942434,
+ 45.6745148422386
+ ],
+ [
+ 66.56252666290803,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 46.25845804702396
+ ],
+ [
+ 66.44768397942434,
+ 46.45310578195241
+ ],
+ [
+ 66.217998612457,
+ 46.45310578195241
+ ],
+ [
+ 66.10315592897331,
+ 46.25845804702396
+ ],
+ [
+ 66.217998612457,
+ 46.063810312095505
+ ],
+ [
+ 66.44768397942434,
+ 46.063810312095505
+ ],
+ [
+ 66.56252666290803,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 46.64775351688086
+ ],
+ [
+ 66.44768397942434,
+ 46.842401251809314
+ ],
+ [
+ 66.217998612457,
+ 46.842401251809314
+ ],
+ [
+ 66.10315592897331,
+ 46.64775351688086
+ ],
+ [
+ 66.217998612457,
+ 46.45310578195241
+ ],
+ [
+ 66.44768397942434,
+ 46.45310578195241
+ ],
+ [
+ 66.56252666290803,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 47.037048986737766
+ ],
+ [
+ 66.44768397942434,
+ 47.23169672166622
+ ],
+ [
+ 66.217998612457,
+ 47.23169672166622
+ ],
+ [
+ 66.10315592897331,
+ 47.037048986737766
+ ],
+ [
+ 66.217998612457,
+ 46.842401251809314
+ ],
+ [
+ 66.44768397942434,
+ 46.842401251809314
+ ],
+ [
+ 66.56252666290803,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 47.42634445659467
+ ],
+ [
+ 66.44768397942434,
+ 47.62099219152312
+ ],
+ [
+ 66.217998612457,
+ 47.62099219152312
+ ],
+ [
+ 66.10315592897331,
+ 47.42634445659467
+ ],
+ [
+ 66.217998612457,
+ 47.23169672166622
+ ],
+ [
+ 66.44768397942434,
+ 47.23169672166622
+ ],
+ [
+ 66.56252666290803,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.56252666290803,
+ 47.81563992645159
+ ],
+ [
+ 66.44768397942434,
+ 48.01028766138004
+ ],
+ [
+ 66.217998612457,
+ 48.01028766138004
+ ],
+ [
+ 66.10315592897331,
+ 47.81563992645159
+ ],
+ [
+ 66.217998612457,
+ 47.620992191523136
+ ],
+ [
+ 66.44768397942434,
+ 47.620992191523136
+ ],
+ [
+ 66.56252666290803,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 11.805808964687746
+ ],
+ [
+ 66.79221202987537,
+ 12.0004566996162
+ ],
+ [
+ 66.56252666290803,
+ 12.0004566996162
+ ],
+ [
+ 66.44768397942434,
+ 11.805808964687746
+ ],
+ [
+ 66.56252666290803,
+ 11.611161229759292
+ ],
+ [
+ 66.79221202987537,
+ 11.611161229759292
+ ],
+ [
+ 66.90705471335906,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 12.195104434544652
+ ],
+ [
+ 66.79221202987537,
+ 12.389752169473105
+ ],
+ [
+ 66.56252666290803,
+ 12.389752169473105
+ ],
+ [
+ 66.44768397942434,
+ 12.195104434544652
+ ],
+ [
+ 66.56252666290803,
+ 12.000456699616198
+ ],
+ [
+ 66.79221202987537,
+ 12.000456699616198
+ ],
+ [
+ 66.90705471335906,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 12.58439990440156
+ ],
+ [
+ 66.79221202987537,
+ 12.779047639330013
+ ],
+ [
+ 66.56252666290803,
+ 12.779047639330013
+ ],
+ [
+ 66.44768397942434,
+ 12.58439990440156
+ ],
+ [
+ 66.56252666290803,
+ 12.389752169473105
+ ],
+ [
+ 66.79221202987537,
+ 12.389752169473105
+ ],
+ [
+ 66.90705471335906,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 12.973695374258465
+ ],
+ [
+ 66.79221202987537,
+ 13.16834310918692
+ ],
+ [
+ 66.56252666290803,
+ 13.16834310918692
+ ],
+ [
+ 66.44768397942434,
+ 12.973695374258465
+ ],
+ [
+ 66.56252666290803,
+ 12.779047639330011
+ ],
+ [
+ 66.79221202987537,
+ 12.779047639330011
+ ],
+ [
+ 66.90705471335906,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 13.362990844115371
+ ],
+ [
+ 66.79221202987537,
+ 13.557638579043825
+ ],
+ [
+ 66.56252666290803,
+ 13.557638579043825
+ ],
+ [
+ 66.44768397942434,
+ 13.362990844115371
+ ],
+ [
+ 66.56252666290803,
+ 13.168343109186917
+ ],
+ [
+ 66.79221202987537,
+ 13.168343109186917
+ ],
+ [
+ 66.90705471335906,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 13.752286313972277
+ ],
+ [
+ 66.79221202987537,
+ 13.946934048900731
+ ],
+ [
+ 66.56252666290803,
+ 13.946934048900731
+ ],
+ [
+ 66.44768397942434,
+ 13.752286313972277
+ ],
+ [
+ 66.56252666290803,
+ 13.557638579043823
+ ],
+ [
+ 66.79221202987537,
+ 13.557638579043823
+ ],
+ [
+ 66.90705471335906,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 14.141581783829183
+ ],
+ [
+ 66.79221202987537,
+ 14.336229518757637
+ ],
+ [
+ 66.56252666290803,
+ 14.336229518757637
+ ],
+ [
+ 66.44768397942434,
+ 14.141581783829183
+ ],
+ [
+ 66.56252666290803,
+ 13.94693404890073
+ ],
+ [
+ 66.79221202987537,
+ 13.94693404890073
+ ],
+ [
+ 66.90705471335906,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 14.530877253686091
+ ],
+ [
+ 66.79221202987537,
+ 14.725524988614545
+ ],
+ [
+ 66.56252666290803,
+ 14.725524988614545
+ ],
+ [
+ 66.44768397942434,
+ 14.530877253686091
+ ],
+ [
+ 66.56252666290803,
+ 14.336229518757637
+ ],
+ [
+ 66.79221202987537,
+ 14.336229518757637
+ ],
+ [
+ 66.90705471335906,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 14.920172723542997
+ ],
+ [
+ 66.79221202987537,
+ 15.114820458471451
+ ],
+ [
+ 66.56252666290803,
+ 15.114820458471451
+ ],
+ [
+ 66.44768397942434,
+ 14.920172723542997
+ ],
+ [
+ 66.56252666290803,
+ 14.725524988614543
+ ],
+ [
+ 66.79221202987537,
+ 14.725524988614543
+ ],
+ [
+ 66.90705471335906,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 15.309468193399903
+ ],
+ [
+ 66.79221202987537,
+ 15.504115928328357
+ ],
+ [
+ 66.56252666290803,
+ 15.504115928328357
+ ],
+ [
+ 66.44768397942434,
+ 15.309468193399903
+ ],
+ [
+ 66.56252666290803,
+ 15.11482045847145
+ ],
+ [
+ 66.79221202987537,
+ 15.11482045847145
+ ],
+ [
+ 66.90705471335906,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 15.69876366325681
+ ],
+ [
+ 66.79221202987537,
+ 15.893411398185265
+ ],
+ [
+ 66.56252666290803,
+ 15.893411398185265
+ ],
+ [
+ 66.44768397942434,
+ 15.69876366325681
+ ],
+ [
+ 66.56252666290803,
+ 15.504115928328357
+ ],
+ [
+ 66.79221202987537,
+ 15.504115928328357
+ ],
+ [
+ 66.90705471335906,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 16.088059133113717
+ ],
+ [
+ 66.79221202987537,
+ 16.28270686804217
+ ],
+ [
+ 66.56252666290803,
+ 16.28270686804217
+ ],
+ [
+ 66.44768397942434,
+ 16.088059133113717
+ ],
+ [
+ 66.56252666290803,
+ 15.893411398185263
+ ],
+ [
+ 66.79221202987537,
+ 15.893411398185263
+ ],
+ [
+ 66.90705471335906,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 16.477354602970625
+ ],
+ [
+ 66.79221202987537,
+ 16.672002337899077
+ ],
+ [
+ 66.56252666290803,
+ 16.672002337899077
+ ],
+ [
+ 66.44768397942434,
+ 16.477354602970625
+ ],
+ [
+ 66.56252666290803,
+ 16.282706868042172
+ ],
+ [
+ 66.79221202987537,
+ 16.282706868042172
+ ],
+ [
+ 66.90705471335906,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 16.86665007282753
+ ],
+ [
+ 66.79221202987537,
+ 17.06129780775598
+ ],
+ [
+ 66.56252666290803,
+ 17.06129780775598
+ ],
+ [
+ 66.44768397942434,
+ 16.86665007282753
+ ],
+ [
+ 66.56252666290803,
+ 16.672002337899077
+ ],
+ [
+ 66.79221202987537,
+ 16.672002337899077
+ ],
+ [
+ 66.90705471335906,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 17.255945542684437
+ ],
+ [
+ 66.79221202987537,
+ 17.45059327761289
+ ],
+ [
+ 66.56252666290803,
+ 17.45059327761289
+ ],
+ [
+ 66.44768397942434,
+ 17.255945542684437
+ ],
+ [
+ 66.56252666290803,
+ 17.061297807755984
+ ],
+ [
+ 66.79221202987537,
+ 17.061297807755984
+ ],
+ [
+ 66.90705471335906,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 17.64524101254134
+ ],
+ [
+ 66.79221202987537,
+ 17.839888747469793
+ ],
+ [
+ 66.56252666290803,
+ 17.839888747469793
+ ],
+ [
+ 66.44768397942434,
+ 17.64524101254134
+ ],
+ [
+ 66.56252666290803,
+ 17.45059327761289
+ ],
+ [
+ 66.79221202987537,
+ 17.45059327761289
+ ],
+ [
+ 66.90705471335906,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 18.03453648239825
+ ],
+ [
+ 66.79221202987537,
+ 18.2291842173267
+ ],
+ [
+ 66.56252666290803,
+ 18.2291842173267
+ ],
+ [
+ 66.44768397942434,
+ 18.03453648239825
+ ],
+ [
+ 66.56252666290803,
+ 17.839888747469796
+ ],
+ [
+ 66.79221202987537,
+ 17.839888747469796
+ ],
+ [
+ 66.90705471335906,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 18.423831952255156
+ ],
+ [
+ 66.79221202987537,
+ 18.61847968718361
+ ],
+ [
+ 66.56252666290803,
+ 18.61847968718361
+ ],
+ [
+ 66.44768397942434,
+ 18.423831952255156
+ ],
+ [
+ 66.56252666290803,
+ 18.229184217326704
+ ],
+ [
+ 66.79221202987537,
+ 18.229184217326704
+ ],
+ [
+ 66.90705471335906,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 18.81312742211206
+ ],
+ [
+ 66.79221202987537,
+ 19.007775157040513
+ ],
+ [
+ 66.56252666290803,
+ 19.007775157040513
+ ],
+ [
+ 66.44768397942434,
+ 18.81312742211206
+ ],
+ [
+ 66.56252666290803,
+ 18.61847968718361
+ ],
+ [
+ 66.79221202987537,
+ 18.61847968718361
+ ],
+ [
+ 66.90705471335906,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 19.20242289196897
+ ],
+ [
+ 66.79221202987537,
+ 19.39707062689742
+ ],
+ [
+ 66.56252666290803,
+ 19.39707062689742
+ ],
+ [
+ 66.44768397942434,
+ 19.20242289196897
+ ],
+ [
+ 66.56252666290803,
+ 19.007775157040516
+ ],
+ [
+ 66.79221202987537,
+ 19.007775157040516
+ ],
+ [
+ 66.90705471335906,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 19.591718361825876
+ ],
+ [
+ 66.79221202987537,
+ 19.78636609675433
+ ],
+ [
+ 66.56252666290803,
+ 19.78636609675433
+ ],
+ [
+ 66.44768397942434,
+ 19.591718361825876
+ ],
+ [
+ 66.56252666290803,
+ 19.397070626897424
+ ],
+ [
+ 66.79221202987537,
+ 19.397070626897424
+ ],
+ [
+ 66.90705471335906,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 19.98101383168278
+ ],
+ [
+ 66.79221202987537,
+ 20.175661566611232
+ ],
+ [
+ 66.56252666290803,
+ 20.175661566611232
+ ],
+ [
+ 66.44768397942434,
+ 19.98101383168278
+ ],
+ [
+ 66.56252666290803,
+ 19.78636609675433
+ ],
+ [
+ 66.79221202987537,
+ 19.78636609675433
+ ],
+ [
+ 66.90705471335906,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 20.370309301539685
+ ],
+ [
+ 66.79221202987537,
+ 20.564957036468137
+ ],
+ [
+ 66.56252666290803,
+ 20.564957036468137
+ ],
+ [
+ 66.44768397942434,
+ 20.370309301539685
+ ],
+ [
+ 66.56252666290803,
+ 20.175661566611232
+ ],
+ [
+ 66.79221202987537,
+ 20.175661566611232
+ ],
+ [
+ 66.90705471335906,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 20.759604771396592
+ ],
+ [
+ 66.79221202987537,
+ 20.954252506325044
+ ],
+ [
+ 66.56252666290803,
+ 20.954252506325044
+ ],
+ [
+ 66.44768397942434,
+ 20.759604771396592
+ ],
+ [
+ 66.56252666290803,
+ 20.56495703646814
+ ],
+ [
+ 66.79221202987537,
+ 20.56495703646814
+ ],
+ [
+ 66.90705471335906,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 21.1489002412535
+ ],
+ [
+ 66.79221202987537,
+ 21.343547976181952
+ ],
+ [
+ 66.56252666290803,
+ 21.343547976181952
+ ],
+ [
+ 66.44768397942434,
+ 21.1489002412535
+ ],
+ [
+ 66.56252666290803,
+ 20.954252506325048
+ ],
+ [
+ 66.79221202987537,
+ 20.954252506325048
+ ],
+ [
+ 66.90705471335906,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 21.538195711110404
+ ],
+ [
+ 66.79221202987537,
+ 21.732843446038856
+ ],
+ [
+ 66.56252666290803,
+ 21.732843446038856
+ ],
+ [
+ 66.44768397942434,
+ 21.538195711110404
+ ],
+ [
+ 66.56252666290803,
+ 21.343547976181952
+ ],
+ [
+ 66.79221202987537,
+ 21.343547976181952
+ ],
+ [
+ 66.90705471335906,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 21.927491180967312
+ ],
+ [
+ 66.79221202987537,
+ 22.122138915895764
+ ],
+ [
+ 66.56252666290803,
+ 22.122138915895764
+ ],
+ [
+ 66.44768397942434,
+ 21.927491180967312
+ ],
+ [
+ 66.56252666290803,
+ 21.73284344603886
+ ],
+ [
+ 66.79221202987537,
+ 21.73284344603886
+ ],
+ [
+ 66.90705471335906,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 22.31678665082422
+ ],
+ [
+ 66.79221202987537,
+ 22.511434385752672
+ ],
+ [
+ 66.56252666290803,
+ 22.511434385752672
+ ],
+ [
+ 66.44768397942434,
+ 22.31678665082422
+ ],
+ [
+ 66.56252666290803,
+ 22.122138915895768
+ ],
+ [
+ 66.79221202987537,
+ 22.122138915895768
+ ],
+ [
+ 66.90705471335906,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 22.706082120681124
+ ],
+ [
+ 66.79221202987537,
+ 22.900729855609576
+ ],
+ [
+ 66.56252666290803,
+ 22.900729855609576
+ ],
+ [
+ 66.44768397942434,
+ 22.706082120681124
+ ],
+ [
+ 66.56252666290803,
+ 22.511434385752672
+ ],
+ [
+ 66.79221202987537,
+ 22.511434385752672
+ ],
+ [
+ 66.90705471335906,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 23.095377590538032
+ ],
+ [
+ 66.79221202987537,
+ 23.290025325466484
+ ],
+ [
+ 66.56252666290803,
+ 23.290025325466484
+ ],
+ [
+ 66.44768397942434,
+ 23.095377590538032
+ ],
+ [
+ 66.56252666290803,
+ 22.90072985560958
+ ],
+ [
+ 66.79221202987537,
+ 22.90072985560958
+ ],
+ [
+ 66.90705471335906,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 23.48467306039494
+ ],
+ [
+ 66.79221202987537,
+ 23.67932079532339
+ ],
+ [
+ 66.56252666290803,
+ 23.67932079532339
+ ],
+ [
+ 66.44768397942434,
+ 23.48467306039494
+ ],
+ [
+ 66.56252666290803,
+ 23.290025325466488
+ ],
+ [
+ 66.79221202987537,
+ 23.290025325466488
+ ],
+ [
+ 66.90705471335906,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 23.873968530251844
+ ],
+ [
+ 66.79221202987537,
+ 24.068616265180296
+ ],
+ [
+ 66.56252666290803,
+ 24.068616265180296
+ ],
+ [
+ 66.44768397942434,
+ 23.873968530251844
+ ],
+ [
+ 66.56252666290803,
+ 23.67932079532339
+ ],
+ [
+ 66.79221202987537,
+ 23.67932079532339
+ ],
+ [
+ 66.90705471335906,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 24.263264000108748
+ ],
+ [
+ 66.79221202987537,
+ 24.4579117350372
+ ],
+ [
+ 66.56252666290803,
+ 24.4579117350372
+ ],
+ [
+ 66.44768397942434,
+ 24.263264000108748
+ ],
+ [
+ 66.56252666290803,
+ 24.068616265180296
+ ],
+ [
+ 66.79221202987537,
+ 24.068616265180296
+ ],
+ [
+ 66.90705471335906,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 24.652559469965656
+ ],
+ [
+ 66.79221202987537,
+ 24.847207204894108
+ ],
+ [
+ 66.56252666290803,
+ 24.847207204894108
+ ],
+ [
+ 66.44768397942434,
+ 24.652559469965656
+ ],
+ [
+ 66.56252666290803,
+ 24.457911735037204
+ ],
+ [
+ 66.79221202987537,
+ 24.457911735037204
+ ],
+ [
+ 66.90705471335906,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 25.041854939822564
+ ],
+ [
+ 66.79221202987537,
+ 25.236502674751016
+ ],
+ [
+ 66.56252666290803,
+ 25.236502674751016
+ ],
+ [
+ 66.44768397942434,
+ 25.041854939822564
+ ],
+ [
+ 66.56252666290803,
+ 24.84720720489411
+ ],
+ [
+ 66.79221202987537,
+ 24.84720720489411
+ ],
+ [
+ 66.90705471335906,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 25.431150409679468
+ ],
+ [
+ 66.79221202987537,
+ 25.62579814460792
+ ],
+ [
+ 66.56252666290803,
+ 25.62579814460792
+ ],
+ [
+ 66.44768397942434,
+ 25.431150409679468
+ ],
+ [
+ 66.56252666290803,
+ 25.236502674751016
+ ],
+ [
+ 66.79221202987537,
+ 25.236502674751016
+ ],
+ [
+ 66.90705471335906,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 25.820445879536376
+ ],
+ [
+ 66.79221202987537,
+ 26.015093614464828
+ ],
+ [
+ 66.56252666290803,
+ 26.015093614464828
+ ],
+ [
+ 66.44768397942434,
+ 25.820445879536376
+ ],
+ [
+ 66.56252666290803,
+ 25.625798144607923
+ ],
+ [
+ 66.79221202987537,
+ 25.625798144607923
+ ],
+ [
+ 66.90705471335906,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 26.209741349393283
+ ],
+ [
+ 66.79221202987537,
+ 26.404389084321735
+ ],
+ [
+ 66.56252666290803,
+ 26.404389084321735
+ ],
+ [
+ 66.44768397942434,
+ 26.209741349393283
+ ],
+ [
+ 66.56252666290803,
+ 26.01509361446483
+ ],
+ [
+ 66.79221202987537,
+ 26.01509361446483
+ ],
+ [
+ 66.90705471335906,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 26.599036819250188
+ ],
+ [
+ 66.79221202987537,
+ 26.79368455417864
+ ],
+ [
+ 66.56252666290803,
+ 26.79368455417864
+ ],
+ [
+ 66.44768397942434,
+ 26.599036819250188
+ ],
+ [
+ 66.56252666290803,
+ 26.404389084321735
+ ],
+ [
+ 66.79221202987537,
+ 26.404389084321735
+ ],
+ [
+ 66.90705471335906,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 26.988332289107095
+ ],
+ [
+ 66.79221202987537,
+ 27.182980024035547
+ ],
+ [
+ 66.56252666290803,
+ 27.182980024035547
+ ],
+ [
+ 66.44768397942434,
+ 26.988332289107095
+ ],
+ [
+ 66.56252666290803,
+ 26.793684554178643
+ ],
+ [
+ 66.79221202987537,
+ 26.793684554178643
+ ],
+ [
+ 66.90705471335906,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 27.377627758964003
+ ],
+ [
+ 66.79221202987537,
+ 27.572275493892455
+ ],
+ [
+ 66.56252666290803,
+ 27.572275493892455
+ ],
+ [
+ 66.44768397942434,
+ 27.377627758964003
+ ],
+ [
+ 66.56252666290803,
+ 27.18298002403555
+ ],
+ [
+ 66.79221202987537,
+ 27.18298002403555
+ ],
+ [
+ 66.90705471335906,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 27.766923228820907
+ ],
+ [
+ 66.79221202987537,
+ 27.96157096374936
+ ],
+ [
+ 66.56252666290803,
+ 27.96157096374936
+ ],
+ [
+ 66.44768397942434,
+ 27.766923228820907
+ ],
+ [
+ 66.56252666290803,
+ 27.572275493892455
+ ],
+ [
+ 66.79221202987537,
+ 27.572275493892455
+ ],
+ [
+ 66.90705471335906,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 28.156218698677815
+ ],
+ [
+ 66.79221202987537,
+ 28.350866433606267
+ ],
+ [
+ 66.56252666290803,
+ 28.350866433606267
+ ],
+ [
+ 66.44768397942434,
+ 28.156218698677815
+ ],
+ [
+ 66.56252666290803,
+ 27.961570963749363
+ ],
+ [
+ 66.79221202987537,
+ 27.961570963749363
+ ],
+ [
+ 66.90705471335906,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 28.54551416853472
+ ],
+ [
+ 66.79221202987537,
+ 28.74016190346317
+ ],
+ [
+ 66.56252666290803,
+ 28.74016190346317
+ ],
+ [
+ 66.44768397942434,
+ 28.54551416853472
+ ],
+ [
+ 66.56252666290803,
+ 28.350866433606267
+ ],
+ [
+ 66.79221202987537,
+ 28.350866433606267
+ ],
+ [
+ 66.90705471335906,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 28.934809638391627
+ ],
+ [
+ 66.79221202987537,
+ 29.12945737332008
+ ],
+ [
+ 66.56252666290803,
+ 29.12945737332008
+ ],
+ [
+ 66.44768397942434,
+ 28.934809638391627
+ ],
+ [
+ 66.56252666290803,
+ 28.740161903463175
+ ],
+ [
+ 66.79221202987537,
+ 28.740161903463175
+ ],
+ [
+ 66.90705471335906,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 29.32410510824853
+ ],
+ [
+ 66.79221202987537,
+ 29.518752843176983
+ ],
+ [
+ 66.56252666290803,
+ 29.518752843176983
+ ],
+ [
+ 66.44768397942434,
+ 29.32410510824853
+ ],
+ [
+ 66.56252666290803,
+ 29.12945737332008
+ ],
+ [
+ 66.79221202987537,
+ 29.12945737332008
+ ],
+ [
+ 66.90705471335906,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 29.71340057810544
+ ],
+ [
+ 66.79221202987537,
+ 29.90804831303389
+ ],
+ [
+ 66.56252666290803,
+ 29.90804831303389
+ ],
+ [
+ 66.44768397942434,
+ 29.71340057810544
+ ],
+ [
+ 66.56252666290803,
+ 29.518752843176987
+ ],
+ [
+ 66.79221202987537,
+ 29.518752843176987
+ ],
+ [
+ 66.90705471335906,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 30.102696047962343
+ ],
+ [
+ 66.79221202987537,
+ 30.297343782890795
+ ],
+ [
+ 66.56252666290803,
+ 30.297343782890795
+ ],
+ [
+ 66.44768397942434,
+ 30.102696047962343
+ ],
+ [
+ 66.56252666290803,
+ 29.90804831303389
+ ],
+ [
+ 66.79221202987537,
+ 29.90804831303389
+ ],
+ [
+ 66.90705471335906,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 30.49199151781925
+ ],
+ [
+ 66.79221202987537,
+ 30.686639252747703
+ ],
+ [
+ 66.56252666290803,
+ 30.686639252747703
+ ],
+ [
+ 66.44768397942434,
+ 30.49199151781925
+ ],
+ [
+ 66.56252666290803,
+ 30.2973437828908
+ ],
+ [
+ 66.79221202987537,
+ 30.2973437828908
+ ],
+ [
+ 66.90705471335906,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 30.88128698767616
+ ],
+ [
+ 66.79221202987537,
+ 31.07593472260461
+ ],
+ [
+ 66.56252666290803,
+ 31.07593472260461
+ ],
+ [
+ 66.44768397942434,
+ 30.88128698767616
+ ],
+ [
+ 66.56252666290803,
+ 30.686639252747707
+ ],
+ [
+ 66.79221202987537,
+ 30.686639252747707
+ ],
+ [
+ 66.90705471335906,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 31.270582457533063
+ ],
+ [
+ 66.79221202987537,
+ 31.465230192461515
+ ],
+ [
+ 66.56252666290803,
+ 31.465230192461515
+ ],
+ [
+ 66.44768397942434,
+ 31.270582457533063
+ ],
+ [
+ 66.56252666290803,
+ 31.07593472260461
+ ],
+ [
+ 66.79221202987537,
+ 31.07593472260461
+ ],
+ [
+ 66.90705471335906,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 31.65987792738997
+ ],
+ [
+ 66.79221202987537,
+ 31.854525662318423
+ ],
+ [
+ 66.56252666290803,
+ 31.854525662318423
+ ],
+ [
+ 66.44768397942434,
+ 31.65987792738997
+ ],
+ [
+ 66.56252666290803,
+ 31.46523019246152
+ ],
+ [
+ 66.79221202987537,
+ 31.46523019246152
+ ],
+ [
+ 66.90705471335906,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 32.049173397246875
+ ],
+ [
+ 66.79221202987537,
+ 32.24382113217533
+ ],
+ [
+ 66.56252666290803,
+ 32.24382113217533
+ ],
+ [
+ 66.44768397942434,
+ 32.049173397246875
+ ],
+ [
+ 66.56252666290803,
+ 31.854525662318423
+ ],
+ [
+ 66.79221202987537,
+ 31.854525662318423
+ ],
+ [
+ 66.90705471335906,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 32.438468867103786
+ ],
+ [
+ 66.79221202987537,
+ 32.63311660203224
+ ],
+ [
+ 66.56252666290803,
+ 32.63311660203224
+ ],
+ [
+ 66.44768397942434,
+ 32.438468867103786
+ ],
+ [
+ 66.56252666290803,
+ 32.243821132175334
+ ],
+ [
+ 66.79221202987537,
+ 32.243821132175334
+ ],
+ [
+ 66.90705471335906,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 32.82776433696069
+ ],
+ [
+ 66.79221202987537,
+ 33.02241207188914
+ ],
+ [
+ 66.56252666290803,
+ 33.02241207188914
+ ],
+ [
+ 66.44768397942434,
+ 32.82776433696069
+ ],
+ [
+ 66.56252666290803,
+ 32.63311660203224
+ ],
+ [
+ 66.79221202987537,
+ 32.63311660203224
+ ],
+ [
+ 66.90705471335906,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 33.217059806817595
+ ],
+ [
+ 66.79221202987537,
+ 33.41170754174605
+ ],
+ [
+ 66.56252666290803,
+ 33.41170754174605
+ ],
+ [
+ 66.44768397942434,
+ 33.217059806817595
+ ],
+ [
+ 66.56252666290803,
+ 33.02241207188914
+ ],
+ [
+ 66.79221202987537,
+ 33.02241207188914
+ ],
+ [
+ 66.90705471335906,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 33.6063552766745
+ ],
+ [
+ 66.79221202987537,
+ 33.80100301160295
+ ],
+ [
+ 66.56252666290803,
+ 33.80100301160295
+ ],
+ [
+ 66.44768397942434,
+ 33.6063552766745
+ ],
+ [
+ 66.56252666290803,
+ 33.41170754174605
+ ],
+ [
+ 66.79221202987537,
+ 33.41170754174605
+ ],
+ [
+ 66.90705471335906,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 33.9956507465314
+ ],
+ [
+ 66.79221202987537,
+ 34.190298481459855
+ ],
+ [
+ 66.56252666290803,
+ 34.190298481459855
+ ],
+ [
+ 66.44768397942434,
+ 33.9956507465314
+ ],
+ [
+ 66.56252666290803,
+ 33.80100301160295
+ ],
+ [
+ 66.79221202987537,
+ 33.80100301160295
+ ],
+ [
+ 66.90705471335906,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 34.384946216388315
+ ],
+ [
+ 66.79221202987537,
+ 34.57959395131677
+ ],
+ [
+ 66.56252666290803,
+ 34.57959395131677
+ ],
+ [
+ 66.44768397942434,
+ 34.384946216388315
+ ],
+ [
+ 66.56252666290803,
+ 34.19029848145986
+ ],
+ [
+ 66.79221202987537,
+ 34.19029848145986
+ ],
+ [
+ 66.90705471335906,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 34.774241686245226
+ ],
+ [
+ 66.79221202987537,
+ 34.96888942117368
+ ],
+ [
+ 66.56252666290803,
+ 34.96888942117368
+ ],
+ [
+ 66.44768397942434,
+ 34.774241686245226
+ ],
+ [
+ 66.56252666290803,
+ 34.579593951316774
+ ],
+ [
+ 66.79221202987537,
+ 34.579593951316774
+ ],
+ [
+ 66.90705471335906,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 35.16353715610213
+ ],
+ [
+ 66.79221202987537,
+ 35.35818489103058
+ ],
+ [
+ 66.56252666290803,
+ 35.35818489103058
+ ],
+ [
+ 66.44768397942434,
+ 35.16353715610213
+ ],
+ [
+ 66.56252666290803,
+ 34.96888942117368
+ ],
+ [
+ 66.79221202987537,
+ 34.96888942117368
+ ],
+ [
+ 66.90705471335906,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 35.552832625959034
+ ],
+ [
+ 66.79221202987537,
+ 35.74748036088749
+ ],
+ [
+ 66.56252666290803,
+ 35.74748036088749
+ ],
+ [
+ 66.44768397942434,
+ 35.552832625959034
+ ],
+ [
+ 66.56252666290803,
+ 35.35818489103058
+ ],
+ [
+ 66.79221202987537,
+ 35.35818489103058
+ ],
+ [
+ 66.90705471335906,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 35.94212809581594
+ ],
+ [
+ 66.79221202987537,
+ 36.13677583074439
+ ],
+ [
+ 66.56252666290803,
+ 36.13677583074439
+ ],
+ [
+ 66.44768397942434,
+ 35.94212809581594
+ ],
+ [
+ 66.56252666290803,
+ 35.74748036088749
+ ],
+ [
+ 66.79221202987537,
+ 35.74748036088749
+ ],
+ [
+ 66.90705471335906,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 36.33142356567284
+ ],
+ [
+ 66.79221202987537,
+ 36.526071300601295
+ ],
+ [
+ 66.56252666290803,
+ 36.526071300601295
+ ],
+ [
+ 66.44768397942434,
+ 36.33142356567284
+ ],
+ [
+ 66.56252666290803,
+ 36.13677583074439
+ ],
+ [
+ 66.79221202987537,
+ 36.13677583074439
+ ],
+ [
+ 66.90705471335906,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 36.720719035529754
+ ],
+ [
+ 66.79221202987537,
+ 36.915366770458206
+ ],
+ [
+ 66.56252666290803,
+ 36.915366770458206
+ ],
+ [
+ 66.44768397942434,
+ 36.720719035529754
+ ],
+ [
+ 66.56252666290803,
+ 36.5260713006013
+ ],
+ [
+ 66.79221202987537,
+ 36.5260713006013
+ ],
+ [
+ 66.90705471335906,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 37.11001450538666
+ ],
+ [
+ 66.79221202987537,
+ 37.30466224031511
+ ],
+ [
+ 66.56252666290803,
+ 37.30466224031511
+ ],
+ [
+ 66.44768397942434,
+ 37.11001450538666
+ ],
+ [
+ 66.56252666290803,
+ 36.915366770458206
+ ],
+ [
+ 66.79221202987537,
+ 36.915366770458206
+ ],
+ [
+ 66.90705471335906,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 37.49930997524357
+ ],
+ [
+ 66.79221202987537,
+ 37.69395771017202
+ ],
+ [
+ 66.56252666290803,
+ 37.69395771017202
+ ],
+ [
+ 66.44768397942434,
+ 37.49930997524357
+ ],
+ [
+ 66.56252666290803,
+ 37.30466224031512
+ ],
+ [
+ 66.79221202987537,
+ 37.30466224031512
+ ],
+ [
+ 66.90705471335906,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 37.888605445100474
+ ],
+ [
+ 66.79221202987537,
+ 38.083253180028926
+ ],
+ [
+ 66.56252666290803,
+ 38.083253180028926
+ ],
+ [
+ 66.44768397942434,
+ 37.888605445100474
+ ],
+ [
+ 66.56252666290803,
+ 37.69395771017202
+ ],
+ [
+ 66.79221202987537,
+ 37.69395771017202
+ ],
+ [
+ 66.90705471335906,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 38.27790091495738
+ ],
+ [
+ 66.79221202987537,
+ 38.47254864988583
+ ],
+ [
+ 66.56252666290803,
+ 38.47254864988583
+ ],
+ [
+ 66.44768397942434,
+ 38.27790091495738
+ ],
+ [
+ 66.56252666290803,
+ 38.083253180028926
+ ],
+ [
+ 66.79221202987537,
+ 38.083253180028926
+ ],
+ [
+ 66.90705471335906,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 38.66719638481428
+ ],
+ [
+ 66.79221202987537,
+ 38.861844119742734
+ ],
+ [
+ 66.56252666290803,
+ 38.861844119742734
+ ],
+ [
+ 66.44768397942434,
+ 38.66719638481428
+ ],
+ [
+ 66.56252666290803,
+ 38.47254864988583
+ ],
+ [
+ 66.79221202987537,
+ 38.47254864988583
+ ],
+ [
+ 66.90705471335906,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 39.05649185467119
+ ],
+ [
+ 66.79221202987537,
+ 39.25113958959964
+ ],
+ [
+ 66.56252666290803,
+ 39.25113958959964
+ ],
+ [
+ 66.44768397942434,
+ 39.05649185467119
+ ],
+ [
+ 66.56252666290803,
+ 38.861844119742734
+ ],
+ [
+ 66.79221202987537,
+ 38.861844119742734
+ ],
+ [
+ 66.90705471335906,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 39.4457873245281
+ ],
+ [
+ 66.79221202987537,
+ 39.64043505945655
+ ],
+ [
+ 66.56252666290803,
+ 39.64043505945655
+ ],
+ [
+ 66.44768397942434,
+ 39.4457873245281
+ ],
+ [
+ 66.56252666290803,
+ 39.251139589599646
+ ],
+ [
+ 66.79221202987537,
+ 39.251139589599646
+ ],
+ [
+ 66.90705471335906,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 39.835082794385
+ ],
+ [
+ 66.79221202987537,
+ 40.029730529313454
+ ],
+ [
+ 66.56252666290803,
+ 40.029730529313454
+ ],
+ [
+ 66.44768397942434,
+ 39.835082794385
+ ],
+ [
+ 66.56252666290803,
+ 39.64043505945655
+ ],
+ [
+ 66.79221202987537,
+ 39.64043505945655
+ ],
+ [
+ 66.90705471335906,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 40.22437826424191
+ ],
+ [
+ 66.79221202987537,
+ 40.419025999170366
+ ],
+ [
+ 66.56252666290803,
+ 40.419025999170366
+ ],
+ [
+ 66.44768397942434,
+ 40.22437826424191
+ ],
+ [
+ 66.56252666290803,
+ 40.02973052931346
+ ],
+ [
+ 66.79221202987537,
+ 40.02973052931346
+ ],
+ [
+ 66.90705471335906,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 40.61367373409882
+ ],
+ [
+ 66.79221202987537,
+ 40.80832146902727
+ ],
+ [
+ 66.56252666290803,
+ 40.80832146902727
+ ],
+ [
+ 66.44768397942434,
+ 40.61367373409882
+ ],
+ [
+ 66.56252666290803,
+ 40.419025999170366
+ ],
+ [
+ 66.79221202987537,
+ 40.419025999170366
+ ],
+ [
+ 66.90705471335906,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 41.00296920395572
+ ],
+ [
+ 66.79221202987537,
+ 41.197616938884174
+ ],
+ [
+ 66.56252666290803,
+ 41.197616938884174
+ ],
+ [
+ 66.44768397942434,
+ 41.00296920395572
+ ],
+ [
+ 66.56252666290803,
+ 40.80832146902727
+ ],
+ [
+ 66.79221202987537,
+ 40.80832146902727
+ ],
+ [
+ 66.90705471335906,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 41.392264673812626
+ ],
+ [
+ 66.79221202987537,
+ 41.58691240874108
+ ],
+ [
+ 66.56252666290803,
+ 41.58691240874108
+ ],
+ [
+ 66.44768397942434,
+ 41.392264673812626
+ ],
+ [
+ 66.56252666290803,
+ 41.197616938884174
+ ],
+ [
+ 66.79221202987537,
+ 41.197616938884174
+ ],
+ [
+ 66.90705471335906,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 41.78156014366953
+ ],
+ [
+ 66.79221202987537,
+ 41.97620787859798
+ ],
+ [
+ 66.56252666290803,
+ 41.97620787859798
+ ],
+ [
+ 66.44768397942434,
+ 41.78156014366953
+ ],
+ [
+ 66.56252666290803,
+ 41.58691240874108
+ ],
+ [
+ 66.79221202987537,
+ 41.58691240874108
+ ],
+ [
+ 66.90705471335906,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 42.17085561352644
+ ],
+ [
+ 66.79221202987537,
+ 42.365503348454894
+ ],
+ [
+ 66.56252666290803,
+ 42.365503348454894
+ ],
+ [
+ 66.44768397942434,
+ 42.17085561352644
+ ],
+ [
+ 66.56252666290803,
+ 41.97620787859799
+ ],
+ [
+ 66.79221202987537,
+ 41.97620787859799
+ ],
+ [
+ 66.90705471335906,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 42.56015108338335
+ ],
+ [
+ 66.79221202987537,
+ 42.754798818311805
+ ],
+ [
+ 66.56252666290803,
+ 42.754798818311805
+ ],
+ [
+ 66.44768397942434,
+ 42.56015108338335
+ ],
+ [
+ 66.56252666290803,
+ 42.3655033484549
+ ],
+ [
+ 66.79221202987537,
+ 42.3655033484549
+ ],
+ [
+ 66.90705471335906,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 42.94944655324026
+ ],
+ [
+ 66.79221202987537,
+ 43.14409428816871
+ ],
+ [
+ 66.56252666290803,
+ 43.14409428816871
+ ],
+ [
+ 66.44768397942434,
+ 42.94944655324026
+ ],
+ [
+ 66.56252666290803,
+ 42.754798818311805
+ ],
+ [
+ 66.79221202987537,
+ 42.754798818311805
+ ],
+ [
+ 66.90705471335906,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 43.33874202309716
+ ],
+ [
+ 66.79221202987537,
+ 43.53338975802561
+ ],
+ [
+ 66.56252666290803,
+ 43.53338975802561
+ ],
+ [
+ 66.44768397942434,
+ 43.33874202309716
+ ],
+ [
+ 66.56252666290803,
+ 43.14409428816871
+ ],
+ [
+ 66.79221202987537,
+ 43.14409428816871
+ ],
+ [
+ 66.90705471335906,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 43.728037492954066
+ ],
+ [
+ 66.79221202987537,
+ 43.92268522788252
+ ],
+ [
+ 66.56252666290803,
+ 43.92268522788252
+ ],
+ [
+ 66.44768397942434,
+ 43.728037492954066
+ ],
+ [
+ 66.56252666290803,
+ 43.53338975802561
+ ],
+ [
+ 66.79221202987537,
+ 43.53338975802561
+ ],
+ [
+ 66.90705471335906,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 44.11733296281097
+ ],
+ [
+ 66.79221202987537,
+ 44.31198069773942
+ ],
+ [
+ 66.56252666290803,
+ 44.31198069773942
+ ],
+ [
+ 66.44768397942434,
+ 44.11733296281097
+ ],
+ [
+ 66.56252666290803,
+ 43.92268522788252
+ ],
+ [
+ 66.79221202987537,
+ 43.92268522788252
+ ],
+ [
+ 66.90705471335906,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 44.506628432667874
+ ],
+ [
+ 66.79221202987537,
+ 44.701276167596326
+ ],
+ [
+ 66.56252666290803,
+ 44.701276167596326
+ ],
+ [
+ 66.44768397942434,
+ 44.506628432667874
+ ],
+ [
+ 66.56252666290803,
+ 44.31198069773942
+ ],
+ [
+ 66.79221202987537,
+ 44.31198069773942
+ ],
+ [
+ 66.90705471335906,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 44.89592390252479
+ ],
+ [
+ 66.79221202987537,
+ 45.090571637453245
+ ],
+ [
+ 66.56252666290803,
+ 45.090571637453245
+ ],
+ [
+ 66.44768397942434,
+ 44.89592390252479
+ ],
+ [
+ 66.56252666290803,
+ 44.70127616759634
+ ],
+ [
+ 66.79221202987537,
+ 44.70127616759634
+ ],
+ [
+ 66.90705471335906,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 45.2852193723817
+ ],
+ [
+ 66.79221202987537,
+ 45.47986710731015
+ ],
+ [
+ 66.56252666290803,
+ 45.47986710731015
+ ],
+ [
+ 66.44768397942434,
+ 45.2852193723817
+ ],
+ [
+ 66.56252666290803,
+ 45.090571637453245
+ ],
+ [
+ 66.79221202987537,
+ 45.090571637453245
+ ],
+ [
+ 66.90705471335906,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 45.6745148422386
+ ],
+ [
+ 66.79221202987537,
+ 45.86916257716705
+ ],
+ [
+ 66.56252666290803,
+ 45.86916257716705
+ ],
+ [
+ 66.44768397942434,
+ 45.6745148422386
+ ],
+ [
+ 66.56252666290803,
+ 45.47986710731015
+ ],
+ [
+ 66.79221202987537,
+ 45.47986710731015
+ ],
+ [
+ 66.90705471335906,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 46.063810312095505
+ ],
+ [
+ 66.79221202987537,
+ 46.25845804702396
+ ],
+ [
+ 66.56252666290803,
+ 46.25845804702396
+ ],
+ [
+ 66.44768397942434,
+ 46.063810312095505
+ ],
+ [
+ 66.56252666290803,
+ 45.86916257716705
+ ],
+ [
+ 66.79221202987537,
+ 45.86916257716705
+ ],
+ [
+ 66.90705471335906,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 46.45310578195241
+ ],
+ [
+ 66.79221202987537,
+ 46.64775351688086
+ ],
+ [
+ 66.56252666290803,
+ 46.64775351688086
+ ],
+ [
+ 66.44768397942434,
+ 46.45310578195241
+ ],
+ [
+ 66.56252666290803,
+ 46.25845804702396
+ ],
+ [
+ 66.79221202987537,
+ 46.25845804702396
+ ],
+ [
+ 66.90705471335906,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 46.842401251809314
+ ],
+ [
+ 66.79221202987537,
+ 47.037048986737766
+ ],
+ [
+ 66.56252666290803,
+ 47.037048986737766
+ ],
+ [
+ 66.44768397942434,
+ 46.842401251809314
+ ],
+ [
+ 66.56252666290803,
+ 46.64775351688086
+ ],
+ [
+ 66.79221202987537,
+ 46.64775351688086
+ ],
+ [
+ 66.90705471335906,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 47.23169672166622
+ ],
+ [
+ 66.79221202987537,
+ 47.42634445659467
+ ],
+ [
+ 66.56252666290803,
+ 47.42634445659467
+ ],
+ [
+ 66.44768397942434,
+ 47.23169672166622
+ ],
+ [
+ 66.56252666290803,
+ 47.037048986737766
+ ],
+ [
+ 66.79221202987537,
+ 47.037048986737766
+ ],
+ [
+ 66.90705471335906,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 66.90705471335906,
+ 47.620992191523136
+ ],
+ [
+ 66.79221202987537,
+ 47.81563992645159
+ ],
+ [
+ 66.56252666290803,
+ 47.81563992645159
+ ],
+ [
+ 66.44768397942434,
+ 47.620992191523136
+ ],
+ [
+ 66.56252666290803,
+ 47.426344456594684
+ ],
+ [
+ 66.79221202987537,
+ 47.426344456594684
+ ],
+ [
+ 66.90705471335906,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 12.0004566996162
+ ],
+ [
+ 67.13674008032642,
+ 12.195104434544653
+ ],
+ [
+ 66.90705471335907,
+ 12.195104434544653
+ ],
+ [
+ 66.79221202987539,
+ 12.0004566996162
+ ],
+ [
+ 66.90705471335907,
+ 11.805808964687746
+ ],
+ [
+ 67.13674008032642,
+ 11.805808964687746
+ ],
+ [
+ 67.2515827638101,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 12.389752169473105
+ ],
+ [
+ 67.13674008032642,
+ 12.58439990440156
+ ],
+ [
+ 66.90705471335907,
+ 12.58439990440156
+ ],
+ [
+ 66.79221202987539,
+ 12.389752169473105
+ ],
+ [
+ 66.90705471335907,
+ 12.195104434544652
+ ],
+ [
+ 67.13674008032642,
+ 12.195104434544652
+ ],
+ [
+ 67.2515827638101,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 12.779047639330013
+ ],
+ [
+ 67.13674008032642,
+ 12.973695374258467
+ ],
+ [
+ 66.90705471335907,
+ 12.973695374258467
+ ],
+ [
+ 66.79221202987539,
+ 12.779047639330013
+ ],
+ [
+ 66.90705471335907,
+ 12.58439990440156
+ ],
+ [
+ 67.13674008032642,
+ 12.58439990440156
+ ],
+ [
+ 67.2515827638101,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 13.16834310918692
+ ],
+ [
+ 67.13674008032642,
+ 13.362990844115373
+ ],
+ [
+ 66.90705471335907,
+ 13.362990844115373
+ ],
+ [
+ 66.79221202987539,
+ 13.16834310918692
+ ],
+ [
+ 66.90705471335907,
+ 12.973695374258465
+ ],
+ [
+ 67.13674008032642,
+ 12.973695374258465
+ ],
+ [
+ 67.2515827638101,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 13.557638579043825
+ ],
+ [
+ 67.13674008032642,
+ 13.752286313972279
+ ],
+ [
+ 66.90705471335907,
+ 13.752286313972279
+ ],
+ [
+ 66.79221202987539,
+ 13.557638579043825
+ ],
+ [
+ 66.90705471335907,
+ 13.362990844115371
+ ],
+ [
+ 67.13674008032642,
+ 13.362990844115371
+ ],
+ [
+ 67.2515827638101,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 13.946934048900731
+ ],
+ [
+ 67.13674008032642,
+ 14.141581783829185
+ ],
+ [
+ 66.90705471335907,
+ 14.141581783829185
+ ],
+ [
+ 66.79221202987539,
+ 13.946934048900731
+ ],
+ [
+ 66.90705471335907,
+ 13.752286313972277
+ ],
+ [
+ 67.13674008032642,
+ 13.752286313972277
+ ],
+ [
+ 67.2515827638101,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 14.336229518757637
+ ],
+ [
+ 67.13674008032642,
+ 14.530877253686091
+ ],
+ [
+ 66.90705471335907,
+ 14.530877253686091
+ ],
+ [
+ 66.79221202987539,
+ 14.336229518757637
+ ],
+ [
+ 66.90705471335907,
+ 14.141581783829183
+ ],
+ [
+ 67.13674008032642,
+ 14.141581783829183
+ ],
+ [
+ 67.2515827638101,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 14.725524988614545
+ ],
+ [
+ 67.13674008032642,
+ 14.920172723542999
+ ],
+ [
+ 66.90705471335907,
+ 14.920172723542999
+ ],
+ [
+ 66.79221202987539,
+ 14.725524988614545
+ ],
+ [
+ 66.90705471335907,
+ 14.530877253686091
+ ],
+ [
+ 67.13674008032642,
+ 14.530877253686091
+ ],
+ [
+ 67.2515827638101,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 15.114820458471451
+ ],
+ [
+ 67.13674008032642,
+ 15.309468193399905
+ ],
+ [
+ 66.90705471335907,
+ 15.309468193399905
+ ],
+ [
+ 66.79221202987539,
+ 15.114820458471451
+ ],
+ [
+ 66.90705471335907,
+ 14.920172723542997
+ ],
+ [
+ 67.13674008032642,
+ 14.920172723542997
+ ],
+ [
+ 67.2515827638101,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 15.504115928328357
+ ],
+ [
+ 67.13674008032642,
+ 15.69876366325681
+ ],
+ [
+ 66.90705471335907,
+ 15.69876366325681
+ ],
+ [
+ 66.79221202987539,
+ 15.504115928328357
+ ],
+ [
+ 66.90705471335907,
+ 15.309468193399903
+ ],
+ [
+ 67.13674008032642,
+ 15.309468193399903
+ ],
+ [
+ 67.2515827638101,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 15.893411398185265
+ ],
+ [
+ 67.13674008032642,
+ 16.088059133113717
+ ],
+ [
+ 66.90705471335907,
+ 16.088059133113717
+ ],
+ [
+ 66.79221202987539,
+ 15.893411398185265
+ ],
+ [
+ 66.90705471335907,
+ 15.69876366325681
+ ],
+ [
+ 67.13674008032642,
+ 15.69876366325681
+ ],
+ [
+ 67.2515827638101,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 16.28270686804217
+ ],
+ [
+ 67.13674008032642,
+ 16.47735460297062
+ ],
+ [
+ 66.90705471335907,
+ 16.47735460297062
+ ],
+ [
+ 66.79221202987539,
+ 16.28270686804217
+ ],
+ [
+ 66.90705471335907,
+ 16.088059133113717
+ ],
+ [
+ 67.13674008032642,
+ 16.088059133113717
+ ],
+ [
+ 67.2515827638101,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 16.672002337899077
+ ],
+ [
+ 67.13674008032642,
+ 16.86665007282753
+ ],
+ [
+ 66.90705471335907,
+ 16.86665007282753
+ ],
+ [
+ 66.79221202987539,
+ 16.672002337899077
+ ],
+ [
+ 66.90705471335907,
+ 16.477354602970625
+ ],
+ [
+ 67.13674008032642,
+ 16.477354602970625
+ ],
+ [
+ 67.2515827638101,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 17.06129780775598
+ ],
+ [
+ 67.13674008032642,
+ 17.255945542684433
+ ],
+ [
+ 66.90705471335907,
+ 17.255945542684433
+ ],
+ [
+ 66.79221202987539,
+ 17.06129780775598
+ ],
+ [
+ 66.90705471335907,
+ 16.86665007282753
+ ],
+ [
+ 67.13674008032642,
+ 16.86665007282753
+ ],
+ [
+ 67.2515827638101,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 17.45059327761289
+ ],
+ [
+ 67.13674008032642,
+ 17.64524101254134
+ ],
+ [
+ 66.90705471335907,
+ 17.64524101254134
+ ],
+ [
+ 66.79221202987539,
+ 17.45059327761289
+ ],
+ [
+ 66.90705471335907,
+ 17.255945542684437
+ ],
+ [
+ 67.13674008032642,
+ 17.255945542684437
+ ],
+ [
+ 67.2515827638101,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 17.839888747469793
+ ],
+ [
+ 67.13674008032642,
+ 18.034536482398245
+ ],
+ [
+ 66.90705471335907,
+ 18.034536482398245
+ ],
+ [
+ 66.79221202987539,
+ 17.839888747469793
+ ],
+ [
+ 66.90705471335907,
+ 17.64524101254134
+ ],
+ [
+ 67.13674008032642,
+ 17.64524101254134
+ ],
+ [
+ 67.2515827638101,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 18.2291842173267
+ ],
+ [
+ 67.13674008032642,
+ 18.423831952255153
+ ],
+ [
+ 66.90705471335907,
+ 18.423831952255153
+ ],
+ [
+ 66.79221202987539,
+ 18.2291842173267
+ ],
+ [
+ 66.90705471335907,
+ 18.03453648239825
+ ],
+ [
+ 67.13674008032642,
+ 18.03453648239825
+ ],
+ [
+ 67.2515827638101,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 18.61847968718361
+ ],
+ [
+ 67.13674008032642,
+ 18.81312742211206
+ ],
+ [
+ 66.90705471335907,
+ 18.81312742211206
+ ],
+ [
+ 66.79221202987539,
+ 18.61847968718361
+ ],
+ [
+ 66.90705471335907,
+ 18.423831952255156
+ ],
+ [
+ 67.13674008032642,
+ 18.423831952255156
+ ],
+ [
+ 67.2515827638101,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 19.007775157040513
+ ],
+ [
+ 67.13674008032642,
+ 19.202422891968965
+ ],
+ [
+ 66.90705471335907,
+ 19.202422891968965
+ ],
+ [
+ 66.79221202987539,
+ 19.007775157040513
+ ],
+ [
+ 66.90705471335907,
+ 18.81312742211206
+ ],
+ [
+ 67.13674008032642,
+ 18.81312742211206
+ ],
+ [
+ 67.2515827638101,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 19.39707062689742
+ ],
+ [
+ 67.13674008032642,
+ 19.591718361825873
+ ],
+ [
+ 66.90705471335907,
+ 19.591718361825873
+ ],
+ [
+ 66.79221202987539,
+ 19.39707062689742
+ ],
+ [
+ 66.90705471335907,
+ 19.20242289196897
+ ],
+ [
+ 67.13674008032642,
+ 19.20242289196897
+ ],
+ [
+ 67.2515827638101,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 19.78636609675433
+ ],
+ [
+ 67.13674008032642,
+ 19.98101383168278
+ ],
+ [
+ 66.90705471335907,
+ 19.98101383168278
+ ],
+ [
+ 66.79221202987539,
+ 19.78636609675433
+ ],
+ [
+ 66.90705471335907,
+ 19.591718361825876
+ ],
+ [
+ 67.13674008032642,
+ 19.591718361825876
+ ],
+ [
+ 67.2515827638101,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 20.175661566611232
+ ],
+ [
+ 67.13674008032642,
+ 20.370309301539685
+ ],
+ [
+ 66.90705471335907,
+ 20.370309301539685
+ ],
+ [
+ 66.79221202987539,
+ 20.175661566611232
+ ],
+ [
+ 66.90705471335907,
+ 19.98101383168278
+ ],
+ [
+ 67.13674008032642,
+ 19.98101383168278
+ ],
+ [
+ 67.2515827638101,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 20.564957036468137
+ ],
+ [
+ 67.13674008032642,
+ 20.75960477139659
+ ],
+ [
+ 66.90705471335907,
+ 20.75960477139659
+ ],
+ [
+ 66.79221202987539,
+ 20.564957036468137
+ ],
+ [
+ 66.90705471335907,
+ 20.370309301539685
+ ],
+ [
+ 67.13674008032642,
+ 20.370309301539685
+ ],
+ [
+ 67.2515827638101,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 20.954252506325044
+ ],
+ [
+ 67.13674008032642,
+ 21.148900241253497
+ ],
+ [
+ 66.90705471335907,
+ 21.148900241253497
+ ],
+ [
+ 66.79221202987539,
+ 20.954252506325044
+ ],
+ [
+ 66.90705471335907,
+ 20.759604771396592
+ ],
+ [
+ 67.13674008032642,
+ 20.759604771396592
+ ],
+ [
+ 67.2515827638101,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 21.343547976181952
+ ],
+ [
+ 67.13674008032642,
+ 21.538195711110404
+ ],
+ [
+ 66.90705471335907,
+ 21.538195711110404
+ ],
+ [
+ 66.79221202987539,
+ 21.343547976181952
+ ],
+ [
+ 66.90705471335907,
+ 21.1489002412535
+ ],
+ [
+ 67.13674008032642,
+ 21.1489002412535
+ ],
+ [
+ 67.2515827638101,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 21.732843446038856
+ ],
+ [
+ 67.13674008032642,
+ 21.92749118096731
+ ],
+ [
+ 66.90705471335907,
+ 21.92749118096731
+ ],
+ [
+ 66.79221202987539,
+ 21.732843446038856
+ ],
+ [
+ 66.90705471335907,
+ 21.538195711110404
+ ],
+ [
+ 67.13674008032642,
+ 21.538195711110404
+ ],
+ [
+ 67.2515827638101,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 22.122138915895764
+ ],
+ [
+ 67.13674008032642,
+ 22.316786650824216
+ ],
+ [
+ 66.90705471335907,
+ 22.316786650824216
+ ],
+ [
+ 66.79221202987539,
+ 22.122138915895764
+ ],
+ [
+ 66.90705471335907,
+ 21.927491180967312
+ ],
+ [
+ 67.13674008032642,
+ 21.927491180967312
+ ],
+ [
+ 67.2515827638101,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 22.511434385752672
+ ],
+ [
+ 67.13674008032642,
+ 22.706082120681124
+ ],
+ [
+ 66.90705471335907,
+ 22.706082120681124
+ ],
+ [
+ 66.79221202987539,
+ 22.511434385752672
+ ],
+ [
+ 66.90705471335907,
+ 22.31678665082422
+ ],
+ [
+ 67.13674008032642,
+ 22.31678665082422
+ ],
+ [
+ 67.2515827638101,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 22.900729855609576
+ ],
+ [
+ 67.13674008032642,
+ 23.09537759053803
+ ],
+ [
+ 66.90705471335907,
+ 23.09537759053803
+ ],
+ [
+ 66.79221202987539,
+ 22.900729855609576
+ ],
+ [
+ 66.90705471335907,
+ 22.706082120681124
+ ],
+ [
+ 67.13674008032642,
+ 22.706082120681124
+ ],
+ [
+ 67.2515827638101,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 23.290025325466484
+ ],
+ [
+ 67.13674008032642,
+ 23.484673060394936
+ ],
+ [
+ 66.90705471335907,
+ 23.484673060394936
+ ],
+ [
+ 66.79221202987539,
+ 23.290025325466484
+ ],
+ [
+ 66.90705471335907,
+ 23.095377590538032
+ ],
+ [
+ 67.13674008032642,
+ 23.095377590538032
+ ],
+ [
+ 67.2515827638101,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 23.67932079532339
+ ],
+ [
+ 67.13674008032642,
+ 23.873968530251844
+ ],
+ [
+ 66.90705471335907,
+ 23.873968530251844
+ ],
+ [
+ 66.79221202987539,
+ 23.67932079532339
+ ],
+ [
+ 66.90705471335907,
+ 23.48467306039494
+ ],
+ [
+ 67.13674008032642,
+ 23.48467306039494
+ ],
+ [
+ 67.2515827638101,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 24.068616265180296
+ ],
+ [
+ 67.13674008032642,
+ 24.263264000108748
+ ],
+ [
+ 66.90705471335907,
+ 24.263264000108748
+ ],
+ [
+ 66.79221202987539,
+ 24.068616265180296
+ ],
+ [
+ 66.90705471335907,
+ 23.873968530251844
+ ],
+ [
+ 67.13674008032642,
+ 23.873968530251844
+ ],
+ [
+ 67.2515827638101,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 24.4579117350372
+ ],
+ [
+ 67.13674008032642,
+ 24.652559469965652
+ ],
+ [
+ 66.90705471335907,
+ 24.652559469965652
+ ],
+ [
+ 66.79221202987539,
+ 24.4579117350372
+ ],
+ [
+ 66.90705471335907,
+ 24.263264000108748
+ ],
+ [
+ 67.13674008032642,
+ 24.263264000108748
+ ],
+ [
+ 67.2515827638101,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 24.847207204894108
+ ],
+ [
+ 67.13674008032642,
+ 25.04185493982256
+ ],
+ [
+ 66.90705471335907,
+ 25.04185493982256
+ ],
+ [
+ 66.79221202987539,
+ 24.847207204894108
+ ],
+ [
+ 66.90705471335907,
+ 24.652559469965656
+ ],
+ [
+ 67.13674008032642,
+ 24.652559469965656
+ ],
+ [
+ 67.2515827638101,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 25.236502674751016
+ ],
+ [
+ 67.13674008032642,
+ 25.431150409679468
+ ],
+ [
+ 66.90705471335907,
+ 25.431150409679468
+ ],
+ [
+ 66.79221202987539,
+ 25.236502674751016
+ ],
+ [
+ 66.90705471335907,
+ 25.041854939822564
+ ],
+ [
+ 67.13674008032642,
+ 25.041854939822564
+ ],
+ [
+ 67.2515827638101,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 25.62579814460792
+ ],
+ [
+ 67.13674008032642,
+ 25.820445879536372
+ ],
+ [
+ 66.90705471335907,
+ 25.820445879536372
+ ],
+ [
+ 66.79221202987539,
+ 25.62579814460792
+ ],
+ [
+ 66.90705471335907,
+ 25.431150409679468
+ ],
+ [
+ 67.13674008032642,
+ 25.431150409679468
+ ],
+ [
+ 67.2515827638101,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 26.015093614464828
+ ],
+ [
+ 67.13674008032642,
+ 26.20974134939328
+ ],
+ [
+ 66.90705471335907,
+ 26.20974134939328
+ ],
+ [
+ 66.79221202987539,
+ 26.015093614464828
+ ],
+ [
+ 66.90705471335907,
+ 25.820445879536376
+ ],
+ [
+ 67.13674008032642,
+ 25.820445879536376
+ ],
+ [
+ 67.2515827638101,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 26.404389084321735
+ ],
+ [
+ 67.13674008032642,
+ 26.599036819250188
+ ],
+ [
+ 66.90705471335907,
+ 26.599036819250188
+ ],
+ [
+ 66.79221202987539,
+ 26.404389084321735
+ ],
+ [
+ 66.90705471335907,
+ 26.209741349393283
+ ],
+ [
+ 67.13674008032642,
+ 26.209741349393283
+ ],
+ [
+ 67.2515827638101,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 26.79368455417864
+ ],
+ [
+ 67.13674008032642,
+ 26.988332289107092
+ ],
+ [
+ 66.90705471335907,
+ 26.988332289107092
+ ],
+ [
+ 66.79221202987539,
+ 26.79368455417864
+ ],
+ [
+ 66.90705471335907,
+ 26.599036819250188
+ ],
+ [
+ 67.13674008032642,
+ 26.599036819250188
+ ],
+ [
+ 67.2515827638101,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 27.182980024035547
+ ],
+ [
+ 67.13674008032642,
+ 27.377627758964
+ ],
+ [
+ 66.90705471335907,
+ 27.377627758964
+ ],
+ [
+ 66.79221202987539,
+ 27.182980024035547
+ ],
+ [
+ 66.90705471335907,
+ 26.988332289107095
+ ],
+ [
+ 67.13674008032642,
+ 26.988332289107095
+ ],
+ [
+ 67.2515827638101,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 27.572275493892455
+ ],
+ [
+ 67.13674008032642,
+ 27.766923228820907
+ ],
+ [
+ 66.90705471335907,
+ 27.766923228820907
+ ],
+ [
+ 66.79221202987539,
+ 27.572275493892455
+ ],
+ [
+ 66.90705471335907,
+ 27.377627758964003
+ ],
+ [
+ 67.13674008032642,
+ 27.377627758964003
+ ],
+ [
+ 67.2515827638101,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 27.96157096374936
+ ],
+ [
+ 67.13674008032642,
+ 28.15621869867781
+ ],
+ [
+ 66.90705471335907,
+ 28.15621869867781
+ ],
+ [
+ 66.79221202987539,
+ 27.96157096374936
+ ],
+ [
+ 66.90705471335907,
+ 27.766923228820907
+ ],
+ [
+ 67.13674008032642,
+ 27.766923228820907
+ ],
+ [
+ 67.2515827638101,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 28.350866433606267
+ ],
+ [
+ 67.13674008032642,
+ 28.54551416853472
+ ],
+ [
+ 66.90705471335907,
+ 28.54551416853472
+ ],
+ [
+ 66.79221202987539,
+ 28.350866433606267
+ ],
+ [
+ 66.90705471335907,
+ 28.156218698677815
+ ],
+ [
+ 67.13674008032642,
+ 28.156218698677815
+ ],
+ [
+ 67.2515827638101,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 28.74016190346317
+ ],
+ [
+ 67.13674008032642,
+ 28.934809638391624
+ ],
+ [
+ 66.90705471335907,
+ 28.934809638391624
+ ],
+ [
+ 66.79221202987539,
+ 28.74016190346317
+ ],
+ [
+ 66.90705471335907,
+ 28.54551416853472
+ ],
+ [
+ 67.13674008032642,
+ 28.54551416853472
+ ],
+ [
+ 67.2515827638101,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 29.12945737332008
+ ],
+ [
+ 67.13674008032642,
+ 29.32410510824853
+ ],
+ [
+ 66.90705471335907,
+ 29.32410510824853
+ ],
+ [
+ 66.79221202987539,
+ 29.12945737332008
+ ],
+ [
+ 66.90705471335907,
+ 28.934809638391627
+ ],
+ [
+ 67.13674008032642,
+ 28.934809638391627
+ ],
+ [
+ 67.2515827638101,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 29.518752843176983
+ ],
+ [
+ 67.13674008032642,
+ 29.713400578105436
+ ],
+ [
+ 66.90705471335907,
+ 29.713400578105436
+ ],
+ [
+ 66.79221202987539,
+ 29.518752843176983
+ ],
+ [
+ 66.90705471335907,
+ 29.32410510824853
+ ],
+ [
+ 67.13674008032642,
+ 29.32410510824853
+ ],
+ [
+ 67.2515827638101,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 29.90804831303389
+ ],
+ [
+ 67.13674008032642,
+ 30.102696047962343
+ ],
+ [
+ 66.90705471335907,
+ 30.102696047962343
+ ],
+ [
+ 66.79221202987539,
+ 29.90804831303389
+ ],
+ [
+ 66.90705471335907,
+ 29.71340057810544
+ ],
+ [
+ 67.13674008032642,
+ 29.71340057810544
+ ],
+ [
+ 67.2515827638101,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 30.297343782890795
+ ],
+ [
+ 67.13674008032642,
+ 30.491991517819248
+ ],
+ [
+ 66.90705471335907,
+ 30.491991517819248
+ ],
+ [
+ 66.79221202987539,
+ 30.297343782890795
+ ],
+ [
+ 66.90705471335907,
+ 30.102696047962343
+ ],
+ [
+ 67.13674008032642,
+ 30.102696047962343
+ ],
+ [
+ 67.2515827638101,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 30.686639252747703
+ ],
+ [
+ 67.13674008032642,
+ 30.881286987676155
+ ],
+ [
+ 66.90705471335907,
+ 30.881286987676155
+ ],
+ [
+ 66.79221202987539,
+ 30.686639252747703
+ ],
+ [
+ 66.90705471335907,
+ 30.49199151781925
+ ],
+ [
+ 67.13674008032642,
+ 30.49199151781925
+ ],
+ [
+ 67.2515827638101,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 31.07593472260461
+ ],
+ [
+ 67.13674008032642,
+ 31.270582457533063
+ ],
+ [
+ 66.90705471335907,
+ 31.270582457533063
+ ],
+ [
+ 66.79221202987539,
+ 31.07593472260461
+ ],
+ [
+ 66.90705471335907,
+ 30.88128698767616
+ ],
+ [
+ 67.13674008032642,
+ 30.88128698767616
+ ],
+ [
+ 67.2515827638101,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 31.465230192461515
+ ],
+ [
+ 67.13674008032642,
+ 31.659877927389967
+ ],
+ [
+ 66.90705471335907,
+ 31.659877927389967
+ ],
+ [
+ 66.79221202987539,
+ 31.465230192461515
+ ],
+ [
+ 66.90705471335907,
+ 31.270582457533063
+ ],
+ [
+ 67.13674008032642,
+ 31.270582457533063
+ ],
+ [
+ 67.2515827638101,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 31.854525662318423
+ ],
+ [
+ 67.13674008032642,
+ 32.049173397246875
+ ],
+ [
+ 66.90705471335907,
+ 32.049173397246875
+ ],
+ [
+ 66.79221202987539,
+ 31.854525662318423
+ ],
+ [
+ 66.90705471335907,
+ 31.65987792738997
+ ],
+ [
+ 67.13674008032642,
+ 31.65987792738997
+ ],
+ [
+ 67.2515827638101,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 32.24382113217533
+ ],
+ [
+ 67.13674008032642,
+ 32.43846886710378
+ ],
+ [
+ 66.90705471335907,
+ 32.43846886710378
+ ],
+ [
+ 66.79221202987539,
+ 32.24382113217533
+ ],
+ [
+ 66.90705471335907,
+ 32.049173397246875
+ ],
+ [
+ 67.13674008032642,
+ 32.049173397246875
+ ],
+ [
+ 67.2515827638101,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 32.63311660203224
+ ],
+ [
+ 67.13674008032642,
+ 32.82776433696069
+ ],
+ [
+ 66.90705471335907,
+ 32.82776433696069
+ ],
+ [
+ 66.79221202987539,
+ 32.63311660203224
+ ],
+ [
+ 66.90705471335907,
+ 32.438468867103786
+ ],
+ [
+ 67.13674008032642,
+ 32.438468867103786
+ ],
+ [
+ 67.2515827638101,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 33.02241207188914
+ ],
+ [
+ 67.13674008032642,
+ 33.217059806817595
+ ],
+ [
+ 66.90705471335907,
+ 33.217059806817595
+ ],
+ [
+ 66.79221202987539,
+ 33.02241207188914
+ ],
+ [
+ 66.90705471335907,
+ 32.82776433696069
+ ],
+ [
+ 67.13674008032642,
+ 32.82776433696069
+ ],
+ [
+ 67.2515827638101,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 33.41170754174605
+ ],
+ [
+ 67.13674008032642,
+ 33.6063552766745
+ ],
+ [
+ 66.90705471335907,
+ 33.6063552766745
+ ],
+ [
+ 66.79221202987539,
+ 33.41170754174605
+ ],
+ [
+ 66.90705471335907,
+ 33.217059806817595
+ ],
+ [
+ 67.13674008032642,
+ 33.217059806817595
+ ],
+ [
+ 67.2515827638101,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 33.80100301160295
+ ],
+ [
+ 67.13674008032642,
+ 33.9956507465314
+ ],
+ [
+ 66.90705471335907,
+ 33.9956507465314
+ ],
+ [
+ 66.79221202987539,
+ 33.80100301160295
+ ],
+ [
+ 66.90705471335907,
+ 33.6063552766745
+ ],
+ [
+ 67.13674008032642,
+ 33.6063552766745
+ ],
+ [
+ 67.2515827638101,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 34.190298481459855
+ ],
+ [
+ 67.13674008032642,
+ 34.38494621638831
+ ],
+ [
+ 66.90705471335907,
+ 34.38494621638831
+ ],
+ [
+ 66.79221202987539,
+ 34.190298481459855
+ ],
+ [
+ 66.90705471335907,
+ 33.9956507465314
+ ],
+ [
+ 67.13674008032642,
+ 33.9956507465314
+ ],
+ [
+ 67.2515827638101,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 34.57959395131677
+ ],
+ [
+ 67.13674008032642,
+ 34.77424168624522
+ ],
+ [
+ 66.90705471335907,
+ 34.77424168624522
+ ],
+ [
+ 66.79221202987539,
+ 34.57959395131677
+ ],
+ [
+ 66.90705471335907,
+ 34.384946216388315
+ ],
+ [
+ 67.13674008032642,
+ 34.384946216388315
+ ],
+ [
+ 67.2515827638101,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 34.96888942117368
+ ],
+ [
+ 67.13674008032642,
+ 35.16353715610213
+ ],
+ [
+ 66.90705471335907,
+ 35.16353715610213
+ ],
+ [
+ 66.79221202987539,
+ 34.96888942117368
+ ],
+ [
+ 66.90705471335907,
+ 34.774241686245226
+ ],
+ [
+ 67.13674008032642,
+ 34.774241686245226
+ ],
+ [
+ 67.2515827638101,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 35.35818489103058
+ ],
+ [
+ 67.13674008032642,
+ 35.552832625959034
+ ],
+ [
+ 66.90705471335907,
+ 35.552832625959034
+ ],
+ [
+ 66.79221202987539,
+ 35.35818489103058
+ ],
+ [
+ 66.90705471335907,
+ 35.16353715610213
+ ],
+ [
+ 67.13674008032642,
+ 35.16353715610213
+ ],
+ [
+ 67.2515827638101,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 35.74748036088749
+ ],
+ [
+ 67.13674008032642,
+ 35.94212809581594
+ ],
+ [
+ 66.90705471335907,
+ 35.94212809581594
+ ],
+ [
+ 66.79221202987539,
+ 35.74748036088749
+ ],
+ [
+ 66.90705471335907,
+ 35.552832625959034
+ ],
+ [
+ 67.13674008032642,
+ 35.552832625959034
+ ],
+ [
+ 67.2515827638101,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 36.13677583074439
+ ],
+ [
+ 67.13674008032642,
+ 36.33142356567284
+ ],
+ [
+ 66.90705471335907,
+ 36.33142356567284
+ ],
+ [
+ 66.79221202987539,
+ 36.13677583074439
+ ],
+ [
+ 66.90705471335907,
+ 35.94212809581594
+ ],
+ [
+ 67.13674008032642,
+ 35.94212809581594
+ ],
+ [
+ 67.2515827638101,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 36.526071300601295
+ ],
+ [
+ 67.13674008032642,
+ 36.72071903552975
+ ],
+ [
+ 66.90705471335907,
+ 36.72071903552975
+ ],
+ [
+ 66.79221202987539,
+ 36.526071300601295
+ ],
+ [
+ 66.90705471335907,
+ 36.33142356567284
+ ],
+ [
+ 67.13674008032642,
+ 36.33142356567284
+ ],
+ [
+ 67.2515827638101,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 36.915366770458206
+ ],
+ [
+ 67.13674008032642,
+ 37.11001450538666
+ ],
+ [
+ 66.90705471335907,
+ 37.11001450538666
+ ],
+ [
+ 66.79221202987539,
+ 36.915366770458206
+ ],
+ [
+ 66.90705471335907,
+ 36.720719035529754
+ ],
+ [
+ 67.13674008032642,
+ 36.720719035529754
+ ],
+ [
+ 67.2515827638101,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 37.30466224031511
+ ],
+ [
+ 67.13674008032642,
+ 37.49930997524356
+ ],
+ [
+ 66.90705471335907,
+ 37.49930997524356
+ ],
+ [
+ 66.79221202987539,
+ 37.30466224031511
+ ],
+ [
+ 66.90705471335907,
+ 37.11001450538666
+ ],
+ [
+ 67.13674008032642,
+ 37.11001450538666
+ ],
+ [
+ 67.2515827638101,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 37.69395771017202
+ ],
+ [
+ 67.13674008032642,
+ 37.888605445100474
+ ],
+ [
+ 66.90705471335907,
+ 37.888605445100474
+ ],
+ [
+ 66.79221202987539,
+ 37.69395771017202
+ ],
+ [
+ 66.90705471335907,
+ 37.49930997524357
+ ],
+ [
+ 67.13674008032642,
+ 37.49930997524357
+ ],
+ [
+ 67.2515827638101,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 38.083253180028926
+ ],
+ [
+ 67.13674008032642,
+ 38.27790091495738
+ ],
+ [
+ 66.90705471335907,
+ 38.27790091495738
+ ],
+ [
+ 66.79221202987539,
+ 38.083253180028926
+ ],
+ [
+ 66.90705471335907,
+ 37.888605445100474
+ ],
+ [
+ 67.13674008032642,
+ 37.888605445100474
+ ],
+ [
+ 67.2515827638101,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 38.47254864988583
+ ],
+ [
+ 67.13674008032642,
+ 38.66719638481428
+ ],
+ [
+ 66.90705471335907,
+ 38.66719638481428
+ ],
+ [
+ 66.79221202987539,
+ 38.47254864988583
+ ],
+ [
+ 66.90705471335907,
+ 38.27790091495738
+ ],
+ [
+ 67.13674008032642,
+ 38.27790091495738
+ ],
+ [
+ 67.2515827638101,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 38.861844119742734
+ ],
+ [
+ 67.13674008032642,
+ 39.05649185467119
+ ],
+ [
+ 66.90705471335907,
+ 39.05649185467119
+ ],
+ [
+ 66.79221202987539,
+ 38.861844119742734
+ ],
+ [
+ 66.90705471335907,
+ 38.66719638481428
+ ],
+ [
+ 67.13674008032642,
+ 38.66719638481428
+ ],
+ [
+ 67.2515827638101,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 39.25113958959964
+ ],
+ [
+ 67.13674008032642,
+ 39.44578732452809
+ ],
+ [
+ 66.90705471335907,
+ 39.44578732452809
+ ],
+ [
+ 66.79221202987539,
+ 39.25113958959964
+ ],
+ [
+ 66.90705471335907,
+ 39.05649185467119
+ ],
+ [
+ 67.13674008032642,
+ 39.05649185467119
+ ],
+ [
+ 67.2515827638101,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 39.64043505945655
+ ],
+ [
+ 67.13674008032642,
+ 39.835082794385
+ ],
+ [
+ 66.90705471335907,
+ 39.835082794385
+ ],
+ [
+ 66.79221202987539,
+ 39.64043505945655
+ ],
+ [
+ 66.90705471335907,
+ 39.4457873245281
+ ],
+ [
+ 67.13674008032642,
+ 39.4457873245281
+ ],
+ [
+ 67.2515827638101,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 40.029730529313454
+ ],
+ [
+ 67.13674008032642,
+ 40.224378264241906
+ ],
+ [
+ 66.90705471335907,
+ 40.224378264241906
+ ],
+ [
+ 66.79221202987539,
+ 40.029730529313454
+ ],
+ [
+ 66.90705471335907,
+ 39.835082794385
+ ],
+ [
+ 67.13674008032642,
+ 39.835082794385
+ ],
+ [
+ 67.2515827638101,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 40.419025999170366
+ ],
+ [
+ 67.13674008032642,
+ 40.61367373409882
+ ],
+ [
+ 66.90705471335907,
+ 40.61367373409882
+ ],
+ [
+ 66.79221202987539,
+ 40.419025999170366
+ ],
+ [
+ 66.90705471335907,
+ 40.22437826424191
+ ],
+ [
+ 67.13674008032642,
+ 40.22437826424191
+ ],
+ [
+ 67.2515827638101,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 40.80832146902727
+ ],
+ [
+ 67.13674008032642,
+ 41.00296920395572
+ ],
+ [
+ 66.90705471335907,
+ 41.00296920395572
+ ],
+ [
+ 66.79221202987539,
+ 40.80832146902727
+ ],
+ [
+ 66.90705471335907,
+ 40.61367373409882
+ ],
+ [
+ 67.13674008032642,
+ 40.61367373409882
+ ],
+ [
+ 67.2515827638101,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 41.197616938884174
+ ],
+ [
+ 67.13674008032642,
+ 41.392264673812626
+ ],
+ [
+ 66.90705471335907,
+ 41.392264673812626
+ ],
+ [
+ 66.79221202987539,
+ 41.197616938884174
+ ],
+ [
+ 66.90705471335907,
+ 41.00296920395572
+ ],
+ [
+ 67.13674008032642,
+ 41.00296920395572
+ ],
+ [
+ 67.2515827638101,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 41.58691240874108
+ ],
+ [
+ 67.13674008032642,
+ 41.78156014366953
+ ],
+ [
+ 66.90705471335907,
+ 41.78156014366953
+ ],
+ [
+ 66.79221202987539,
+ 41.58691240874108
+ ],
+ [
+ 66.90705471335907,
+ 41.392264673812626
+ ],
+ [
+ 67.13674008032642,
+ 41.392264673812626
+ ],
+ [
+ 67.2515827638101,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 41.97620787859798
+ ],
+ [
+ 67.13674008032642,
+ 42.170855613526435
+ ],
+ [
+ 66.90705471335907,
+ 42.170855613526435
+ ],
+ [
+ 66.79221202987539,
+ 41.97620787859798
+ ],
+ [
+ 66.90705471335907,
+ 41.78156014366953
+ ],
+ [
+ 67.13674008032642,
+ 41.78156014366953
+ ],
+ [
+ 67.2515827638101,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 42.365503348454894
+ ],
+ [
+ 67.13674008032642,
+ 42.560151083383346
+ ],
+ [
+ 66.90705471335907,
+ 42.560151083383346
+ ],
+ [
+ 66.79221202987539,
+ 42.365503348454894
+ ],
+ [
+ 66.90705471335907,
+ 42.17085561352644
+ ],
+ [
+ 67.13674008032642,
+ 42.17085561352644
+ ],
+ [
+ 67.2515827638101,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 42.754798818311805
+ ],
+ [
+ 67.13674008032642,
+ 42.94944655324026
+ ],
+ [
+ 66.90705471335907,
+ 42.94944655324026
+ ],
+ [
+ 66.79221202987539,
+ 42.754798818311805
+ ],
+ [
+ 66.90705471335907,
+ 42.56015108338335
+ ],
+ [
+ 67.13674008032642,
+ 42.56015108338335
+ ],
+ [
+ 67.2515827638101,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 43.14409428816871
+ ],
+ [
+ 67.13674008032642,
+ 43.33874202309716
+ ],
+ [
+ 66.90705471335907,
+ 43.33874202309716
+ ],
+ [
+ 66.79221202987539,
+ 43.14409428816871
+ ],
+ [
+ 66.90705471335907,
+ 42.94944655324026
+ ],
+ [
+ 67.13674008032642,
+ 42.94944655324026
+ ],
+ [
+ 67.2515827638101,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 43.53338975802561
+ ],
+ [
+ 67.13674008032642,
+ 43.728037492954066
+ ],
+ [
+ 66.90705471335907,
+ 43.728037492954066
+ ],
+ [
+ 66.79221202987539,
+ 43.53338975802561
+ ],
+ [
+ 66.90705471335907,
+ 43.33874202309716
+ ],
+ [
+ 67.13674008032642,
+ 43.33874202309716
+ ],
+ [
+ 67.2515827638101,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 43.92268522788252
+ ],
+ [
+ 67.13674008032642,
+ 44.11733296281097
+ ],
+ [
+ 66.90705471335907,
+ 44.11733296281097
+ ],
+ [
+ 66.79221202987539,
+ 43.92268522788252
+ ],
+ [
+ 66.90705471335907,
+ 43.728037492954066
+ ],
+ [
+ 67.13674008032642,
+ 43.728037492954066
+ ],
+ [
+ 67.2515827638101,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 44.31198069773942
+ ],
+ [
+ 67.13674008032642,
+ 44.506628432667874
+ ],
+ [
+ 66.90705471335907,
+ 44.506628432667874
+ ],
+ [
+ 66.79221202987539,
+ 44.31198069773942
+ ],
+ [
+ 66.90705471335907,
+ 44.11733296281097
+ ],
+ [
+ 67.13674008032642,
+ 44.11733296281097
+ ],
+ [
+ 67.2515827638101,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 44.701276167596326
+ ],
+ [
+ 67.13674008032642,
+ 44.89592390252478
+ ],
+ [
+ 66.90705471335907,
+ 44.89592390252478
+ ],
+ [
+ 66.79221202987539,
+ 44.701276167596326
+ ],
+ [
+ 66.90705471335907,
+ 44.506628432667874
+ ],
+ [
+ 67.13674008032642,
+ 44.506628432667874
+ ],
+ [
+ 67.2515827638101,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 45.090571637453245
+ ],
+ [
+ 67.13674008032642,
+ 45.2852193723817
+ ],
+ [
+ 66.90705471335907,
+ 45.2852193723817
+ ],
+ [
+ 66.79221202987539,
+ 45.090571637453245
+ ],
+ [
+ 66.90705471335907,
+ 44.89592390252479
+ ],
+ [
+ 67.13674008032642,
+ 44.89592390252479
+ ],
+ [
+ 67.2515827638101,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 45.47986710731015
+ ],
+ [
+ 67.13674008032642,
+ 45.6745148422386
+ ],
+ [
+ 66.90705471335907,
+ 45.6745148422386
+ ],
+ [
+ 66.79221202987539,
+ 45.47986710731015
+ ],
+ [
+ 66.90705471335907,
+ 45.2852193723817
+ ],
+ [
+ 67.13674008032642,
+ 45.2852193723817
+ ],
+ [
+ 67.2515827638101,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 45.86916257716705
+ ],
+ [
+ 67.13674008032642,
+ 46.063810312095505
+ ],
+ [
+ 66.90705471335907,
+ 46.063810312095505
+ ],
+ [
+ 66.79221202987539,
+ 45.86916257716705
+ ],
+ [
+ 66.90705471335907,
+ 45.6745148422386
+ ],
+ [
+ 67.13674008032642,
+ 45.6745148422386
+ ],
+ [
+ 67.2515827638101,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 46.25845804702396
+ ],
+ [
+ 67.13674008032642,
+ 46.45310578195241
+ ],
+ [
+ 66.90705471335907,
+ 46.45310578195241
+ ],
+ [
+ 66.79221202987539,
+ 46.25845804702396
+ ],
+ [
+ 66.90705471335907,
+ 46.063810312095505
+ ],
+ [
+ 67.13674008032642,
+ 46.063810312095505
+ ],
+ [
+ 67.2515827638101,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 46.64775351688086
+ ],
+ [
+ 67.13674008032642,
+ 46.842401251809314
+ ],
+ [
+ 66.90705471335907,
+ 46.842401251809314
+ ],
+ [
+ 66.79221202987539,
+ 46.64775351688086
+ ],
+ [
+ 66.90705471335907,
+ 46.45310578195241
+ ],
+ [
+ 67.13674008032642,
+ 46.45310578195241
+ ],
+ [
+ 67.2515827638101,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 47.037048986737766
+ ],
+ [
+ 67.13674008032642,
+ 47.23169672166622
+ ],
+ [
+ 66.90705471335907,
+ 47.23169672166622
+ ],
+ [
+ 66.79221202987539,
+ 47.037048986737766
+ ],
+ [
+ 66.90705471335907,
+ 46.842401251809314
+ ],
+ [
+ 67.13674008032642,
+ 46.842401251809314
+ ],
+ [
+ 67.2515827638101,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 47.42634445659467
+ ],
+ [
+ 67.13674008032642,
+ 47.62099219152312
+ ],
+ [
+ 66.90705471335907,
+ 47.62099219152312
+ ],
+ [
+ 66.79221202987539,
+ 47.42634445659467
+ ],
+ [
+ 66.90705471335907,
+ 47.23169672166622
+ ],
+ [
+ 67.13674008032642,
+ 47.23169672166622
+ ],
+ [
+ 67.2515827638101,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.2515827638101,
+ 47.81563992645159
+ ],
+ [
+ 67.13674008032642,
+ 48.01028766138004
+ ],
+ [
+ 66.90705471335907,
+ 48.01028766138004
+ ],
+ [
+ 66.79221202987539,
+ 47.81563992645159
+ ],
+ [
+ 66.90705471335907,
+ 47.620992191523136
+ ],
+ [
+ 67.13674008032642,
+ 47.620992191523136
+ ],
+ [
+ 67.2515827638101,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 11.805808964687746
+ ],
+ [
+ 67.48126813077745,
+ 12.0004566996162
+ ],
+ [
+ 67.2515827638101,
+ 12.0004566996162
+ ],
+ [
+ 67.13674008032642,
+ 11.805808964687746
+ ],
+ [
+ 67.2515827638101,
+ 11.611161229759292
+ ],
+ [
+ 67.48126813077745,
+ 11.611161229759292
+ ],
+ [
+ 67.59611081426114,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 12.195104434544652
+ ],
+ [
+ 67.48126813077745,
+ 12.389752169473105
+ ],
+ [
+ 67.2515827638101,
+ 12.389752169473105
+ ],
+ [
+ 67.13674008032642,
+ 12.195104434544652
+ ],
+ [
+ 67.2515827638101,
+ 12.000456699616198
+ ],
+ [
+ 67.48126813077745,
+ 12.000456699616198
+ ],
+ [
+ 67.59611081426114,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 12.58439990440156
+ ],
+ [
+ 67.48126813077745,
+ 12.779047639330013
+ ],
+ [
+ 67.2515827638101,
+ 12.779047639330013
+ ],
+ [
+ 67.13674008032642,
+ 12.58439990440156
+ ],
+ [
+ 67.2515827638101,
+ 12.389752169473105
+ ],
+ [
+ 67.48126813077745,
+ 12.389752169473105
+ ],
+ [
+ 67.59611081426114,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 12.973695374258465
+ ],
+ [
+ 67.48126813077745,
+ 13.16834310918692
+ ],
+ [
+ 67.2515827638101,
+ 13.16834310918692
+ ],
+ [
+ 67.13674008032642,
+ 12.973695374258465
+ ],
+ [
+ 67.2515827638101,
+ 12.779047639330011
+ ],
+ [
+ 67.48126813077745,
+ 12.779047639330011
+ ],
+ [
+ 67.59611081426114,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 13.362990844115371
+ ],
+ [
+ 67.48126813077745,
+ 13.557638579043825
+ ],
+ [
+ 67.2515827638101,
+ 13.557638579043825
+ ],
+ [
+ 67.13674008032642,
+ 13.362990844115371
+ ],
+ [
+ 67.2515827638101,
+ 13.168343109186917
+ ],
+ [
+ 67.48126813077745,
+ 13.168343109186917
+ ],
+ [
+ 67.59611081426114,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 13.752286313972277
+ ],
+ [
+ 67.48126813077745,
+ 13.946934048900731
+ ],
+ [
+ 67.2515827638101,
+ 13.946934048900731
+ ],
+ [
+ 67.13674008032642,
+ 13.752286313972277
+ ],
+ [
+ 67.2515827638101,
+ 13.557638579043823
+ ],
+ [
+ 67.48126813077745,
+ 13.557638579043823
+ ],
+ [
+ 67.59611081426114,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 14.141581783829183
+ ],
+ [
+ 67.48126813077745,
+ 14.336229518757637
+ ],
+ [
+ 67.2515827638101,
+ 14.336229518757637
+ ],
+ [
+ 67.13674008032642,
+ 14.141581783829183
+ ],
+ [
+ 67.2515827638101,
+ 13.94693404890073
+ ],
+ [
+ 67.48126813077745,
+ 13.94693404890073
+ ],
+ [
+ 67.59611081426114,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 14.530877253686091
+ ],
+ [
+ 67.48126813077745,
+ 14.725524988614545
+ ],
+ [
+ 67.2515827638101,
+ 14.725524988614545
+ ],
+ [
+ 67.13674008032642,
+ 14.530877253686091
+ ],
+ [
+ 67.2515827638101,
+ 14.336229518757637
+ ],
+ [
+ 67.48126813077745,
+ 14.336229518757637
+ ],
+ [
+ 67.59611081426114,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 14.920172723542997
+ ],
+ [
+ 67.48126813077745,
+ 15.114820458471451
+ ],
+ [
+ 67.2515827638101,
+ 15.114820458471451
+ ],
+ [
+ 67.13674008032642,
+ 14.920172723542997
+ ],
+ [
+ 67.2515827638101,
+ 14.725524988614543
+ ],
+ [
+ 67.48126813077745,
+ 14.725524988614543
+ ],
+ [
+ 67.59611081426114,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 15.309468193399903
+ ],
+ [
+ 67.48126813077745,
+ 15.504115928328357
+ ],
+ [
+ 67.2515827638101,
+ 15.504115928328357
+ ],
+ [
+ 67.13674008032642,
+ 15.309468193399903
+ ],
+ [
+ 67.2515827638101,
+ 15.11482045847145
+ ],
+ [
+ 67.48126813077745,
+ 15.11482045847145
+ ],
+ [
+ 67.59611081426114,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 15.69876366325681
+ ],
+ [
+ 67.48126813077745,
+ 15.893411398185265
+ ],
+ [
+ 67.2515827638101,
+ 15.893411398185265
+ ],
+ [
+ 67.13674008032642,
+ 15.69876366325681
+ ],
+ [
+ 67.2515827638101,
+ 15.504115928328357
+ ],
+ [
+ 67.48126813077745,
+ 15.504115928328357
+ ],
+ [
+ 67.59611081426114,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 16.088059133113717
+ ],
+ [
+ 67.48126813077745,
+ 16.28270686804217
+ ],
+ [
+ 67.2515827638101,
+ 16.28270686804217
+ ],
+ [
+ 67.13674008032642,
+ 16.088059133113717
+ ],
+ [
+ 67.2515827638101,
+ 15.893411398185263
+ ],
+ [
+ 67.48126813077745,
+ 15.893411398185263
+ ],
+ [
+ 67.59611081426114,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 16.477354602970625
+ ],
+ [
+ 67.48126813077745,
+ 16.672002337899077
+ ],
+ [
+ 67.2515827638101,
+ 16.672002337899077
+ ],
+ [
+ 67.13674008032642,
+ 16.477354602970625
+ ],
+ [
+ 67.2515827638101,
+ 16.282706868042172
+ ],
+ [
+ 67.48126813077745,
+ 16.282706868042172
+ ],
+ [
+ 67.59611081426114,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 16.86665007282753
+ ],
+ [
+ 67.48126813077745,
+ 17.06129780775598
+ ],
+ [
+ 67.2515827638101,
+ 17.06129780775598
+ ],
+ [
+ 67.13674008032642,
+ 16.86665007282753
+ ],
+ [
+ 67.2515827638101,
+ 16.672002337899077
+ ],
+ [
+ 67.48126813077745,
+ 16.672002337899077
+ ],
+ [
+ 67.59611081426114,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 17.255945542684437
+ ],
+ [
+ 67.48126813077745,
+ 17.45059327761289
+ ],
+ [
+ 67.2515827638101,
+ 17.45059327761289
+ ],
+ [
+ 67.13674008032642,
+ 17.255945542684437
+ ],
+ [
+ 67.2515827638101,
+ 17.061297807755984
+ ],
+ [
+ 67.48126813077745,
+ 17.061297807755984
+ ],
+ [
+ 67.59611081426114,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 17.64524101254134
+ ],
+ [
+ 67.48126813077745,
+ 17.839888747469793
+ ],
+ [
+ 67.2515827638101,
+ 17.839888747469793
+ ],
+ [
+ 67.13674008032642,
+ 17.64524101254134
+ ],
+ [
+ 67.2515827638101,
+ 17.45059327761289
+ ],
+ [
+ 67.48126813077745,
+ 17.45059327761289
+ ],
+ [
+ 67.59611081426114,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 18.03453648239825
+ ],
+ [
+ 67.48126813077745,
+ 18.2291842173267
+ ],
+ [
+ 67.2515827638101,
+ 18.2291842173267
+ ],
+ [
+ 67.13674008032642,
+ 18.03453648239825
+ ],
+ [
+ 67.2515827638101,
+ 17.839888747469796
+ ],
+ [
+ 67.48126813077745,
+ 17.839888747469796
+ ],
+ [
+ 67.59611081426114,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 18.423831952255156
+ ],
+ [
+ 67.48126813077745,
+ 18.61847968718361
+ ],
+ [
+ 67.2515827638101,
+ 18.61847968718361
+ ],
+ [
+ 67.13674008032642,
+ 18.423831952255156
+ ],
+ [
+ 67.2515827638101,
+ 18.229184217326704
+ ],
+ [
+ 67.48126813077745,
+ 18.229184217326704
+ ],
+ [
+ 67.59611081426114,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 18.81312742211206
+ ],
+ [
+ 67.48126813077745,
+ 19.007775157040513
+ ],
+ [
+ 67.2515827638101,
+ 19.007775157040513
+ ],
+ [
+ 67.13674008032642,
+ 18.81312742211206
+ ],
+ [
+ 67.2515827638101,
+ 18.61847968718361
+ ],
+ [
+ 67.48126813077745,
+ 18.61847968718361
+ ],
+ [
+ 67.59611081426114,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 19.20242289196897
+ ],
+ [
+ 67.48126813077745,
+ 19.39707062689742
+ ],
+ [
+ 67.2515827638101,
+ 19.39707062689742
+ ],
+ [
+ 67.13674008032642,
+ 19.20242289196897
+ ],
+ [
+ 67.2515827638101,
+ 19.007775157040516
+ ],
+ [
+ 67.48126813077745,
+ 19.007775157040516
+ ],
+ [
+ 67.59611081426114,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 19.591718361825876
+ ],
+ [
+ 67.48126813077745,
+ 19.78636609675433
+ ],
+ [
+ 67.2515827638101,
+ 19.78636609675433
+ ],
+ [
+ 67.13674008032642,
+ 19.591718361825876
+ ],
+ [
+ 67.2515827638101,
+ 19.397070626897424
+ ],
+ [
+ 67.48126813077745,
+ 19.397070626897424
+ ],
+ [
+ 67.59611081426114,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 19.98101383168278
+ ],
+ [
+ 67.48126813077745,
+ 20.175661566611232
+ ],
+ [
+ 67.2515827638101,
+ 20.175661566611232
+ ],
+ [
+ 67.13674008032642,
+ 19.98101383168278
+ ],
+ [
+ 67.2515827638101,
+ 19.78636609675433
+ ],
+ [
+ 67.48126813077745,
+ 19.78636609675433
+ ],
+ [
+ 67.59611081426114,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 20.370309301539685
+ ],
+ [
+ 67.48126813077745,
+ 20.564957036468137
+ ],
+ [
+ 67.2515827638101,
+ 20.564957036468137
+ ],
+ [
+ 67.13674008032642,
+ 20.370309301539685
+ ],
+ [
+ 67.2515827638101,
+ 20.175661566611232
+ ],
+ [
+ 67.48126813077745,
+ 20.175661566611232
+ ],
+ [
+ 67.59611081426114,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 20.759604771396592
+ ],
+ [
+ 67.48126813077745,
+ 20.954252506325044
+ ],
+ [
+ 67.2515827638101,
+ 20.954252506325044
+ ],
+ [
+ 67.13674008032642,
+ 20.759604771396592
+ ],
+ [
+ 67.2515827638101,
+ 20.56495703646814
+ ],
+ [
+ 67.48126813077745,
+ 20.56495703646814
+ ],
+ [
+ 67.59611081426114,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 21.1489002412535
+ ],
+ [
+ 67.48126813077745,
+ 21.343547976181952
+ ],
+ [
+ 67.2515827638101,
+ 21.343547976181952
+ ],
+ [
+ 67.13674008032642,
+ 21.1489002412535
+ ],
+ [
+ 67.2515827638101,
+ 20.954252506325048
+ ],
+ [
+ 67.48126813077745,
+ 20.954252506325048
+ ],
+ [
+ 67.59611081426114,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 21.538195711110404
+ ],
+ [
+ 67.48126813077745,
+ 21.732843446038856
+ ],
+ [
+ 67.2515827638101,
+ 21.732843446038856
+ ],
+ [
+ 67.13674008032642,
+ 21.538195711110404
+ ],
+ [
+ 67.2515827638101,
+ 21.343547976181952
+ ],
+ [
+ 67.48126813077745,
+ 21.343547976181952
+ ],
+ [
+ 67.59611081426114,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 21.927491180967312
+ ],
+ [
+ 67.48126813077745,
+ 22.122138915895764
+ ],
+ [
+ 67.2515827638101,
+ 22.122138915895764
+ ],
+ [
+ 67.13674008032642,
+ 21.927491180967312
+ ],
+ [
+ 67.2515827638101,
+ 21.73284344603886
+ ],
+ [
+ 67.48126813077745,
+ 21.73284344603886
+ ],
+ [
+ 67.59611081426114,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 22.31678665082422
+ ],
+ [
+ 67.48126813077745,
+ 22.511434385752672
+ ],
+ [
+ 67.2515827638101,
+ 22.511434385752672
+ ],
+ [
+ 67.13674008032642,
+ 22.31678665082422
+ ],
+ [
+ 67.2515827638101,
+ 22.122138915895768
+ ],
+ [
+ 67.48126813077745,
+ 22.122138915895768
+ ],
+ [
+ 67.59611081426114,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 22.706082120681124
+ ],
+ [
+ 67.48126813077745,
+ 22.900729855609576
+ ],
+ [
+ 67.2515827638101,
+ 22.900729855609576
+ ],
+ [
+ 67.13674008032642,
+ 22.706082120681124
+ ],
+ [
+ 67.2515827638101,
+ 22.511434385752672
+ ],
+ [
+ 67.48126813077745,
+ 22.511434385752672
+ ],
+ [
+ 67.59611081426114,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 23.095377590538032
+ ],
+ [
+ 67.48126813077745,
+ 23.290025325466484
+ ],
+ [
+ 67.2515827638101,
+ 23.290025325466484
+ ],
+ [
+ 67.13674008032642,
+ 23.095377590538032
+ ],
+ [
+ 67.2515827638101,
+ 22.90072985560958
+ ],
+ [
+ 67.48126813077745,
+ 22.90072985560958
+ ],
+ [
+ 67.59611081426114,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 23.48467306039494
+ ],
+ [
+ 67.48126813077745,
+ 23.67932079532339
+ ],
+ [
+ 67.2515827638101,
+ 23.67932079532339
+ ],
+ [
+ 67.13674008032642,
+ 23.48467306039494
+ ],
+ [
+ 67.2515827638101,
+ 23.290025325466488
+ ],
+ [
+ 67.48126813077745,
+ 23.290025325466488
+ ],
+ [
+ 67.59611081426114,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 23.873968530251844
+ ],
+ [
+ 67.48126813077745,
+ 24.068616265180296
+ ],
+ [
+ 67.2515827638101,
+ 24.068616265180296
+ ],
+ [
+ 67.13674008032642,
+ 23.873968530251844
+ ],
+ [
+ 67.2515827638101,
+ 23.67932079532339
+ ],
+ [
+ 67.48126813077745,
+ 23.67932079532339
+ ],
+ [
+ 67.59611081426114,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 24.263264000108748
+ ],
+ [
+ 67.48126813077745,
+ 24.4579117350372
+ ],
+ [
+ 67.2515827638101,
+ 24.4579117350372
+ ],
+ [
+ 67.13674008032642,
+ 24.263264000108748
+ ],
+ [
+ 67.2515827638101,
+ 24.068616265180296
+ ],
+ [
+ 67.48126813077745,
+ 24.068616265180296
+ ],
+ [
+ 67.59611081426114,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 24.652559469965656
+ ],
+ [
+ 67.48126813077745,
+ 24.847207204894108
+ ],
+ [
+ 67.2515827638101,
+ 24.847207204894108
+ ],
+ [
+ 67.13674008032642,
+ 24.652559469965656
+ ],
+ [
+ 67.2515827638101,
+ 24.457911735037204
+ ],
+ [
+ 67.48126813077745,
+ 24.457911735037204
+ ],
+ [
+ 67.59611081426114,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 25.041854939822564
+ ],
+ [
+ 67.48126813077745,
+ 25.236502674751016
+ ],
+ [
+ 67.2515827638101,
+ 25.236502674751016
+ ],
+ [
+ 67.13674008032642,
+ 25.041854939822564
+ ],
+ [
+ 67.2515827638101,
+ 24.84720720489411
+ ],
+ [
+ 67.48126813077745,
+ 24.84720720489411
+ ],
+ [
+ 67.59611081426114,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 25.431150409679468
+ ],
+ [
+ 67.48126813077745,
+ 25.62579814460792
+ ],
+ [
+ 67.2515827638101,
+ 25.62579814460792
+ ],
+ [
+ 67.13674008032642,
+ 25.431150409679468
+ ],
+ [
+ 67.2515827638101,
+ 25.236502674751016
+ ],
+ [
+ 67.48126813077745,
+ 25.236502674751016
+ ],
+ [
+ 67.59611081426114,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 25.820445879536376
+ ],
+ [
+ 67.48126813077745,
+ 26.015093614464828
+ ],
+ [
+ 67.2515827638101,
+ 26.015093614464828
+ ],
+ [
+ 67.13674008032642,
+ 25.820445879536376
+ ],
+ [
+ 67.2515827638101,
+ 25.625798144607923
+ ],
+ [
+ 67.48126813077745,
+ 25.625798144607923
+ ],
+ [
+ 67.59611081426114,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 26.209741349393283
+ ],
+ [
+ 67.48126813077745,
+ 26.404389084321735
+ ],
+ [
+ 67.2515827638101,
+ 26.404389084321735
+ ],
+ [
+ 67.13674008032642,
+ 26.209741349393283
+ ],
+ [
+ 67.2515827638101,
+ 26.01509361446483
+ ],
+ [
+ 67.48126813077745,
+ 26.01509361446483
+ ],
+ [
+ 67.59611081426114,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 26.599036819250188
+ ],
+ [
+ 67.48126813077745,
+ 26.79368455417864
+ ],
+ [
+ 67.2515827638101,
+ 26.79368455417864
+ ],
+ [
+ 67.13674008032642,
+ 26.599036819250188
+ ],
+ [
+ 67.2515827638101,
+ 26.404389084321735
+ ],
+ [
+ 67.48126813077745,
+ 26.404389084321735
+ ],
+ [
+ 67.59611081426114,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 26.988332289107095
+ ],
+ [
+ 67.48126813077745,
+ 27.182980024035547
+ ],
+ [
+ 67.2515827638101,
+ 27.182980024035547
+ ],
+ [
+ 67.13674008032642,
+ 26.988332289107095
+ ],
+ [
+ 67.2515827638101,
+ 26.793684554178643
+ ],
+ [
+ 67.48126813077745,
+ 26.793684554178643
+ ],
+ [
+ 67.59611081426114,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 27.377627758964003
+ ],
+ [
+ 67.48126813077745,
+ 27.572275493892455
+ ],
+ [
+ 67.2515827638101,
+ 27.572275493892455
+ ],
+ [
+ 67.13674008032642,
+ 27.377627758964003
+ ],
+ [
+ 67.2515827638101,
+ 27.18298002403555
+ ],
+ [
+ 67.48126813077745,
+ 27.18298002403555
+ ],
+ [
+ 67.59611081426114,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 27.766923228820907
+ ],
+ [
+ 67.48126813077745,
+ 27.96157096374936
+ ],
+ [
+ 67.2515827638101,
+ 27.96157096374936
+ ],
+ [
+ 67.13674008032642,
+ 27.766923228820907
+ ],
+ [
+ 67.2515827638101,
+ 27.572275493892455
+ ],
+ [
+ 67.48126813077745,
+ 27.572275493892455
+ ],
+ [
+ 67.59611081426114,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 28.156218698677815
+ ],
+ [
+ 67.48126813077745,
+ 28.350866433606267
+ ],
+ [
+ 67.2515827638101,
+ 28.350866433606267
+ ],
+ [
+ 67.13674008032642,
+ 28.156218698677815
+ ],
+ [
+ 67.2515827638101,
+ 27.961570963749363
+ ],
+ [
+ 67.48126813077745,
+ 27.961570963749363
+ ],
+ [
+ 67.59611081426114,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 28.54551416853472
+ ],
+ [
+ 67.48126813077745,
+ 28.74016190346317
+ ],
+ [
+ 67.2515827638101,
+ 28.74016190346317
+ ],
+ [
+ 67.13674008032642,
+ 28.54551416853472
+ ],
+ [
+ 67.2515827638101,
+ 28.350866433606267
+ ],
+ [
+ 67.48126813077745,
+ 28.350866433606267
+ ],
+ [
+ 67.59611081426114,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 28.934809638391627
+ ],
+ [
+ 67.48126813077745,
+ 29.12945737332008
+ ],
+ [
+ 67.2515827638101,
+ 29.12945737332008
+ ],
+ [
+ 67.13674008032642,
+ 28.934809638391627
+ ],
+ [
+ 67.2515827638101,
+ 28.740161903463175
+ ],
+ [
+ 67.48126813077745,
+ 28.740161903463175
+ ],
+ [
+ 67.59611081426114,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 29.32410510824853
+ ],
+ [
+ 67.48126813077745,
+ 29.518752843176983
+ ],
+ [
+ 67.2515827638101,
+ 29.518752843176983
+ ],
+ [
+ 67.13674008032642,
+ 29.32410510824853
+ ],
+ [
+ 67.2515827638101,
+ 29.12945737332008
+ ],
+ [
+ 67.48126813077745,
+ 29.12945737332008
+ ],
+ [
+ 67.59611081426114,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 29.71340057810544
+ ],
+ [
+ 67.48126813077745,
+ 29.90804831303389
+ ],
+ [
+ 67.2515827638101,
+ 29.90804831303389
+ ],
+ [
+ 67.13674008032642,
+ 29.71340057810544
+ ],
+ [
+ 67.2515827638101,
+ 29.518752843176987
+ ],
+ [
+ 67.48126813077745,
+ 29.518752843176987
+ ],
+ [
+ 67.59611081426114,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 30.102696047962343
+ ],
+ [
+ 67.48126813077745,
+ 30.297343782890795
+ ],
+ [
+ 67.2515827638101,
+ 30.297343782890795
+ ],
+ [
+ 67.13674008032642,
+ 30.102696047962343
+ ],
+ [
+ 67.2515827638101,
+ 29.90804831303389
+ ],
+ [
+ 67.48126813077745,
+ 29.90804831303389
+ ],
+ [
+ 67.59611081426114,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 30.49199151781925
+ ],
+ [
+ 67.48126813077745,
+ 30.686639252747703
+ ],
+ [
+ 67.2515827638101,
+ 30.686639252747703
+ ],
+ [
+ 67.13674008032642,
+ 30.49199151781925
+ ],
+ [
+ 67.2515827638101,
+ 30.2973437828908
+ ],
+ [
+ 67.48126813077745,
+ 30.2973437828908
+ ],
+ [
+ 67.59611081426114,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 30.88128698767616
+ ],
+ [
+ 67.48126813077745,
+ 31.07593472260461
+ ],
+ [
+ 67.2515827638101,
+ 31.07593472260461
+ ],
+ [
+ 67.13674008032642,
+ 30.88128698767616
+ ],
+ [
+ 67.2515827638101,
+ 30.686639252747707
+ ],
+ [
+ 67.48126813077745,
+ 30.686639252747707
+ ],
+ [
+ 67.59611081426114,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 31.270582457533063
+ ],
+ [
+ 67.48126813077745,
+ 31.465230192461515
+ ],
+ [
+ 67.2515827638101,
+ 31.465230192461515
+ ],
+ [
+ 67.13674008032642,
+ 31.270582457533063
+ ],
+ [
+ 67.2515827638101,
+ 31.07593472260461
+ ],
+ [
+ 67.48126813077745,
+ 31.07593472260461
+ ],
+ [
+ 67.59611081426114,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 31.65987792738997
+ ],
+ [
+ 67.48126813077745,
+ 31.854525662318423
+ ],
+ [
+ 67.2515827638101,
+ 31.854525662318423
+ ],
+ [
+ 67.13674008032642,
+ 31.65987792738997
+ ],
+ [
+ 67.2515827638101,
+ 31.46523019246152
+ ],
+ [
+ 67.48126813077745,
+ 31.46523019246152
+ ],
+ [
+ 67.59611081426114,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 32.049173397246875
+ ],
+ [
+ 67.48126813077745,
+ 32.24382113217533
+ ],
+ [
+ 67.2515827638101,
+ 32.24382113217533
+ ],
+ [
+ 67.13674008032642,
+ 32.049173397246875
+ ],
+ [
+ 67.2515827638101,
+ 31.854525662318423
+ ],
+ [
+ 67.48126813077745,
+ 31.854525662318423
+ ],
+ [
+ 67.59611081426114,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 32.438468867103786
+ ],
+ [
+ 67.48126813077745,
+ 32.63311660203224
+ ],
+ [
+ 67.2515827638101,
+ 32.63311660203224
+ ],
+ [
+ 67.13674008032642,
+ 32.438468867103786
+ ],
+ [
+ 67.2515827638101,
+ 32.243821132175334
+ ],
+ [
+ 67.48126813077745,
+ 32.243821132175334
+ ],
+ [
+ 67.59611081426114,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 32.82776433696069
+ ],
+ [
+ 67.48126813077745,
+ 33.02241207188914
+ ],
+ [
+ 67.2515827638101,
+ 33.02241207188914
+ ],
+ [
+ 67.13674008032642,
+ 32.82776433696069
+ ],
+ [
+ 67.2515827638101,
+ 32.63311660203224
+ ],
+ [
+ 67.48126813077745,
+ 32.63311660203224
+ ],
+ [
+ 67.59611081426114,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 33.217059806817595
+ ],
+ [
+ 67.48126813077745,
+ 33.41170754174605
+ ],
+ [
+ 67.2515827638101,
+ 33.41170754174605
+ ],
+ [
+ 67.13674008032642,
+ 33.217059806817595
+ ],
+ [
+ 67.2515827638101,
+ 33.02241207188914
+ ],
+ [
+ 67.48126813077745,
+ 33.02241207188914
+ ],
+ [
+ 67.59611081426114,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 33.6063552766745
+ ],
+ [
+ 67.48126813077745,
+ 33.80100301160295
+ ],
+ [
+ 67.2515827638101,
+ 33.80100301160295
+ ],
+ [
+ 67.13674008032642,
+ 33.6063552766745
+ ],
+ [
+ 67.2515827638101,
+ 33.41170754174605
+ ],
+ [
+ 67.48126813077745,
+ 33.41170754174605
+ ],
+ [
+ 67.59611081426114,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 33.9956507465314
+ ],
+ [
+ 67.48126813077745,
+ 34.190298481459855
+ ],
+ [
+ 67.2515827638101,
+ 34.190298481459855
+ ],
+ [
+ 67.13674008032642,
+ 33.9956507465314
+ ],
+ [
+ 67.2515827638101,
+ 33.80100301160295
+ ],
+ [
+ 67.48126813077745,
+ 33.80100301160295
+ ],
+ [
+ 67.59611081426114,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 34.384946216388315
+ ],
+ [
+ 67.48126813077745,
+ 34.57959395131677
+ ],
+ [
+ 67.2515827638101,
+ 34.57959395131677
+ ],
+ [
+ 67.13674008032642,
+ 34.384946216388315
+ ],
+ [
+ 67.2515827638101,
+ 34.19029848145986
+ ],
+ [
+ 67.48126813077745,
+ 34.19029848145986
+ ],
+ [
+ 67.59611081426114,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 34.774241686245226
+ ],
+ [
+ 67.48126813077745,
+ 34.96888942117368
+ ],
+ [
+ 67.2515827638101,
+ 34.96888942117368
+ ],
+ [
+ 67.13674008032642,
+ 34.774241686245226
+ ],
+ [
+ 67.2515827638101,
+ 34.579593951316774
+ ],
+ [
+ 67.48126813077745,
+ 34.579593951316774
+ ],
+ [
+ 67.59611081426114,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 35.16353715610213
+ ],
+ [
+ 67.48126813077745,
+ 35.35818489103058
+ ],
+ [
+ 67.2515827638101,
+ 35.35818489103058
+ ],
+ [
+ 67.13674008032642,
+ 35.16353715610213
+ ],
+ [
+ 67.2515827638101,
+ 34.96888942117368
+ ],
+ [
+ 67.48126813077745,
+ 34.96888942117368
+ ],
+ [
+ 67.59611081426114,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 35.552832625959034
+ ],
+ [
+ 67.48126813077745,
+ 35.74748036088749
+ ],
+ [
+ 67.2515827638101,
+ 35.74748036088749
+ ],
+ [
+ 67.13674008032642,
+ 35.552832625959034
+ ],
+ [
+ 67.2515827638101,
+ 35.35818489103058
+ ],
+ [
+ 67.48126813077745,
+ 35.35818489103058
+ ],
+ [
+ 67.59611081426114,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 35.94212809581594
+ ],
+ [
+ 67.48126813077745,
+ 36.13677583074439
+ ],
+ [
+ 67.2515827638101,
+ 36.13677583074439
+ ],
+ [
+ 67.13674008032642,
+ 35.94212809581594
+ ],
+ [
+ 67.2515827638101,
+ 35.74748036088749
+ ],
+ [
+ 67.48126813077745,
+ 35.74748036088749
+ ],
+ [
+ 67.59611081426114,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 36.33142356567284
+ ],
+ [
+ 67.48126813077745,
+ 36.526071300601295
+ ],
+ [
+ 67.2515827638101,
+ 36.526071300601295
+ ],
+ [
+ 67.13674008032642,
+ 36.33142356567284
+ ],
+ [
+ 67.2515827638101,
+ 36.13677583074439
+ ],
+ [
+ 67.48126813077745,
+ 36.13677583074439
+ ],
+ [
+ 67.59611081426114,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 36.720719035529754
+ ],
+ [
+ 67.48126813077745,
+ 36.915366770458206
+ ],
+ [
+ 67.2515827638101,
+ 36.915366770458206
+ ],
+ [
+ 67.13674008032642,
+ 36.720719035529754
+ ],
+ [
+ 67.2515827638101,
+ 36.5260713006013
+ ],
+ [
+ 67.48126813077745,
+ 36.5260713006013
+ ],
+ [
+ 67.59611081426114,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 37.11001450538666
+ ],
+ [
+ 67.48126813077745,
+ 37.30466224031511
+ ],
+ [
+ 67.2515827638101,
+ 37.30466224031511
+ ],
+ [
+ 67.13674008032642,
+ 37.11001450538666
+ ],
+ [
+ 67.2515827638101,
+ 36.915366770458206
+ ],
+ [
+ 67.48126813077745,
+ 36.915366770458206
+ ],
+ [
+ 67.59611081426114,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 37.49930997524357
+ ],
+ [
+ 67.48126813077745,
+ 37.69395771017202
+ ],
+ [
+ 67.2515827638101,
+ 37.69395771017202
+ ],
+ [
+ 67.13674008032642,
+ 37.49930997524357
+ ],
+ [
+ 67.2515827638101,
+ 37.30466224031512
+ ],
+ [
+ 67.48126813077745,
+ 37.30466224031512
+ ],
+ [
+ 67.59611081426114,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 37.888605445100474
+ ],
+ [
+ 67.48126813077745,
+ 38.083253180028926
+ ],
+ [
+ 67.2515827638101,
+ 38.083253180028926
+ ],
+ [
+ 67.13674008032642,
+ 37.888605445100474
+ ],
+ [
+ 67.2515827638101,
+ 37.69395771017202
+ ],
+ [
+ 67.48126813077745,
+ 37.69395771017202
+ ],
+ [
+ 67.59611081426114,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 38.27790091495738
+ ],
+ [
+ 67.48126813077745,
+ 38.47254864988583
+ ],
+ [
+ 67.2515827638101,
+ 38.47254864988583
+ ],
+ [
+ 67.13674008032642,
+ 38.27790091495738
+ ],
+ [
+ 67.2515827638101,
+ 38.083253180028926
+ ],
+ [
+ 67.48126813077745,
+ 38.083253180028926
+ ],
+ [
+ 67.59611081426114,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 38.66719638481428
+ ],
+ [
+ 67.48126813077745,
+ 38.861844119742734
+ ],
+ [
+ 67.2515827638101,
+ 38.861844119742734
+ ],
+ [
+ 67.13674008032642,
+ 38.66719638481428
+ ],
+ [
+ 67.2515827638101,
+ 38.47254864988583
+ ],
+ [
+ 67.48126813077745,
+ 38.47254864988583
+ ],
+ [
+ 67.59611081426114,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 39.05649185467119
+ ],
+ [
+ 67.48126813077745,
+ 39.25113958959964
+ ],
+ [
+ 67.2515827638101,
+ 39.25113958959964
+ ],
+ [
+ 67.13674008032642,
+ 39.05649185467119
+ ],
+ [
+ 67.2515827638101,
+ 38.861844119742734
+ ],
+ [
+ 67.48126813077745,
+ 38.861844119742734
+ ],
+ [
+ 67.59611081426114,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 39.4457873245281
+ ],
+ [
+ 67.48126813077745,
+ 39.64043505945655
+ ],
+ [
+ 67.2515827638101,
+ 39.64043505945655
+ ],
+ [
+ 67.13674008032642,
+ 39.4457873245281
+ ],
+ [
+ 67.2515827638101,
+ 39.251139589599646
+ ],
+ [
+ 67.48126813077745,
+ 39.251139589599646
+ ],
+ [
+ 67.59611081426114,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 39.835082794385
+ ],
+ [
+ 67.48126813077745,
+ 40.029730529313454
+ ],
+ [
+ 67.2515827638101,
+ 40.029730529313454
+ ],
+ [
+ 67.13674008032642,
+ 39.835082794385
+ ],
+ [
+ 67.2515827638101,
+ 39.64043505945655
+ ],
+ [
+ 67.48126813077745,
+ 39.64043505945655
+ ],
+ [
+ 67.59611081426114,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 40.22437826424191
+ ],
+ [
+ 67.48126813077745,
+ 40.419025999170366
+ ],
+ [
+ 67.2515827638101,
+ 40.419025999170366
+ ],
+ [
+ 67.13674008032642,
+ 40.22437826424191
+ ],
+ [
+ 67.2515827638101,
+ 40.02973052931346
+ ],
+ [
+ 67.48126813077745,
+ 40.02973052931346
+ ],
+ [
+ 67.59611081426114,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 40.61367373409882
+ ],
+ [
+ 67.48126813077745,
+ 40.80832146902727
+ ],
+ [
+ 67.2515827638101,
+ 40.80832146902727
+ ],
+ [
+ 67.13674008032642,
+ 40.61367373409882
+ ],
+ [
+ 67.2515827638101,
+ 40.419025999170366
+ ],
+ [
+ 67.48126813077745,
+ 40.419025999170366
+ ],
+ [
+ 67.59611081426114,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 41.00296920395572
+ ],
+ [
+ 67.48126813077745,
+ 41.197616938884174
+ ],
+ [
+ 67.2515827638101,
+ 41.197616938884174
+ ],
+ [
+ 67.13674008032642,
+ 41.00296920395572
+ ],
+ [
+ 67.2515827638101,
+ 40.80832146902727
+ ],
+ [
+ 67.48126813077745,
+ 40.80832146902727
+ ],
+ [
+ 67.59611081426114,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 41.392264673812626
+ ],
+ [
+ 67.48126813077745,
+ 41.58691240874108
+ ],
+ [
+ 67.2515827638101,
+ 41.58691240874108
+ ],
+ [
+ 67.13674008032642,
+ 41.392264673812626
+ ],
+ [
+ 67.2515827638101,
+ 41.197616938884174
+ ],
+ [
+ 67.48126813077745,
+ 41.197616938884174
+ ],
+ [
+ 67.59611081426114,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 41.78156014366953
+ ],
+ [
+ 67.48126813077745,
+ 41.97620787859798
+ ],
+ [
+ 67.2515827638101,
+ 41.97620787859798
+ ],
+ [
+ 67.13674008032642,
+ 41.78156014366953
+ ],
+ [
+ 67.2515827638101,
+ 41.58691240874108
+ ],
+ [
+ 67.48126813077745,
+ 41.58691240874108
+ ],
+ [
+ 67.59611081426114,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 42.17085561352644
+ ],
+ [
+ 67.48126813077745,
+ 42.365503348454894
+ ],
+ [
+ 67.2515827638101,
+ 42.365503348454894
+ ],
+ [
+ 67.13674008032642,
+ 42.17085561352644
+ ],
+ [
+ 67.2515827638101,
+ 41.97620787859799
+ ],
+ [
+ 67.48126813077745,
+ 41.97620787859799
+ ],
+ [
+ 67.59611081426114,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 42.56015108338335
+ ],
+ [
+ 67.48126813077745,
+ 42.754798818311805
+ ],
+ [
+ 67.2515827638101,
+ 42.754798818311805
+ ],
+ [
+ 67.13674008032642,
+ 42.56015108338335
+ ],
+ [
+ 67.2515827638101,
+ 42.3655033484549
+ ],
+ [
+ 67.48126813077745,
+ 42.3655033484549
+ ],
+ [
+ 67.59611081426114,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 42.94944655324026
+ ],
+ [
+ 67.48126813077745,
+ 43.14409428816871
+ ],
+ [
+ 67.2515827638101,
+ 43.14409428816871
+ ],
+ [
+ 67.13674008032642,
+ 42.94944655324026
+ ],
+ [
+ 67.2515827638101,
+ 42.754798818311805
+ ],
+ [
+ 67.48126813077745,
+ 42.754798818311805
+ ],
+ [
+ 67.59611081426114,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 43.33874202309716
+ ],
+ [
+ 67.48126813077745,
+ 43.53338975802561
+ ],
+ [
+ 67.2515827638101,
+ 43.53338975802561
+ ],
+ [
+ 67.13674008032642,
+ 43.33874202309716
+ ],
+ [
+ 67.2515827638101,
+ 43.14409428816871
+ ],
+ [
+ 67.48126813077745,
+ 43.14409428816871
+ ],
+ [
+ 67.59611081426114,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 43.728037492954066
+ ],
+ [
+ 67.48126813077745,
+ 43.92268522788252
+ ],
+ [
+ 67.2515827638101,
+ 43.92268522788252
+ ],
+ [
+ 67.13674008032642,
+ 43.728037492954066
+ ],
+ [
+ 67.2515827638101,
+ 43.53338975802561
+ ],
+ [
+ 67.48126813077745,
+ 43.53338975802561
+ ],
+ [
+ 67.59611081426114,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 44.11733296281097
+ ],
+ [
+ 67.48126813077745,
+ 44.31198069773942
+ ],
+ [
+ 67.2515827638101,
+ 44.31198069773942
+ ],
+ [
+ 67.13674008032642,
+ 44.11733296281097
+ ],
+ [
+ 67.2515827638101,
+ 43.92268522788252
+ ],
+ [
+ 67.48126813077745,
+ 43.92268522788252
+ ],
+ [
+ 67.59611081426114,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 44.506628432667874
+ ],
+ [
+ 67.48126813077745,
+ 44.701276167596326
+ ],
+ [
+ 67.2515827638101,
+ 44.701276167596326
+ ],
+ [
+ 67.13674008032642,
+ 44.506628432667874
+ ],
+ [
+ 67.2515827638101,
+ 44.31198069773942
+ ],
+ [
+ 67.48126813077745,
+ 44.31198069773942
+ ],
+ [
+ 67.59611081426114,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 44.89592390252479
+ ],
+ [
+ 67.48126813077745,
+ 45.090571637453245
+ ],
+ [
+ 67.2515827638101,
+ 45.090571637453245
+ ],
+ [
+ 67.13674008032642,
+ 44.89592390252479
+ ],
+ [
+ 67.2515827638101,
+ 44.70127616759634
+ ],
+ [
+ 67.48126813077745,
+ 44.70127616759634
+ ],
+ [
+ 67.59611081426114,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 45.2852193723817
+ ],
+ [
+ 67.48126813077745,
+ 45.47986710731015
+ ],
+ [
+ 67.2515827638101,
+ 45.47986710731015
+ ],
+ [
+ 67.13674008032642,
+ 45.2852193723817
+ ],
+ [
+ 67.2515827638101,
+ 45.090571637453245
+ ],
+ [
+ 67.48126813077745,
+ 45.090571637453245
+ ],
+ [
+ 67.59611081426114,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 45.6745148422386
+ ],
+ [
+ 67.48126813077745,
+ 45.86916257716705
+ ],
+ [
+ 67.2515827638101,
+ 45.86916257716705
+ ],
+ [
+ 67.13674008032642,
+ 45.6745148422386
+ ],
+ [
+ 67.2515827638101,
+ 45.47986710731015
+ ],
+ [
+ 67.48126813077745,
+ 45.47986710731015
+ ],
+ [
+ 67.59611081426114,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 46.063810312095505
+ ],
+ [
+ 67.48126813077745,
+ 46.25845804702396
+ ],
+ [
+ 67.2515827638101,
+ 46.25845804702396
+ ],
+ [
+ 67.13674008032642,
+ 46.063810312095505
+ ],
+ [
+ 67.2515827638101,
+ 45.86916257716705
+ ],
+ [
+ 67.48126813077745,
+ 45.86916257716705
+ ],
+ [
+ 67.59611081426114,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 46.45310578195241
+ ],
+ [
+ 67.48126813077745,
+ 46.64775351688086
+ ],
+ [
+ 67.2515827638101,
+ 46.64775351688086
+ ],
+ [
+ 67.13674008032642,
+ 46.45310578195241
+ ],
+ [
+ 67.2515827638101,
+ 46.25845804702396
+ ],
+ [
+ 67.48126813077745,
+ 46.25845804702396
+ ],
+ [
+ 67.59611081426114,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 46.842401251809314
+ ],
+ [
+ 67.48126813077745,
+ 47.037048986737766
+ ],
+ [
+ 67.2515827638101,
+ 47.037048986737766
+ ],
+ [
+ 67.13674008032642,
+ 46.842401251809314
+ ],
+ [
+ 67.2515827638101,
+ 46.64775351688086
+ ],
+ [
+ 67.48126813077745,
+ 46.64775351688086
+ ],
+ [
+ 67.59611081426114,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 47.23169672166622
+ ],
+ [
+ 67.48126813077745,
+ 47.42634445659467
+ ],
+ [
+ 67.2515827638101,
+ 47.42634445659467
+ ],
+ [
+ 67.13674008032642,
+ 47.23169672166622
+ ],
+ [
+ 67.2515827638101,
+ 47.037048986737766
+ ],
+ [
+ 67.48126813077745,
+ 47.037048986737766
+ ],
+ [
+ 67.59611081426114,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.59611081426114,
+ 47.620992191523136
+ ],
+ [
+ 67.48126813077745,
+ 47.81563992645159
+ ],
+ [
+ 67.2515827638101,
+ 47.81563992645159
+ ],
+ [
+ 67.13674008032642,
+ 47.620992191523136
+ ],
+ [
+ 67.2515827638101,
+ 47.426344456594684
+ ],
+ [
+ 67.48126813077745,
+ 47.426344456594684
+ ],
+ [
+ 67.59611081426114,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 12.0004566996162
+ ],
+ [
+ 67.82579618122848,
+ 12.195104434544653
+ ],
+ [
+ 67.59611081426114,
+ 12.195104434544653
+ ],
+ [
+ 67.48126813077745,
+ 12.0004566996162
+ ],
+ [
+ 67.59611081426114,
+ 11.805808964687746
+ ],
+ [
+ 67.82579618122848,
+ 11.805808964687746
+ ],
+ [
+ 67.94063886471217,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 12.389752169473105
+ ],
+ [
+ 67.82579618122848,
+ 12.58439990440156
+ ],
+ [
+ 67.59611081426114,
+ 12.58439990440156
+ ],
+ [
+ 67.48126813077745,
+ 12.389752169473105
+ ],
+ [
+ 67.59611081426114,
+ 12.195104434544652
+ ],
+ [
+ 67.82579618122848,
+ 12.195104434544652
+ ],
+ [
+ 67.94063886471217,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 12.779047639330013
+ ],
+ [
+ 67.82579618122848,
+ 12.973695374258467
+ ],
+ [
+ 67.59611081426114,
+ 12.973695374258467
+ ],
+ [
+ 67.48126813077745,
+ 12.779047639330013
+ ],
+ [
+ 67.59611081426114,
+ 12.58439990440156
+ ],
+ [
+ 67.82579618122848,
+ 12.58439990440156
+ ],
+ [
+ 67.94063886471217,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 13.16834310918692
+ ],
+ [
+ 67.82579618122848,
+ 13.362990844115373
+ ],
+ [
+ 67.59611081426114,
+ 13.362990844115373
+ ],
+ [
+ 67.48126813077745,
+ 13.16834310918692
+ ],
+ [
+ 67.59611081426114,
+ 12.973695374258465
+ ],
+ [
+ 67.82579618122848,
+ 12.973695374258465
+ ],
+ [
+ 67.94063886471217,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 13.557638579043825
+ ],
+ [
+ 67.82579618122848,
+ 13.752286313972279
+ ],
+ [
+ 67.59611081426114,
+ 13.752286313972279
+ ],
+ [
+ 67.48126813077745,
+ 13.557638579043825
+ ],
+ [
+ 67.59611081426114,
+ 13.362990844115371
+ ],
+ [
+ 67.82579618122848,
+ 13.362990844115371
+ ],
+ [
+ 67.94063886471217,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 13.946934048900731
+ ],
+ [
+ 67.82579618122848,
+ 14.141581783829185
+ ],
+ [
+ 67.59611081426114,
+ 14.141581783829185
+ ],
+ [
+ 67.48126813077745,
+ 13.946934048900731
+ ],
+ [
+ 67.59611081426114,
+ 13.752286313972277
+ ],
+ [
+ 67.82579618122848,
+ 13.752286313972277
+ ],
+ [
+ 67.94063886471217,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 14.336229518757637
+ ],
+ [
+ 67.82579618122848,
+ 14.530877253686091
+ ],
+ [
+ 67.59611081426114,
+ 14.530877253686091
+ ],
+ [
+ 67.48126813077745,
+ 14.336229518757637
+ ],
+ [
+ 67.59611081426114,
+ 14.141581783829183
+ ],
+ [
+ 67.82579618122848,
+ 14.141581783829183
+ ],
+ [
+ 67.94063886471217,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 14.725524988614545
+ ],
+ [
+ 67.82579618122848,
+ 14.920172723542999
+ ],
+ [
+ 67.59611081426114,
+ 14.920172723542999
+ ],
+ [
+ 67.48126813077745,
+ 14.725524988614545
+ ],
+ [
+ 67.59611081426114,
+ 14.530877253686091
+ ],
+ [
+ 67.82579618122848,
+ 14.530877253686091
+ ],
+ [
+ 67.94063886471217,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 15.114820458471451
+ ],
+ [
+ 67.82579618122848,
+ 15.309468193399905
+ ],
+ [
+ 67.59611081426114,
+ 15.309468193399905
+ ],
+ [
+ 67.48126813077745,
+ 15.114820458471451
+ ],
+ [
+ 67.59611081426114,
+ 14.920172723542997
+ ],
+ [
+ 67.82579618122848,
+ 14.920172723542997
+ ],
+ [
+ 67.94063886471217,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 15.504115928328357
+ ],
+ [
+ 67.82579618122848,
+ 15.69876366325681
+ ],
+ [
+ 67.59611081426114,
+ 15.69876366325681
+ ],
+ [
+ 67.48126813077745,
+ 15.504115928328357
+ ],
+ [
+ 67.59611081426114,
+ 15.309468193399903
+ ],
+ [
+ 67.82579618122848,
+ 15.309468193399903
+ ],
+ [
+ 67.94063886471217,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 15.893411398185265
+ ],
+ [
+ 67.82579618122848,
+ 16.088059133113717
+ ],
+ [
+ 67.59611081426114,
+ 16.088059133113717
+ ],
+ [
+ 67.48126813077745,
+ 15.893411398185265
+ ],
+ [
+ 67.59611081426114,
+ 15.69876366325681
+ ],
+ [
+ 67.82579618122848,
+ 15.69876366325681
+ ],
+ [
+ 67.94063886471217,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 16.28270686804217
+ ],
+ [
+ 67.82579618122848,
+ 16.47735460297062
+ ],
+ [
+ 67.59611081426114,
+ 16.47735460297062
+ ],
+ [
+ 67.48126813077745,
+ 16.28270686804217
+ ],
+ [
+ 67.59611081426114,
+ 16.088059133113717
+ ],
+ [
+ 67.82579618122848,
+ 16.088059133113717
+ ],
+ [
+ 67.94063886471217,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 16.672002337899077
+ ],
+ [
+ 67.82579618122848,
+ 16.86665007282753
+ ],
+ [
+ 67.59611081426114,
+ 16.86665007282753
+ ],
+ [
+ 67.48126813077745,
+ 16.672002337899077
+ ],
+ [
+ 67.59611081426114,
+ 16.477354602970625
+ ],
+ [
+ 67.82579618122848,
+ 16.477354602970625
+ ],
+ [
+ 67.94063886471217,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 17.06129780775598
+ ],
+ [
+ 67.82579618122848,
+ 17.255945542684433
+ ],
+ [
+ 67.59611081426114,
+ 17.255945542684433
+ ],
+ [
+ 67.48126813077745,
+ 17.06129780775598
+ ],
+ [
+ 67.59611081426114,
+ 16.86665007282753
+ ],
+ [
+ 67.82579618122848,
+ 16.86665007282753
+ ],
+ [
+ 67.94063886471217,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 17.45059327761289
+ ],
+ [
+ 67.82579618122848,
+ 17.64524101254134
+ ],
+ [
+ 67.59611081426114,
+ 17.64524101254134
+ ],
+ [
+ 67.48126813077745,
+ 17.45059327761289
+ ],
+ [
+ 67.59611081426114,
+ 17.255945542684437
+ ],
+ [
+ 67.82579618122848,
+ 17.255945542684437
+ ],
+ [
+ 67.94063886471217,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 17.839888747469793
+ ],
+ [
+ 67.82579618122848,
+ 18.034536482398245
+ ],
+ [
+ 67.59611081426114,
+ 18.034536482398245
+ ],
+ [
+ 67.48126813077745,
+ 17.839888747469793
+ ],
+ [
+ 67.59611081426114,
+ 17.64524101254134
+ ],
+ [
+ 67.82579618122848,
+ 17.64524101254134
+ ],
+ [
+ 67.94063886471217,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 18.2291842173267
+ ],
+ [
+ 67.82579618122848,
+ 18.423831952255153
+ ],
+ [
+ 67.59611081426114,
+ 18.423831952255153
+ ],
+ [
+ 67.48126813077745,
+ 18.2291842173267
+ ],
+ [
+ 67.59611081426114,
+ 18.03453648239825
+ ],
+ [
+ 67.82579618122848,
+ 18.03453648239825
+ ],
+ [
+ 67.94063886471217,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 18.61847968718361
+ ],
+ [
+ 67.82579618122848,
+ 18.81312742211206
+ ],
+ [
+ 67.59611081426114,
+ 18.81312742211206
+ ],
+ [
+ 67.48126813077745,
+ 18.61847968718361
+ ],
+ [
+ 67.59611081426114,
+ 18.423831952255156
+ ],
+ [
+ 67.82579618122848,
+ 18.423831952255156
+ ],
+ [
+ 67.94063886471217,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 19.007775157040513
+ ],
+ [
+ 67.82579618122848,
+ 19.202422891968965
+ ],
+ [
+ 67.59611081426114,
+ 19.202422891968965
+ ],
+ [
+ 67.48126813077745,
+ 19.007775157040513
+ ],
+ [
+ 67.59611081426114,
+ 18.81312742211206
+ ],
+ [
+ 67.82579618122848,
+ 18.81312742211206
+ ],
+ [
+ 67.94063886471217,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 19.39707062689742
+ ],
+ [
+ 67.82579618122848,
+ 19.591718361825873
+ ],
+ [
+ 67.59611081426114,
+ 19.591718361825873
+ ],
+ [
+ 67.48126813077745,
+ 19.39707062689742
+ ],
+ [
+ 67.59611081426114,
+ 19.20242289196897
+ ],
+ [
+ 67.82579618122848,
+ 19.20242289196897
+ ],
+ [
+ 67.94063886471217,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 19.78636609675433
+ ],
+ [
+ 67.82579618122848,
+ 19.98101383168278
+ ],
+ [
+ 67.59611081426114,
+ 19.98101383168278
+ ],
+ [
+ 67.48126813077745,
+ 19.78636609675433
+ ],
+ [
+ 67.59611081426114,
+ 19.591718361825876
+ ],
+ [
+ 67.82579618122848,
+ 19.591718361825876
+ ],
+ [
+ 67.94063886471217,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 20.175661566611232
+ ],
+ [
+ 67.82579618122848,
+ 20.370309301539685
+ ],
+ [
+ 67.59611081426114,
+ 20.370309301539685
+ ],
+ [
+ 67.48126813077745,
+ 20.175661566611232
+ ],
+ [
+ 67.59611081426114,
+ 19.98101383168278
+ ],
+ [
+ 67.82579618122848,
+ 19.98101383168278
+ ],
+ [
+ 67.94063886471217,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 20.564957036468137
+ ],
+ [
+ 67.82579618122848,
+ 20.75960477139659
+ ],
+ [
+ 67.59611081426114,
+ 20.75960477139659
+ ],
+ [
+ 67.48126813077745,
+ 20.564957036468137
+ ],
+ [
+ 67.59611081426114,
+ 20.370309301539685
+ ],
+ [
+ 67.82579618122848,
+ 20.370309301539685
+ ],
+ [
+ 67.94063886471217,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 20.954252506325044
+ ],
+ [
+ 67.82579618122848,
+ 21.148900241253497
+ ],
+ [
+ 67.59611081426114,
+ 21.148900241253497
+ ],
+ [
+ 67.48126813077745,
+ 20.954252506325044
+ ],
+ [
+ 67.59611081426114,
+ 20.759604771396592
+ ],
+ [
+ 67.82579618122848,
+ 20.759604771396592
+ ],
+ [
+ 67.94063886471217,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 21.343547976181952
+ ],
+ [
+ 67.82579618122848,
+ 21.538195711110404
+ ],
+ [
+ 67.59611081426114,
+ 21.538195711110404
+ ],
+ [
+ 67.48126813077745,
+ 21.343547976181952
+ ],
+ [
+ 67.59611081426114,
+ 21.1489002412535
+ ],
+ [
+ 67.82579618122848,
+ 21.1489002412535
+ ],
+ [
+ 67.94063886471217,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 21.732843446038856
+ ],
+ [
+ 67.82579618122848,
+ 21.92749118096731
+ ],
+ [
+ 67.59611081426114,
+ 21.92749118096731
+ ],
+ [
+ 67.48126813077745,
+ 21.732843446038856
+ ],
+ [
+ 67.59611081426114,
+ 21.538195711110404
+ ],
+ [
+ 67.82579618122848,
+ 21.538195711110404
+ ],
+ [
+ 67.94063886471217,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 22.122138915895764
+ ],
+ [
+ 67.82579618122848,
+ 22.316786650824216
+ ],
+ [
+ 67.59611081426114,
+ 22.316786650824216
+ ],
+ [
+ 67.48126813077745,
+ 22.122138915895764
+ ],
+ [
+ 67.59611081426114,
+ 21.927491180967312
+ ],
+ [
+ 67.82579618122848,
+ 21.927491180967312
+ ],
+ [
+ 67.94063886471217,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 22.511434385752672
+ ],
+ [
+ 67.82579618122848,
+ 22.706082120681124
+ ],
+ [
+ 67.59611081426114,
+ 22.706082120681124
+ ],
+ [
+ 67.48126813077745,
+ 22.511434385752672
+ ],
+ [
+ 67.59611081426114,
+ 22.31678665082422
+ ],
+ [
+ 67.82579618122848,
+ 22.31678665082422
+ ],
+ [
+ 67.94063886471217,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 22.900729855609576
+ ],
+ [
+ 67.82579618122848,
+ 23.09537759053803
+ ],
+ [
+ 67.59611081426114,
+ 23.09537759053803
+ ],
+ [
+ 67.48126813077745,
+ 22.900729855609576
+ ],
+ [
+ 67.59611081426114,
+ 22.706082120681124
+ ],
+ [
+ 67.82579618122848,
+ 22.706082120681124
+ ],
+ [
+ 67.94063886471217,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 23.290025325466484
+ ],
+ [
+ 67.82579618122848,
+ 23.484673060394936
+ ],
+ [
+ 67.59611081426114,
+ 23.484673060394936
+ ],
+ [
+ 67.48126813077745,
+ 23.290025325466484
+ ],
+ [
+ 67.59611081426114,
+ 23.095377590538032
+ ],
+ [
+ 67.82579618122848,
+ 23.095377590538032
+ ],
+ [
+ 67.94063886471217,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 23.67932079532339
+ ],
+ [
+ 67.82579618122848,
+ 23.873968530251844
+ ],
+ [
+ 67.59611081426114,
+ 23.873968530251844
+ ],
+ [
+ 67.48126813077745,
+ 23.67932079532339
+ ],
+ [
+ 67.59611081426114,
+ 23.48467306039494
+ ],
+ [
+ 67.82579618122848,
+ 23.48467306039494
+ ],
+ [
+ 67.94063886471217,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 24.068616265180296
+ ],
+ [
+ 67.82579618122848,
+ 24.263264000108748
+ ],
+ [
+ 67.59611081426114,
+ 24.263264000108748
+ ],
+ [
+ 67.48126813077745,
+ 24.068616265180296
+ ],
+ [
+ 67.59611081426114,
+ 23.873968530251844
+ ],
+ [
+ 67.82579618122848,
+ 23.873968530251844
+ ],
+ [
+ 67.94063886471217,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 24.4579117350372
+ ],
+ [
+ 67.82579618122848,
+ 24.652559469965652
+ ],
+ [
+ 67.59611081426114,
+ 24.652559469965652
+ ],
+ [
+ 67.48126813077745,
+ 24.4579117350372
+ ],
+ [
+ 67.59611081426114,
+ 24.263264000108748
+ ],
+ [
+ 67.82579618122848,
+ 24.263264000108748
+ ],
+ [
+ 67.94063886471217,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 24.847207204894108
+ ],
+ [
+ 67.82579618122848,
+ 25.04185493982256
+ ],
+ [
+ 67.59611081426114,
+ 25.04185493982256
+ ],
+ [
+ 67.48126813077745,
+ 24.847207204894108
+ ],
+ [
+ 67.59611081426114,
+ 24.652559469965656
+ ],
+ [
+ 67.82579618122848,
+ 24.652559469965656
+ ],
+ [
+ 67.94063886471217,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 25.236502674751016
+ ],
+ [
+ 67.82579618122848,
+ 25.431150409679468
+ ],
+ [
+ 67.59611081426114,
+ 25.431150409679468
+ ],
+ [
+ 67.48126813077745,
+ 25.236502674751016
+ ],
+ [
+ 67.59611081426114,
+ 25.041854939822564
+ ],
+ [
+ 67.82579618122848,
+ 25.041854939822564
+ ],
+ [
+ 67.94063886471217,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 25.62579814460792
+ ],
+ [
+ 67.82579618122848,
+ 25.820445879536372
+ ],
+ [
+ 67.59611081426114,
+ 25.820445879536372
+ ],
+ [
+ 67.48126813077745,
+ 25.62579814460792
+ ],
+ [
+ 67.59611081426114,
+ 25.431150409679468
+ ],
+ [
+ 67.82579618122848,
+ 25.431150409679468
+ ],
+ [
+ 67.94063886471217,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 26.015093614464828
+ ],
+ [
+ 67.82579618122848,
+ 26.20974134939328
+ ],
+ [
+ 67.59611081426114,
+ 26.20974134939328
+ ],
+ [
+ 67.48126813077745,
+ 26.015093614464828
+ ],
+ [
+ 67.59611081426114,
+ 25.820445879536376
+ ],
+ [
+ 67.82579618122848,
+ 25.820445879536376
+ ],
+ [
+ 67.94063886471217,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 26.404389084321735
+ ],
+ [
+ 67.82579618122848,
+ 26.599036819250188
+ ],
+ [
+ 67.59611081426114,
+ 26.599036819250188
+ ],
+ [
+ 67.48126813077745,
+ 26.404389084321735
+ ],
+ [
+ 67.59611081426114,
+ 26.209741349393283
+ ],
+ [
+ 67.82579618122848,
+ 26.209741349393283
+ ],
+ [
+ 67.94063886471217,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 26.79368455417864
+ ],
+ [
+ 67.82579618122848,
+ 26.988332289107092
+ ],
+ [
+ 67.59611081426114,
+ 26.988332289107092
+ ],
+ [
+ 67.48126813077745,
+ 26.79368455417864
+ ],
+ [
+ 67.59611081426114,
+ 26.599036819250188
+ ],
+ [
+ 67.82579618122848,
+ 26.599036819250188
+ ],
+ [
+ 67.94063886471217,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 27.182980024035547
+ ],
+ [
+ 67.82579618122848,
+ 27.377627758964
+ ],
+ [
+ 67.59611081426114,
+ 27.377627758964
+ ],
+ [
+ 67.48126813077745,
+ 27.182980024035547
+ ],
+ [
+ 67.59611081426114,
+ 26.988332289107095
+ ],
+ [
+ 67.82579618122848,
+ 26.988332289107095
+ ],
+ [
+ 67.94063886471217,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 27.572275493892455
+ ],
+ [
+ 67.82579618122848,
+ 27.766923228820907
+ ],
+ [
+ 67.59611081426114,
+ 27.766923228820907
+ ],
+ [
+ 67.48126813077745,
+ 27.572275493892455
+ ],
+ [
+ 67.59611081426114,
+ 27.377627758964003
+ ],
+ [
+ 67.82579618122848,
+ 27.377627758964003
+ ],
+ [
+ 67.94063886471217,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 27.96157096374936
+ ],
+ [
+ 67.82579618122848,
+ 28.15621869867781
+ ],
+ [
+ 67.59611081426114,
+ 28.15621869867781
+ ],
+ [
+ 67.48126813077745,
+ 27.96157096374936
+ ],
+ [
+ 67.59611081426114,
+ 27.766923228820907
+ ],
+ [
+ 67.82579618122848,
+ 27.766923228820907
+ ],
+ [
+ 67.94063886471217,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 28.350866433606267
+ ],
+ [
+ 67.82579618122848,
+ 28.54551416853472
+ ],
+ [
+ 67.59611081426114,
+ 28.54551416853472
+ ],
+ [
+ 67.48126813077745,
+ 28.350866433606267
+ ],
+ [
+ 67.59611081426114,
+ 28.156218698677815
+ ],
+ [
+ 67.82579618122848,
+ 28.156218698677815
+ ],
+ [
+ 67.94063886471217,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 28.74016190346317
+ ],
+ [
+ 67.82579618122848,
+ 28.934809638391624
+ ],
+ [
+ 67.59611081426114,
+ 28.934809638391624
+ ],
+ [
+ 67.48126813077745,
+ 28.74016190346317
+ ],
+ [
+ 67.59611081426114,
+ 28.54551416853472
+ ],
+ [
+ 67.82579618122848,
+ 28.54551416853472
+ ],
+ [
+ 67.94063886471217,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 29.12945737332008
+ ],
+ [
+ 67.82579618122848,
+ 29.32410510824853
+ ],
+ [
+ 67.59611081426114,
+ 29.32410510824853
+ ],
+ [
+ 67.48126813077745,
+ 29.12945737332008
+ ],
+ [
+ 67.59611081426114,
+ 28.934809638391627
+ ],
+ [
+ 67.82579618122848,
+ 28.934809638391627
+ ],
+ [
+ 67.94063886471217,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 29.518752843176983
+ ],
+ [
+ 67.82579618122848,
+ 29.713400578105436
+ ],
+ [
+ 67.59611081426114,
+ 29.713400578105436
+ ],
+ [
+ 67.48126813077745,
+ 29.518752843176983
+ ],
+ [
+ 67.59611081426114,
+ 29.32410510824853
+ ],
+ [
+ 67.82579618122848,
+ 29.32410510824853
+ ],
+ [
+ 67.94063886471217,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 29.90804831303389
+ ],
+ [
+ 67.82579618122848,
+ 30.102696047962343
+ ],
+ [
+ 67.59611081426114,
+ 30.102696047962343
+ ],
+ [
+ 67.48126813077745,
+ 29.90804831303389
+ ],
+ [
+ 67.59611081426114,
+ 29.71340057810544
+ ],
+ [
+ 67.82579618122848,
+ 29.71340057810544
+ ],
+ [
+ 67.94063886471217,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 30.297343782890795
+ ],
+ [
+ 67.82579618122848,
+ 30.491991517819248
+ ],
+ [
+ 67.59611081426114,
+ 30.491991517819248
+ ],
+ [
+ 67.48126813077745,
+ 30.297343782890795
+ ],
+ [
+ 67.59611081426114,
+ 30.102696047962343
+ ],
+ [
+ 67.82579618122848,
+ 30.102696047962343
+ ],
+ [
+ 67.94063886471217,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 30.686639252747703
+ ],
+ [
+ 67.82579618122848,
+ 30.881286987676155
+ ],
+ [
+ 67.59611081426114,
+ 30.881286987676155
+ ],
+ [
+ 67.48126813077745,
+ 30.686639252747703
+ ],
+ [
+ 67.59611081426114,
+ 30.49199151781925
+ ],
+ [
+ 67.82579618122848,
+ 30.49199151781925
+ ],
+ [
+ 67.94063886471217,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 31.07593472260461
+ ],
+ [
+ 67.82579618122848,
+ 31.270582457533063
+ ],
+ [
+ 67.59611081426114,
+ 31.270582457533063
+ ],
+ [
+ 67.48126813077745,
+ 31.07593472260461
+ ],
+ [
+ 67.59611081426114,
+ 30.88128698767616
+ ],
+ [
+ 67.82579618122848,
+ 30.88128698767616
+ ],
+ [
+ 67.94063886471217,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 31.465230192461515
+ ],
+ [
+ 67.82579618122848,
+ 31.659877927389967
+ ],
+ [
+ 67.59611081426114,
+ 31.659877927389967
+ ],
+ [
+ 67.48126813077745,
+ 31.465230192461515
+ ],
+ [
+ 67.59611081426114,
+ 31.270582457533063
+ ],
+ [
+ 67.82579618122848,
+ 31.270582457533063
+ ],
+ [
+ 67.94063886471217,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 31.854525662318423
+ ],
+ [
+ 67.82579618122848,
+ 32.049173397246875
+ ],
+ [
+ 67.59611081426114,
+ 32.049173397246875
+ ],
+ [
+ 67.48126813077745,
+ 31.854525662318423
+ ],
+ [
+ 67.59611081426114,
+ 31.65987792738997
+ ],
+ [
+ 67.82579618122848,
+ 31.65987792738997
+ ],
+ [
+ 67.94063886471217,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 32.24382113217533
+ ],
+ [
+ 67.82579618122848,
+ 32.43846886710378
+ ],
+ [
+ 67.59611081426114,
+ 32.43846886710378
+ ],
+ [
+ 67.48126813077745,
+ 32.24382113217533
+ ],
+ [
+ 67.59611081426114,
+ 32.049173397246875
+ ],
+ [
+ 67.82579618122848,
+ 32.049173397246875
+ ],
+ [
+ 67.94063886471217,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 32.63311660203224
+ ],
+ [
+ 67.82579618122848,
+ 32.82776433696069
+ ],
+ [
+ 67.59611081426114,
+ 32.82776433696069
+ ],
+ [
+ 67.48126813077745,
+ 32.63311660203224
+ ],
+ [
+ 67.59611081426114,
+ 32.438468867103786
+ ],
+ [
+ 67.82579618122848,
+ 32.438468867103786
+ ],
+ [
+ 67.94063886471217,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 33.02241207188914
+ ],
+ [
+ 67.82579618122848,
+ 33.217059806817595
+ ],
+ [
+ 67.59611081426114,
+ 33.217059806817595
+ ],
+ [
+ 67.48126813077745,
+ 33.02241207188914
+ ],
+ [
+ 67.59611081426114,
+ 32.82776433696069
+ ],
+ [
+ 67.82579618122848,
+ 32.82776433696069
+ ],
+ [
+ 67.94063886471217,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 33.41170754174605
+ ],
+ [
+ 67.82579618122848,
+ 33.6063552766745
+ ],
+ [
+ 67.59611081426114,
+ 33.6063552766745
+ ],
+ [
+ 67.48126813077745,
+ 33.41170754174605
+ ],
+ [
+ 67.59611081426114,
+ 33.217059806817595
+ ],
+ [
+ 67.82579618122848,
+ 33.217059806817595
+ ],
+ [
+ 67.94063886471217,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 33.80100301160295
+ ],
+ [
+ 67.82579618122848,
+ 33.9956507465314
+ ],
+ [
+ 67.59611081426114,
+ 33.9956507465314
+ ],
+ [
+ 67.48126813077745,
+ 33.80100301160295
+ ],
+ [
+ 67.59611081426114,
+ 33.6063552766745
+ ],
+ [
+ 67.82579618122848,
+ 33.6063552766745
+ ],
+ [
+ 67.94063886471217,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 34.190298481459855
+ ],
+ [
+ 67.82579618122848,
+ 34.38494621638831
+ ],
+ [
+ 67.59611081426114,
+ 34.38494621638831
+ ],
+ [
+ 67.48126813077745,
+ 34.190298481459855
+ ],
+ [
+ 67.59611081426114,
+ 33.9956507465314
+ ],
+ [
+ 67.82579618122848,
+ 33.9956507465314
+ ],
+ [
+ 67.94063886471217,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 34.57959395131677
+ ],
+ [
+ 67.82579618122848,
+ 34.77424168624522
+ ],
+ [
+ 67.59611081426114,
+ 34.77424168624522
+ ],
+ [
+ 67.48126813077745,
+ 34.57959395131677
+ ],
+ [
+ 67.59611081426114,
+ 34.384946216388315
+ ],
+ [
+ 67.82579618122848,
+ 34.384946216388315
+ ],
+ [
+ 67.94063886471217,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 34.96888942117368
+ ],
+ [
+ 67.82579618122848,
+ 35.16353715610213
+ ],
+ [
+ 67.59611081426114,
+ 35.16353715610213
+ ],
+ [
+ 67.48126813077745,
+ 34.96888942117368
+ ],
+ [
+ 67.59611081426114,
+ 34.774241686245226
+ ],
+ [
+ 67.82579618122848,
+ 34.774241686245226
+ ],
+ [
+ 67.94063886471217,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 35.35818489103058
+ ],
+ [
+ 67.82579618122848,
+ 35.552832625959034
+ ],
+ [
+ 67.59611081426114,
+ 35.552832625959034
+ ],
+ [
+ 67.48126813077745,
+ 35.35818489103058
+ ],
+ [
+ 67.59611081426114,
+ 35.16353715610213
+ ],
+ [
+ 67.82579618122848,
+ 35.16353715610213
+ ],
+ [
+ 67.94063886471217,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 35.74748036088749
+ ],
+ [
+ 67.82579618122848,
+ 35.94212809581594
+ ],
+ [
+ 67.59611081426114,
+ 35.94212809581594
+ ],
+ [
+ 67.48126813077745,
+ 35.74748036088749
+ ],
+ [
+ 67.59611081426114,
+ 35.552832625959034
+ ],
+ [
+ 67.82579618122848,
+ 35.552832625959034
+ ],
+ [
+ 67.94063886471217,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 36.13677583074439
+ ],
+ [
+ 67.82579618122848,
+ 36.33142356567284
+ ],
+ [
+ 67.59611081426114,
+ 36.33142356567284
+ ],
+ [
+ 67.48126813077745,
+ 36.13677583074439
+ ],
+ [
+ 67.59611081426114,
+ 35.94212809581594
+ ],
+ [
+ 67.82579618122848,
+ 35.94212809581594
+ ],
+ [
+ 67.94063886471217,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 36.526071300601295
+ ],
+ [
+ 67.82579618122848,
+ 36.72071903552975
+ ],
+ [
+ 67.59611081426114,
+ 36.72071903552975
+ ],
+ [
+ 67.48126813077745,
+ 36.526071300601295
+ ],
+ [
+ 67.59611081426114,
+ 36.33142356567284
+ ],
+ [
+ 67.82579618122848,
+ 36.33142356567284
+ ],
+ [
+ 67.94063886471217,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 36.915366770458206
+ ],
+ [
+ 67.82579618122848,
+ 37.11001450538666
+ ],
+ [
+ 67.59611081426114,
+ 37.11001450538666
+ ],
+ [
+ 67.48126813077745,
+ 36.915366770458206
+ ],
+ [
+ 67.59611081426114,
+ 36.720719035529754
+ ],
+ [
+ 67.82579618122848,
+ 36.720719035529754
+ ],
+ [
+ 67.94063886471217,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 37.30466224031511
+ ],
+ [
+ 67.82579618122848,
+ 37.49930997524356
+ ],
+ [
+ 67.59611081426114,
+ 37.49930997524356
+ ],
+ [
+ 67.48126813077745,
+ 37.30466224031511
+ ],
+ [
+ 67.59611081426114,
+ 37.11001450538666
+ ],
+ [
+ 67.82579618122848,
+ 37.11001450538666
+ ],
+ [
+ 67.94063886471217,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 37.69395771017202
+ ],
+ [
+ 67.82579618122848,
+ 37.888605445100474
+ ],
+ [
+ 67.59611081426114,
+ 37.888605445100474
+ ],
+ [
+ 67.48126813077745,
+ 37.69395771017202
+ ],
+ [
+ 67.59611081426114,
+ 37.49930997524357
+ ],
+ [
+ 67.82579618122848,
+ 37.49930997524357
+ ],
+ [
+ 67.94063886471217,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 38.083253180028926
+ ],
+ [
+ 67.82579618122848,
+ 38.27790091495738
+ ],
+ [
+ 67.59611081426114,
+ 38.27790091495738
+ ],
+ [
+ 67.48126813077745,
+ 38.083253180028926
+ ],
+ [
+ 67.59611081426114,
+ 37.888605445100474
+ ],
+ [
+ 67.82579618122848,
+ 37.888605445100474
+ ],
+ [
+ 67.94063886471217,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 38.47254864988583
+ ],
+ [
+ 67.82579618122848,
+ 38.66719638481428
+ ],
+ [
+ 67.59611081426114,
+ 38.66719638481428
+ ],
+ [
+ 67.48126813077745,
+ 38.47254864988583
+ ],
+ [
+ 67.59611081426114,
+ 38.27790091495738
+ ],
+ [
+ 67.82579618122848,
+ 38.27790091495738
+ ],
+ [
+ 67.94063886471217,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 38.861844119742734
+ ],
+ [
+ 67.82579618122848,
+ 39.05649185467119
+ ],
+ [
+ 67.59611081426114,
+ 39.05649185467119
+ ],
+ [
+ 67.48126813077745,
+ 38.861844119742734
+ ],
+ [
+ 67.59611081426114,
+ 38.66719638481428
+ ],
+ [
+ 67.82579618122848,
+ 38.66719638481428
+ ],
+ [
+ 67.94063886471217,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 39.25113958959964
+ ],
+ [
+ 67.82579618122848,
+ 39.44578732452809
+ ],
+ [
+ 67.59611081426114,
+ 39.44578732452809
+ ],
+ [
+ 67.48126813077745,
+ 39.25113958959964
+ ],
+ [
+ 67.59611081426114,
+ 39.05649185467119
+ ],
+ [
+ 67.82579618122848,
+ 39.05649185467119
+ ],
+ [
+ 67.94063886471217,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 39.64043505945655
+ ],
+ [
+ 67.82579618122848,
+ 39.835082794385
+ ],
+ [
+ 67.59611081426114,
+ 39.835082794385
+ ],
+ [
+ 67.48126813077745,
+ 39.64043505945655
+ ],
+ [
+ 67.59611081426114,
+ 39.4457873245281
+ ],
+ [
+ 67.82579618122848,
+ 39.4457873245281
+ ],
+ [
+ 67.94063886471217,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 40.029730529313454
+ ],
+ [
+ 67.82579618122848,
+ 40.224378264241906
+ ],
+ [
+ 67.59611081426114,
+ 40.224378264241906
+ ],
+ [
+ 67.48126813077745,
+ 40.029730529313454
+ ],
+ [
+ 67.59611081426114,
+ 39.835082794385
+ ],
+ [
+ 67.82579618122848,
+ 39.835082794385
+ ],
+ [
+ 67.94063886471217,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 40.419025999170366
+ ],
+ [
+ 67.82579618122848,
+ 40.61367373409882
+ ],
+ [
+ 67.59611081426114,
+ 40.61367373409882
+ ],
+ [
+ 67.48126813077745,
+ 40.419025999170366
+ ],
+ [
+ 67.59611081426114,
+ 40.22437826424191
+ ],
+ [
+ 67.82579618122848,
+ 40.22437826424191
+ ],
+ [
+ 67.94063886471217,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 40.80832146902727
+ ],
+ [
+ 67.82579618122848,
+ 41.00296920395572
+ ],
+ [
+ 67.59611081426114,
+ 41.00296920395572
+ ],
+ [
+ 67.48126813077745,
+ 40.80832146902727
+ ],
+ [
+ 67.59611081426114,
+ 40.61367373409882
+ ],
+ [
+ 67.82579618122848,
+ 40.61367373409882
+ ],
+ [
+ 67.94063886471217,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 41.197616938884174
+ ],
+ [
+ 67.82579618122848,
+ 41.392264673812626
+ ],
+ [
+ 67.59611081426114,
+ 41.392264673812626
+ ],
+ [
+ 67.48126813077745,
+ 41.197616938884174
+ ],
+ [
+ 67.59611081426114,
+ 41.00296920395572
+ ],
+ [
+ 67.82579618122848,
+ 41.00296920395572
+ ],
+ [
+ 67.94063886471217,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 41.58691240874108
+ ],
+ [
+ 67.82579618122848,
+ 41.78156014366953
+ ],
+ [
+ 67.59611081426114,
+ 41.78156014366953
+ ],
+ [
+ 67.48126813077745,
+ 41.58691240874108
+ ],
+ [
+ 67.59611081426114,
+ 41.392264673812626
+ ],
+ [
+ 67.82579618122848,
+ 41.392264673812626
+ ],
+ [
+ 67.94063886471217,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 41.97620787859798
+ ],
+ [
+ 67.82579618122848,
+ 42.170855613526435
+ ],
+ [
+ 67.59611081426114,
+ 42.170855613526435
+ ],
+ [
+ 67.48126813077745,
+ 41.97620787859798
+ ],
+ [
+ 67.59611081426114,
+ 41.78156014366953
+ ],
+ [
+ 67.82579618122848,
+ 41.78156014366953
+ ],
+ [
+ 67.94063886471217,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 42.365503348454894
+ ],
+ [
+ 67.82579618122848,
+ 42.560151083383346
+ ],
+ [
+ 67.59611081426114,
+ 42.560151083383346
+ ],
+ [
+ 67.48126813077745,
+ 42.365503348454894
+ ],
+ [
+ 67.59611081426114,
+ 42.17085561352644
+ ],
+ [
+ 67.82579618122848,
+ 42.17085561352644
+ ],
+ [
+ 67.94063886471217,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 42.754798818311805
+ ],
+ [
+ 67.82579618122848,
+ 42.94944655324026
+ ],
+ [
+ 67.59611081426114,
+ 42.94944655324026
+ ],
+ [
+ 67.48126813077745,
+ 42.754798818311805
+ ],
+ [
+ 67.59611081426114,
+ 42.56015108338335
+ ],
+ [
+ 67.82579618122848,
+ 42.56015108338335
+ ],
+ [
+ 67.94063886471217,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 43.14409428816871
+ ],
+ [
+ 67.82579618122848,
+ 43.33874202309716
+ ],
+ [
+ 67.59611081426114,
+ 43.33874202309716
+ ],
+ [
+ 67.48126813077745,
+ 43.14409428816871
+ ],
+ [
+ 67.59611081426114,
+ 42.94944655324026
+ ],
+ [
+ 67.82579618122848,
+ 42.94944655324026
+ ],
+ [
+ 67.94063886471217,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 43.53338975802561
+ ],
+ [
+ 67.82579618122848,
+ 43.728037492954066
+ ],
+ [
+ 67.59611081426114,
+ 43.728037492954066
+ ],
+ [
+ 67.48126813077745,
+ 43.53338975802561
+ ],
+ [
+ 67.59611081426114,
+ 43.33874202309716
+ ],
+ [
+ 67.82579618122848,
+ 43.33874202309716
+ ],
+ [
+ 67.94063886471217,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 43.92268522788252
+ ],
+ [
+ 67.82579618122848,
+ 44.11733296281097
+ ],
+ [
+ 67.59611081426114,
+ 44.11733296281097
+ ],
+ [
+ 67.48126813077745,
+ 43.92268522788252
+ ],
+ [
+ 67.59611081426114,
+ 43.728037492954066
+ ],
+ [
+ 67.82579618122848,
+ 43.728037492954066
+ ],
+ [
+ 67.94063886471217,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 44.31198069773942
+ ],
+ [
+ 67.82579618122848,
+ 44.506628432667874
+ ],
+ [
+ 67.59611081426114,
+ 44.506628432667874
+ ],
+ [
+ 67.48126813077745,
+ 44.31198069773942
+ ],
+ [
+ 67.59611081426114,
+ 44.11733296281097
+ ],
+ [
+ 67.82579618122848,
+ 44.11733296281097
+ ],
+ [
+ 67.94063886471217,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 44.701276167596326
+ ],
+ [
+ 67.82579618122848,
+ 44.89592390252478
+ ],
+ [
+ 67.59611081426114,
+ 44.89592390252478
+ ],
+ [
+ 67.48126813077745,
+ 44.701276167596326
+ ],
+ [
+ 67.59611081426114,
+ 44.506628432667874
+ ],
+ [
+ 67.82579618122848,
+ 44.506628432667874
+ ],
+ [
+ 67.94063886471217,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 45.090571637453245
+ ],
+ [
+ 67.82579618122848,
+ 45.2852193723817
+ ],
+ [
+ 67.59611081426114,
+ 45.2852193723817
+ ],
+ [
+ 67.48126813077745,
+ 45.090571637453245
+ ],
+ [
+ 67.59611081426114,
+ 44.89592390252479
+ ],
+ [
+ 67.82579618122848,
+ 44.89592390252479
+ ],
+ [
+ 67.94063886471217,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 45.47986710731015
+ ],
+ [
+ 67.82579618122848,
+ 45.6745148422386
+ ],
+ [
+ 67.59611081426114,
+ 45.6745148422386
+ ],
+ [
+ 67.48126813077745,
+ 45.47986710731015
+ ],
+ [
+ 67.59611081426114,
+ 45.2852193723817
+ ],
+ [
+ 67.82579618122848,
+ 45.2852193723817
+ ],
+ [
+ 67.94063886471217,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 45.86916257716705
+ ],
+ [
+ 67.82579618122848,
+ 46.063810312095505
+ ],
+ [
+ 67.59611081426114,
+ 46.063810312095505
+ ],
+ [
+ 67.48126813077745,
+ 45.86916257716705
+ ],
+ [
+ 67.59611081426114,
+ 45.6745148422386
+ ],
+ [
+ 67.82579618122848,
+ 45.6745148422386
+ ],
+ [
+ 67.94063886471217,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 46.25845804702396
+ ],
+ [
+ 67.82579618122848,
+ 46.45310578195241
+ ],
+ [
+ 67.59611081426114,
+ 46.45310578195241
+ ],
+ [
+ 67.48126813077745,
+ 46.25845804702396
+ ],
+ [
+ 67.59611081426114,
+ 46.063810312095505
+ ],
+ [
+ 67.82579618122848,
+ 46.063810312095505
+ ],
+ [
+ 67.94063886471217,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 46.64775351688086
+ ],
+ [
+ 67.82579618122848,
+ 46.842401251809314
+ ],
+ [
+ 67.59611081426114,
+ 46.842401251809314
+ ],
+ [
+ 67.48126813077745,
+ 46.64775351688086
+ ],
+ [
+ 67.59611081426114,
+ 46.45310578195241
+ ],
+ [
+ 67.82579618122848,
+ 46.45310578195241
+ ],
+ [
+ 67.94063886471217,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 47.037048986737766
+ ],
+ [
+ 67.82579618122848,
+ 47.23169672166622
+ ],
+ [
+ 67.59611081426114,
+ 47.23169672166622
+ ],
+ [
+ 67.48126813077745,
+ 47.037048986737766
+ ],
+ [
+ 67.59611081426114,
+ 46.842401251809314
+ ],
+ [
+ 67.82579618122848,
+ 46.842401251809314
+ ],
+ [
+ 67.94063886471217,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 47.42634445659467
+ ],
+ [
+ 67.82579618122848,
+ 47.62099219152312
+ ],
+ [
+ 67.59611081426114,
+ 47.62099219152312
+ ],
+ [
+ 67.48126813077745,
+ 47.42634445659467
+ ],
+ [
+ 67.59611081426114,
+ 47.23169672166622
+ ],
+ [
+ 67.82579618122848,
+ 47.23169672166622
+ ],
+ [
+ 67.94063886471217,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 67.94063886471217,
+ 47.81563992645159
+ ],
+ [
+ 67.82579618122848,
+ 48.01028766138004
+ ],
+ [
+ 67.59611081426114,
+ 48.01028766138004
+ ],
+ [
+ 67.48126813077745,
+ 47.81563992645159
+ ],
+ [
+ 67.59611081426114,
+ 47.620992191523136
+ ],
+ [
+ 67.82579618122848,
+ 47.620992191523136
+ ],
+ [
+ 67.94063886471217,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 11.805808964687746
+ ],
+ [
+ 68.17032423167953,
+ 12.0004566996162
+ ],
+ [
+ 67.94063886471218,
+ 12.0004566996162
+ ],
+ [
+ 67.8257961812285,
+ 11.805808964687746
+ ],
+ [
+ 67.94063886471218,
+ 11.611161229759292
+ ],
+ [
+ 68.17032423167953,
+ 11.611161229759292
+ ],
+ [
+ 68.28516691516322,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 12.195104434544652
+ ],
+ [
+ 68.17032423167953,
+ 12.389752169473105
+ ],
+ [
+ 67.94063886471218,
+ 12.389752169473105
+ ],
+ [
+ 67.8257961812285,
+ 12.195104434544652
+ ],
+ [
+ 67.94063886471218,
+ 12.000456699616198
+ ],
+ [
+ 68.17032423167953,
+ 12.000456699616198
+ ],
+ [
+ 68.28516691516322,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 12.58439990440156
+ ],
+ [
+ 68.17032423167953,
+ 12.779047639330013
+ ],
+ [
+ 67.94063886471218,
+ 12.779047639330013
+ ],
+ [
+ 67.8257961812285,
+ 12.58439990440156
+ ],
+ [
+ 67.94063886471218,
+ 12.389752169473105
+ ],
+ [
+ 68.17032423167953,
+ 12.389752169473105
+ ],
+ [
+ 68.28516691516322,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 12.973695374258465
+ ],
+ [
+ 68.17032423167953,
+ 13.16834310918692
+ ],
+ [
+ 67.94063886471218,
+ 13.16834310918692
+ ],
+ [
+ 67.8257961812285,
+ 12.973695374258465
+ ],
+ [
+ 67.94063886471218,
+ 12.779047639330011
+ ],
+ [
+ 68.17032423167953,
+ 12.779047639330011
+ ],
+ [
+ 68.28516691516322,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 13.362990844115371
+ ],
+ [
+ 68.17032423167953,
+ 13.557638579043825
+ ],
+ [
+ 67.94063886471218,
+ 13.557638579043825
+ ],
+ [
+ 67.8257961812285,
+ 13.362990844115371
+ ],
+ [
+ 67.94063886471218,
+ 13.168343109186917
+ ],
+ [
+ 68.17032423167953,
+ 13.168343109186917
+ ],
+ [
+ 68.28516691516322,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 13.752286313972277
+ ],
+ [
+ 68.17032423167953,
+ 13.946934048900731
+ ],
+ [
+ 67.94063886471218,
+ 13.946934048900731
+ ],
+ [
+ 67.8257961812285,
+ 13.752286313972277
+ ],
+ [
+ 67.94063886471218,
+ 13.557638579043823
+ ],
+ [
+ 68.17032423167953,
+ 13.557638579043823
+ ],
+ [
+ 68.28516691516322,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 14.141581783829183
+ ],
+ [
+ 68.17032423167953,
+ 14.336229518757637
+ ],
+ [
+ 67.94063886471218,
+ 14.336229518757637
+ ],
+ [
+ 67.8257961812285,
+ 14.141581783829183
+ ],
+ [
+ 67.94063886471218,
+ 13.94693404890073
+ ],
+ [
+ 68.17032423167953,
+ 13.94693404890073
+ ],
+ [
+ 68.28516691516322,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 14.530877253686091
+ ],
+ [
+ 68.17032423167953,
+ 14.725524988614545
+ ],
+ [
+ 67.94063886471218,
+ 14.725524988614545
+ ],
+ [
+ 67.8257961812285,
+ 14.530877253686091
+ ],
+ [
+ 67.94063886471218,
+ 14.336229518757637
+ ],
+ [
+ 68.17032423167953,
+ 14.336229518757637
+ ],
+ [
+ 68.28516691516322,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 14.920172723542997
+ ],
+ [
+ 68.17032423167953,
+ 15.114820458471451
+ ],
+ [
+ 67.94063886471218,
+ 15.114820458471451
+ ],
+ [
+ 67.8257961812285,
+ 14.920172723542997
+ ],
+ [
+ 67.94063886471218,
+ 14.725524988614543
+ ],
+ [
+ 68.17032423167953,
+ 14.725524988614543
+ ],
+ [
+ 68.28516691516322,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 15.309468193399903
+ ],
+ [
+ 68.17032423167953,
+ 15.504115928328357
+ ],
+ [
+ 67.94063886471218,
+ 15.504115928328357
+ ],
+ [
+ 67.8257961812285,
+ 15.309468193399903
+ ],
+ [
+ 67.94063886471218,
+ 15.11482045847145
+ ],
+ [
+ 68.17032423167953,
+ 15.11482045847145
+ ],
+ [
+ 68.28516691516322,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 15.69876366325681
+ ],
+ [
+ 68.17032423167953,
+ 15.893411398185265
+ ],
+ [
+ 67.94063886471218,
+ 15.893411398185265
+ ],
+ [
+ 67.8257961812285,
+ 15.69876366325681
+ ],
+ [
+ 67.94063886471218,
+ 15.504115928328357
+ ],
+ [
+ 68.17032423167953,
+ 15.504115928328357
+ ],
+ [
+ 68.28516691516322,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 16.088059133113717
+ ],
+ [
+ 68.17032423167953,
+ 16.28270686804217
+ ],
+ [
+ 67.94063886471218,
+ 16.28270686804217
+ ],
+ [
+ 67.8257961812285,
+ 16.088059133113717
+ ],
+ [
+ 67.94063886471218,
+ 15.893411398185263
+ ],
+ [
+ 68.17032423167953,
+ 15.893411398185263
+ ],
+ [
+ 68.28516691516322,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 16.477354602970625
+ ],
+ [
+ 68.17032423167953,
+ 16.672002337899077
+ ],
+ [
+ 67.94063886471218,
+ 16.672002337899077
+ ],
+ [
+ 67.8257961812285,
+ 16.477354602970625
+ ],
+ [
+ 67.94063886471218,
+ 16.282706868042172
+ ],
+ [
+ 68.17032423167953,
+ 16.282706868042172
+ ],
+ [
+ 68.28516691516322,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 16.86665007282753
+ ],
+ [
+ 68.17032423167953,
+ 17.06129780775598
+ ],
+ [
+ 67.94063886471218,
+ 17.06129780775598
+ ],
+ [
+ 67.8257961812285,
+ 16.86665007282753
+ ],
+ [
+ 67.94063886471218,
+ 16.672002337899077
+ ],
+ [
+ 68.17032423167953,
+ 16.672002337899077
+ ],
+ [
+ 68.28516691516322,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 17.255945542684437
+ ],
+ [
+ 68.17032423167953,
+ 17.45059327761289
+ ],
+ [
+ 67.94063886471218,
+ 17.45059327761289
+ ],
+ [
+ 67.8257961812285,
+ 17.255945542684437
+ ],
+ [
+ 67.94063886471218,
+ 17.061297807755984
+ ],
+ [
+ 68.17032423167953,
+ 17.061297807755984
+ ],
+ [
+ 68.28516691516322,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 17.64524101254134
+ ],
+ [
+ 68.17032423167953,
+ 17.839888747469793
+ ],
+ [
+ 67.94063886471218,
+ 17.839888747469793
+ ],
+ [
+ 67.8257961812285,
+ 17.64524101254134
+ ],
+ [
+ 67.94063886471218,
+ 17.45059327761289
+ ],
+ [
+ 68.17032423167953,
+ 17.45059327761289
+ ],
+ [
+ 68.28516691516322,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 18.03453648239825
+ ],
+ [
+ 68.17032423167953,
+ 18.2291842173267
+ ],
+ [
+ 67.94063886471218,
+ 18.2291842173267
+ ],
+ [
+ 67.8257961812285,
+ 18.03453648239825
+ ],
+ [
+ 67.94063886471218,
+ 17.839888747469796
+ ],
+ [
+ 68.17032423167953,
+ 17.839888747469796
+ ],
+ [
+ 68.28516691516322,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 18.423831952255156
+ ],
+ [
+ 68.17032423167953,
+ 18.61847968718361
+ ],
+ [
+ 67.94063886471218,
+ 18.61847968718361
+ ],
+ [
+ 67.8257961812285,
+ 18.423831952255156
+ ],
+ [
+ 67.94063886471218,
+ 18.229184217326704
+ ],
+ [
+ 68.17032423167953,
+ 18.229184217326704
+ ],
+ [
+ 68.28516691516322,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 18.81312742211206
+ ],
+ [
+ 68.17032423167953,
+ 19.007775157040513
+ ],
+ [
+ 67.94063886471218,
+ 19.007775157040513
+ ],
+ [
+ 67.8257961812285,
+ 18.81312742211206
+ ],
+ [
+ 67.94063886471218,
+ 18.61847968718361
+ ],
+ [
+ 68.17032423167953,
+ 18.61847968718361
+ ],
+ [
+ 68.28516691516322,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 19.20242289196897
+ ],
+ [
+ 68.17032423167953,
+ 19.39707062689742
+ ],
+ [
+ 67.94063886471218,
+ 19.39707062689742
+ ],
+ [
+ 67.8257961812285,
+ 19.20242289196897
+ ],
+ [
+ 67.94063886471218,
+ 19.007775157040516
+ ],
+ [
+ 68.17032423167953,
+ 19.007775157040516
+ ],
+ [
+ 68.28516691516322,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 19.591718361825876
+ ],
+ [
+ 68.17032423167953,
+ 19.78636609675433
+ ],
+ [
+ 67.94063886471218,
+ 19.78636609675433
+ ],
+ [
+ 67.8257961812285,
+ 19.591718361825876
+ ],
+ [
+ 67.94063886471218,
+ 19.397070626897424
+ ],
+ [
+ 68.17032423167953,
+ 19.397070626897424
+ ],
+ [
+ 68.28516691516322,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 19.98101383168278
+ ],
+ [
+ 68.17032423167953,
+ 20.175661566611232
+ ],
+ [
+ 67.94063886471218,
+ 20.175661566611232
+ ],
+ [
+ 67.8257961812285,
+ 19.98101383168278
+ ],
+ [
+ 67.94063886471218,
+ 19.78636609675433
+ ],
+ [
+ 68.17032423167953,
+ 19.78636609675433
+ ],
+ [
+ 68.28516691516322,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 20.370309301539685
+ ],
+ [
+ 68.17032423167953,
+ 20.564957036468137
+ ],
+ [
+ 67.94063886471218,
+ 20.564957036468137
+ ],
+ [
+ 67.8257961812285,
+ 20.370309301539685
+ ],
+ [
+ 67.94063886471218,
+ 20.175661566611232
+ ],
+ [
+ 68.17032423167953,
+ 20.175661566611232
+ ],
+ [
+ 68.28516691516322,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 20.759604771396592
+ ],
+ [
+ 68.17032423167953,
+ 20.954252506325044
+ ],
+ [
+ 67.94063886471218,
+ 20.954252506325044
+ ],
+ [
+ 67.8257961812285,
+ 20.759604771396592
+ ],
+ [
+ 67.94063886471218,
+ 20.56495703646814
+ ],
+ [
+ 68.17032423167953,
+ 20.56495703646814
+ ],
+ [
+ 68.28516691516322,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 21.1489002412535
+ ],
+ [
+ 68.17032423167953,
+ 21.343547976181952
+ ],
+ [
+ 67.94063886471218,
+ 21.343547976181952
+ ],
+ [
+ 67.8257961812285,
+ 21.1489002412535
+ ],
+ [
+ 67.94063886471218,
+ 20.954252506325048
+ ],
+ [
+ 68.17032423167953,
+ 20.954252506325048
+ ],
+ [
+ 68.28516691516322,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 21.538195711110404
+ ],
+ [
+ 68.17032423167953,
+ 21.732843446038856
+ ],
+ [
+ 67.94063886471218,
+ 21.732843446038856
+ ],
+ [
+ 67.8257961812285,
+ 21.538195711110404
+ ],
+ [
+ 67.94063886471218,
+ 21.343547976181952
+ ],
+ [
+ 68.17032423167953,
+ 21.343547976181952
+ ],
+ [
+ 68.28516691516322,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 21.927491180967312
+ ],
+ [
+ 68.17032423167953,
+ 22.122138915895764
+ ],
+ [
+ 67.94063886471218,
+ 22.122138915895764
+ ],
+ [
+ 67.8257961812285,
+ 21.927491180967312
+ ],
+ [
+ 67.94063886471218,
+ 21.73284344603886
+ ],
+ [
+ 68.17032423167953,
+ 21.73284344603886
+ ],
+ [
+ 68.28516691516322,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 22.31678665082422
+ ],
+ [
+ 68.17032423167953,
+ 22.511434385752672
+ ],
+ [
+ 67.94063886471218,
+ 22.511434385752672
+ ],
+ [
+ 67.8257961812285,
+ 22.31678665082422
+ ],
+ [
+ 67.94063886471218,
+ 22.122138915895768
+ ],
+ [
+ 68.17032423167953,
+ 22.122138915895768
+ ],
+ [
+ 68.28516691516322,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 22.706082120681124
+ ],
+ [
+ 68.17032423167953,
+ 22.900729855609576
+ ],
+ [
+ 67.94063886471218,
+ 22.900729855609576
+ ],
+ [
+ 67.8257961812285,
+ 22.706082120681124
+ ],
+ [
+ 67.94063886471218,
+ 22.511434385752672
+ ],
+ [
+ 68.17032423167953,
+ 22.511434385752672
+ ],
+ [
+ 68.28516691516322,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 23.095377590538032
+ ],
+ [
+ 68.17032423167953,
+ 23.290025325466484
+ ],
+ [
+ 67.94063886471218,
+ 23.290025325466484
+ ],
+ [
+ 67.8257961812285,
+ 23.095377590538032
+ ],
+ [
+ 67.94063886471218,
+ 22.90072985560958
+ ],
+ [
+ 68.17032423167953,
+ 22.90072985560958
+ ],
+ [
+ 68.28516691516322,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 23.48467306039494
+ ],
+ [
+ 68.17032423167953,
+ 23.67932079532339
+ ],
+ [
+ 67.94063886471218,
+ 23.67932079532339
+ ],
+ [
+ 67.8257961812285,
+ 23.48467306039494
+ ],
+ [
+ 67.94063886471218,
+ 23.290025325466488
+ ],
+ [
+ 68.17032423167953,
+ 23.290025325466488
+ ],
+ [
+ 68.28516691516322,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 23.873968530251844
+ ],
+ [
+ 68.17032423167953,
+ 24.068616265180296
+ ],
+ [
+ 67.94063886471218,
+ 24.068616265180296
+ ],
+ [
+ 67.8257961812285,
+ 23.873968530251844
+ ],
+ [
+ 67.94063886471218,
+ 23.67932079532339
+ ],
+ [
+ 68.17032423167953,
+ 23.67932079532339
+ ],
+ [
+ 68.28516691516322,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 24.263264000108748
+ ],
+ [
+ 68.17032423167953,
+ 24.4579117350372
+ ],
+ [
+ 67.94063886471218,
+ 24.4579117350372
+ ],
+ [
+ 67.8257961812285,
+ 24.263264000108748
+ ],
+ [
+ 67.94063886471218,
+ 24.068616265180296
+ ],
+ [
+ 68.17032423167953,
+ 24.068616265180296
+ ],
+ [
+ 68.28516691516322,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 24.652559469965656
+ ],
+ [
+ 68.17032423167953,
+ 24.847207204894108
+ ],
+ [
+ 67.94063886471218,
+ 24.847207204894108
+ ],
+ [
+ 67.8257961812285,
+ 24.652559469965656
+ ],
+ [
+ 67.94063886471218,
+ 24.457911735037204
+ ],
+ [
+ 68.17032423167953,
+ 24.457911735037204
+ ],
+ [
+ 68.28516691516322,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 25.041854939822564
+ ],
+ [
+ 68.17032423167953,
+ 25.236502674751016
+ ],
+ [
+ 67.94063886471218,
+ 25.236502674751016
+ ],
+ [
+ 67.8257961812285,
+ 25.041854939822564
+ ],
+ [
+ 67.94063886471218,
+ 24.84720720489411
+ ],
+ [
+ 68.17032423167953,
+ 24.84720720489411
+ ],
+ [
+ 68.28516691516322,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 25.431150409679468
+ ],
+ [
+ 68.17032423167953,
+ 25.62579814460792
+ ],
+ [
+ 67.94063886471218,
+ 25.62579814460792
+ ],
+ [
+ 67.8257961812285,
+ 25.431150409679468
+ ],
+ [
+ 67.94063886471218,
+ 25.236502674751016
+ ],
+ [
+ 68.17032423167953,
+ 25.236502674751016
+ ],
+ [
+ 68.28516691516322,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 25.820445879536376
+ ],
+ [
+ 68.17032423167953,
+ 26.015093614464828
+ ],
+ [
+ 67.94063886471218,
+ 26.015093614464828
+ ],
+ [
+ 67.8257961812285,
+ 25.820445879536376
+ ],
+ [
+ 67.94063886471218,
+ 25.625798144607923
+ ],
+ [
+ 68.17032423167953,
+ 25.625798144607923
+ ],
+ [
+ 68.28516691516322,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 26.209741349393283
+ ],
+ [
+ 68.17032423167953,
+ 26.404389084321735
+ ],
+ [
+ 67.94063886471218,
+ 26.404389084321735
+ ],
+ [
+ 67.8257961812285,
+ 26.209741349393283
+ ],
+ [
+ 67.94063886471218,
+ 26.01509361446483
+ ],
+ [
+ 68.17032423167953,
+ 26.01509361446483
+ ],
+ [
+ 68.28516691516322,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 26.599036819250188
+ ],
+ [
+ 68.17032423167953,
+ 26.79368455417864
+ ],
+ [
+ 67.94063886471218,
+ 26.79368455417864
+ ],
+ [
+ 67.8257961812285,
+ 26.599036819250188
+ ],
+ [
+ 67.94063886471218,
+ 26.404389084321735
+ ],
+ [
+ 68.17032423167953,
+ 26.404389084321735
+ ],
+ [
+ 68.28516691516322,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 26.988332289107095
+ ],
+ [
+ 68.17032423167953,
+ 27.182980024035547
+ ],
+ [
+ 67.94063886471218,
+ 27.182980024035547
+ ],
+ [
+ 67.8257961812285,
+ 26.988332289107095
+ ],
+ [
+ 67.94063886471218,
+ 26.793684554178643
+ ],
+ [
+ 68.17032423167953,
+ 26.793684554178643
+ ],
+ [
+ 68.28516691516322,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 27.377627758964003
+ ],
+ [
+ 68.17032423167953,
+ 27.572275493892455
+ ],
+ [
+ 67.94063886471218,
+ 27.572275493892455
+ ],
+ [
+ 67.8257961812285,
+ 27.377627758964003
+ ],
+ [
+ 67.94063886471218,
+ 27.18298002403555
+ ],
+ [
+ 68.17032423167953,
+ 27.18298002403555
+ ],
+ [
+ 68.28516691516322,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 27.766923228820907
+ ],
+ [
+ 68.17032423167953,
+ 27.96157096374936
+ ],
+ [
+ 67.94063886471218,
+ 27.96157096374936
+ ],
+ [
+ 67.8257961812285,
+ 27.766923228820907
+ ],
+ [
+ 67.94063886471218,
+ 27.572275493892455
+ ],
+ [
+ 68.17032423167953,
+ 27.572275493892455
+ ],
+ [
+ 68.28516691516322,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 28.156218698677815
+ ],
+ [
+ 68.17032423167953,
+ 28.350866433606267
+ ],
+ [
+ 67.94063886471218,
+ 28.350866433606267
+ ],
+ [
+ 67.8257961812285,
+ 28.156218698677815
+ ],
+ [
+ 67.94063886471218,
+ 27.961570963749363
+ ],
+ [
+ 68.17032423167953,
+ 27.961570963749363
+ ],
+ [
+ 68.28516691516322,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 28.54551416853472
+ ],
+ [
+ 68.17032423167953,
+ 28.74016190346317
+ ],
+ [
+ 67.94063886471218,
+ 28.74016190346317
+ ],
+ [
+ 67.8257961812285,
+ 28.54551416853472
+ ],
+ [
+ 67.94063886471218,
+ 28.350866433606267
+ ],
+ [
+ 68.17032423167953,
+ 28.350866433606267
+ ],
+ [
+ 68.28516691516322,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 28.934809638391627
+ ],
+ [
+ 68.17032423167953,
+ 29.12945737332008
+ ],
+ [
+ 67.94063886471218,
+ 29.12945737332008
+ ],
+ [
+ 67.8257961812285,
+ 28.934809638391627
+ ],
+ [
+ 67.94063886471218,
+ 28.740161903463175
+ ],
+ [
+ 68.17032423167953,
+ 28.740161903463175
+ ],
+ [
+ 68.28516691516322,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 29.32410510824853
+ ],
+ [
+ 68.17032423167953,
+ 29.518752843176983
+ ],
+ [
+ 67.94063886471218,
+ 29.518752843176983
+ ],
+ [
+ 67.8257961812285,
+ 29.32410510824853
+ ],
+ [
+ 67.94063886471218,
+ 29.12945737332008
+ ],
+ [
+ 68.17032423167953,
+ 29.12945737332008
+ ],
+ [
+ 68.28516691516322,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 29.71340057810544
+ ],
+ [
+ 68.17032423167953,
+ 29.90804831303389
+ ],
+ [
+ 67.94063886471218,
+ 29.90804831303389
+ ],
+ [
+ 67.8257961812285,
+ 29.71340057810544
+ ],
+ [
+ 67.94063886471218,
+ 29.518752843176987
+ ],
+ [
+ 68.17032423167953,
+ 29.518752843176987
+ ],
+ [
+ 68.28516691516322,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 30.102696047962343
+ ],
+ [
+ 68.17032423167953,
+ 30.297343782890795
+ ],
+ [
+ 67.94063886471218,
+ 30.297343782890795
+ ],
+ [
+ 67.8257961812285,
+ 30.102696047962343
+ ],
+ [
+ 67.94063886471218,
+ 29.90804831303389
+ ],
+ [
+ 68.17032423167953,
+ 29.90804831303389
+ ],
+ [
+ 68.28516691516322,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 30.49199151781925
+ ],
+ [
+ 68.17032423167953,
+ 30.686639252747703
+ ],
+ [
+ 67.94063886471218,
+ 30.686639252747703
+ ],
+ [
+ 67.8257961812285,
+ 30.49199151781925
+ ],
+ [
+ 67.94063886471218,
+ 30.2973437828908
+ ],
+ [
+ 68.17032423167953,
+ 30.2973437828908
+ ],
+ [
+ 68.28516691516322,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 30.88128698767616
+ ],
+ [
+ 68.17032423167953,
+ 31.07593472260461
+ ],
+ [
+ 67.94063886471218,
+ 31.07593472260461
+ ],
+ [
+ 67.8257961812285,
+ 30.88128698767616
+ ],
+ [
+ 67.94063886471218,
+ 30.686639252747707
+ ],
+ [
+ 68.17032423167953,
+ 30.686639252747707
+ ],
+ [
+ 68.28516691516322,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 31.270582457533063
+ ],
+ [
+ 68.17032423167953,
+ 31.465230192461515
+ ],
+ [
+ 67.94063886471218,
+ 31.465230192461515
+ ],
+ [
+ 67.8257961812285,
+ 31.270582457533063
+ ],
+ [
+ 67.94063886471218,
+ 31.07593472260461
+ ],
+ [
+ 68.17032423167953,
+ 31.07593472260461
+ ],
+ [
+ 68.28516691516322,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 31.65987792738997
+ ],
+ [
+ 68.17032423167953,
+ 31.854525662318423
+ ],
+ [
+ 67.94063886471218,
+ 31.854525662318423
+ ],
+ [
+ 67.8257961812285,
+ 31.65987792738997
+ ],
+ [
+ 67.94063886471218,
+ 31.46523019246152
+ ],
+ [
+ 68.17032423167953,
+ 31.46523019246152
+ ],
+ [
+ 68.28516691516322,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 32.049173397246875
+ ],
+ [
+ 68.17032423167953,
+ 32.24382113217533
+ ],
+ [
+ 67.94063886471218,
+ 32.24382113217533
+ ],
+ [
+ 67.8257961812285,
+ 32.049173397246875
+ ],
+ [
+ 67.94063886471218,
+ 31.854525662318423
+ ],
+ [
+ 68.17032423167953,
+ 31.854525662318423
+ ],
+ [
+ 68.28516691516322,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 32.438468867103786
+ ],
+ [
+ 68.17032423167953,
+ 32.63311660203224
+ ],
+ [
+ 67.94063886471218,
+ 32.63311660203224
+ ],
+ [
+ 67.8257961812285,
+ 32.438468867103786
+ ],
+ [
+ 67.94063886471218,
+ 32.243821132175334
+ ],
+ [
+ 68.17032423167953,
+ 32.243821132175334
+ ],
+ [
+ 68.28516691516322,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 32.82776433696069
+ ],
+ [
+ 68.17032423167953,
+ 33.02241207188914
+ ],
+ [
+ 67.94063886471218,
+ 33.02241207188914
+ ],
+ [
+ 67.8257961812285,
+ 32.82776433696069
+ ],
+ [
+ 67.94063886471218,
+ 32.63311660203224
+ ],
+ [
+ 68.17032423167953,
+ 32.63311660203224
+ ],
+ [
+ 68.28516691516322,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 33.217059806817595
+ ],
+ [
+ 68.17032423167953,
+ 33.41170754174605
+ ],
+ [
+ 67.94063886471218,
+ 33.41170754174605
+ ],
+ [
+ 67.8257961812285,
+ 33.217059806817595
+ ],
+ [
+ 67.94063886471218,
+ 33.02241207188914
+ ],
+ [
+ 68.17032423167953,
+ 33.02241207188914
+ ],
+ [
+ 68.28516691516322,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 33.6063552766745
+ ],
+ [
+ 68.17032423167953,
+ 33.80100301160295
+ ],
+ [
+ 67.94063886471218,
+ 33.80100301160295
+ ],
+ [
+ 67.8257961812285,
+ 33.6063552766745
+ ],
+ [
+ 67.94063886471218,
+ 33.41170754174605
+ ],
+ [
+ 68.17032423167953,
+ 33.41170754174605
+ ],
+ [
+ 68.28516691516322,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 33.9956507465314
+ ],
+ [
+ 68.17032423167953,
+ 34.190298481459855
+ ],
+ [
+ 67.94063886471218,
+ 34.190298481459855
+ ],
+ [
+ 67.8257961812285,
+ 33.9956507465314
+ ],
+ [
+ 67.94063886471218,
+ 33.80100301160295
+ ],
+ [
+ 68.17032423167953,
+ 33.80100301160295
+ ],
+ [
+ 68.28516691516322,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 34.384946216388315
+ ],
+ [
+ 68.17032423167953,
+ 34.57959395131677
+ ],
+ [
+ 67.94063886471218,
+ 34.57959395131677
+ ],
+ [
+ 67.8257961812285,
+ 34.384946216388315
+ ],
+ [
+ 67.94063886471218,
+ 34.19029848145986
+ ],
+ [
+ 68.17032423167953,
+ 34.19029848145986
+ ],
+ [
+ 68.28516691516322,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 34.774241686245226
+ ],
+ [
+ 68.17032423167953,
+ 34.96888942117368
+ ],
+ [
+ 67.94063886471218,
+ 34.96888942117368
+ ],
+ [
+ 67.8257961812285,
+ 34.774241686245226
+ ],
+ [
+ 67.94063886471218,
+ 34.579593951316774
+ ],
+ [
+ 68.17032423167953,
+ 34.579593951316774
+ ],
+ [
+ 68.28516691516322,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 35.16353715610213
+ ],
+ [
+ 68.17032423167953,
+ 35.35818489103058
+ ],
+ [
+ 67.94063886471218,
+ 35.35818489103058
+ ],
+ [
+ 67.8257961812285,
+ 35.16353715610213
+ ],
+ [
+ 67.94063886471218,
+ 34.96888942117368
+ ],
+ [
+ 68.17032423167953,
+ 34.96888942117368
+ ],
+ [
+ 68.28516691516322,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 35.552832625959034
+ ],
+ [
+ 68.17032423167953,
+ 35.74748036088749
+ ],
+ [
+ 67.94063886471218,
+ 35.74748036088749
+ ],
+ [
+ 67.8257961812285,
+ 35.552832625959034
+ ],
+ [
+ 67.94063886471218,
+ 35.35818489103058
+ ],
+ [
+ 68.17032423167953,
+ 35.35818489103058
+ ],
+ [
+ 68.28516691516322,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 35.94212809581594
+ ],
+ [
+ 68.17032423167953,
+ 36.13677583074439
+ ],
+ [
+ 67.94063886471218,
+ 36.13677583074439
+ ],
+ [
+ 67.8257961812285,
+ 35.94212809581594
+ ],
+ [
+ 67.94063886471218,
+ 35.74748036088749
+ ],
+ [
+ 68.17032423167953,
+ 35.74748036088749
+ ],
+ [
+ 68.28516691516322,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 36.33142356567284
+ ],
+ [
+ 68.17032423167953,
+ 36.526071300601295
+ ],
+ [
+ 67.94063886471218,
+ 36.526071300601295
+ ],
+ [
+ 67.8257961812285,
+ 36.33142356567284
+ ],
+ [
+ 67.94063886471218,
+ 36.13677583074439
+ ],
+ [
+ 68.17032423167953,
+ 36.13677583074439
+ ],
+ [
+ 68.28516691516322,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 36.720719035529754
+ ],
+ [
+ 68.17032423167953,
+ 36.915366770458206
+ ],
+ [
+ 67.94063886471218,
+ 36.915366770458206
+ ],
+ [
+ 67.8257961812285,
+ 36.720719035529754
+ ],
+ [
+ 67.94063886471218,
+ 36.5260713006013
+ ],
+ [
+ 68.17032423167953,
+ 36.5260713006013
+ ],
+ [
+ 68.28516691516322,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 37.11001450538666
+ ],
+ [
+ 68.17032423167953,
+ 37.30466224031511
+ ],
+ [
+ 67.94063886471218,
+ 37.30466224031511
+ ],
+ [
+ 67.8257961812285,
+ 37.11001450538666
+ ],
+ [
+ 67.94063886471218,
+ 36.915366770458206
+ ],
+ [
+ 68.17032423167953,
+ 36.915366770458206
+ ],
+ [
+ 68.28516691516322,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 37.49930997524357
+ ],
+ [
+ 68.17032423167953,
+ 37.69395771017202
+ ],
+ [
+ 67.94063886471218,
+ 37.69395771017202
+ ],
+ [
+ 67.8257961812285,
+ 37.49930997524357
+ ],
+ [
+ 67.94063886471218,
+ 37.30466224031512
+ ],
+ [
+ 68.17032423167953,
+ 37.30466224031512
+ ],
+ [
+ 68.28516691516322,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 37.888605445100474
+ ],
+ [
+ 68.17032423167953,
+ 38.083253180028926
+ ],
+ [
+ 67.94063886471218,
+ 38.083253180028926
+ ],
+ [
+ 67.8257961812285,
+ 37.888605445100474
+ ],
+ [
+ 67.94063886471218,
+ 37.69395771017202
+ ],
+ [
+ 68.17032423167953,
+ 37.69395771017202
+ ],
+ [
+ 68.28516691516322,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 38.27790091495738
+ ],
+ [
+ 68.17032423167953,
+ 38.47254864988583
+ ],
+ [
+ 67.94063886471218,
+ 38.47254864988583
+ ],
+ [
+ 67.8257961812285,
+ 38.27790091495738
+ ],
+ [
+ 67.94063886471218,
+ 38.083253180028926
+ ],
+ [
+ 68.17032423167953,
+ 38.083253180028926
+ ],
+ [
+ 68.28516691516322,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 38.66719638481428
+ ],
+ [
+ 68.17032423167953,
+ 38.861844119742734
+ ],
+ [
+ 67.94063886471218,
+ 38.861844119742734
+ ],
+ [
+ 67.8257961812285,
+ 38.66719638481428
+ ],
+ [
+ 67.94063886471218,
+ 38.47254864988583
+ ],
+ [
+ 68.17032423167953,
+ 38.47254864988583
+ ],
+ [
+ 68.28516691516322,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 39.05649185467119
+ ],
+ [
+ 68.17032423167953,
+ 39.25113958959964
+ ],
+ [
+ 67.94063886471218,
+ 39.25113958959964
+ ],
+ [
+ 67.8257961812285,
+ 39.05649185467119
+ ],
+ [
+ 67.94063886471218,
+ 38.861844119742734
+ ],
+ [
+ 68.17032423167953,
+ 38.861844119742734
+ ],
+ [
+ 68.28516691516322,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 39.4457873245281
+ ],
+ [
+ 68.17032423167953,
+ 39.64043505945655
+ ],
+ [
+ 67.94063886471218,
+ 39.64043505945655
+ ],
+ [
+ 67.8257961812285,
+ 39.4457873245281
+ ],
+ [
+ 67.94063886471218,
+ 39.251139589599646
+ ],
+ [
+ 68.17032423167953,
+ 39.251139589599646
+ ],
+ [
+ 68.28516691516322,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 39.835082794385
+ ],
+ [
+ 68.17032423167953,
+ 40.029730529313454
+ ],
+ [
+ 67.94063886471218,
+ 40.029730529313454
+ ],
+ [
+ 67.8257961812285,
+ 39.835082794385
+ ],
+ [
+ 67.94063886471218,
+ 39.64043505945655
+ ],
+ [
+ 68.17032423167953,
+ 39.64043505945655
+ ],
+ [
+ 68.28516691516322,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 40.22437826424191
+ ],
+ [
+ 68.17032423167953,
+ 40.419025999170366
+ ],
+ [
+ 67.94063886471218,
+ 40.419025999170366
+ ],
+ [
+ 67.8257961812285,
+ 40.22437826424191
+ ],
+ [
+ 67.94063886471218,
+ 40.02973052931346
+ ],
+ [
+ 68.17032423167953,
+ 40.02973052931346
+ ],
+ [
+ 68.28516691516322,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 40.61367373409882
+ ],
+ [
+ 68.17032423167953,
+ 40.80832146902727
+ ],
+ [
+ 67.94063886471218,
+ 40.80832146902727
+ ],
+ [
+ 67.8257961812285,
+ 40.61367373409882
+ ],
+ [
+ 67.94063886471218,
+ 40.419025999170366
+ ],
+ [
+ 68.17032423167953,
+ 40.419025999170366
+ ],
+ [
+ 68.28516691516322,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 41.00296920395572
+ ],
+ [
+ 68.17032423167953,
+ 41.197616938884174
+ ],
+ [
+ 67.94063886471218,
+ 41.197616938884174
+ ],
+ [
+ 67.8257961812285,
+ 41.00296920395572
+ ],
+ [
+ 67.94063886471218,
+ 40.80832146902727
+ ],
+ [
+ 68.17032423167953,
+ 40.80832146902727
+ ],
+ [
+ 68.28516691516322,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 41.392264673812626
+ ],
+ [
+ 68.17032423167953,
+ 41.58691240874108
+ ],
+ [
+ 67.94063886471218,
+ 41.58691240874108
+ ],
+ [
+ 67.8257961812285,
+ 41.392264673812626
+ ],
+ [
+ 67.94063886471218,
+ 41.197616938884174
+ ],
+ [
+ 68.17032423167953,
+ 41.197616938884174
+ ],
+ [
+ 68.28516691516322,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 41.78156014366953
+ ],
+ [
+ 68.17032423167953,
+ 41.97620787859798
+ ],
+ [
+ 67.94063886471218,
+ 41.97620787859798
+ ],
+ [
+ 67.8257961812285,
+ 41.78156014366953
+ ],
+ [
+ 67.94063886471218,
+ 41.58691240874108
+ ],
+ [
+ 68.17032423167953,
+ 41.58691240874108
+ ],
+ [
+ 68.28516691516322,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 42.17085561352644
+ ],
+ [
+ 68.17032423167953,
+ 42.365503348454894
+ ],
+ [
+ 67.94063886471218,
+ 42.365503348454894
+ ],
+ [
+ 67.8257961812285,
+ 42.17085561352644
+ ],
+ [
+ 67.94063886471218,
+ 41.97620787859799
+ ],
+ [
+ 68.17032423167953,
+ 41.97620787859799
+ ],
+ [
+ 68.28516691516322,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 42.56015108338335
+ ],
+ [
+ 68.17032423167953,
+ 42.754798818311805
+ ],
+ [
+ 67.94063886471218,
+ 42.754798818311805
+ ],
+ [
+ 67.8257961812285,
+ 42.56015108338335
+ ],
+ [
+ 67.94063886471218,
+ 42.3655033484549
+ ],
+ [
+ 68.17032423167953,
+ 42.3655033484549
+ ],
+ [
+ 68.28516691516322,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 42.94944655324026
+ ],
+ [
+ 68.17032423167953,
+ 43.14409428816871
+ ],
+ [
+ 67.94063886471218,
+ 43.14409428816871
+ ],
+ [
+ 67.8257961812285,
+ 42.94944655324026
+ ],
+ [
+ 67.94063886471218,
+ 42.754798818311805
+ ],
+ [
+ 68.17032423167953,
+ 42.754798818311805
+ ],
+ [
+ 68.28516691516322,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 43.33874202309716
+ ],
+ [
+ 68.17032423167953,
+ 43.53338975802561
+ ],
+ [
+ 67.94063886471218,
+ 43.53338975802561
+ ],
+ [
+ 67.8257961812285,
+ 43.33874202309716
+ ],
+ [
+ 67.94063886471218,
+ 43.14409428816871
+ ],
+ [
+ 68.17032423167953,
+ 43.14409428816871
+ ],
+ [
+ 68.28516691516322,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 43.728037492954066
+ ],
+ [
+ 68.17032423167953,
+ 43.92268522788252
+ ],
+ [
+ 67.94063886471218,
+ 43.92268522788252
+ ],
+ [
+ 67.8257961812285,
+ 43.728037492954066
+ ],
+ [
+ 67.94063886471218,
+ 43.53338975802561
+ ],
+ [
+ 68.17032423167953,
+ 43.53338975802561
+ ],
+ [
+ 68.28516691516322,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 44.11733296281097
+ ],
+ [
+ 68.17032423167953,
+ 44.31198069773942
+ ],
+ [
+ 67.94063886471218,
+ 44.31198069773942
+ ],
+ [
+ 67.8257961812285,
+ 44.11733296281097
+ ],
+ [
+ 67.94063886471218,
+ 43.92268522788252
+ ],
+ [
+ 68.17032423167953,
+ 43.92268522788252
+ ],
+ [
+ 68.28516691516322,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 44.506628432667874
+ ],
+ [
+ 68.17032423167953,
+ 44.701276167596326
+ ],
+ [
+ 67.94063886471218,
+ 44.701276167596326
+ ],
+ [
+ 67.8257961812285,
+ 44.506628432667874
+ ],
+ [
+ 67.94063886471218,
+ 44.31198069773942
+ ],
+ [
+ 68.17032423167953,
+ 44.31198069773942
+ ],
+ [
+ 68.28516691516322,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 44.89592390252479
+ ],
+ [
+ 68.17032423167953,
+ 45.090571637453245
+ ],
+ [
+ 67.94063886471218,
+ 45.090571637453245
+ ],
+ [
+ 67.8257961812285,
+ 44.89592390252479
+ ],
+ [
+ 67.94063886471218,
+ 44.70127616759634
+ ],
+ [
+ 68.17032423167953,
+ 44.70127616759634
+ ],
+ [
+ 68.28516691516322,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 45.2852193723817
+ ],
+ [
+ 68.17032423167953,
+ 45.47986710731015
+ ],
+ [
+ 67.94063886471218,
+ 45.47986710731015
+ ],
+ [
+ 67.8257961812285,
+ 45.2852193723817
+ ],
+ [
+ 67.94063886471218,
+ 45.090571637453245
+ ],
+ [
+ 68.17032423167953,
+ 45.090571637453245
+ ],
+ [
+ 68.28516691516322,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 45.6745148422386
+ ],
+ [
+ 68.17032423167953,
+ 45.86916257716705
+ ],
+ [
+ 67.94063886471218,
+ 45.86916257716705
+ ],
+ [
+ 67.8257961812285,
+ 45.6745148422386
+ ],
+ [
+ 67.94063886471218,
+ 45.47986710731015
+ ],
+ [
+ 68.17032423167953,
+ 45.47986710731015
+ ],
+ [
+ 68.28516691516322,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 46.063810312095505
+ ],
+ [
+ 68.17032423167953,
+ 46.25845804702396
+ ],
+ [
+ 67.94063886471218,
+ 46.25845804702396
+ ],
+ [
+ 67.8257961812285,
+ 46.063810312095505
+ ],
+ [
+ 67.94063886471218,
+ 45.86916257716705
+ ],
+ [
+ 68.17032423167953,
+ 45.86916257716705
+ ],
+ [
+ 68.28516691516322,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 46.45310578195241
+ ],
+ [
+ 68.17032423167953,
+ 46.64775351688086
+ ],
+ [
+ 67.94063886471218,
+ 46.64775351688086
+ ],
+ [
+ 67.8257961812285,
+ 46.45310578195241
+ ],
+ [
+ 67.94063886471218,
+ 46.25845804702396
+ ],
+ [
+ 68.17032423167953,
+ 46.25845804702396
+ ],
+ [
+ 68.28516691516322,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 46.842401251809314
+ ],
+ [
+ 68.17032423167953,
+ 47.037048986737766
+ ],
+ [
+ 67.94063886471218,
+ 47.037048986737766
+ ],
+ [
+ 67.8257961812285,
+ 46.842401251809314
+ ],
+ [
+ 67.94063886471218,
+ 46.64775351688086
+ ],
+ [
+ 68.17032423167953,
+ 46.64775351688086
+ ],
+ [
+ 68.28516691516322,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 47.23169672166622
+ ],
+ [
+ 68.17032423167953,
+ 47.42634445659467
+ ],
+ [
+ 67.94063886471218,
+ 47.42634445659467
+ ],
+ [
+ 67.8257961812285,
+ 47.23169672166622
+ ],
+ [
+ 67.94063886471218,
+ 47.037048986737766
+ ],
+ [
+ 68.17032423167953,
+ 47.037048986737766
+ ],
+ [
+ 68.28516691516322,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.28516691516322,
+ 47.620992191523136
+ ],
+ [
+ 68.17032423167953,
+ 47.81563992645159
+ ],
+ [
+ 67.94063886471218,
+ 47.81563992645159
+ ],
+ [
+ 67.8257961812285,
+ 47.620992191523136
+ ],
+ [
+ 67.94063886471218,
+ 47.426344456594684
+ ],
+ [
+ 68.17032423167953,
+ 47.426344456594684
+ ],
+ [
+ 68.28516691516322,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 12.0004566996162
+ ],
+ [
+ 68.51485228213056,
+ 12.195104434544653
+ ],
+ [
+ 68.28516691516322,
+ 12.195104434544653
+ ],
+ [
+ 68.17032423167953,
+ 12.0004566996162
+ ],
+ [
+ 68.28516691516322,
+ 11.805808964687746
+ ],
+ [
+ 68.51485228213056,
+ 11.805808964687746
+ ],
+ [
+ 68.62969496561425,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 12.389752169473105
+ ],
+ [
+ 68.51485228213056,
+ 12.58439990440156
+ ],
+ [
+ 68.28516691516322,
+ 12.58439990440156
+ ],
+ [
+ 68.17032423167953,
+ 12.389752169473105
+ ],
+ [
+ 68.28516691516322,
+ 12.195104434544652
+ ],
+ [
+ 68.51485228213056,
+ 12.195104434544652
+ ],
+ [
+ 68.62969496561425,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 12.779047639330013
+ ],
+ [
+ 68.51485228213056,
+ 12.973695374258467
+ ],
+ [
+ 68.28516691516322,
+ 12.973695374258467
+ ],
+ [
+ 68.17032423167953,
+ 12.779047639330013
+ ],
+ [
+ 68.28516691516322,
+ 12.58439990440156
+ ],
+ [
+ 68.51485228213056,
+ 12.58439990440156
+ ],
+ [
+ 68.62969496561425,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 13.16834310918692
+ ],
+ [
+ 68.51485228213056,
+ 13.362990844115373
+ ],
+ [
+ 68.28516691516322,
+ 13.362990844115373
+ ],
+ [
+ 68.17032423167953,
+ 13.16834310918692
+ ],
+ [
+ 68.28516691516322,
+ 12.973695374258465
+ ],
+ [
+ 68.51485228213056,
+ 12.973695374258465
+ ],
+ [
+ 68.62969496561425,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 13.557638579043825
+ ],
+ [
+ 68.51485228213056,
+ 13.752286313972279
+ ],
+ [
+ 68.28516691516322,
+ 13.752286313972279
+ ],
+ [
+ 68.17032423167953,
+ 13.557638579043825
+ ],
+ [
+ 68.28516691516322,
+ 13.362990844115371
+ ],
+ [
+ 68.51485228213056,
+ 13.362990844115371
+ ],
+ [
+ 68.62969496561425,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 13.946934048900731
+ ],
+ [
+ 68.51485228213056,
+ 14.141581783829185
+ ],
+ [
+ 68.28516691516322,
+ 14.141581783829185
+ ],
+ [
+ 68.17032423167953,
+ 13.946934048900731
+ ],
+ [
+ 68.28516691516322,
+ 13.752286313972277
+ ],
+ [
+ 68.51485228213056,
+ 13.752286313972277
+ ],
+ [
+ 68.62969496561425,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 14.336229518757637
+ ],
+ [
+ 68.51485228213056,
+ 14.530877253686091
+ ],
+ [
+ 68.28516691516322,
+ 14.530877253686091
+ ],
+ [
+ 68.17032423167953,
+ 14.336229518757637
+ ],
+ [
+ 68.28516691516322,
+ 14.141581783829183
+ ],
+ [
+ 68.51485228213056,
+ 14.141581783829183
+ ],
+ [
+ 68.62969496561425,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 14.725524988614545
+ ],
+ [
+ 68.51485228213056,
+ 14.920172723542999
+ ],
+ [
+ 68.28516691516322,
+ 14.920172723542999
+ ],
+ [
+ 68.17032423167953,
+ 14.725524988614545
+ ],
+ [
+ 68.28516691516322,
+ 14.530877253686091
+ ],
+ [
+ 68.51485228213056,
+ 14.530877253686091
+ ],
+ [
+ 68.62969496561425,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 15.114820458471451
+ ],
+ [
+ 68.51485228213056,
+ 15.309468193399905
+ ],
+ [
+ 68.28516691516322,
+ 15.309468193399905
+ ],
+ [
+ 68.17032423167953,
+ 15.114820458471451
+ ],
+ [
+ 68.28516691516322,
+ 14.920172723542997
+ ],
+ [
+ 68.51485228213056,
+ 14.920172723542997
+ ],
+ [
+ 68.62969496561425,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 15.504115928328357
+ ],
+ [
+ 68.51485228213056,
+ 15.69876366325681
+ ],
+ [
+ 68.28516691516322,
+ 15.69876366325681
+ ],
+ [
+ 68.17032423167953,
+ 15.504115928328357
+ ],
+ [
+ 68.28516691516322,
+ 15.309468193399903
+ ],
+ [
+ 68.51485228213056,
+ 15.309468193399903
+ ],
+ [
+ 68.62969496561425,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 15.893411398185265
+ ],
+ [
+ 68.51485228213056,
+ 16.088059133113717
+ ],
+ [
+ 68.28516691516322,
+ 16.088059133113717
+ ],
+ [
+ 68.17032423167953,
+ 15.893411398185265
+ ],
+ [
+ 68.28516691516322,
+ 15.69876366325681
+ ],
+ [
+ 68.51485228213056,
+ 15.69876366325681
+ ],
+ [
+ 68.62969496561425,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 16.28270686804217
+ ],
+ [
+ 68.51485228213056,
+ 16.47735460297062
+ ],
+ [
+ 68.28516691516322,
+ 16.47735460297062
+ ],
+ [
+ 68.17032423167953,
+ 16.28270686804217
+ ],
+ [
+ 68.28516691516322,
+ 16.088059133113717
+ ],
+ [
+ 68.51485228213056,
+ 16.088059133113717
+ ],
+ [
+ 68.62969496561425,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 16.672002337899077
+ ],
+ [
+ 68.51485228213056,
+ 16.86665007282753
+ ],
+ [
+ 68.28516691516322,
+ 16.86665007282753
+ ],
+ [
+ 68.17032423167953,
+ 16.672002337899077
+ ],
+ [
+ 68.28516691516322,
+ 16.477354602970625
+ ],
+ [
+ 68.51485228213056,
+ 16.477354602970625
+ ],
+ [
+ 68.62969496561425,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 17.06129780775598
+ ],
+ [
+ 68.51485228213056,
+ 17.255945542684433
+ ],
+ [
+ 68.28516691516322,
+ 17.255945542684433
+ ],
+ [
+ 68.17032423167953,
+ 17.06129780775598
+ ],
+ [
+ 68.28516691516322,
+ 16.86665007282753
+ ],
+ [
+ 68.51485228213056,
+ 16.86665007282753
+ ],
+ [
+ 68.62969496561425,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 17.45059327761289
+ ],
+ [
+ 68.51485228213056,
+ 17.64524101254134
+ ],
+ [
+ 68.28516691516322,
+ 17.64524101254134
+ ],
+ [
+ 68.17032423167953,
+ 17.45059327761289
+ ],
+ [
+ 68.28516691516322,
+ 17.255945542684437
+ ],
+ [
+ 68.51485228213056,
+ 17.255945542684437
+ ],
+ [
+ 68.62969496561425,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 17.839888747469793
+ ],
+ [
+ 68.51485228213056,
+ 18.034536482398245
+ ],
+ [
+ 68.28516691516322,
+ 18.034536482398245
+ ],
+ [
+ 68.17032423167953,
+ 17.839888747469793
+ ],
+ [
+ 68.28516691516322,
+ 17.64524101254134
+ ],
+ [
+ 68.51485228213056,
+ 17.64524101254134
+ ],
+ [
+ 68.62969496561425,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 18.2291842173267
+ ],
+ [
+ 68.51485228213056,
+ 18.423831952255153
+ ],
+ [
+ 68.28516691516322,
+ 18.423831952255153
+ ],
+ [
+ 68.17032423167953,
+ 18.2291842173267
+ ],
+ [
+ 68.28516691516322,
+ 18.03453648239825
+ ],
+ [
+ 68.51485228213056,
+ 18.03453648239825
+ ],
+ [
+ 68.62969496561425,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 18.61847968718361
+ ],
+ [
+ 68.51485228213056,
+ 18.81312742211206
+ ],
+ [
+ 68.28516691516322,
+ 18.81312742211206
+ ],
+ [
+ 68.17032423167953,
+ 18.61847968718361
+ ],
+ [
+ 68.28516691516322,
+ 18.423831952255156
+ ],
+ [
+ 68.51485228213056,
+ 18.423831952255156
+ ],
+ [
+ 68.62969496561425,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 19.007775157040513
+ ],
+ [
+ 68.51485228213056,
+ 19.202422891968965
+ ],
+ [
+ 68.28516691516322,
+ 19.202422891968965
+ ],
+ [
+ 68.17032423167953,
+ 19.007775157040513
+ ],
+ [
+ 68.28516691516322,
+ 18.81312742211206
+ ],
+ [
+ 68.51485228213056,
+ 18.81312742211206
+ ],
+ [
+ 68.62969496561425,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 19.39707062689742
+ ],
+ [
+ 68.51485228213056,
+ 19.591718361825873
+ ],
+ [
+ 68.28516691516322,
+ 19.591718361825873
+ ],
+ [
+ 68.17032423167953,
+ 19.39707062689742
+ ],
+ [
+ 68.28516691516322,
+ 19.20242289196897
+ ],
+ [
+ 68.51485228213056,
+ 19.20242289196897
+ ],
+ [
+ 68.62969496561425,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 19.78636609675433
+ ],
+ [
+ 68.51485228213056,
+ 19.98101383168278
+ ],
+ [
+ 68.28516691516322,
+ 19.98101383168278
+ ],
+ [
+ 68.17032423167953,
+ 19.78636609675433
+ ],
+ [
+ 68.28516691516322,
+ 19.591718361825876
+ ],
+ [
+ 68.51485228213056,
+ 19.591718361825876
+ ],
+ [
+ 68.62969496561425,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 20.175661566611232
+ ],
+ [
+ 68.51485228213056,
+ 20.370309301539685
+ ],
+ [
+ 68.28516691516322,
+ 20.370309301539685
+ ],
+ [
+ 68.17032423167953,
+ 20.175661566611232
+ ],
+ [
+ 68.28516691516322,
+ 19.98101383168278
+ ],
+ [
+ 68.51485228213056,
+ 19.98101383168278
+ ],
+ [
+ 68.62969496561425,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 20.564957036468137
+ ],
+ [
+ 68.51485228213056,
+ 20.75960477139659
+ ],
+ [
+ 68.28516691516322,
+ 20.75960477139659
+ ],
+ [
+ 68.17032423167953,
+ 20.564957036468137
+ ],
+ [
+ 68.28516691516322,
+ 20.370309301539685
+ ],
+ [
+ 68.51485228213056,
+ 20.370309301539685
+ ],
+ [
+ 68.62969496561425,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 20.954252506325044
+ ],
+ [
+ 68.51485228213056,
+ 21.148900241253497
+ ],
+ [
+ 68.28516691516322,
+ 21.148900241253497
+ ],
+ [
+ 68.17032423167953,
+ 20.954252506325044
+ ],
+ [
+ 68.28516691516322,
+ 20.759604771396592
+ ],
+ [
+ 68.51485228213056,
+ 20.759604771396592
+ ],
+ [
+ 68.62969496561425,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 21.343547976181952
+ ],
+ [
+ 68.51485228213056,
+ 21.538195711110404
+ ],
+ [
+ 68.28516691516322,
+ 21.538195711110404
+ ],
+ [
+ 68.17032423167953,
+ 21.343547976181952
+ ],
+ [
+ 68.28516691516322,
+ 21.1489002412535
+ ],
+ [
+ 68.51485228213056,
+ 21.1489002412535
+ ],
+ [
+ 68.62969496561425,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 21.732843446038856
+ ],
+ [
+ 68.51485228213056,
+ 21.92749118096731
+ ],
+ [
+ 68.28516691516322,
+ 21.92749118096731
+ ],
+ [
+ 68.17032423167953,
+ 21.732843446038856
+ ],
+ [
+ 68.28516691516322,
+ 21.538195711110404
+ ],
+ [
+ 68.51485228213056,
+ 21.538195711110404
+ ],
+ [
+ 68.62969496561425,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 22.122138915895764
+ ],
+ [
+ 68.51485228213056,
+ 22.316786650824216
+ ],
+ [
+ 68.28516691516322,
+ 22.316786650824216
+ ],
+ [
+ 68.17032423167953,
+ 22.122138915895764
+ ],
+ [
+ 68.28516691516322,
+ 21.927491180967312
+ ],
+ [
+ 68.51485228213056,
+ 21.927491180967312
+ ],
+ [
+ 68.62969496561425,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 22.511434385752672
+ ],
+ [
+ 68.51485228213056,
+ 22.706082120681124
+ ],
+ [
+ 68.28516691516322,
+ 22.706082120681124
+ ],
+ [
+ 68.17032423167953,
+ 22.511434385752672
+ ],
+ [
+ 68.28516691516322,
+ 22.31678665082422
+ ],
+ [
+ 68.51485228213056,
+ 22.31678665082422
+ ],
+ [
+ 68.62969496561425,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 22.900729855609576
+ ],
+ [
+ 68.51485228213056,
+ 23.09537759053803
+ ],
+ [
+ 68.28516691516322,
+ 23.09537759053803
+ ],
+ [
+ 68.17032423167953,
+ 22.900729855609576
+ ],
+ [
+ 68.28516691516322,
+ 22.706082120681124
+ ],
+ [
+ 68.51485228213056,
+ 22.706082120681124
+ ],
+ [
+ 68.62969496561425,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 23.290025325466484
+ ],
+ [
+ 68.51485228213056,
+ 23.484673060394936
+ ],
+ [
+ 68.28516691516322,
+ 23.484673060394936
+ ],
+ [
+ 68.17032423167953,
+ 23.290025325466484
+ ],
+ [
+ 68.28516691516322,
+ 23.095377590538032
+ ],
+ [
+ 68.51485228213056,
+ 23.095377590538032
+ ],
+ [
+ 68.62969496561425,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 23.67932079532339
+ ],
+ [
+ 68.51485228213056,
+ 23.873968530251844
+ ],
+ [
+ 68.28516691516322,
+ 23.873968530251844
+ ],
+ [
+ 68.17032423167953,
+ 23.67932079532339
+ ],
+ [
+ 68.28516691516322,
+ 23.48467306039494
+ ],
+ [
+ 68.51485228213056,
+ 23.48467306039494
+ ],
+ [
+ 68.62969496561425,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 24.068616265180296
+ ],
+ [
+ 68.51485228213056,
+ 24.263264000108748
+ ],
+ [
+ 68.28516691516322,
+ 24.263264000108748
+ ],
+ [
+ 68.17032423167953,
+ 24.068616265180296
+ ],
+ [
+ 68.28516691516322,
+ 23.873968530251844
+ ],
+ [
+ 68.51485228213056,
+ 23.873968530251844
+ ],
+ [
+ 68.62969496561425,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 24.4579117350372
+ ],
+ [
+ 68.51485228213056,
+ 24.652559469965652
+ ],
+ [
+ 68.28516691516322,
+ 24.652559469965652
+ ],
+ [
+ 68.17032423167953,
+ 24.4579117350372
+ ],
+ [
+ 68.28516691516322,
+ 24.263264000108748
+ ],
+ [
+ 68.51485228213056,
+ 24.263264000108748
+ ],
+ [
+ 68.62969496561425,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 24.847207204894108
+ ],
+ [
+ 68.51485228213056,
+ 25.04185493982256
+ ],
+ [
+ 68.28516691516322,
+ 25.04185493982256
+ ],
+ [
+ 68.17032423167953,
+ 24.847207204894108
+ ],
+ [
+ 68.28516691516322,
+ 24.652559469965656
+ ],
+ [
+ 68.51485228213056,
+ 24.652559469965656
+ ],
+ [
+ 68.62969496561425,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 25.236502674751016
+ ],
+ [
+ 68.51485228213056,
+ 25.431150409679468
+ ],
+ [
+ 68.28516691516322,
+ 25.431150409679468
+ ],
+ [
+ 68.17032423167953,
+ 25.236502674751016
+ ],
+ [
+ 68.28516691516322,
+ 25.041854939822564
+ ],
+ [
+ 68.51485228213056,
+ 25.041854939822564
+ ],
+ [
+ 68.62969496561425,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 25.62579814460792
+ ],
+ [
+ 68.51485228213056,
+ 25.820445879536372
+ ],
+ [
+ 68.28516691516322,
+ 25.820445879536372
+ ],
+ [
+ 68.17032423167953,
+ 25.62579814460792
+ ],
+ [
+ 68.28516691516322,
+ 25.431150409679468
+ ],
+ [
+ 68.51485228213056,
+ 25.431150409679468
+ ],
+ [
+ 68.62969496561425,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 26.015093614464828
+ ],
+ [
+ 68.51485228213056,
+ 26.20974134939328
+ ],
+ [
+ 68.28516691516322,
+ 26.20974134939328
+ ],
+ [
+ 68.17032423167953,
+ 26.015093614464828
+ ],
+ [
+ 68.28516691516322,
+ 25.820445879536376
+ ],
+ [
+ 68.51485228213056,
+ 25.820445879536376
+ ],
+ [
+ 68.62969496561425,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 26.404389084321735
+ ],
+ [
+ 68.51485228213056,
+ 26.599036819250188
+ ],
+ [
+ 68.28516691516322,
+ 26.599036819250188
+ ],
+ [
+ 68.17032423167953,
+ 26.404389084321735
+ ],
+ [
+ 68.28516691516322,
+ 26.209741349393283
+ ],
+ [
+ 68.51485228213056,
+ 26.209741349393283
+ ],
+ [
+ 68.62969496561425,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 26.79368455417864
+ ],
+ [
+ 68.51485228213056,
+ 26.988332289107092
+ ],
+ [
+ 68.28516691516322,
+ 26.988332289107092
+ ],
+ [
+ 68.17032423167953,
+ 26.79368455417864
+ ],
+ [
+ 68.28516691516322,
+ 26.599036819250188
+ ],
+ [
+ 68.51485228213056,
+ 26.599036819250188
+ ],
+ [
+ 68.62969496561425,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 27.182980024035547
+ ],
+ [
+ 68.51485228213056,
+ 27.377627758964
+ ],
+ [
+ 68.28516691516322,
+ 27.377627758964
+ ],
+ [
+ 68.17032423167953,
+ 27.182980024035547
+ ],
+ [
+ 68.28516691516322,
+ 26.988332289107095
+ ],
+ [
+ 68.51485228213056,
+ 26.988332289107095
+ ],
+ [
+ 68.62969496561425,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 27.572275493892455
+ ],
+ [
+ 68.51485228213056,
+ 27.766923228820907
+ ],
+ [
+ 68.28516691516322,
+ 27.766923228820907
+ ],
+ [
+ 68.17032423167953,
+ 27.572275493892455
+ ],
+ [
+ 68.28516691516322,
+ 27.377627758964003
+ ],
+ [
+ 68.51485228213056,
+ 27.377627758964003
+ ],
+ [
+ 68.62969496561425,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 27.96157096374936
+ ],
+ [
+ 68.51485228213056,
+ 28.15621869867781
+ ],
+ [
+ 68.28516691516322,
+ 28.15621869867781
+ ],
+ [
+ 68.17032423167953,
+ 27.96157096374936
+ ],
+ [
+ 68.28516691516322,
+ 27.766923228820907
+ ],
+ [
+ 68.51485228213056,
+ 27.766923228820907
+ ],
+ [
+ 68.62969496561425,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 28.350866433606267
+ ],
+ [
+ 68.51485228213056,
+ 28.54551416853472
+ ],
+ [
+ 68.28516691516322,
+ 28.54551416853472
+ ],
+ [
+ 68.17032423167953,
+ 28.350866433606267
+ ],
+ [
+ 68.28516691516322,
+ 28.156218698677815
+ ],
+ [
+ 68.51485228213056,
+ 28.156218698677815
+ ],
+ [
+ 68.62969496561425,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 28.74016190346317
+ ],
+ [
+ 68.51485228213056,
+ 28.934809638391624
+ ],
+ [
+ 68.28516691516322,
+ 28.934809638391624
+ ],
+ [
+ 68.17032423167953,
+ 28.74016190346317
+ ],
+ [
+ 68.28516691516322,
+ 28.54551416853472
+ ],
+ [
+ 68.51485228213056,
+ 28.54551416853472
+ ],
+ [
+ 68.62969496561425,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 29.12945737332008
+ ],
+ [
+ 68.51485228213056,
+ 29.32410510824853
+ ],
+ [
+ 68.28516691516322,
+ 29.32410510824853
+ ],
+ [
+ 68.17032423167953,
+ 29.12945737332008
+ ],
+ [
+ 68.28516691516322,
+ 28.934809638391627
+ ],
+ [
+ 68.51485228213056,
+ 28.934809638391627
+ ],
+ [
+ 68.62969496561425,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 29.518752843176983
+ ],
+ [
+ 68.51485228213056,
+ 29.713400578105436
+ ],
+ [
+ 68.28516691516322,
+ 29.713400578105436
+ ],
+ [
+ 68.17032423167953,
+ 29.518752843176983
+ ],
+ [
+ 68.28516691516322,
+ 29.32410510824853
+ ],
+ [
+ 68.51485228213056,
+ 29.32410510824853
+ ],
+ [
+ 68.62969496561425,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 29.90804831303389
+ ],
+ [
+ 68.51485228213056,
+ 30.102696047962343
+ ],
+ [
+ 68.28516691516322,
+ 30.102696047962343
+ ],
+ [
+ 68.17032423167953,
+ 29.90804831303389
+ ],
+ [
+ 68.28516691516322,
+ 29.71340057810544
+ ],
+ [
+ 68.51485228213056,
+ 29.71340057810544
+ ],
+ [
+ 68.62969496561425,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 30.297343782890795
+ ],
+ [
+ 68.51485228213056,
+ 30.491991517819248
+ ],
+ [
+ 68.28516691516322,
+ 30.491991517819248
+ ],
+ [
+ 68.17032423167953,
+ 30.297343782890795
+ ],
+ [
+ 68.28516691516322,
+ 30.102696047962343
+ ],
+ [
+ 68.51485228213056,
+ 30.102696047962343
+ ],
+ [
+ 68.62969496561425,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 30.686639252747703
+ ],
+ [
+ 68.51485228213056,
+ 30.881286987676155
+ ],
+ [
+ 68.28516691516322,
+ 30.881286987676155
+ ],
+ [
+ 68.17032423167953,
+ 30.686639252747703
+ ],
+ [
+ 68.28516691516322,
+ 30.49199151781925
+ ],
+ [
+ 68.51485228213056,
+ 30.49199151781925
+ ],
+ [
+ 68.62969496561425,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 31.07593472260461
+ ],
+ [
+ 68.51485228213056,
+ 31.270582457533063
+ ],
+ [
+ 68.28516691516322,
+ 31.270582457533063
+ ],
+ [
+ 68.17032423167953,
+ 31.07593472260461
+ ],
+ [
+ 68.28516691516322,
+ 30.88128698767616
+ ],
+ [
+ 68.51485228213056,
+ 30.88128698767616
+ ],
+ [
+ 68.62969496561425,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 31.465230192461515
+ ],
+ [
+ 68.51485228213056,
+ 31.659877927389967
+ ],
+ [
+ 68.28516691516322,
+ 31.659877927389967
+ ],
+ [
+ 68.17032423167953,
+ 31.465230192461515
+ ],
+ [
+ 68.28516691516322,
+ 31.270582457533063
+ ],
+ [
+ 68.51485228213056,
+ 31.270582457533063
+ ],
+ [
+ 68.62969496561425,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 31.854525662318423
+ ],
+ [
+ 68.51485228213056,
+ 32.049173397246875
+ ],
+ [
+ 68.28516691516322,
+ 32.049173397246875
+ ],
+ [
+ 68.17032423167953,
+ 31.854525662318423
+ ],
+ [
+ 68.28516691516322,
+ 31.65987792738997
+ ],
+ [
+ 68.51485228213056,
+ 31.65987792738997
+ ],
+ [
+ 68.62969496561425,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 32.24382113217533
+ ],
+ [
+ 68.51485228213056,
+ 32.43846886710378
+ ],
+ [
+ 68.28516691516322,
+ 32.43846886710378
+ ],
+ [
+ 68.17032423167953,
+ 32.24382113217533
+ ],
+ [
+ 68.28516691516322,
+ 32.049173397246875
+ ],
+ [
+ 68.51485228213056,
+ 32.049173397246875
+ ],
+ [
+ 68.62969496561425,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 32.63311660203224
+ ],
+ [
+ 68.51485228213056,
+ 32.82776433696069
+ ],
+ [
+ 68.28516691516322,
+ 32.82776433696069
+ ],
+ [
+ 68.17032423167953,
+ 32.63311660203224
+ ],
+ [
+ 68.28516691516322,
+ 32.438468867103786
+ ],
+ [
+ 68.51485228213056,
+ 32.438468867103786
+ ],
+ [
+ 68.62969496561425,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 33.02241207188914
+ ],
+ [
+ 68.51485228213056,
+ 33.217059806817595
+ ],
+ [
+ 68.28516691516322,
+ 33.217059806817595
+ ],
+ [
+ 68.17032423167953,
+ 33.02241207188914
+ ],
+ [
+ 68.28516691516322,
+ 32.82776433696069
+ ],
+ [
+ 68.51485228213056,
+ 32.82776433696069
+ ],
+ [
+ 68.62969496561425,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 33.41170754174605
+ ],
+ [
+ 68.51485228213056,
+ 33.6063552766745
+ ],
+ [
+ 68.28516691516322,
+ 33.6063552766745
+ ],
+ [
+ 68.17032423167953,
+ 33.41170754174605
+ ],
+ [
+ 68.28516691516322,
+ 33.217059806817595
+ ],
+ [
+ 68.51485228213056,
+ 33.217059806817595
+ ],
+ [
+ 68.62969496561425,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 33.80100301160295
+ ],
+ [
+ 68.51485228213056,
+ 33.9956507465314
+ ],
+ [
+ 68.28516691516322,
+ 33.9956507465314
+ ],
+ [
+ 68.17032423167953,
+ 33.80100301160295
+ ],
+ [
+ 68.28516691516322,
+ 33.6063552766745
+ ],
+ [
+ 68.51485228213056,
+ 33.6063552766745
+ ],
+ [
+ 68.62969496561425,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 34.190298481459855
+ ],
+ [
+ 68.51485228213056,
+ 34.38494621638831
+ ],
+ [
+ 68.28516691516322,
+ 34.38494621638831
+ ],
+ [
+ 68.17032423167953,
+ 34.190298481459855
+ ],
+ [
+ 68.28516691516322,
+ 33.9956507465314
+ ],
+ [
+ 68.51485228213056,
+ 33.9956507465314
+ ],
+ [
+ 68.62969496561425,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 34.57959395131677
+ ],
+ [
+ 68.51485228213056,
+ 34.77424168624522
+ ],
+ [
+ 68.28516691516322,
+ 34.77424168624522
+ ],
+ [
+ 68.17032423167953,
+ 34.57959395131677
+ ],
+ [
+ 68.28516691516322,
+ 34.384946216388315
+ ],
+ [
+ 68.51485228213056,
+ 34.384946216388315
+ ],
+ [
+ 68.62969496561425,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 34.96888942117368
+ ],
+ [
+ 68.51485228213056,
+ 35.16353715610213
+ ],
+ [
+ 68.28516691516322,
+ 35.16353715610213
+ ],
+ [
+ 68.17032423167953,
+ 34.96888942117368
+ ],
+ [
+ 68.28516691516322,
+ 34.774241686245226
+ ],
+ [
+ 68.51485228213056,
+ 34.774241686245226
+ ],
+ [
+ 68.62969496561425,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 35.35818489103058
+ ],
+ [
+ 68.51485228213056,
+ 35.552832625959034
+ ],
+ [
+ 68.28516691516322,
+ 35.552832625959034
+ ],
+ [
+ 68.17032423167953,
+ 35.35818489103058
+ ],
+ [
+ 68.28516691516322,
+ 35.16353715610213
+ ],
+ [
+ 68.51485228213056,
+ 35.16353715610213
+ ],
+ [
+ 68.62969496561425,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 35.74748036088749
+ ],
+ [
+ 68.51485228213056,
+ 35.94212809581594
+ ],
+ [
+ 68.28516691516322,
+ 35.94212809581594
+ ],
+ [
+ 68.17032423167953,
+ 35.74748036088749
+ ],
+ [
+ 68.28516691516322,
+ 35.552832625959034
+ ],
+ [
+ 68.51485228213056,
+ 35.552832625959034
+ ],
+ [
+ 68.62969496561425,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 36.13677583074439
+ ],
+ [
+ 68.51485228213056,
+ 36.33142356567284
+ ],
+ [
+ 68.28516691516322,
+ 36.33142356567284
+ ],
+ [
+ 68.17032423167953,
+ 36.13677583074439
+ ],
+ [
+ 68.28516691516322,
+ 35.94212809581594
+ ],
+ [
+ 68.51485228213056,
+ 35.94212809581594
+ ],
+ [
+ 68.62969496561425,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 36.526071300601295
+ ],
+ [
+ 68.51485228213056,
+ 36.72071903552975
+ ],
+ [
+ 68.28516691516322,
+ 36.72071903552975
+ ],
+ [
+ 68.17032423167953,
+ 36.526071300601295
+ ],
+ [
+ 68.28516691516322,
+ 36.33142356567284
+ ],
+ [
+ 68.51485228213056,
+ 36.33142356567284
+ ],
+ [
+ 68.62969496561425,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 36.915366770458206
+ ],
+ [
+ 68.51485228213056,
+ 37.11001450538666
+ ],
+ [
+ 68.28516691516322,
+ 37.11001450538666
+ ],
+ [
+ 68.17032423167953,
+ 36.915366770458206
+ ],
+ [
+ 68.28516691516322,
+ 36.720719035529754
+ ],
+ [
+ 68.51485228213056,
+ 36.720719035529754
+ ],
+ [
+ 68.62969496561425,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 37.30466224031511
+ ],
+ [
+ 68.51485228213056,
+ 37.49930997524356
+ ],
+ [
+ 68.28516691516322,
+ 37.49930997524356
+ ],
+ [
+ 68.17032423167953,
+ 37.30466224031511
+ ],
+ [
+ 68.28516691516322,
+ 37.11001450538666
+ ],
+ [
+ 68.51485228213056,
+ 37.11001450538666
+ ],
+ [
+ 68.62969496561425,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 37.69395771017202
+ ],
+ [
+ 68.51485228213056,
+ 37.888605445100474
+ ],
+ [
+ 68.28516691516322,
+ 37.888605445100474
+ ],
+ [
+ 68.17032423167953,
+ 37.69395771017202
+ ],
+ [
+ 68.28516691516322,
+ 37.49930997524357
+ ],
+ [
+ 68.51485228213056,
+ 37.49930997524357
+ ],
+ [
+ 68.62969496561425,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 38.083253180028926
+ ],
+ [
+ 68.51485228213056,
+ 38.27790091495738
+ ],
+ [
+ 68.28516691516322,
+ 38.27790091495738
+ ],
+ [
+ 68.17032423167953,
+ 38.083253180028926
+ ],
+ [
+ 68.28516691516322,
+ 37.888605445100474
+ ],
+ [
+ 68.51485228213056,
+ 37.888605445100474
+ ],
+ [
+ 68.62969496561425,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 38.47254864988583
+ ],
+ [
+ 68.51485228213056,
+ 38.66719638481428
+ ],
+ [
+ 68.28516691516322,
+ 38.66719638481428
+ ],
+ [
+ 68.17032423167953,
+ 38.47254864988583
+ ],
+ [
+ 68.28516691516322,
+ 38.27790091495738
+ ],
+ [
+ 68.51485228213056,
+ 38.27790091495738
+ ],
+ [
+ 68.62969496561425,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 38.861844119742734
+ ],
+ [
+ 68.51485228213056,
+ 39.05649185467119
+ ],
+ [
+ 68.28516691516322,
+ 39.05649185467119
+ ],
+ [
+ 68.17032423167953,
+ 38.861844119742734
+ ],
+ [
+ 68.28516691516322,
+ 38.66719638481428
+ ],
+ [
+ 68.51485228213056,
+ 38.66719638481428
+ ],
+ [
+ 68.62969496561425,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 39.25113958959964
+ ],
+ [
+ 68.51485228213056,
+ 39.44578732452809
+ ],
+ [
+ 68.28516691516322,
+ 39.44578732452809
+ ],
+ [
+ 68.17032423167953,
+ 39.25113958959964
+ ],
+ [
+ 68.28516691516322,
+ 39.05649185467119
+ ],
+ [
+ 68.51485228213056,
+ 39.05649185467119
+ ],
+ [
+ 68.62969496561425,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 39.64043505945655
+ ],
+ [
+ 68.51485228213056,
+ 39.835082794385
+ ],
+ [
+ 68.28516691516322,
+ 39.835082794385
+ ],
+ [
+ 68.17032423167953,
+ 39.64043505945655
+ ],
+ [
+ 68.28516691516322,
+ 39.4457873245281
+ ],
+ [
+ 68.51485228213056,
+ 39.4457873245281
+ ],
+ [
+ 68.62969496561425,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 40.029730529313454
+ ],
+ [
+ 68.51485228213056,
+ 40.224378264241906
+ ],
+ [
+ 68.28516691516322,
+ 40.224378264241906
+ ],
+ [
+ 68.17032423167953,
+ 40.029730529313454
+ ],
+ [
+ 68.28516691516322,
+ 39.835082794385
+ ],
+ [
+ 68.51485228213056,
+ 39.835082794385
+ ],
+ [
+ 68.62969496561425,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 40.419025999170366
+ ],
+ [
+ 68.51485228213056,
+ 40.61367373409882
+ ],
+ [
+ 68.28516691516322,
+ 40.61367373409882
+ ],
+ [
+ 68.17032423167953,
+ 40.419025999170366
+ ],
+ [
+ 68.28516691516322,
+ 40.22437826424191
+ ],
+ [
+ 68.51485228213056,
+ 40.22437826424191
+ ],
+ [
+ 68.62969496561425,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 40.80832146902727
+ ],
+ [
+ 68.51485228213056,
+ 41.00296920395572
+ ],
+ [
+ 68.28516691516322,
+ 41.00296920395572
+ ],
+ [
+ 68.17032423167953,
+ 40.80832146902727
+ ],
+ [
+ 68.28516691516322,
+ 40.61367373409882
+ ],
+ [
+ 68.51485228213056,
+ 40.61367373409882
+ ],
+ [
+ 68.62969496561425,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 41.197616938884174
+ ],
+ [
+ 68.51485228213056,
+ 41.392264673812626
+ ],
+ [
+ 68.28516691516322,
+ 41.392264673812626
+ ],
+ [
+ 68.17032423167953,
+ 41.197616938884174
+ ],
+ [
+ 68.28516691516322,
+ 41.00296920395572
+ ],
+ [
+ 68.51485228213056,
+ 41.00296920395572
+ ],
+ [
+ 68.62969496561425,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 41.58691240874108
+ ],
+ [
+ 68.51485228213056,
+ 41.78156014366953
+ ],
+ [
+ 68.28516691516322,
+ 41.78156014366953
+ ],
+ [
+ 68.17032423167953,
+ 41.58691240874108
+ ],
+ [
+ 68.28516691516322,
+ 41.392264673812626
+ ],
+ [
+ 68.51485228213056,
+ 41.392264673812626
+ ],
+ [
+ 68.62969496561425,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 41.97620787859798
+ ],
+ [
+ 68.51485228213056,
+ 42.170855613526435
+ ],
+ [
+ 68.28516691516322,
+ 42.170855613526435
+ ],
+ [
+ 68.17032423167953,
+ 41.97620787859798
+ ],
+ [
+ 68.28516691516322,
+ 41.78156014366953
+ ],
+ [
+ 68.51485228213056,
+ 41.78156014366953
+ ],
+ [
+ 68.62969496561425,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 42.365503348454894
+ ],
+ [
+ 68.51485228213056,
+ 42.560151083383346
+ ],
+ [
+ 68.28516691516322,
+ 42.560151083383346
+ ],
+ [
+ 68.17032423167953,
+ 42.365503348454894
+ ],
+ [
+ 68.28516691516322,
+ 42.17085561352644
+ ],
+ [
+ 68.51485228213056,
+ 42.17085561352644
+ ],
+ [
+ 68.62969496561425,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 42.754798818311805
+ ],
+ [
+ 68.51485228213056,
+ 42.94944655324026
+ ],
+ [
+ 68.28516691516322,
+ 42.94944655324026
+ ],
+ [
+ 68.17032423167953,
+ 42.754798818311805
+ ],
+ [
+ 68.28516691516322,
+ 42.56015108338335
+ ],
+ [
+ 68.51485228213056,
+ 42.56015108338335
+ ],
+ [
+ 68.62969496561425,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 43.14409428816871
+ ],
+ [
+ 68.51485228213056,
+ 43.33874202309716
+ ],
+ [
+ 68.28516691516322,
+ 43.33874202309716
+ ],
+ [
+ 68.17032423167953,
+ 43.14409428816871
+ ],
+ [
+ 68.28516691516322,
+ 42.94944655324026
+ ],
+ [
+ 68.51485228213056,
+ 42.94944655324026
+ ],
+ [
+ 68.62969496561425,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 43.53338975802561
+ ],
+ [
+ 68.51485228213056,
+ 43.728037492954066
+ ],
+ [
+ 68.28516691516322,
+ 43.728037492954066
+ ],
+ [
+ 68.17032423167953,
+ 43.53338975802561
+ ],
+ [
+ 68.28516691516322,
+ 43.33874202309716
+ ],
+ [
+ 68.51485228213056,
+ 43.33874202309716
+ ],
+ [
+ 68.62969496561425,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 43.92268522788252
+ ],
+ [
+ 68.51485228213056,
+ 44.11733296281097
+ ],
+ [
+ 68.28516691516322,
+ 44.11733296281097
+ ],
+ [
+ 68.17032423167953,
+ 43.92268522788252
+ ],
+ [
+ 68.28516691516322,
+ 43.728037492954066
+ ],
+ [
+ 68.51485228213056,
+ 43.728037492954066
+ ],
+ [
+ 68.62969496561425,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 44.31198069773942
+ ],
+ [
+ 68.51485228213056,
+ 44.506628432667874
+ ],
+ [
+ 68.28516691516322,
+ 44.506628432667874
+ ],
+ [
+ 68.17032423167953,
+ 44.31198069773942
+ ],
+ [
+ 68.28516691516322,
+ 44.11733296281097
+ ],
+ [
+ 68.51485228213056,
+ 44.11733296281097
+ ],
+ [
+ 68.62969496561425,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 44.701276167596326
+ ],
+ [
+ 68.51485228213056,
+ 44.89592390252478
+ ],
+ [
+ 68.28516691516322,
+ 44.89592390252478
+ ],
+ [
+ 68.17032423167953,
+ 44.701276167596326
+ ],
+ [
+ 68.28516691516322,
+ 44.506628432667874
+ ],
+ [
+ 68.51485228213056,
+ 44.506628432667874
+ ],
+ [
+ 68.62969496561425,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 45.090571637453245
+ ],
+ [
+ 68.51485228213056,
+ 45.2852193723817
+ ],
+ [
+ 68.28516691516322,
+ 45.2852193723817
+ ],
+ [
+ 68.17032423167953,
+ 45.090571637453245
+ ],
+ [
+ 68.28516691516322,
+ 44.89592390252479
+ ],
+ [
+ 68.51485228213056,
+ 44.89592390252479
+ ],
+ [
+ 68.62969496561425,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 45.47986710731015
+ ],
+ [
+ 68.51485228213056,
+ 45.6745148422386
+ ],
+ [
+ 68.28516691516322,
+ 45.6745148422386
+ ],
+ [
+ 68.17032423167953,
+ 45.47986710731015
+ ],
+ [
+ 68.28516691516322,
+ 45.2852193723817
+ ],
+ [
+ 68.51485228213056,
+ 45.2852193723817
+ ],
+ [
+ 68.62969496561425,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 45.86916257716705
+ ],
+ [
+ 68.51485228213056,
+ 46.063810312095505
+ ],
+ [
+ 68.28516691516322,
+ 46.063810312095505
+ ],
+ [
+ 68.17032423167953,
+ 45.86916257716705
+ ],
+ [
+ 68.28516691516322,
+ 45.6745148422386
+ ],
+ [
+ 68.51485228213056,
+ 45.6745148422386
+ ],
+ [
+ 68.62969496561425,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 46.25845804702396
+ ],
+ [
+ 68.51485228213056,
+ 46.45310578195241
+ ],
+ [
+ 68.28516691516322,
+ 46.45310578195241
+ ],
+ [
+ 68.17032423167953,
+ 46.25845804702396
+ ],
+ [
+ 68.28516691516322,
+ 46.063810312095505
+ ],
+ [
+ 68.51485228213056,
+ 46.063810312095505
+ ],
+ [
+ 68.62969496561425,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 46.64775351688086
+ ],
+ [
+ 68.51485228213056,
+ 46.842401251809314
+ ],
+ [
+ 68.28516691516322,
+ 46.842401251809314
+ ],
+ [
+ 68.17032423167953,
+ 46.64775351688086
+ ],
+ [
+ 68.28516691516322,
+ 46.45310578195241
+ ],
+ [
+ 68.51485228213056,
+ 46.45310578195241
+ ],
+ [
+ 68.62969496561425,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 47.037048986737766
+ ],
+ [
+ 68.51485228213056,
+ 47.23169672166622
+ ],
+ [
+ 68.28516691516322,
+ 47.23169672166622
+ ],
+ [
+ 68.17032423167953,
+ 47.037048986737766
+ ],
+ [
+ 68.28516691516322,
+ 46.842401251809314
+ ],
+ [
+ 68.51485228213056,
+ 46.842401251809314
+ ],
+ [
+ 68.62969496561425,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 47.42634445659467
+ ],
+ [
+ 68.51485228213056,
+ 47.62099219152312
+ ],
+ [
+ 68.28516691516322,
+ 47.62099219152312
+ ],
+ [
+ 68.17032423167953,
+ 47.42634445659467
+ ],
+ [
+ 68.28516691516322,
+ 47.23169672166622
+ ],
+ [
+ 68.51485228213056,
+ 47.23169672166622
+ ],
+ [
+ 68.62969496561425,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.62969496561425,
+ 47.81563992645159
+ ],
+ [
+ 68.51485228213056,
+ 48.01028766138004
+ ],
+ [
+ 68.28516691516322,
+ 48.01028766138004
+ ],
+ [
+ 68.17032423167953,
+ 47.81563992645159
+ ],
+ [
+ 68.28516691516322,
+ 47.620992191523136
+ ],
+ [
+ 68.51485228213056,
+ 47.620992191523136
+ ],
+ [
+ 68.62969496561425,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 11.805808964687746
+ ],
+ [
+ 68.8593803325816,
+ 12.0004566996162
+ ],
+ [
+ 68.62969496561425,
+ 12.0004566996162
+ ],
+ [
+ 68.51485228213056,
+ 11.805808964687746
+ ],
+ [
+ 68.62969496561425,
+ 11.611161229759292
+ ],
+ [
+ 68.8593803325816,
+ 11.611161229759292
+ ],
+ [
+ 68.97422301606528,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 12.195104434544652
+ ],
+ [
+ 68.8593803325816,
+ 12.389752169473105
+ ],
+ [
+ 68.62969496561425,
+ 12.389752169473105
+ ],
+ [
+ 68.51485228213056,
+ 12.195104434544652
+ ],
+ [
+ 68.62969496561425,
+ 12.000456699616198
+ ],
+ [
+ 68.8593803325816,
+ 12.000456699616198
+ ],
+ [
+ 68.97422301606528,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 12.58439990440156
+ ],
+ [
+ 68.8593803325816,
+ 12.779047639330013
+ ],
+ [
+ 68.62969496561425,
+ 12.779047639330013
+ ],
+ [
+ 68.51485228213056,
+ 12.58439990440156
+ ],
+ [
+ 68.62969496561425,
+ 12.389752169473105
+ ],
+ [
+ 68.8593803325816,
+ 12.389752169473105
+ ],
+ [
+ 68.97422301606528,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 12.973695374258465
+ ],
+ [
+ 68.8593803325816,
+ 13.16834310918692
+ ],
+ [
+ 68.62969496561425,
+ 13.16834310918692
+ ],
+ [
+ 68.51485228213056,
+ 12.973695374258465
+ ],
+ [
+ 68.62969496561425,
+ 12.779047639330011
+ ],
+ [
+ 68.8593803325816,
+ 12.779047639330011
+ ],
+ [
+ 68.97422301606528,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 13.362990844115371
+ ],
+ [
+ 68.8593803325816,
+ 13.557638579043825
+ ],
+ [
+ 68.62969496561425,
+ 13.557638579043825
+ ],
+ [
+ 68.51485228213056,
+ 13.362990844115371
+ ],
+ [
+ 68.62969496561425,
+ 13.168343109186917
+ ],
+ [
+ 68.8593803325816,
+ 13.168343109186917
+ ],
+ [
+ 68.97422301606528,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 13.752286313972277
+ ],
+ [
+ 68.8593803325816,
+ 13.946934048900731
+ ],
+ [
+ 68.62969496561425,
+ 13.946934048900731
+ ],
+ [
+ 68.51485228213056,
+ 13.752286313972277
+ ],
+ [
+ 68.62969496561425,
+ 13.557638579043823
+ ],
+ [
+ 68.8593803325816,
+ 13.557638579043823
+ ],
+ [
+ 68.97422301606528,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 14.141581783829183
+ ],
+ [
+ 68.8593803325816,
+ 14.336229518757637
+ ],
+ [
+ 68.62969496561425,
+ 14.336229518757637
+ ],
+ [
+ 68.51485228213056,
+ 14.141581783829183
+ ],
+ [
+ 68.62969496561425,
+ 13.94693404890073
+ ],
+ [
+ 68.8593803325816,
+ 13.94693404890073
+ ],
+ [
+ 68.97422301606528,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 14.530877253686091
+ ],
+ [
+ 68.8593803325816,
+ 14.725524988614545
+ ],
+ [
+ 68.62969496561425,
+ 14.725524988614545
+ ],
+ [
+ 68.51485228213056,
+ 14.530877253686091
+ ],
+ [
+ 68.62969496561425,
+ 14.336229518757637
+ ],
+ [
+ 68.8593803325816,
+ 14.336229518757637
+ ],
+ [
+ 68.97422301606528,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 14.920172723542997
+ ],
+ [
+ 68.8593803325816,
+ 15.114820458471451
+ ],
+ [
+ 68.62969496561425,
+ 15.114820458471451
+ ],
+ [
+ 68.51485228213056,
+ 14.920172723542997
+ ],
+ [
+ 68.62969496561425,
+ 14.725524988614543
+ ],
+ [
+ 68.8593803325816,
+ 14.725524988614543
+ ],
+ [
+ 68.97422301606528,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 15.309468193399903
+ ],
+ [
+ 68.8593803325816,
+ 15.504115928328357
+ ],
+ [
+ 68.62969496561425,
+ 15.504115928328357
+ ],
+ [
+ 68.51485228213056,
+ 15.309468193399903
+ ],
+ [
+ 68.62969496561425,
+ 15.11482045847145
+ ],
+ [
+ 68.8593803325816,
+ 15.11482045847145
+ ],
+ [
+ 68.97422301606528,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 15.69876366325681
+ ],
+ [
+ 68.8593803325816,
+ 15.893411398185265
+ ],
+ [
+ 68.62969496561425,
+ 15.893411398185265
+ ],
+ [
+ 68.51485228213056,
+ 15.69876366325681
+ ],
+ [
+ 68.62969496561425,
+ 15.504115928328357
+ ],
+ [
+ 68.8593803325816,
+ 15.504115928328357
+ ],
+ [
+ 68.97422301606528,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 16.088059133113717
+ ],
+ [
+ 68.8593803325816,
+ 16.28270686804217
+ ],
+ [
+ 68.62969496561425,
+ 16.28270686804217
+ ],
+ [
+ 68.51485228213056,
+ 16.088059133113717
+ ],
+ [
+ 68.62969496561425,
+ 15.893411398185263
+ ],
+ [
+ 68.8593803325816,
+ 15.893411398185263
+ ],
+ [
+ 68.97422301606528,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 16.477354602970625
+ ],
+ [
+ 68.8593803325816,
+ 16.672002337899077
+ ],
+ [
+ 68.62969496561425,
+ 16.672002337899077
+ ],
+ [
+ 68.51485228213056,
+ 16.477354602970625
+ ],
+ [
+ 68.62969496561425,
+ 16.282706868042172
+ ],
+ [
+ 68.8593803325816,
+ 16.282706868042172
+ ],
+ [
+ 68.97422301606528,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 16.86665007282753
+ ],
+ [
+ 68.8593803325816,
+ 17.06129780775598
+ ],
+ [
+ 68.62969496561425,
+ 17.06129780775598
+ ],
+ [
+ 68.51485228213056,
+ 16.86665007282753
+ ],
+ [
+ 68.62969496561425,
+ 16.672002337899077
+ ],
+ [
+ 68.8593803325816,
+ 16.672002337899077
+ ],
+ [
+ 68.97422301606528,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 17.255945542684437
+ ],
+ [
+ 68.8593803325816,
+ 17.45059327761289
+ ],
+ [
+ 68.62969496561425,
+ 17.45059327761289
+ ],
+ [
+ 68.51485228213056,
+ 17.255945542684437
+ ],
+ [
+ 68.62969496561425,
+ 17.061297807755984
+ ],
+ [
+ 68.8593803325816,
+ 17.061297807755984
+ ],
+ [
+ 68.97422301606528,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 17.64524101254134
+ ],
+ [
+ 68.8593803325816,
+ 17.839888747469793
+ ],
+ [
+ 68.62969496561425,
+ 17.839888747469793
+ ],
+ [
+ 68.51485228213056,
+ 17.64524101254134
+ ],
+ [
+ 68.62969496561425,
+ 17.45059327761289
+ ],
+ [
+ 68.8593803325816,
+ 17.45059327761289
+ ],
+ [
+ 68.97422301606528,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 18.03453648239825
+ ],
+ [
+ 68.8593803325816,
+ 18.2291842173267
+ ],
+ [
+ 68.62969496561425,
+ 18.2291842173267
+ ],
+ [
+ 68.51485228213056,
+ 18.03453648239825
+ ],
+ [
+ 68.62969496561425,
+ 17.839888747469796
+ ],
+ [
+ 68.8593803325816,
+ 17.839888747469796
+ ],
+ [
+ 68.97422301606528,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 18.423831952255156
+ ],
+ [
+ 68.8593803325816,
+ 18.61847968718361
+ ],
+ [
+ 68.62969496561425,
+ 18.61847968718361
+ ],
+ [
+ 68.51485228213056,
+ 18.423831952255156
+ ],
+ [
+ 68.62969496561425,
+ 18.229184217326704
+ ],
+ [
+ 68.8593803325816,
+ 18.229184217326704
+ ],
+ [
+ 68.97422301606528,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 18.81312742211206
+ ],
+ [
+ 68.8593803325816,
+ 19.007775157040513
+ ],
+ [
+ 68.62969496561425,
+ 19.007775157040513
+ ],
+ [
+ 68.51485228213056,
+ 18.81312742211206
+ ],
+ [
+ 68.62969496561425,
+ 18.61847968718361
+ ],
+ [
+ 68.8593803325816,
+ 18.61847968718361
+ ],
+ [
+ 68.97422301606528,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 19.20242289196897
+ ],
+ [
+ 68.8593803325816,
+ 19.39707062689742
+ ],
+ [
+ 68.62969496561425,
+ 19.39707062689742
+ ],
+ [
+ 68.51485228213056,
+ 19.20242289196897
+ ],
+ [
+ 68.62969496561425,
+ 19.007775157040516
+ ],
+ [
+ 68.8593803325816,
+ 19.007775157040516
+ ],
+ [
+ 68.97422301606528,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 19.591718361825876
+ ],
+ [
+ 68.8593803325816,
+ 19.78636609675433
+ ],
+ [
+ 68.62969496561425,
+ 19.78636609675433
+ ],
+ [
+ 68.51485228213056,
+ 19.591718361825876
+ ],
+ [
+ 68.62969496561425,
+ 19.397070626897424
+ ],
+ [
+ 68.8593803325816,
+ 19.397070626897424
+ ],
+ [
+ 68.97422301606528,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 19.98101383168278
+ ],
+ [
+ 68.8593803325816,
+ 20.175661566611232
+ ],
+ [
+ 68.62969496561425,
+ 20.175661566611232
+ ],
+ [
+ 68.51485228213056,
+ 19.98101383168278
+ ],
+ [
+ 68.62969496561425,
+ 19.78636609675433
+ ],
+ [
+ 68.8593803325816,
+ 19.78636609675433
+ ],
+ [
+ 68.97422301606528,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 20.370309301539685
+ ],
+ [
+ 68.8593803325816,
+ 20.564957036468137
+ ],
+ [
+ 68.62969496561425,
+ 20.564957036468137
+ ],
+ [
+ 68.51485228213056,
+ 20.370309301539685
+ ],
+ [
+ 68.62969496561425,
+ 20.175661566611232
+ ],
+ [
+ 68.8593803325816,
+ 20.175661566611232
+ ],
+ [
+ 68.97422301606528,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 20.759604771396592
+ ],
+ [
+ 68.8593803325816,
+ 20.954252506325044
+ ],
+ [
+ 68.62969496561425,
+ 20.954252506325044
+ ],
+ [
+ 68.51485228213056,
+ 20.759604771396592
+ ],
+ [
+ 68.62969496561425,
+ 20.56495703646814
+ ],
+ [
+ 68.8593803325816,
+ 20.56495703646814
+ ],
+ [
+ 68.97422301606528,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 21.1489002412535
+ ],
+ [
+ 68.8593803325816,
+ 21.343547976181952
+ ],
+ [
+ 68.62969496561425,
+ 21.343547976181952
+ ],
+ [
+ 68.51485228213056,
+ 21.1489002412535
+ ],
+ [
+ 68.62969496561425,
+ 20.954252506325048
+ ],
+ [
+ 68.8593803325816,
+ 20.954252506325048
+ ],
+ [
+ 68.97422301606528,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 21.538195711110404
+ ],
+ [
+ 68.8593803325816,
+ 21.732843446038856
+ ],
+ [
+ 68.62969496561425,
+ 21.732843446038856
+ ],
+ [
+ 68.51485228213056,
+ 21.538195711110404
+ ],
+ [
+ 68.62969496561425,
+ 21.343547976181952
+ ],
+ [
+ 68.8593803325816,
+ 21.343547976181952
+ ],
+ [
+ 68.97422301606528,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 21.927491180967312
+ ],
+ [
+ 68.8593803325816,
+ 22.122138915895764
+ ],
+ [
+ 68.62969496561425,
+ 22.122138915895764
+ ],
+ [
+ 68.51485228213056,
+ 21.927491180967312
+ ],
+ [
+ 68.62969496561425,
+ 21.73284344603886
+ ],
+ [
+ 68.8593803325816,
+ 21.73284344603886
+ ],
+ [
+ 68.97422301606528,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 22.31678665082422
+ ],
+ [
+ 68.8593803325816,
+ 22.511434385752672
+ ],
+ [
+ 68.62969496561425,
+ 22.511434385752672
+ ],
+ [
+ 68.51485228213056,
+ 22.31678665082422
+ ],
+ [
+ 68.62969496561425,
+ 22.122138915895768
+ ],
+ [
+ 68.8593803325816,
+ 22.122138915895768
+ ],
+ [
+ 68.97422301606528,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 22.706082120681124
+ ],
+ [
+ 68.8593803325816,
+ 22.900729855609576
+ ],
+ [
+ 68.62969496561425,
+ 22.900729855609576
+ ],
+ [
+ 68.51485228213056,
+ 22.706082120681124
+ ],
+ [
+ 68.62969496561425,
+ 22.511434385752672
+ ],
+ [
+ 68.8593803325816,
+ 22.511434385752672
+ ],
+ [
+ 68.97422301606528,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 23.095377590538032
+ ],
+ [
+ 68.8593803325816,
+ 23.290025325466484
+ ],
+ [
+ 68.62969496561425,
+ 23.290025325466484
+ ],
+ [
+ 68.51485228213056,
+ 23.095377590538032
+ ],
+ [
+ 68.62969496561425,
+ 22.90072985560958
+ ],
+ [
+ 68.8593803325816,
+ 22.90072985560958
+ ],
+ [
+ 68.97422301606528,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 23.48467306039494
+ ],
+ [
+ 68.8593803325816,
+ 23.67932079532339
+ ],
+ [
+ 68.62969496561425,
+ 23.67932079532339
+ ],
+ [
+ 68.51485228213056,
+ 23.48467306039494
+ ],
+ [
+ 68.62969496561425,
+ 23.290025325466488
+ ],
+ [
+ 68.8593803325816,
+ 23.290025325466488
+ ],
+ [
+ 68.97422301606528,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 23.873968530251844
+ ],
+ [
+ 68.8593803325816,
+ 24.068616265180296
+ ],
+ [
+ 68.62969496561425,
+ 24.068616265180296
+ ],
+ [
+ 68.51485228213056,
+ 23.873968530251844
+ ],
+ [
+ 68.62969496561425,
+ 23.67932079532339
+ ],
+ [
+ 68.8593803325816,
+ 23.67932079532339
+ ],
+ [
+ 68.97422301606528,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 24.263264000108748
+ ],
+ [
+ 68.8593803325816,
+ 24.4579117350372
+ ],
+ [
+ 68.62969496561425,
+ 24.4579117350372
+ ],
+ [
+ 68.51485228213056,
+ 24.263264000108748
+ ],
+ [
+ 68.62969496561425,
+ 24.068616265180296
+ ],
+ [
+ 68.8593803325816,
+ 24.068616265180296
+ ],
+ [
+ 68.97422301606528,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 24.652559469965656
+ ],
+ [
+ 68.8593803325816,
+ 24.847207204894108
+ ],
+ [
+ 68.62969496561425,
+ 24.847207204894108
+ ],
+ [
+ 68.51485228213056,
+ 24.652559469965656
+ ],
+ [
+ 68.62969496561425,
+ 24.457911735037204
+ ],
+ [
+ 68.8593803325816,
+ 24.457911735037204
+ ],
+ [
+ 68.97422301606528,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 25.041854939822564
+ ],
+ [
+ 68.8593803325816,
+ 25.236502674751016
+ ],
+ [
+ 68.62969496561425,
+ 25.236502674751016
+ ],
+ [
+ 68.51485228213056,
+ 25.041854939822564
+ ],
+ [
+ 68.62969496561425,
+ 24.84720720489411
+ ],
+ [
+ 68.8593803325816,
+ 24.84720720489411
+ ],
+ [
+ 68.97422301606528,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 25.431150409679468
+ ],
+ [
+ 68.8593803325816,
+ 25.62579814460792
+ ],
+ [
+ 68.62969496561425,
+ 25.62579814460792
+ ],
+ [
+ 68.51485228213056,
+ 25.431150409679468
+ ],
+ [
+ 68.62969496561425,
+ 25.236502674751016
+ ],
+ [
+ 68.8593803325816,
+ 25.236502674751016
+ ],
+ [
+ 68.97422301606528,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 25.820445879536376
+ ],
+ [
+ 68.8593803325816,
+ 26.015093614464828
+ ],
+ [
+ 68.62969496561425,
+ 26.015093614464828
+ ],
+ [
+ 68.51485228213056,
+ 25.820445879536376
+ ],
+ [
+ 68.62969496561425,
+ 25.625798144607923
+ ],
+ [
+ 68.8593803325816,
+ 25.625798144607923
+ ],
+ [
+ 68.97422301606528,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 26.209741349393283
+ ],
+ [
+ 68.8593803325816,
+ 26.404389084321735
+ ],
+ [
+ 68.62969496561425,
+ 26.404389084321735
+ ],
+ [
+ 68.51485228213056,
+ 26.209741349393283
+ ],
+ [
+ 68.62969496561425,
+ 26.01509361446483
+ ],
+ [
+ 68.8593803325816,
+ 26.01509361446483
+ ],
+ [
+ 68.97422301606528,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 26.599036819250188
+ ],
+ [
+ 68.8593803325816,
+ 26.79368455417864
+ ],
+ [
+ 68.62969496561425,
+ 26.79368455417864
+ ],
+ [
+ 68.51485228213056,
+ 26.599036819250188
+ ],
+ [
+ 68.62969496561425,
+ 26.404389084321735
+ ],
+ [
+ 68.8593803325816,
+ 26.404389084321735
+ ],
+ [
+ 68.97422301606528,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 26.988332289107095
+ ],
+ [
+ 68.8593803325816,
+ 27.182980024035547
+ ],
+ [
+ 68.62969496561425,
+ 27.182980024035547
+ ],
+ [
+ 68.51485228213056,
+ 26.988332289107095
+ ],
+ [
+ 68.62969496561425,
+ 26.793684554178643
+ ],
+ [
+ 68.8593803325816,
+ 26.793684554178643
+ ],
+ [
+ 68.97422301606528,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 27.377627758964003
+ ],
+ [
+ 68.8593803325816,
+ 27.572275493892455
+ ],
+ [
+ 68.62969496561425,
+ 27.572275493892455
+ ],
+ [
+ 68.51485228213056,
+ 27.377627758964003
+ ],
+ [
+ 68.62969496561425,
+ 27.18298002403555
+ ],
+ [
+ 68.8593803325816,
+ 27.18298002403555
+ ],
+ [
+ 68.97422301606528,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 27.766923228820907
+ ],
+ [
+ 68.8593803325816,
+ 27.96157096374936
+ ],
+ [
+ 68.62969496561425,
+ 27.96157096374936
+ ],
+ [
+ 68.51485228213056,
+ 27.766923228820907
+ ],
+ [
+ 68.62969496561425,
+ 27.572275493892455
+ ],
+ [
+ 68.8593803325816,
+ 27.572275493892455
+ ],
+ [
+ 68.97422301606528,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 28.156218698677815
+ ],
+ [
+ 68.8593803325816,
+ 28.350866433606267
+ ],
+ [
+ 68.62969496561425,
+ 28.350866433606267
+ ],
+ [
+ 68.51485228213056,
+ 28.156218698677815
+ ],
+ [
+ 68.62969496561425,
+ 27.961570963749363
+ ],
+ [
+ 68.8593803325816,
+ 27.961570963749363
+ ],
+ [
+ 68.97422301606528,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 28.54551416853472
+ ],
+ [
+ 68.8593803325816,
+ 28.74016190346317
+ ],
+ [
+ 68.62969496561425,
+ 28.74016190346317
+ ],
+ [
+ 68.51485228213056,
+ 28.54551416853472
+ ],
+ [
+ 68.62969496561425,
+ 28.350866433606267
+ ],
+ [
+ 68.8593803325816,
+ 28.350866433606267
+ ],
+ [
+ 68.97422301606528,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 28.934809638391627
+ ],
+ [
+ 68.8593803325816,
+ 29.12945737332008
+ ],
+ [
+ 68.62969496561425,
+ 29.12945737332008
+ ],
+ [
+ 68.51485228213056,
+ 28.934809638391627
+ ],
+ [
+ 68.62969496561425,
+ 28.740161903463175
+ ],
+ [
+ 68.8593803325816,
+ 28.740161903463175
+ ],
+ [
+ 68.97422301606528,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 29.32410510824853
+ ],
+ [
+ 68.8593803325816,
+ 29.518752843176983
+ ],
+ [
+ 68.62969496561425,
+ 29.518752843176983
+ ],
+ [
+ 68.51485228213056,
+ 29.32410510824853
+ ],
+ [
+ 68.62969496561425,
+ 29.12945737332008
+ ],
+ [
+ 68.8593803325816,
+ 29.12945737332008
+ ],
+ [
+ 68.97422301606528,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 29.71340057810544
+ ],
+ [
+ 68.8593803325816,
+ 29.90804831303389
+ ],
+ [
+ 68.62969496561425,
+ 29.90804831303389
+ ],
+ [
+ 68.51485228213056,
+ 29.71340057810544
+ ],
+ [
+ 68.62969496561425,
+ 29.518752843176987
+ ],
+ [
+ 68.8593803325816,
+ 29.518752843176987
+ ],
+ [
+ 68.97422301606528,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 30.102696047962343
+ ],
+ [
+ 68.8593803325816,
+ 30.297343782890795
+ ],
+ [
+ 68.62969496561425,
+ 30.297343782890795
+ ],
+ [
+ 68.51485228213056,
+ 30.102696047962343
+ ],
+ [
+ 68.62969496561425,
+ 29.90804831303389
+ ],
+ [
+ 68.8593803325816,
+ 29.90804831303389
+ ],
+ [
+ 68.97422301606528,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 30.49199151781925
+ ],
+ [
+ 68.8593803325816,
+ 30.686639252747703
+ ],
+ [
+ 68.62969496561425,
+ 30.686639252747703
+ ],
+ [
+ 68.51485228213056,
+ 30.49199151781925
+ ],
+ [
+ 68.62969496561425,
+ 30.2973437828908
+ ],
+ [
+ 68.8593803325816,
+ 30.2973437828908
+ ],
+ [
+ 68.97422301606528,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 30.88128698767616
+ ],
+ [
+ 68.8593803325816,
+ 31.07593472260461
+ ],
+ [
+ 68.62969496561425,
+ 31.07593472260461
+ ],
+ [
+ 68.51485228213056,
+ 30.88128698767616
+ ],
+ [
+ 68.62969496561425,
+ 30.686639252747707
+ ],
+ [
+ 68.8593803325816,
+ 30.686639252747707
+ ],
+ [
+ 68.97422301606528,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 31.270582457533063
+ ],
+ [
+ 68.8593803325816,
+ 31.465230192461515
+ ],
+ [
+ 68.62969496561425,
+ 31.465230192461515
+ ],
+ [
+ 68.51485228213056,
+ 31.270582457533063
+ ],
+ [
+ 68.62969496561425,
+ 31.07593472260461
+ ],
+ [
+ 68.8593803325816,
+ 31.07593472260461
+ ],
+ [
+ 68.97422301606528,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 31.65987792738997
+ ],
+ [
+ 68.8593803325816,
+ 31.854525662318423
+ ],
+ [
+ 68.62969496561425,
+ 31.854525662318423
+ ],
+ [
+ 68.51485228213056,
+ 31.65987792738997
+ ],
+ [
+ 68.62969496561425,
+ 31.46523019246152
+ ],
+ [
+ 68.8593803325816,
+ 31.46523019246152
+ ],
+ [
+ 68.97422301606528,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 32.049173397246875
+ ],
+ [
+ 68.8593803325816,
+ 32.24382113217533
+ ],
+ [
+ 68.62969496561425,
+ 32.24382113217533
+ ],
+ [
+ 68.51485228213056,
+ 32.049173397246875
+ ],
+ [
+ 68.62969496561425,
+ 31.854525662318423
+ ],
+ [
+ 68.8593803325816,
+ 31.854525662318423
+ ],
+ [
+ 68.97422301606528,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 32.438468867103786
+ ],
+ [
+ 68.8593803325816,
+ 32.63311660203224
+ ],
+ [
+ 68.62969496561425,
+ 32.63311660203224
+ ],
+ [
+ 68.51485228213056,
+ 32.438468867103786
+ ],
+ [
+ 68.62969496561425,
+ 32.243821132175334
+ ],
+ [
+ 68.8593803325816,
+ 32.243821132175334
+ ],
+ [
+ 68.97422301606528,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 32.82776433696069
+ ],
+ [
+ 68.8593803325816,
+ 33.02241207188914
+ ],
+ [
+ 68.62969496561425,
+ 33.02241207188914
+ ],
+ [
+ 68.51485228213056,
+ 32.82776433696069
+ ],
+ [
+ 68.62969496561425,
+ 32.63311660203224
+ ],
+ [
+ 68.8593803325816,
+ 32.63311660203224
+ ],
+ [
+ 68.97422301606528,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 33.217059806817595
+ ],
+ [
+ 68.8593803325816,
+ 33.41170754174605
+ ],
+ [
+ 68.62969496561425,
+ 33.41170754174605
+ ],
+ [
+ 68.51485228213056,
+ 33.217059806817595
+ ],
+ [
+ 68.62969496561425,
+ 33.02241207188914
+ ],
+ [
+ 68.8593803325816,
+ 33.02241207188914
+ ],
+ [
+ 68.97422301606528,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 33.6063552766745
+ ],
+ [
+ 68.8593803325816,
+ 33.80100301160295
+ ],
+ [
+ 68.62969496561425,
+ 33.80100301160295
+ ],
+ [
+ 68.51485228213056,
+ 33.6063552766745
+ ],
+ [
+ 68.62969496561425,
+ 33.41170754174605
+ ],
+ [
+ 68.8593803325816,
+ 33.41170754174605
+ ],
+ [
+ 68.97422301606528,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 33.9956507465314
+ ],
+ [
+ 68.8593803325816,
+ 34.190298481459855
+ ],
+ [
+ 68.62969496561425,
+ 34.190298481459855
+ ],
+ [
+ 68.51485228213056,
+ 33.9956507465314
+ ],
+ [
+ 68.62969496561425,
+ 33.80100301160295
+ ],
+ [
+ 68.8593803325816,
+ 33.80100301160295
+ ],
+ [
+ 68.97422301606528,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 34.384946216388315
+ ],
+ [
+ 68.8593803325816,
+ 34.57959395131677
+ ],
+ [
+ 68.62969496561425,
+ 34.57959395131677
+ ],
+ [
+ 68.51485228213056,
+ 34.384946216388315
+ ],
+ [
+ 68.62969496561425,
+ 34.19029848145986
+ ],
+ [
+ 68.8593803325816,
+ 34.19029848145986
+ ],
+ [
+ 68.97422301606528,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 34.774241686245226
+ ],
+ [
+ 68.8593803325816,
+ 34.96888942117368
+ ],
+ [
+ 68.62969496561425,
+ 34.96888942117368
+ ],
+ [
+ 68.51485228213056,
+ 34.774241686245226
+ ],
+ [
+ 68.62969496561425,
+ 34.579593951316774
+ ],
+ [
+ 68.8593803325816,
+ 34.579593951316774
+ ],
+ [
+ 68.97422301606528,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 35.16353715610213
+ ],
+ [
+ 68.8593803325816,
+ 35.35818489103058
+ ],
+ [
+ 68.62969496561425,
+ 35.35818489103058
+ ],
+ [
+ 68.51485228213056,
+ 35.16353715610213
+ ],
+ [
+ 68.62969496561425,
+ 34.96888942117368
+ ],
+ [
+ 68.8593803325816,
+ 34.96888942117368
+ ],
+ [
+ 68.97422301606528,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 35.552832625959034
+ ],
+ [
+ 68.8593803325816,
+ 35.74748036088749
+ ],
+ [
+ 68.62969496561425,
+ 35.74748036088749
+ ],
+ [
+ 68.51485228213056,
+ 35.552832625959034
+ ],
+ [
+ 68.62969496561425,
+ 35.35818489103058
+ ],
+ [
+ 68.8593803325816,
+ 35.35818489103058
+ ],
+ [
+ 68.97422301606528,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 35.94212809581594
+ ],
+ [
+ 68.8593803325816,
+ 36.13677583074439
+ ],
+ [
+ 68.62969496561425,
+ 36.13677583074439
+ ],
+ [
+ 68.51485228213056,
+ 35.94212809581594
+ ],
+ [
+ 68.62969496561425,
+ 35.74748036088749
+ ],
+ [
+ 68.8593803325816,
+ 35.74748036088749
+ ],
+ [
+ 68.97422301606528,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 36.33142356567284
+ ],
+ [
+ 68.8593803325816,
+ 36.526071300601295
+ ],
+ [
+ 68.62969496561425,
+ 36.526071300601295
+ ],
+ [
+ 68.51485228213056,
+ 36.33142356567284
+ ],
+ [
+ 68.62969496561425,
+ 36.13677583074439
+ ],
+ [
+ 68.8593803325816,
+ 36.13677583074439
+ ],
+ [
+ 68.97422301606528,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 36.720719035529754
+ ],
+ [
+ 68.8593803325816,
+ 36.915366770458206
+ ],
+ [
+ 68.62969496561425,
+ 36.915366770458206
+ ],
+ [
+ 68.51485228213056,
+ 36.720719035529754
+ ],
+ [
+ 68.62969496561425,
+ 36.5260713006013
+ ],
+ [
+ 68.8593803325816,
+ 36.5260713006013
+ ],
+ [
+ 68.97422301606528,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 37.11001450538666
+ ],
+ [
+ 68.8593803325816,
+ 37.30466224031511
+ ],
+ [
+ 68.62969496561425,
+ 37.30466224031511
+ ],
+ [
+ 68.51485228213056,
+ 37.11001450538666
+ ],
+ [
+ 68.62969496561425,
+ 36.915366770458206
+ ],
+ [
+ 68.8593803325816,
+ 36.915366770458206
+ ],
+ [
+ 68.97422301606528,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 37.49930997524357
+ ],
+ [
+ 68.8593803325816,
+ 37.69395771017202
+ ],
+ [
+ 68.62969496561425,
+ 37.69395771017202
+ ],
+ [
+ 68.51485228213056,
+ 37.49930997524357
+ ],
+ [
+ 68.62969496561425,
+ 37.30466224031512
+ ],
+ [
+ 68.8593803325816,
+ 37.30466224031512
+ ],
+ [
+ 68.97422301606528,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 37.888605445100474
+ ],
+ [
+ 68.8593803325816,
+ 38.083253180028926
+ ],
+ [
+ 68.62969496561425,
+ 38.083253180028926
+ ],
+ [
+ 68.51485228213056,
+ 37.888605445100474
+ ],
+ [
+ 68.62969496561425,
+ 37.69395771017202
+ ],
+ [
+ 68.8593803325816,
+ 37.69395771017202
+ ],
+ [
+ 68.97422301606528,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 38.27790091495738
+ ],
+ [
+ 68.8593803325816,
+ 38.47254864988583
+ ],
+ [
+ 68.62969496561425,
+ 38.47254864988583
+ ],
+ [
+ 68.51485228213056,
+ 38.27790091495738
+ ],
+ [
+ 68.62969496561425,
+ 38.083253180028926
+ ],
+ [
+ 68.8593803325816,
+ 38.083253180028926
+ ],
+ [
+ 68.97422301606528,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 38.66719638481428
+ ],
+ [
+ 68.8593803325816,
+ 38.861844119742734
+ ],
+ [
+ 68.62969496561425,
+ 38.861844119742734
+ ],
+ [
+ 68.51485228213056,
+ 38.66719638481428
+ ],
+ [
+ 68.62969496561425,
+ 38.47254864988583
+ ],
+ [
+ 68.8593803325816,
+ 38.47254864988583
+ ],
+ [
+ 68.97422301606528,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 39.05649185467119
+ ],
+ [
+ 68.8593803325816,
+ 39.25113958959964
+ ],
+ [
+ 68.62969496561425,
+ 39.25113958959964
+ ],
+ [
+ 68.51485228213056,
+ 39.05649185467119
+ ],
+ [
+ 68.62969496561425,
+ 38.861844119742734
+ ],
+ [
+ 68.8593803325816,
+ 38.861844119742734
+ ],
+ [
+ 68.97422301606528,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 39.4457873245281
+ ],
+ [
+ 68.8593803325816,
+ 39.64043505945655
+ ],
+ [
+ 68.62969496561425,
+ 39.64043505945655
+ ],
+ [
+ 68.51485228213056,
+ 39.4457873245281
+ ],
+ [
+ 68.62969496561425,
+ 39.251139589599646
+ ],
+ [
+ 68.8593803325816,
+ 39.251139589599646
+ ],
+ [
+ 68.97422301606528,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 39.835082794385
+ ],
+ [
+ 68.8593803325816,
+ 40.029730529313454
+ ],
+ [
+ 68.62969496561425,
+ 40.029730529313454
+ ],
+ [
+ 68.51485228213056,
+ 39.835082794385
+ ],
+ [
+ 68.62969496561425,
+ 39.64043505945655
+ ],
+ [
+ 68.8593803325816,
+ 39.64043505945655
+ ],
+ [
+ 68.97422301606528,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 40.22437826424191
+ ],
+ [
+ 68.8593803325816,
+ 40.419025999170366
+ ],
+ [
+ 68.62969496561425,
+ 40.419025999170366
+ ],
+ [
+ 68.51485228213056,
+ 40.22437826424191
+ ],
+ [
+ 68.62969496561425,
+ 40.02973052931346
+ ],
+ [
+ 68.8593803325816,
+ 40.02973052931346
+ ],
+ [
+ 68.97422301606528,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 40.61367373409882
+ ],
+ [
+ 68.8593803325816,
+ 40.80832146902727
+ ],
+ [
+ 68.62969496561425,
+ 40.80832146902727
+ ],
+ [
+ 68.51485228213056,
+ 40.61367373409882
+ ],
+ [
+ 68.62969496561425,
+ 40.419025999170366
+ ],
+ [
+ 68.8593803325816,
+ 40.419025999170366
+ ],
+ [
+ 68.97422301606528,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 41.00296920395572
+ ],
+ [
+ 68.8593803325816,
+ 41.197616938884174
+ ],
+ [
+ 68.62969496561425,
+ 41.197616938884174
+ ],
+ [
+ 68.51485228213056,
+ 41.00296920395572
+ ],
+ [
+ 68.62969496561425,
+ 40.80832146902727
+ ],
+ [
+ 68.8593803325816,
+ 40.80832146902727
+ ],
+ [
+ 68.97422301606528,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 41.392264673812626
+ ],
+ [
+ 68.8593803325816,
+ 41.58691240874108
+ ],
+ [
+ 68.62969496561425,
+ 41.58691240874108
+ ],
+ [
+ 68.51485228213056,
+ 41.392264673812626
+ ],
+ [
+ 68.62969496561425,
+ 41.197616938884174
+ ],
+ [
+ 68.8593803325816,
+ 41.197616938884174
+ ],
+ [
+ 68.97422301606528,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 41.78156014366953
+ ],
+ [
+ 68.8593803325816,
+ 41.97620787859798
+ ],
+ [
+ 68.62969496561425,
+ 41.97620787859798
+ ],
+ [
+ 68.51485228213056,
+ 41.78156014366953
+ ],
+ [
+ 68.62969496561425,
+ 41.58691240874108
+ ],
+ [
+ 68.8593803325816,
+ 41.58691240874108
+ ],
+ [
+ 68.97422301606528,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 42.17085561352644
+ ],
+ [
+ 68.8593803325816,
+ 42.365503348454894
+ ],
+ [
+ 68.62969496561425,
+ 42.365503348454894
+ ],
+ [
+ 68.51485228213056,
+ 42.17085561352644
+ ],
+ [
+ 68.62969496561425,
+ 41.97620787859799
+ ],
+ [
+ 68.8593803325816,
+ 41.97620787859799
+ ],
+ [
+ 68.97422301606528,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 42.56015108338335
+ ],
+ [
+ 68.8593803325816,
+ 42.754798818311805
+ ],
+ [
+ 68.62969496561425,
+ 42.754798818311805
+ ],
+ [
+ 68.51485228213056,
+ 42.56015108338335
+ ],
+ [
+ 68.62969496561425,
+ 42.3655033484549
+ ],
+ [
+ 68.8593803325816,
+ 42.3655033484549
+ ],
+ [
+ 68.97422301606528,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 42.94944655324026
+ ],
+ [
+ 68.8593803325816,
+ 43.14409428816871
+ ],
+ [
+ 68.62969496561425,
+ 43.14409428816871
+ ],
+ [
+ 68.51485228213056,
+ 42.94944655324026
+ ],
+ [
+ 68.62969496561425,
+ 42.754798818311805
+ ],
+ [
+ 68.8593803325816,
+ 42.754798818311805
+ ],
+ [
+ 68.97422301606528,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 43.33874202309716
+ ],
+ [
+ 68.8593803325816,
+ 43.53338975802561
+ ],
+ [
+ 68.62969496561425,
+ 43.53338975802561
+ ],
+ [
+ 68.51485228213056,
+ 43.33874202309716
+ ],
+ [
+ 68.62969496561425,
+ 43.14409428816871
+ ],
+ [
+ 68.8593803325816,
+ 43.14409428816871
+ ],
+ [
+ 68.97422301606528,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 43.728037492954066
+ ],
+ [
+ 68.8593803325816,
+ 43.92268522788252
+ ],
+ [
+ 68.62969496561425,
+ 43.92268522788252
+ ],
+ [
+ 68.51485228213056,
+ 43.728037492954066
+ ],
+ [
+ 68.62969496561425,
+ 43.53338975802561
+ ],
+ [
+ 68.8593803325816,
+ 43.53338975802561
+ ],
+ [
+ 68.97422301606528,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 44.11733296281097
+ ],
+ [
+ 68.8593803325816,
+ 44.31198069773942
+ ],
+ [
+ 68.62969496561425,
+ 44.31198069773942
+ ],
+ [
+ 68.51485228213056,
+ 44.11733296281097
+ ],
+ [
+ 68.62969496561425,
+ 43.92268522788252
+ ],
+ [
+ 68.8593803325816,
+ 43.92268522788252
+ ],
+ [
+ 68.97422301606528,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 44.506628432667874
+ ],
+ [
+ 68.8593803325816,
+ 44.701276167596326
+ ],
+ [
+ 68.62969496561425,
+ 44.701276167596326
+ ],
+ [
+ 68.51485228213056,
+ 44.506628432667874
+ ],
+ [
+ 68.62969496561425,
+ 44.31198069773942
+ ],
+ [
+ 68.8593803325816,
+ 44.31198069773942
+ ],
+ [
+ 68.97422301606528,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 44.89592390252479
+ ],
+ [
+ 68.8593803325816,
+ 45.090571637453245
+ ],
+ [
+ 68.62969496561425,
+ 45.090571637453245
+ ],
+ [
+ 68.51485228213056,
+ 44.89592390252479
+ ],
+ [
+ 68.62969496561425,
+ 44.70127616759634
+ ],
+ [
+ 68.8593803325816,
+ 44.70127616759634
+ ],
+ [
+ 68.97422301606528,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 45.2852193723817
+ ],
+ [
+ 68.8593803325816,
+ 45.47986710731015
+ ],
+ [
+ 68.62969496561425,
+ 45.47986710731015
+ ],
+ [
+ 68.51485228213056,
+ 45.2852193723817
+ ],
+ [
+ 68.62969496561425,
+ 45.090571637453245
+ ],
+ [
+ 68.8593803325816,
+ 45.090571637453245
+ ],
+ [
+ 68.97422301606528,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 45.6745148422386
+ ],
+ [
+ 68.8593803325816,
+ 45.86916257716705
+ ],
+ [
+ 68.62969496561425,
+ 45.86916257716705
+ ],
+ [
+ 68.51485228213056,
+ 45.6745148422386
+ ],
+ [
+ 68.62969496561425,
+ 45.47986710731015
+ ],
+ [
+ 68.8593803325816,
+ 45.47986710731015
+ ],
+ [
+ 68.97422301606528,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 46.063810312095505
+ ],
+ [
+ 68.8593803325816,
+ 46.25845804702396
+ ],
+ [
+ 68.62969496561425,
+ 46.25845804702396
+ ],
+ [
+ 68.51485228213056,
+ 46.063810312095505
+ ],
+ [
+ 68.62969496561425,
+ 45.86916257716705
+ ],
+ [
+ 68.8593803325816,
+ 45.86916257716705
+ ],
+ [
+ 68.97422301606528,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 46.45310578195241
+ ],
+ [
+ 68.8593803325816,
+ 46.64775351688086
+ ],
+ [
+ 68.62969496561425,
+ 46.64775351688086
+ ],
+ [
+ 68.51485228213056,
+ 46.45310578195241
+ ],
+ [
+ 68.62969496561425,
+ 46.25845804702396
+ ],
+ [
+ 68.8593803325816,
+ 46.25845804702396
+ ],
+ [
+ 68.97422301606528,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 46.842401251809314
+ ],
+ [
+ 68.8593803325816,
+ 47.037048986737766
+ ],
+ [
+ 68.62969496561425,
+ 47.037048986737766
+ ],
+ [
+ 68.51485228213056,
+ 46.842401251809314
+ ],
+ [
+ 68.62969496561425,
+ 46.64775351688086
+ ],
+ [
+ 68.8593803325816,
+ 46.64775351688086
+ ],
+ [
+ 68.97422301606528,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 47.23169672166622
+ ],
+ [
+ 68.8593803325816,
+ 47.42634445659467
+ ],
+ [
+ 68.62969496561425,
+ 47.42634445659467
+ ],
+ [
+ 68.51485228213056,
+ 47.23169672166622
+ ],
+ [
+ 68.62969496561425,
+ 47.037048986737766
+ ],
+ [
+ 68.8593803325816,
+ 47.037048986737766
+ ],
+ [
+ 68.97422301606528,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 68.97422301606528,
+ 47.620992191523136
+ ],
+ [
+ 68.8593803325816,
+ 47.81563992645159
+ ],
+ [
+ 68.62969496561425,
+ 47.81563992645159
+ ],
+ [
+ 68.51485228213056,
+ 47.620992191523136
+ ],
+ [
+ 68.62969496561425,
+ 47.426344456594684
+ ],
+ [
+ 68.8593803325816,
+ 47.426344456594684
+ ],
+ [
+ 68.97422301606528,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 12.0004566996162
+ ],
+ [
+ 69.20390838303264,
+ 12.195104434544653
+ ],
+ [
+ 68.9742230160653,
+ 12.195104434544653
+ ],
+ [
+ 68.85938033258161,
+ 12.0004566996162
+ ],
+ [
+ 68.9742230160653,
+ 11.805808964687746
+ ],
+ [
+ 69.20390838303264,
+ 11.805808964687746
+ ],
+ [
+ 69.31875106651633,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 12.389752169473105
+ ],
+ [
+ 69.20390838303264,
+ 12.58439990440156
+ ],
+ [
+ 68.9742230160653,
+ 12.58439990440156
+ ],
+ [
+ 68.85938033258161,
+ 12.389752169473105
+ ],
+ [
+ 68.9742230160653,
+ 12.195104434544652
+ ],
+ [
+ 69.20390838303264,
+ 12.195104434544652
+ ],
+ [
+ 69.31875106651633,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 12.779047639330013
+ ],
+ [
+ 69.20390838303264,
+ 12.973695374258467
+ ],
+ [
+ 68.9742230160653,
+ 12.973695374258467
+ ],
+ [
+ 68.85938033258161,
+ 12.779047639330013
+ ],
+ [
+ 68.9742230160653,
+ 12.58439990440156
+ ],
+ [
+ 69.20390838303264,
+ 12.58439990440156
+ ],
+ [
+ 69.31875106651633,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 13.16834310918692
+ ],
+ [
+ 69.20390838303264,
+ 13.362990844115373
+ ],
+ [
+ 68.9742230160653,
+ 13.362990844115373
+ ],
+ [
+ 68.85938033258161,
+ 13.16834310918692
+ ],
+ [
+ 68.9742230160653,
+ 12.973695374258465
+ ],
+ [
+ 69.20390838303264,
+ 12.973695374258465
+ ],
+ [
+ 69.31875106651633,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 13.557638579043825
+ ],
+ [
+ 69.20390838303264,
+ 13.752286313972279
+ ],
+ [
+ 68.9742230160653,
+ 13.752286313972279
+ ],
+ [
+ 68.85938033258161,
+ 13.557638579043825
+ ],
+ [
+ 68.9742230160653,
+ 13.362990844115371
+ ],
+ [
+ 69.20390838303264,
+ 13.362990844115371
+ ],
+ [
+ 69.31875106651633,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 13.946934048900731
+ ],
+ [
+ 69.20390838303264,
+ 14.141581783829185
+ ],
+ [
+ 68.9742230160653,
+ 14.141581783829185
+ ],
+ [
+ 68.85938033258161,
+ 13.946934048900731
+ ],
+ [
+ 68.9742230160653,
+ 13.752286313972277
+ ],
+ [
+ 69.20390838303264,
+ 13.752286313972277
+ ],
+ [
+ 69.31875106651633,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 14.336229518757637
+ ],
+ [
+ 69.20390838303264,
+ 14.530877253686091
+ ],
+ [
+ 68.9742230160653,
+ 14.530877253686091
+ ],
+ [
+ 68.85938033258161,
+ 14.336229518757637
+ ],
+ [
+ 68.9742230160653,
+ 14.141581783829183
+ ],
+ [
+ 69.20390838303264,
+ 14.141581783829183
+ ],
+ [
+ 69.31875106651633,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 14.725524988614545
+ ],
+ [
+ 69.20390838303264,
+ 14.920172723542999
+ ],
+ [
+ 68.9742230160653,
+ 14.920172723542999
+ ],
+ [
+ 68.85938033258161,
+ 14.725524988614545
+ ],
+ [
+ 68.9742230160653,
+ 14.530877253686091
+ ],
+ [
+ 69.20390838303264,
+ 14.530877253686091
+ ],
+ [
+ 69.31875106651633,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 15.114820458471451
+ ],
+ [
+ 69.20390838303264,
+ 15.309468193399905
+ ],
+ [
+ 68.9742230160653,
+ 15.309468193399905
+ ],
+ [
+ 68.85938033258161,
+ 15.114820458471451
+ ],
+ [
+ 68.9742230160653,
+ 14.920172723542997
+ ],
+ [
+ 69.20390838303264,
+ 14.920172723542997
+ ],
+ [
+ 69.31875106651633,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 15.504115928328357
+ ],
+ [
+ 69.20390838303264,
+ 15.69876366325681
+ ],
+ [
+ 68.9742230160653,
+ 15.69876366325681
+ ],
+ [
+ 68.85938033258161,
+ 15.504115928328357
+ ],
+ [
+ 68.9742230160653,
+ 15.309468193399903
+ ],
+ [
+ 69.20390838303264,
+ 15.309468193399903
+ ],
+ [
+ 69.31875106651633,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 15.893411398185265
+ ],
+ [
+ 69.20390838303264,
+ 16.088059133113717
+ ],
+ [
+ 68.9742230160653,
+ 16.088059133113717
+ ],
+ [
+ 68.85938033258161,
+ 15.893411398185265
+ ],
+ [
+ 68.9742230160653,
+ 15.69876366325681
+ ],
+ [
+ 69.20390838303264,
+ 15.69876366325681
+ ],
+ [
+ 69.31875106651633,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 16.28270686804217
+ ],
+ [
+ 69.20390838303264,
+ 16.47735460297062
+ ],
+ [
+ 68.9742230160653,
+ 16.47735460297062
+ ],
+ [
+ 68.85938033258161,
+ 16.28270686804217
+ ],
+ [
+ 68.9742230160653,
+ 16.088059133113717
+ ],
+ [
+ 69.20390838303264,
+ 16.088059133113717
+ ],
+ [
+ 69.31875106651633,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 16.672002337899077
+ ],
+ [
+ 69.20390838303264,
+ 16.86665007282753
+ ],
+ [
+ 68.9742230160653,
+ 16.86665007282753
+ ],
+ [
+ 68.85938033258161,
+ 16.672002337899077
+ ],
+ [
+ 68.9742230160653,
+ 16.477354602970625
+ ],
+ [
+ 69.20390838303264,
+ 16.477354602970625
+ ],
+ [
+ 69.31875106651633,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 17.06129780775598
+ ],
+ [
+ 69.20390838303264,
+ 17.255945542684433
+ ],
+ [
+ 68.9742230160653,
+ 17.255945542684433
+ ],
+ [
+ 68.85938033258161,
+ 17.06129780775598
+ ],
+ [
+ 68.9742230160653,
+ 16.86665007282753
+ ],
+ [
+ 69.20390838303264,
+ 16.86665007282753
+ ],
+ [
+ 69.31875106651633,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 17.45059327761289
+ ],
+ [
+ 69.20390838303264,
+ 17.64524101254134
+ ],
+ [
+ 68.9742230160653,
+ 17.64524101254134
+ ],
+ [
+ 68.85938033258161,
+ 17.45059327761289
+ ],
+ [
+ 68.9742230160653,
+ 17.255945542684437
+ ],
+ [
+ 69.20390838303264,
+ 17.255945542684437
+ ],
+ [
+ 69.31875106651633,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 17.839888747469793
+ ],
+ [
+ 69.20390838303264,
+ 18.034536482398245
+ ],
+ [
+ 68.9742230160653,
+ 18.034536482398245
+ ],
+ [
+ 68.85938033258161,
+ 17.839888747469793
+ ],
+ [
+ 68.9742230160653,
+ 17.64524101254134
+ ],
+ [
+ 69.20390838303264,
+ 17.64524101254134
+ ],
+ [
+ 69.31875106651633,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 18.2291842173267
+ ],
+ [
+ 69.20390838303264,
+ 18.423831952255153
+ ],
+ [
+ 68.9742230160653,
+ 18.423831952255153
+ ],
+ [
+ 68.85938033258161,
+ 18.2291842173267
+ ],
+ [
+ 68.9742230160653,
+ 18.03453648239825
+ ],
+ [
+ 69.20390838303264,
+ 18.03453648239825
+ ],
+ [
+ 69.31875106651633,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 18.61847968718361
+ ],
+ [
+ 69.20390838303264,
+ 18.81312742211206
+ ],
+ [
+ 68.9742230160653,
+ 18.81312742211206
+ ],
+ [
+ 68.85938033258161,
+ 18.61847968718361
+ ],
+ [
+ 68.9742230160653,
+ 18.423831952255156
+ ],
+ [
+ 69.20390838303264,
+ 18.423831952255156
+ ],
+ [
+ 69.31875106651633,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 19.007775157040513
+ ],
+ [
+ 69.20390838303264,
+ 19.202422891968965
+ ],
+ [
+ 68.9742230160653,
+ 19.202422891968965
+ ],
+ [
+ 68.85938033258161,
+ 19.007775157040513
+ ],
+ [
+ 68.9742230160653,
+ 18.81312742211206
+ ],
+ [
+ 69.20390838303264,
+ 18.81312742211206
+ ],
+ [
+ 69.31875106651633,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 19.39707062689742
+ ],
+ [
+ 69.20390838303264,
+ 19.591718361825873
+ ],
+ [
+ 68.9742230160653,
+ 19.591718361825873
+ ],
+ [
+ 68.85938033258161,
+ 19.39707062689742
+ ],
+ [
+ 68.9742230160653,
+ 19.20242289196897
+ ],
+ [
+ 69.20390838303264,
+ 19.20242289196897
+ ],
+ [
+ 69.31875106651633,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 19.78636609675433
+ ],
+ [
+ 69.20390838303264,
+ 19.98101383168278
+ ],
+ [
+ 68.9742230160653,
+ 19.98101383168278
+ ],
+ [
+ 68.85938033258161,
+ 19.78636609675433
+ ],
+ [
+ 68.9742230160653,
+ 19.591718361825876
+ ],
+ [
+ 69.20390838303264,
+ 19.591718361825876
+ ],
+ [
+ 69.31875106651633,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 20.175661566611232
+ ],
+ [
+ 69.20390838303264,
+ 20.370309301539685
+ ],
+ [
+ 68.9742230160653,
+ 20.370309301539685
+ ],
+ [
+ 68.85938033258161,
+ 20.175661566611232
+ ],
+ [
+ 68.9742230160653,
+ 19.98101383168278
+ ],
+ [
+ 69.20390838303264,
+ 19.98101383168278
+ ],
+ [
+ 69.31875106651633,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 20.564957036468137
+ ],
+ [
+ 69.20390838303264,
+ 20.75960477139659
+ ],
+ [
+ 68.9742230160653,
+ 20.75960477139659
+ ],
+ [
+ 68.85938033258161,
+ 20.564957036468137
+ ],
+ [
+ 68.9742230160653,
+ 20.370309301539685
+ ],
+ [
+ 69.20390838303264,
+ 20.370309301539685
+ ],
+ [
+ 69.31875106651633,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 20.954252506325044
+ ],
+ [
+ 69.20390838303264,
+ 21.148900241253497
+ ],
+ [
+ 68.9742230160653,
+ 21.148900241253497
+ ],
+ [
+ 68.85938033258161,
+ 20.954252506325044
+ ],
+ [
+ 68.9742230160653,
+ 20.759604771396592
+ ],
+ [
+ 69.20390838303264,
+ 20.759604771396592
+ ],
+ [
+ 69.31875106651633,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 21.343547976181952
+ ],
+ [
+ 69.20390838303264,
+ 21.538195711110404
+ ],
+ [
+ 68.9742230160653,
+ 21.538195711110404
+ ],
+ [
+ 68.85938033258161,
+ 21.343547976181952
+ ],
+ [
+ 68.9742230160653,
+ 21.1489002412535
+ ],
+ [
+ 69.20390838303264,
+ 21.1489002412535
+ ],
+ [
+ 69.31875106651633,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 21.732843446038856
+ ],
+ [
+ 69.20390838303264,
+ 21.92749118096731
+ ],
+ [
+ 68.9742230160653,
+ 21.92749118096731
+ ],
+ [
+ 68.85938033258161,
+ 21.732843446038856
+ ],
+ [
+ 68.9742230160653,
+ 21.538195711110404
+ ],
+ [
+ 69.20390838303264,
+ 21.538195711110404
+ ],
+ [
+ 69.31875106651633,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 22.122138915895764
+ ],
+ [
+ 69.20390838303264,
+ 22.316786650824216
+ ],
+ [
+ 68.9742230160653,
+ 22.316786650824216
+ ],
+ [
+ 68.85938033258161,
+ 22.122138915895764
+ ],
+ [
+ 68.9742230160653,
+ 21.927491180967312
+ ],
+ [
+ 69.20390838303264,
+ 21.927491180967312
+ ],
+ [
+ 69.31875106651633,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 22.511434385752672
+ ],
+ [
+ 69.20390838303264,
+ 22.706082120681124
+ ],
+ [
+ 68.9742230160653,
+ 22.706082120681124
+ ],
+ [
+ 68.85938033258161,
+ 22.511434385752672
+ ],
+ [
+ 68.9742230160653,
+ 22.31678665082422
+ ],
+ [
+ 69.20390838303264,
+ 22.31678665082422
+ ],
+ [
+ 69.31875106651633,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 22.900729855609576
+ ],
+ [
+ 69.20390838303264,
+ 23.09537759053803
+ ],
+ [
+ 68.9742230160653,
+ 23.09537759053803
+ ],
+ [
+ 68.85938033258161,
+ 22.900729855609576
+ ],
+ [
+ 68.9742230160653,
+ 22.706082120681124
+ ],
+ [
+ 69.20390838303264,
+ 22.706082120681124
+ ],
+ [
+ 69.31875106651633,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 23.290025325466484
+ ],
+ [
+ 69.20390838303264,
+ 23.484673060394936
+ ],
+ [
+ 68.9742230160653,
+ 23.484673060394936
+ ],
+ [
+ 68.85938033258161,
+ 23.290025325466484
+ ],
+ [
+ 68.9742230160653,
+ 23.095377590538032
+ ],
+ [
+ 69.20390838303264,
+ 23.095377590538032
+ ],
+ [
+ 69.31875106651633,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 23.67932079532339
+ ],
+ [
+ 69.20390838303264,
+ 23.873968530251844
+ ],
+ [
+ 68.9742230160653,
+ 23.873968530251844
+ ],
+ [
+ 68.85938033258161,
+ 23.67932079532339
+ ],
+ [
+ 68.9742230160653,
+ 23.48467306039494
+ ],
+ [
+ 69.20390838303264,
+ 23.48467306039494
+ ],
+ [
+ 69.31875106651633,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 24.068616265180296
+ ],
+ [
+ 69.20390838303264,
+ 24.263264000108748
+ ],
+ [
+ 68.9742230160653,
+ 24.263264000108748
+ ],
+ [
+ 68.85938033258161,
+ 24.068616265180296
+ ],
+ [
+ 68.9742230160653,
+ 23.873968530251844
+ ],
+ [
+ 69.20390838303264,
+ 23.873968530251844
+ ],
+ [
+ 69.31875106651633,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 24.4579117350372
+ ],
+ [
+ 69.20390838303264,
+ 24.652559469965652
+ ],
+ [
+ 68.9742230160653,
+ 24.652559469965652
+ ],
+ [
+ 68.85938033258161,
+ 24.4579117350372
+ ],
+ [
+ 68.9742230160653,
+ 24.263264000108748
+ ],
+ [
+ 69.20390838303264,
+ 24.263264000108748
+ ],
+ [
+ 69.31875106651633,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 24.847207204894108
+ ],
+ [
+ 69.20390838303264,
+ 25.04185493982256
+ ],
+ [
+ 68.9742230160653,
+ 25.04185493982256
+ ],
+ [
+ 68.85938033258161,
+ 24.847207204894108
+ ],
+ [
+ 68.9742230160653,
+ 24.652559469965656
+ ],
+ [
+ 69.20390838303264,
+ 24.652559469965656
+ ],
+ [
+ 69.31875106651633,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 25.236502674751016
+ ],
+ [
+ 69.20390838303264,
+ 25.431150409679468
+ ],
+ [
+ 68.9742230160653,
+ 25.431150409679468
+ ],
+ [
+ 68.85938033258161,
+ 25.236502674751016
+ ],
+ [
+ 68.9742230160653,
+ 25.041854939822564
+ ],
+ [
+ 69.20390838303264,
+ 25.041854939822564
+ ],
+ [
+ 69.31875106651633,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 25.62579814460792
+ ],
+ [
+ 69.20390838303264,
+ 25.820445879536372
+ ],
+ [
+ 68.9742230160653,
+ 25.820445879536372
+ ],
+ [
+ 68.85938033258161,
+ 25.62579814460792
+ ],
+ [
+ 68.9742230160653,
+ 25.431150409679468
+ ],
+ [
+ 69.20390838303264,
+ 25.431150409679468
+ ],
+ [
+ 69.31875106651633,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 26.015093614464828
+ ],
+ [
+ 69.20390838303264,
+ 26.20974134939328
+ ],
+ [
+ 68.9742230160653,
+ 26.20974134939328
+ ],
+ [
+ 68.85938033258161,
+ 26.015093614464828
+ ],
+ [
+ 68.9742230160653,
+ 25.820445879536376
+ ],
+ [
+ 69.20390838303264,
+ 25.820445879536376
+ ],
+ [
+ 69.31875106651633,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 26.404389084321735
+ ],
+ [
+ 69.20390838303264,
+ 26.599036819250188
+ ],
+ [
+ 68.9742230160653,
+ 26.599036819250188
+ ],
+ [
+ 68.85938033258161,
+ 26.404389084321735
+ ],
+ [
+ 68.9742230160653,
+ 26.209741349393283
+ ],
+ [
+ 69.20390838303264,
+ 26.209741349393283
+ ],
+ [
+ 69.31875106651633,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 26.79368455417864
+ ],
+ [
+ 69.20390838303264,
+ 26.988332289107092
+ ],
+ [
+ 68.9742230160653,
+ 26.988332289107092
+ ],
+ [
+ 68.85938033258161,
+ 26.79368455417864
+ ],
+ [
+ 68.9742230160653,
+ 26.599036819250188
+ ],
+ [
+ 69.20390838303264,
+ 26.599036819250188
+ ],
+ [
+ 69.31875106651633,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 27.182980024035547
+ ],
+ [
+ 69.20390838303264,
+ 27.377627758964
+ ],
+ [
+ 68.9742230160653,
+ 27.377627758964
+ ],
+ [
+ 68.85938033258161,
+ 27.182980024035547
+ ],
+ [
+ 68.9742230160653,
+ 26.988332289107095
+ ],
+ [
+ 69.20390838303264,
+ 26.988332289107095
+ ],
+ [
+ 69.31875106651633,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 27.572275493892455
+ ],
+ [
+ 69.20390838303264,
+ 27.766923228820907
+ ],
+ [
+ 68.9742230160653,
+ 27.766923228820907
+ ],
+ [
+ 68.85938033258161,
+ 27.572275493892455
+ ],
+ [
+ 68.9742230160653,
+ 27.377627758964003
+ ],
+ [
+ 69.20390838303264,
+ 27.377627758964003
+ ],
+ [
+ 69.31875106651633,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 27.96157096374936
+ ],
+ [
+ 69.20390838303264,
+ 28.15621869867781
+ ],
+ [
+ 68.9742230160653,
+ 28.15621869867781
+ ],
+ [
+ 68.85938033258161,
+ 27.96157096374936
+ ],
+ [
+ 68.9742230160653,
+ 27.766923228820907
+ ],
+ [
+ 69.20390838303264,
+ 27.766923228820907
+ ],
+ [
+ 69.31875106651633,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 28.350866433606267
+ ],
+ [
+ 69.20390838303264,
+ 28.54551416853472
+ ],
+ [
+ 68.9742230160653,
+ 28.54551416853472
+ ],
+ [
+ 68.85938033258161,
+ 28.350866433606267
+ ],
+ [
+ 68.9742230160653,
+ 28.156218698677815
+ ],
+ [
+ 69.20390838303264,
+ 28.156218698677815
+ ],
+ [
+ 69.31875106651633,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 28.74016190346317
+ ],
+ [
+ 69.20390838303264,
+ 28.934809638391624
+ ],
+ [
+ 68.9742230160653,
+ 28.934809638391624
+ ],
+ [
+ 68.85938033258161,
+ 28.74016190346317
+ ],
+ [
+ 68.9742230160653,
+ 28.54551416853472
+ ],
+ [
+ 69.20390838303264,
+ 28.54551416853472
+ ],
+ [
+ 69.31875106651633,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 29.12945737332008
+ ],
+ [
+ 69.20390838303264,
+ 29.32410510824853
+ ],
+ [
+ 68.9742230160653,
+ 29.32410510824853
+ ],
+ [
+ 68.85938033258161,
+ 29.12945737332008
+ ],
+ [
+ 68.9742230160653,
+ 28.934809638391627
+ ],
+ [
+ 69.20390838303264,
+ 28.934809638391627
+ ],
+ [
+ 69.31875106651633,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 29.518752843176983
+ ],
+ [
+ 69.20390838303264,
+ 29.713400578105436
+ ],
+ [
+ 68.9742230160653,
+ 29.713400578105436
+ ],
+ [
+ 68.85938033258161,
+ 29.518752843176983
+ ],
+ [
+ 68.9742230160653,
+ 29.32410510824853
+ ],
+ [
+ 69.20390838303264,
+ 29.32410510824853
+ ],
+ [
+ 69.31875106651633,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 29.90804831303389
+ ],
+ [
+ 69.20390838303264,
+ 30.102696047962343
+ ],
+ [
+ 68.9742230160653,
+ 30.102696047962343
+ ],
+ [
+ 68.85938033258161,
+ 29.90804831303389
+ ],
+ [
+ 68.9742230160653,
+ 29.71340057810544
+ ],
+ [
+ 69.20390838303264,
+ 29.71340057810544
+ ],
+ [
+ 69.31875106651633,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 30.297343782890795
+ ],
+ [
+ 69.20390838303264,
+ 30.491991517819248
+ ],
+ [
+ 68.9742230160653,
+ 30.491991517819248
+ ],
+ [
+ 68.85938033258161,
+ 30.297343782890795
+ ],
+ [
+ 68.9742230160653,
+ 30.102696047962343
+ ],
+ [
+ 69.20390838303264,
+ 30.102696047962343
+ ],
+ [
+ 69.31875106651633,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 30.686639252747703
+ ],
+ [
+ 69.20390838303264,
+ 30.881286987676155
+ ],
+ [
+ 68.9742230160653,
+ 30.881286987676155
+ ],
+ [
+ 68.85938033258161,
+ 30.686639252747703
+ ],
+ [
+ 68.9742230160653,
+ 30.49199151781925
+ ],
+ [
+ 69.20390838303264,
+ 30.49199151781925
+ ],
+ [
+ 69.31875106651633,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 31.07593472260461
+ ],
+ [
+ 69.20390838303264,
+ 31.270582457533063
+ ],
+ [
+ 68.9742230160653,
+ 31.270582457533063
+ ],
+ [
+ 68.85938033258161,
+ 31.07593472260461
+ ],
+ [
+ 68.9742230160653,
+ 30.88128698767616
+ ],
+ [
+ 69.20390838303264,
+ 30.88128698767616
+ ],
+ [
+ 69.31875106651633,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 31.465230192461515
+ ],
+ [
+ 69.20390838303264,
+ 31.659877927389967
+ ],
+ [
+ 68.9742230160653,
+ 31.659877927389967
+ ],
+ [
+ 68.85938033258161,
+ 31.465230192461515
+ ],
+ [
+ 68.9742230160653,
+ 31.270582457533063
+ ],
+ [
+ 69.20390838303264,
+ 31.270582457533063
+ ],
+ [
+ 69.31875106651633,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 31.854525662318423
+ ],
+ [
+ 69.20390838303264,
+ 32.049173397246875
+ ],
+ [
+ 68.9742230160653,
+ 32.049173397246875
+ ],
+ [
+ 68.85938033258161,
+ 31.854525662318423
+ ],
+ [
+ 68.9742230160653,
+ 31.65987792738997
+ ],
+ [
+ 69.20390838303264,
+ 31.65987792738997
+ ],
+ [
+ 69.31875106651633,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 32.24382113217533
+ ],
+ [
+ 69.20390838303264,
+ 32.43846886710378
+ ],
+ [
+ 68.9742230160653,
+ 32.43846886710378
+ ],
+ [
+ 68.85938033258161,
+ 32.24382113217533
+ ],
+ [
+ 68.9742230160653,
+ 32.049173397246875
+ ],
+ [
+ 69.20390838303264,
+ 32.049173397246875
+ ],
+ [
+ 69.31875106651633,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 32.63311660203224
+ ],
+ [
+ 69.20390838303264,
+ 32.82776433696069
+ ],
+ [
+ 68.9742230160653,
+ 32.82776433696069
+ ],
+ [
+ 68.85938033258161,
+ 32.63311660203224
+ ],
+ [
+ 68.9742230160653,
+ 32.438468867103786
+ ],
+ [
+ 69.20390838303264,
+ 32.438468867103786
+ ],
+ [
+ 69.31875106651633,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 33.02241207188914
+ ],
+ [
+ 69.20390838303264,
+ 33.217059806817595
+ ],
+ [
+ 68.9742230160653,
+ 33.217059806817595
+ ],
+ [
+ 68.85938033258161,
+ 33.02241207188914
+ ],
+ [
+ 68.9742230160653,
+ 32.82776433696069
+ ],
+ [
+ 69.20390838303264,
+ 32.82776433696069
+ ],
+ [
+ 69.31875106651633,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 33.41170754174605
+ ],
+ [
+ 69.20390838303264,
+ 33.6063552766745
+ ],
+ [
+ 68.9742230160653,
+ 33.6063552766745
+ ],
+ [
+ 68.85938033258161,
+ 33.41170754174605
+ ],
+ [
+ 68.9742230160653,
+ 33.217059806817595
+ ],
+ [
+ 69.20390838303264,
+ 33.217059806817595
+ ],
+ [
+ 69.31875106651633,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 33.80100301160295
+ ],
+ [
+ 69.20390838303264,
+ 33.9956507465314
+ ],
+ [
+ 68.9742230160653,
+ 33.9956507465314
+ ],
+ [
+ 68.85938033258161,
+ 33.80100301160295
+ ],
+ [
+ 68.9742230160653,
+ 33.6063552766745
+ ],
+ [
+ 69.20390838303264,
+ 33.6063552766745
+ ],
+ [
+ 69.31875106651633,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 34.190298481459855
+ ],
+ [
+ 69.20390838303264,
+ 34.38494621638831
+ ],
+ [
+ 68.9742230160653,
+ 34.38494621638831
+ ],
+ [
+ 68.85938033258161,
+ 34.190298481459855
+ ],
+ [
+ 68.9742230160653,
+ 33.9956507465314
+ ],
+ [
+ 69.20390838303264,
+ 33.9956507465314
+ ],
+ [
+ 69.31875106651633,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 34.57959395131677
+ ],
+ [
+ 69.20390838303264,
+ 34.77424168624522
+ ],
+ [
+ 68.9742230160653,
+ 34.77424168624522
+ ],
+ [
+ 68.85938033258161,
+ 34.57959395131677
+ ],
+ [
+ 68.9742230160653,
+ 34.384946216388315
+ ],
+ [
+ 69.20390838303264,
+ 34.384946216388315
+ ],
+ [
+ 69.31875106651633,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 34.96888942117368
+ ],
+ [
+ 69.20390838303264,
+ 35.16353715610213
+ ],
+ [
+ 68.9742230160653,
+ 35.16353715610213
+ ],
+ [
+ 68.85938033258161,
+ 34.96888942117368
+ ],
+ [
+ 68.9742230160653,
+ 34.774241686245226
+ ],
+ [
+ 69.20390838303264,
+ 34.774241686245226
+ ],
+ [
+ 69.31875106651633,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 35.35818489103058
+ ],
+ [
+ 69.20390838303264,
+ 35.552832625959034
+ ],
+ [
+ 68.9742230160653,
+ 35.552832625959034
+ ],
+ [
+ 68.85938033258161,
+ 35.35818489103058
+ ],
+ [
+ 68.9742230160653,
+ 35.16353715610213
+ ],
+ [
+ 69.20390838303264,
+ 35.16353715610213
+ ],
+ [
+ 69.31875106651633,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 35.74748036088749
+ ],
+ [
+ 69.20390838303264,
+ 35.94212809581594
+ ],
+ [
+ 68.9742230160653,
+ 35.94212809581594
+ ],
+ [
+ 68.85938033258161,
+ 35.74748036088749
+ ],
+ [
+ 68.9742230160653,
+ 35.552832625959034
+ ],
+ [
+ 69.20390838303264,
+ 35.552832625959034
+ ],
+ [
+ 69.31875106651633,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 36.13677583074439
+ ],
+ [
+ 69.20390838303264,
+ 36.33142356567284
+ ],
+ [
+ 68.9742230160653,
+ 36.33142356567284
+ ],
+ [
+ 68.85938033258161,
+ 36.13677583074439
+ ],
+ [
+ 68.9742230160653,
+ 35.94212809581594
+ ],
+ [
+ 69.20390838303264,
+ 35.94212809581594
+ ],
+ [
+ 69.31875106651633,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 36.526071300601295
+ ],
+ [
+ 69.20390838303264,
+ 36.72071903552975
+ ],
+ [
+ 68.9742230160653,
+ 36.72071903552975
+ ],
+ [
+ 68.85938033258161,
+ 36.526071300601295
+ ],
+ [
+ 68.9742230160653,
+ 36.33142356567284
+ ],
+ [
+ 69.20390838303264,
+ 36.33142356567284
+ ],
+ [
+ 69.31875106651633,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 36.915366770458206
+ ],
+ [
+ 69.20390838303264,
+ 37.11001450538666
+ ],
+ [
+ 68.9742230160653,
+ 37.11001450538666
+ ],
+ [
+ 68.85938033258161,
+ 36.915366770458206
+ ],
+ [
+ 68.9742230160653,
+ 36.720719035529754
+ ],
+ [
+ 69.20390838303264,
+ 36.720719035529754
+ ],
+ [
+ 69.31875106651633,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 37.30466224031511
+ ],
+ [
+ 69.20390838303264,
+ 37.49930997524356
+ ],
+ [
+ 68.9742230160653,
+ 37.49930997524356
+ ],
+ [
+ 68.85938033258161,
+ 37.30466224031511
+ ],
+ [
+ 68.9742230160653,
+ 37.11001450538666
+ ],
+ [
+ 69.20390838303264,
+ 37.11001450538666
+ ],
+ [
+ 69.31875106651633,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 37.69395771017202
+ ],
+ [
+ 69.20390838303264,
+ 37.888605445100474
+ ],
+ [
+ 68.9742230160653,
+ 37.888605445100474
+ ],
+ [
+ 68.85938033258161,
+ 37.69395771017202
+ ],
+ [
+ 68.9742230160653,
+ 37.49930997524357
+ ],
+ [
+ 69.20390838303264,
+ 37.49930997524357
+ ],
+ [
+ 69.31875106651633,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 38.083253180028926
+ ],
+ [
+ 69.20390838303264,
+ 38.27790091495738
+ ],
+ [
+ 68.9742230160653,
+ 38.27790091495738
+ ],
+ [
+ 68.85938033258161,
+ 38.083253180028926
+ ],
+ [
+ 68.9742230160653,
+ 37.888605445100474
+ ],
+ [
+ 69.20390838303264,
+ 37.888605445100474
+ ],
+ [
+ 69.31875106651633,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 38.47254864988583
+ ],
+ [
+ 69.20390838303264,
+ 38.66719638481428
+ ],
+ [
+ 68.9742230160653,
+ 38.66719638481428
+ ],
+ [
+ 68.85938033258161,
+ 38.47254864988583
+ ],
+ [
+ 68.9742230160653,
+ 38.27790091495738
+ ],
+ [
+ 69.20390838303264,
+ 38.27790091495738
+ ],
+ [
+ 69.31875106651633,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 38.861844119742734
+ ],
+ [
+ 69.20390838303264,
+ 39.05649185467119
+ ],
+ [
+ 68.9742230160653,
+ 39.05649185467119
+ ],
+ [
+ 68.85938033258161,
+ 38.861844119742734
+ ],
+ [
+ 68.9742230160653,
+ 38.66719638481428
+ ],
+ [
+ 69.20390838303264,
+ 38.66719638481428
+ ],
+ [
+ 69.31875106651633,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 39.25113958959964
+ ],
+ [
+ 69.20390838303264,
+ 39.44578732452809
+ ],
+ [
+ 68.9742230160653,
+ 39.44578732452809
+ ],
+ [
+ 68.85938033258161,
+ 39.25113958959964
+ ],
+ [
+ 68.9742230160653,
+ 39.05649185467119
+ ],
+ [
+ 69.20390838303264,
+ 39.05649185467119
+ ],
+ [
+ 69.31875106651633,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 39.64043505945655
+ ],
+ [
+ 69.20390838303264,
+ 39.835082794385
+ ],
+ [
+ 68.9742230160653,
+ 39.835082794385
+ ],
+ [
+ 68.85938033258161,
+ 39.64043505945655
+ ],
+ [
+ 68.9742230160653,
+ 39.4457873245281
+ ],
+ [
+ 69.20390838303264,
+ 39.4457873245281
+ ],
+ [
+ 69.31875106651633,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 40.029730529313454
+ ],
+ [
+ 69.20390838303264,
+ 40.224378264241906
+ ],
+ [
+ 68.9742230160653,
+ 40.224378264241906
+ ],
+ [
+ 68.85938033258161,
+ 40.029730529313454
+ ],
+ [
+ 68.9742230160653,
+ 39.835082794385
+ ],
+ [
+ 69.20390838303264,
+ 39.835082794385
+ ],
+ [
+ 69.31875106651633,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 40.419025999170366
+ ],
+ [
+ 69.20390838303264,
+ 40.61367373409882
+ ],
+ [
+ 68.9742230160653,
+ 40.61367373409882
+ ],
+ [
+ 68.85938033258161,
+ 40.419025999170366
+ ],
+ [
+ 68.9742230160653,
+ 40.22437826424191
+ ],
+ [
+ 69.20390838303264,
+ 40.22437826424191
+ ],
+ [
+ 69.31875106651633,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 40.80832146902727
+ ],
+ [
+ 69.20390838303264,
+ 41.00296920395572
+ ],
+ [
+ 68.9742230160653,
+ 41.00296920395572
+ ],
+ [
+ 68.85938033258161,
+ 40.80832146902727
+ ],
+ [
+ 68.9742230160653,
+ 40.61367373409882
+ ],
+ [
+ 69.20390838303264,
+ 40.61367373409882
+ ],
+ [
+ 69.31875106651633,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 41.197616938884174
+ ],
+ [
+ 69.20390838303264,
+ 41.392264673812626
+ ],
+ [
+ 68.9742230160653,
+ 41.392264673812626
+ ],
+ [
+ 68.85938033258161,
+ 41.197616938884174
+ ],
+ [
+ 68.9742230160653,
+ 41.00296920395572
+ ],
+ [
+ 69.20390838303264,
+ 41.00296920395572
+ ],
+ [
+ 69.31875106651633,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 41.58691240874108
+ ],
+ [
+ 69.20390838303264,
+ 41.78156014366953
+ ],
+ [
+ 68.9742230160653,
+ 41.78156014366953
+ ],
+ [
+ 68.85938033258161,
+ 41.58691240874108
+ ],
+ [
+ 68.9742230160653,
+ 41.392264673812626
+ ],
+ [
+ 69.20390838303264,
+ 41.392264673812626
+ ],
+ [
+ 69.31875106651633,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 41.97620787859798
+ ],
+ [
+ 69.20390838303264,
+ 42.170855613526435
+ ],
+ [
+ 68.9742230160653,
+ 42.170855613526435
+ ],
+ [
+ 68.85938033258161,
+ 41.97620787859798
+ ],
+ [
+ 68.9742230160653,
+ 41.78156014366953
+ ],
+ [
+ 69.20390838303264,
+ 41.78156014366953
+ ],
+ [
+ 69.31875106651633,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 42.365503348454894
+ ],
+ [
+ 69.20390838303264,
+ 42.560151083383346
+ ],
+ [
+ 68.9742230160653,
+ 42.560151083383346
+ ],
+ [
+ 68.85938033258161,
+ 42.365503348454894
+ ],
+ [
+ 68.9742230160653,
+ 42.17085561352644
+ ],
+ [
+ 69.20390838303264,
+ 42.17085561352644
+ ],
+ [
+ 69.31875106651633,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 42.754798818311805
+ ],
+ [
+ 69.20390838303264,
+ 42.94944655324026
+ ],
+ [
+ 68.9742230160653,
+ 42.94944655324026
+ ],
+ [
+ 68.85938033258161,
+ 42.754798818311805
+ ],
+ [
+ 68.9742230160653,
+ 42.56015108338335
+ ],
+ [
+ 69.20390838303264,
+ 42.56015108338335
+ ],
+ [
+ 69.31875106651633,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 43.14409428816871
+ ],
+ [
+ 69.20390838303264,
+ 43.33874202309716
+ ],
+ [
+ 68.9742230160653,
+ 43.33874202309716
+ ],
+ [
+ 68.85938033258161,
+ 43.14409428816871
+ ],
+ [
+ 68.9742230160653,
+ 42.94944655324026
+ ],
+ [
+ 69.20390838303264,
+ 42.94944655324026
+ ],
+ [
+ 69.31875106651633,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 43.53338975802561
+ ],
+ [
+ 69.20390838303264,
+ 43.728037492954066
+ ],
+ [
+ 68.9742230160653,
+ 43.728037492954066
+ ],
+ [
+ 68.85938033258161,
+ 43.53338975802561
+ ],
+ [
+ 68.9742230160653,
+ 43.33874202309716
+ ],
+ [
+ 69.20390838303264,
+ 43.33874202309716
+ ],
+ [
+ 69.31875106651633,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 43.92268522788252
+ ],
+ [
+ 69.20390838303264,
+ 44.11733296281097
+ ],
+ [
+ 68.9742230160653,
+ 44.11733296281097
+ ],
+ [
+ 68.85938033258161,
+ 43.92268522788252
+ ],
+ [
+ 68.9742230160653,
+ 43.728037492954066
+ ],
+ [
+ 69.20390838303264,
+ 43.728037492954066
+ ],
+ [
+ 69.31875106651633,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 44.31198069773942
+ ],
+ [
+ 69.20390838303264,
+ 44.506628432667874
+ ],
+ [
+ 68.9742230160653,
+ 44.506628432667874
+ ],
+ [
+ 68.85938033258161,
+ 44.31198069773942
+ ],
+ [
+ 68.9742230160653,
+ 44.11733296281097
+ ],
+ [
+ 69.20390838303264,
+ 44.11733296281097
+ ],
+ [
+ 69.31875106651633,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 44.701276167596326
+ ],
+ [
+ 69.20390838303264,
+ 44.89592390252478
+ ],
+ [
+ 68.9742230160653,
+ 44.89592390252478
+ ],
+ [
+ 68.85938033258161,
+ 44.701276167596326
+ ],
+ [
+ 68.9742230160653,
+ 44.506628432667874
+ ],
+ [
+ 69.20390838303264,
+ 44.506628432667874
+ ],
+ [
+ 69.31875106651633,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 45.090571637453245
+ ],
+ [
+ 69.20390838303264,
+ 45.2852193723817
+ ],
+ [
+ 68.9742230160653,
+ 45.2852193723817
+ ],
+ [
+ 68.85938033258161,
+ 45.090571637453245
+ ],
+ [
+ 68.9742230160653,
+ 44.89592390252479
+ ],
+ [
+ 69.20390838303264,
+ 44.89592390252479
+ ],
+ [
+ 69.31875106651633,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 45.47986710731015
+ ],
+ [
+ 69.20390838303264,
+ 45.6745148422386
+ ],
+ [
+ 68.9742230160653,
+ 45.6745148422386
+ ],
+ [
+ 68.85938033258161,
+ 45.47986710731015
+ ],
+ [
+ 68.9742230160653,
+ 45.2852193723817
+ ],
+ [
+ 69.20390838303264,
+ 45.2852193723817
+ ],
+ [
+ 69.31875106651633,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 45.86916257716705
+ ],
+ [
+ 69.20390838303264,
+ 46.063810312095505
+ ],
+ [
+ 68.9742230160653,
+ 46.063810312095505
+ ],
+ [
+ 68.85938033258161,
+ 45.86916257716705
+ ],
+ [
+ 68.9742230160653,
+ 45.6745148422386
+ ],
+ [
+ 69.20390838303264,
+ 45.6745148422386
+ ],
+ [
+ 69.31875106651633,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 46.25845804702396
+ ],
+ [
+ 69.20390838303264,
+ 46.45310578195241
+ ],
+ [
+ 68.9742230160653,
+ 46.45310578195241
+ ],
+ [
+ 68.85938033258161,
+ 46.25845804702396
+ ],
+ [
+ 68.9742230160653,
+ 46.063810312095505
+ ],
+ [
+ 69.20390838303264,
+ 46.063810312095505
+ ],
+ [
+ 69.31875106651633,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 46.64775351688086
+ ],
+ [
+ 69.20390838303264,
+ 46.842401251809314
+ ],
+ [
+ 68.9742230160653,
+ 46.842401251809314
+ ],
+ [
+ 68.85938033258161,
+ 46.64775351688086
+ ],
+ [
+ 68.9742230160653,
+ 46.45310578195241
+ ],
+ [
+ 69.20390838303264,
+ 46.45310578195241
+ ],
+ [
+ 69.31875106651633,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 47.037048986737766
+ ],
+ [
+ 69.20390838303264,
+ 47.23169672166622
+ ],
+ [
+ 68.9742230160653,
+ 47.23169672166622
+ ],
+ [
+ 68.85938033258161,
+ 47.037048986737766
+ ],
+ [
+ 68.9742230160653,
+ 46.842401251809314
+ ],
+ [
+ 69.20390838303264,
+ 46.842401251809314
+ ],
+ [
+ 69.31875106651633,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 47.42634445659467
+ ],
+ [
+ 69.20390838303264,
+ 47.62099219152312
+ ],
+ [
+ 68.9742230160653,
+ 47.62099219152312
+ ],
+ [
+ 68.85938033258161,
+ 47.42634445659467
+ ],
+ [
+ 68.9742230160653,
+ 47.23169672166622
+ ],
+ [
+ 69.20390838303264,
+ 47.23169672166622
+ ],
+ [
+ 69.31875106651633,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.31875106651633,
+ 47.81563992645159
+ ],
+ [
+ 69.20390838303264,
+ 48.01028766138004
+ ],
+ [
+ 68.9742230160653,
+ 48.01028766138004
+ ],
+ [
+ 68.85938033258161,
+ 47.81563992645159
+ ],
+ [
+ 68.9742230160653,
+ 47.620992191523136
+ ],
+ [
+ 69.20390838303264,
+ 47.620992191523136
+ ],
+ [
+ 69.31875106651633,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 11.805808964687746
+ ],
+ [
+ 69.54843643348367,
+ 12.0004566996162
+ ],
+ [
+ 69.31875106651633,
+ 12.0004566996162
+ ],
+ [
+ 69.20390838303264,
+ 11.805808964687746
+ ],
+ [
+ 69.31875106651633,
+ 11.611161229759292
+ ],
+ [
+ 69.54843643348367,
+ 11.611161229759292
+ ],
+ [
+ 69.66327911696736,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 12.195104434544652
+ ],
+ [
+ 69.54843643348367,
+ 12.389752169473105
+ ],
+ [
+ 69.31875106651633,
+ 12.389752169473105
+ ],
+ [
+ 69.20390838303264,
+ 12.195104434544652
+ ],
+ [
+ 69.31875106651633,
+ 12.000456699616198
+ ],
+ [
+ 69.54843643348367,
+ 12.000456699616198
+ ],
+ [
+ 69.66327911696736,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 12.58439990440156
+ ],
+ [
+ 69.54843643348367,
+ 12.779047639330013
+ ],
+ [
+ 69.31875106651633,
+ 12.779047639330013
+ ],
+ [
+ 69.20390838303264,
+ 12.58439990440156
+ ],
+ [
+ 69.31875106651633,
+ 12.389752169473105
+ ],
+ [
+ 69.54843643348367,
+ 12.389752169473105
+ ],
+ [
+ 69.66327911696736,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 12.973695374258465
+ ],
+ [
+ 69.54843643348367,
+ 13.16834310918692
+ ],
+ [
+ 69.31875106651633,
+ 13.16834310918692
+ ],
+ [
+ 69.20390838303264,
+ 12.973695374258465
+ ],
+ [
+ 69.31875106651633,
+ 12.779047639330011
+ ],
+ [
+ 69.54843643348367,
+ 12.779047639330011
+ ],
+ [
+ 69.66327911696736,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 13.362990844115371
+ ],
+ [
+ 69.54843643348367,
+ 13.557638579043825
+ ],
+ [
+ 69.31875106651633,
+ 13.557638579043825
+ ],
+ [
+ 69.20390838303264,
+ 13.362990844115371
+ ],
+ [
+ 69.31875106651633,
+ 13.168343109186917
+ ],
+ [
+ 69.54843643348367,
+ 13.168343109186917
+ ],
+ [
+ 69.66327911696736,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 13.752286313972277
+ ],
+ [
+ 69.54843643348367,
+ 13.946934048900731
+ ],
+ [
+ 69.31875106651633,
+ 13.946934048900731
+ ],
+ [
+ 69.20390838303264,
+ 13.752286313972277
+ ],
+ [
+ 69.31875106651633,
+ 13.557638579043823
+ ],
+ [
+ 69.54843643348367,
+ 13.557638579043823
+ ],
+ [
+ 69.66327911696736,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 14.141581783829183
+ ],
+ [
+ 69.54843643348367,
+ 14.336229518757637
+ ],
+ [
+ 69.31875106651633,
+ 14.336229518757637
+ ],
+ [
+ 69.20390838303264,
+ 14.141581783829183
+ ],
+ [
+ 69.31875106651633,
+ 13.94693404890073
+ ],
+ [
+ 69.54843643348367,
+ 13.94693404890073
+ ],
+ [
+ 69.66327911696736,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 14.530877253686091
+ ],
+ [
+ 69.54843643348367,
+ 14.725524988614545
+ ],
+ [
+ 69.31875106651633,
+ 14.725524988614545
+ ],
+ [
+ 69.20390838303264,
+ 14.530877253686091
+ ],
+ [
+ 69.31875106651633,
+ 14.336229518757637
+ ],
+ [
+ 69.54843643348367,
+ 14.336229518757637
+ ],
+ [
+ 69.66327911696736,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 14.920172723542997
+ ],
+ [
+ 69.54843643348367,
+ 15.114820458471451
+ ],
+ [
+ 69.31875106651633,
+ 15.114820458471451
+ ],
+ [
+ 69.20390838303264,
+ 14.920172723542997
+ ],
+ [
+ 69.31875106651633,
+ 14.725524988614543
+ ],
+ [
+ 69.54843643348367,
+ 14.725524988614543
+ ],
+ [
+ 69.66327911696736,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 15.309468193399903
+ ],
+ [
+ 69.54843643348367,
+ 15.504115928328357
+ ],
+ [
+ 69.31875106651633,
+ 15.504115928328357
+ ],
+ [
+ 69.20390838303264,
+ 15.309468193399903
+ ],
+ [
+ 69.31875106651633,
+ 15.11482045847145
+ ],
+ [
+ 69.54843643348367,
+ 15.11482045847145
+ ],
+ [
+ 69.66327911696736,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 15.69876366325681
+ ],
+ [
+ 69.54843643348367,
+ 15.893411398185265
+ ],
+ [
+ 69.31875106651633,
+ 15.893411398185265
+ ],
+ [
+ 69.20390838303264,
+ 15.69876366325681
+ ],
+ [
+ 69.31875106651633,
+ 15.504115928328357
+ ],
+ [
+ 69.54843643348367,
+ 15.504115928328357
+ ],
+ [
+ 69.66327911696736,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 16.088059133113717
+ ],
+ [
+ 69.54843643348367,
+ 16.28270686804217
+ ],
+ [
+ 69.31875106651633,
+ 16.28270686804217
+ ],
+ [
+ 69.20390838303264,
+ 16.088059133113717
+ ],
+ [
+ 69.31875106651633,
+ 15.893411398185263
+ ],
+ [
+ 69.54843643348367,
+ 15.893411398185263
+ ],
+ [
+ 69.66327911696736,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 16.477354602970625
+ ],
+ [
+ 69.54843643348367,
+ 16.672002337899077
+ ],
+ [
+ 69.31875106651633,
+ 16.672002337899077
+ ],
+ [
+ 69.20390838303264,
+ 16.477354602970625
+ ],
+ [
+ 69.31875106651633,
+ 16.282706868042172
+ ],
+ [
+ 69.54843643348367,
+ 16.282706868042172
+ ],
+ [
+ 69.66327911696736,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 16.86665007282753
+ ],
+ [
+ 69.54843643348367,
+ 17.06129780775598
+ ],
+ [
+ 69.31875106651633,
+ 17.06129780775598
+ ],
+ [
+ 69.20390838303264,
+ 16.86665007282753
+ ],
+ [
+ 69.31875106651633,
+ 16.672002337899077
+ ],
+ [
+ 69.54843643348367,
+ 16.672002337899077
+ ],
+ [
+ 69.66327911696736,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 17.255945542684437
+ ],
+ [
+ 69.54843643348367,
+ 17.45059327761289
+ ],
+ [
+ 69.31875106651633,
+ 17.45059327761289
+ ],
+ [
+ 69.20390838303264,
+ 17.255945542684437
+ ],
+ [
+ 69.31875106651633,
+ 17.061297807755984
+ ],
+ [
+ 69.54843643348367,
+ 17.061297807755984
+ ],
+ [
+ 69.66327911696736,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 17.64524101254134
+ ],
+ [
+ 69.54843643348367,
+ 17.839888747469793
+ ],
+ [
+ 69.31875106651633,
+ 17.839888747469793
+ ],
+ [
+ 69.20390838303264,
+ 17.64524101254134
+ ],
+ [
+ 69.31875106651633,
+ 17.45059327761289
+ ],
+ [
+ 69.54843643348367,
+ 17.45059327761289
+ ],
+ [
+ 69.66327911696736,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 18.03453648239825
+ ],
+ [
+ 69.54843643348367,
+ 18.2291842173267
+ ],
+ [
+ 69.31875106651633,
+ 18.2291842173267
+ ],
+ [
+ 69.20390838303264,
+ 18.03453648239825
+ ],
+ [
+ 69.31875106651633,
+ 17.839888747469796
+ ],
+ [
+ 69.54843643348367,
+ 17.839888747469796
+ ],
+ [
+ 69.66327911696736,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 18.423831952255156
+ ],
+ [
+ 69.54843643348367,
+ 18.61847968718361
+ ],
+ [
+ 69.31875106651633,
+ 18.61847968718361
+ ],
+ [
+ 69.20390838303264,
+ 18.423831952255156
+ ],
+ [
+ 69.31875106651633,
+ 18.229184217326704
+ ],
+ [
+ 69.54843643348367,
+ 18.229184217326704
+ ],
+ [
+ 69.66327911696736,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 18.81312742211206
+ ],
+ [
+ 69.54843643348367,
+ 19.007775157040513
+ ],
+ [
+ 69.31875106651633,
+ 19.007775157040513
+ ],
+ [
+ 69.20390838303264,
+ 18.81312742211206
+ ],
+ [
+ 69.31875106651633,
+ 18.61847968718361
+ ],
+ [
+ 69.54843643348367,
+ 18.61847968718361
+ ],
+ [
+ 69.66327911696736,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 19.20242289196897
+ ],
+ [
+ 69.54843643348367,
+ 19.39707062689742
+ ],
+ [
+ 69.31875106651633,
+ 19.39707062689742
+ ],
+ [
+ 69.20390838303264,
+ 19.20242289196897
+ ],
+ [
+ 69.31875106651633,
+ 19.007775157040516
+ ],
+ [
+ 69.54843643348367,
+ 19.007775157040516
+ ],
+ [
+ 69.66327911696736,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 19.591718361825876
+ ],
+ [
+ 69.54843643348367,
+ 19.78636609675433
+ ],
+ [
+ 69.31875106651633,
+ 19.78636609675433
+ ],
+ [
+ 69.20390838303264,
+ 19.591718361825876
+ ],
+ [
+ 69.31875106651633,
+ 19.397070626897424
+ ],
+ [
+ 69.54843643348367,
+ 19.397070626897424
+ ],
+ [
+ 69.66327911696736,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 19.98101383168278
+ ],
+ [
+ 69.54843643348367,
+ 20.175661566611232
+ ],
+ [
+ 69.31875106651633,
+ 20.175661566611232
+ ],
+ [
+ 69.20390838303264,
+ 19.98101383168278
+ ],
+ [
+ 69.31875106651633,
+ 19.78636609675433
+ ],
+ [
+ 69.54843643348367,
+ 19.78636609675433
+ ],
+ [
+ 69.66327911696736,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 20.370309301539685
+ ],
+ [
+ 69.54843643348367,
+ 20.564957036468137
+ ],
+ [
+ 69.31875106651633,
+ 20.564957036468137
+ ],
+ [
+ 69.20390838303264,
+ 20.370309301539685
+ ],
+ [
+ 69.31875106651633,
+ 20.175661566611232
+ ],
+ [
+ 69.54843643348367,
+ 20.175661566611232
+ ],
+ [
+ 69.66327911696736,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 20.759604771396592
+ ],
+ [
+ 69.54843643348367,
+ 20.954252506325044
+ ],
+ [
+ 69.31875106651633,
+ 20.954252506325044
+ ],
+ [
+ 69.20390838303264,
+ 20.759604771396592
+ ],
+ [
+ 69.31875106651633,
+ 20.56495703646814
+ ],
+ [
+ 69.54843643348367,
+ 20.56495703646814
+ ],
+ [
+ 69.66327911696736,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 21.1489002412535
+ ],
+ [
+ 69.54843643348367,
+ 21.343547976181952
+ ],
+ [
+ 69.31875106651633,
+ 21.343547976181952
+ ],
+ [
+ 69.20390838303264,
+ 21.1489002412535
+ ],
+ [
+ 69.31875106651633,
+ 20.954252506325048
+ ],
+ [
+ 69.54843643348367,
+ 20.954252506325048
+ ],
+ [
+ 69.66327911696736,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 21.538195711110404
+ ],
+ [
+ 69.54843643348367,
+ 21.732843446038856
+ ],
+ [
+ 69.31875106651633,
+ 21.732843446038856
+ ],
+ [
+ 69.20390838303264,
+ 21.538195711110404
+ ],
+ [
+ 69.31875106651633,
+ 21.343547976181952
+ ],
+ [
+ 69.54843643348367,
+ 21.343547976181952
+ ],
+ [
+ 69.66327911696736,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 21.927491180967312
+ ],
+ [
+ 69.54843643348367,
+ 22.122138915895764
+ ],
+ [
+ 69.31875106651633,
+ 22.122138915895764
+ ],
+ [
+ 69.20390838303264,
+ 21.927491180967312
+ ],
+ [
+ 69.31875106651633,
+ 21.73284344603886
+ ],
+ [
+ 69.54843643348367,
+ 21.73284344603886
+ ],
+ [
+ 69.66327911696736,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 22.31678665082422
+ ],
+ [
+ 69.54843643348367,
+ 22.511434385752672
+ ],
+ [
+ 69.31875106651633,
+ 22.511434385752672
+ ],
+ [
+ 69.20390838303264,
+ 22.31678665082422
+ ],
+ [
+ 69.31875106651633,
+ 22.122138915895768
+ ],
+ [
+ 69.54843643348367,
+ 22.122138915895768
+ ],
+ [
+ 69.66327911696736,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 22.706082120681124
+ ],
+ [
+ 69.54843643348367,
+ 22.900729855609576
+ ],
+ [
+ 69.31875106651633,
+ 22.900729855609576
+ ],
+ [
+ 69.20390838303264,
+ 22.706082120681124
+ ],
+ [
+ 69.31875106651633,
+ 22.511434385752672
+ ],
+ [
+ 69.54843643348367,
+ 22.511434385752672
+ ],
+ [
+ 69.66327911696736,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 23.095377590538032
+ ],
+ [
+ 69.54843643348367,
+ 23.290025325466484
+ ],
+ [
+ 69.31875106651633,
+ 23.290025325466484
+ ],
+ [
+ 69.20390838303264,
+ 23.095377590538032
+ ],
+ [
+ 69.31875106651633,
+ 22.90072985560958
+ ],
+ [
+ 69.54843643348367,
+ 22.90072985560958
+ ],
+ [
+ 69.66327911696736,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 23.48467306039494
+ ],
+ [
+ 69.54843643348367,
+ 23.67932079532339
+ ],
+ [
+ 69.31875106651633,
+ 23.67932079532339
+ ],
+ [
+ 69.20390838303264,
+ 23.48467306039494
+ ],
+ [
+ 69.31875106651633,
+ 23.290025325466488
+ ],
+ [
+ 69.54843643348367,
+ 23.290025325466488
+ ],
+ [
+ 69.66327911696736,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 23.873968530251844
+ ],
+ [
+ 69.54843643348367,
+ 24.068616265180296
+ ],
+ [
+ 69.31875106651633,
+ 24.068616265180296
+ ],
+ [
+ 69.20390838303264,
+ 23.873968530251844
+ ],
+ [
+ 69.31875106651633,
+ 23.67932079532339
+ ],
+ [
+ 69.54843643348367,
+ 23.67932079532339
+ ],
+ [
+ 69.66327911696736,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 24.263264000108748
+ ],
+ [
+ 69.54843643348367,
+ 24.4579117350372
+ ],
+ [
+ 69.31875106651633,
+ 24.4579117350372
+ ],
+ [
+ 69.20390838303264,
+ 24.263264000108748
+ ],
+ [
+ 69.31875106651633,
+ 24.068616265180296
+ ],
+ [
+ 69.54843643348367,
+ 24.068616265180296
+ ],
+ [
+ 69.66327911696736,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 24.652559469965656
+ ],
+ [
+ 69.54843643348367,
+ 24.847207204894108
+ ],
+ [
+ 69.31875106651633,
+ 24.847207204894108
+ ],
+ [
+ 69.20390838303264,
+ 24.652559469965656
+ ],
+ [
+ 69.31875106651633,
+ 24.457911735037204
+ ],
+ [
+ 69.54843643348367,
+ 24.457911735037204
+ ],
+ [
+ 69.66327911696736,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 25.041854939822564
+ ],
+ [
+ 69.54843643348367,
+ 25.236502674751016
+ ],
+ [
+ 69.31875106651633,
+ 25.236502674751016
+ ],
+ [
+ 69.20390838303264,
+ 25.041854939822564
+ ],
+ [
+ 69.31875106651633,
+ 24.84720720489411
+ ],
+ [
+ 69.54843643348367,
+ 24.84720720489411
+ ],
+ [
+ 69.66327911696736,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 25.431150409679468
+ ],
+ [
+ 69.54843643348367,
+ 25.62579814460792
+ ],
+ [
+ 69.31875106651633,
+ 25.62579814460792
+ ],
+ [
+ 69.20390838303264,
+ 25.431150409679468
+ ],
+ [
+ 69.31875106651633,
+ 25.236502674751016
+ ],
+ [
+ 69.54843643348367,
+ 25.236502674751016
+ ],
+ [
+ 69.66327911696736,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 25.820445879536376
+ ],
+ [
+ 69.54843643348367,
+ 26.015093614464828
+ ],
+ [
+ 69.31875106651633,
+ 26.015093614464828
+ ],
+ [
+ 69.20390838303264,
+ 25.820445879536376
+ ],
+ [
+ 69.31875106651633,
+ 25.625798144607923
+ ],
+ [
+ 69.54843643348367,
+ 25.625798144607923
+ ],
+ [
+ 69.66327911696736,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 26.209741349393283
+ ],
+ [
+ 69.54843643348367,
+ 26.404389084321735
+ ],
+ [
+ 69.31875106651633,
+ 26.404389084321735
+ ],
+ [
+ 69.20390838303264,
+ 26.209741349393283
+ ],
+ [
+ 69.31875106651633,
+ 26.01509361446483
+ ],
+ [
+ 69.54843643348367,
+ 26.01509361446483
+ ],
+ [
+ 69.66327911696736,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 26.599036819250188
+ ],
+ [
+ 69.54843643348367,
+ 26.79368455417864
+ ],
+ [
+ 69.31875106651633,
+ 26.79368455417864
+ ],
+ [
+ 69.20390838303264,
+ 26.599036819250188
+ ],
+ [
+ 69.31875106651633,
+ 26.404389084321735
+ ],
+ [
+ 69.54843643348367,
+ 26.404389084321735
+ ],
+ [
+ 69.66327911696736,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 26.988332289107095
+ ],
+ [
+ 69.54843643348367,
+ 27.182980024035547
+ ],
+ [
+ 69.31875106651633,
+ 27.182980024035547
+ ],
+ [
+ 69.20390838303264,
+ 26.988332289107095
+ ],
+ [
+ 69.31875106651633,
+ 26.793684554178643
+ ],
+ [
+ 69.54843643348367,
+ 26.793684554178643
+ ],
+ [
+ 69.66327911696736,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 27.377627758964003
+ ],
+ [
+ 69.54843643348367,
+ 27.572275493892455
+ ],
+ [
+ 69.31875106651633,
+ 27.572275493892455
+ ],
+ [
+ 69.20390838303264,
+ 27.377627758964003
+ ],
+ [
+ 69.31875106651633,
+ 27.18298002403555
+ ],
+ [
+ 69.54843643348367,
+ 27.18298002403555
+ ],
+ [
+ 69.66327911696736,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 27.766923228820907
+ ],
+ [
+ 69.54843643348367,
+ 27.96157096374936
+ ],
+ [
+ 69.31875106651633,
+ 27.96157096374936
+ ],
+ [
+ 69.20390838303264,
+ 27.766923228820907
+ ],
+ [
+ 69.31875106651633,
+ 27.572275493892455
+ ],
+ [
+ 69.54843643348367,
+ 27.572275493892455
+ ],
+ [
+ 69.66327911696736,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 28.156218698677815
+ ],
+ [
+ 69.54843643348367,
+ 28.350866433606267
+ ],
+ [
+ 69.31875106651633,
+ 28.350866433606267
+ ],
+ [
+ 69.20390838303264,
+ 28.156218698677815
+ ],
+ [
+ 69.31875106651633,
+ 27.961570963749363
+ ],
+ [
+ 69.54843643348367,
+ 27.961570963749363
+ ],
+ [
+ 69.66327911696736,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 28.54551416853472
+ ],
+ [
+ 69.54843643348367,
+ 28.74016190346317
+ ],
+ [
+ 69.31875106651633,
+ 28.74016190346317
+ ],
+ [
+ 69.20390838303264,
+ 28.54551416853472
+ ],
+ [
+ 69.31875106651633,
+ 28.350866433606267
+ ],
+ [
+ 69.54843643348367,
+ 28.350866433606267
+ ],
+ [
+ 69.66327911696736,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 28.934809638391627
+ ],
+ [
+ 69.54843643348367,
+ 29.12945737332008
+ ],
+ [
+ 69.31875106651633,
+ 29.12945737332008
+ ],
+ [
+ 69.20390838303264,
+ 28.934809638391627
+ ],
+ [
+ 69.31875106651633,
+ 28.740161903463175
+ ],
+ [
+ 69.54843643348367,
+ 28.740161903463175
+ ],
+ [
+ 69.66327911696736,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 29.32410510824853
+ ],
+ [
+ 69.54843643348367,
+ 29.518752843176983
+ ],
+ [
+ 69.31875106651633,
+ 29.518752843176983
+ ],
+ [
+ 69.20390838303264,
+ 29.32410510824853
+ ],
+ [
+ 69.31875106651633,
+ 29.12945737332008
+ ],
+ [
+ 69.54843643348367,
+ 29.12945737332008
+ ],
+ [
+ 69.66327911696736,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 29.71340057810544
+ ],
+ [
+ 69.54843643348367,
+ 29.90804831303389
+ ],
+ [
+ 69.31875106651633,
+ 29.90804831303389
+ ],
+ [
+ 69.20390838303264,
+ 29.71340057810544
+ ],
+ [
+ 69.31875106651633,
+ 29.518752843176987
+ ],
+ [
+ 69.54843643348367,
+ 29.518752843176987
+ ],
+ [
+ 69.66327911696736,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 30.102696047962343
+ ],
+ [
+ 69.54843643348367,
+ 30.297343782890795
+ ],
+ [
+ 69.31875106651633,
+ 30.297343782890795
+ ],
+ [
+ 69.20390838303264,
+ 30.102696047962343
+ ],
+ [
+ 69.31875106651633,
+ 29.90804831303389
+ ],
+ [
+ 69.54843643348367,
+ 29.90804831303389
+ ],
+ [
+ 69.66327911696736,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 30.49199151781925
+ ],
+ [
+ 69.54843643348367,
+ 30.686639252747703
+ ],
+ [
+ 69.31875106651633,
+ 30.686639252747703
+ ],
+ [
+ 69.20390838303264,
+ 30.49199151781925
+ ],
+ [
+ 69.31875106651633,
+ 30.2973437828908
+ ],
+ [
+ 69.54843643348367,
+ 30.2973437828908
+ ],
+ [
+ 69.66327911696736,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 30.88128698767616
+ ],
+ [
+ 69.54843643348367,
+ 31.07593472260461
+ ],
+ [
+ 69.31875106651633,
+ 31.07593472260461
+ ],
+ [
+ 69.20390838303264,
+ 30.88128698767616
+ ],
+ [
+ 69.31875106651633,
+ 30.686639252747707
+ ],
+ [
+ 69.54843643348367,
+ 30.686639252747707
+ ],
+ [
+ 69.66327911696736,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 31.270582457533063
+ ],
+ [
+ 69.54843643348367,
+ 31.465230192461515
+ ],
+ [
+ 69.31875106651633,
+ 31.465230192461515
+ ],
+ [
+ 69.20390838303264,
+ 31.270582457533063
+ ],
+ [
+ 69.31875106651633,
+ 31.07593472260461
+ ],
+ [
+ 69.54843643348367,
+ 31.07593472260461
+ ],
+ [
+ 69.66327911696736,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 31.65987792738997
+ ],
+ [
+ 69.54843643348367,
+ 31.854525662318423
+ ],
+ [
+ 69.31875106651633,
+ 31.854525662318423
+ ],
+ [
+ 69.20390838303264,
+ 31.65987792738997
+ ],
+ [
+ 69.31875106651633,
+ 31.46523019246152
+ ],
+ [
+ 69.54843643348367,
+ 31.46523019246152
+ ],
+ [
+ 69.66327911696736,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 32.049173397246875
+ ],
+ [
+ 69.54843643348367,
+ 32.24382113217533
+ ],
+ [
+ 69.31875106651633,
+ 32.24382113217533
+ ],
+ [
+ 69.20390838303264,
+ 32.049173397246875
+ ],
+ [
+ 69.31875106651633,
+ 31.854525662318423
+ ],
+ [
+ 69.54843643348367,
+ 31.854525662318423
+ ],
+ [
+ 69.66327911696736,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 32.438468867103786
+ ],
+ [
+ 69.54843643348367,
+ 32.63311660203224
+ ],
+ [
+ 69.31875106651633,
+ 32.63311660203224
+ ],
+ [
+ 69.20390838303264,
+ 32.438468867103786
+ ],
+ [
+ 69.31875106651633,
+ 32.243821132175334
+ ],
+ [
+ 69.54843643348367,
+ 32.243821132175334
+ ],
+ [
+ 69.66327911696736,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 32.82776433696069
+ ],
+ [
+ 69.54843643348367,
+ 33.02241207188914
+ ],
+ [
+ 69.31875106651633,
+ 33.02241207188914
+ ],
+ [
+ 69.20390838303264,
+ 32.82776433696069
+ ],
+ [
+ 69.31875106651633,
+ 32.63311660203224
+ ],
+ [
+ 69.54843643348367,
+ 32.63311660203224
+ ],
+ [
+ 69.66327911696736,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 33.217059806817595
+ ],
+ [
+ 69.54843643348367,
+ 33.41170754174605
+ ],
+ [
+ 69.31875106651633,
+ 33.41170754174605
+ ],
+ [
+ 69.20390838303264,
+ 33.217059806817595
+ ],
+ [
+ 69.31875106651633,
+ 33.02241207188914
+ ],
+ [
+ 69.54843643348367,
+ 33.02241207188914
+ ],
+ [
+ 69.66327911696736,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 33.6063552766745
+ ],
+ [
+ 69.54843643348367,
+ 33.80100301160295
+ ],
+ [
+ 69.31875106651633,
+ 33.80100301160295
+ ],
+ [
+ 69.20390838303264,
+ 33.6063552766745
+ ],
+ [
+ 69.31875106651633,
+ 33.41170754174605
+ ],
+ [
+ 69.54843643348367,
+ 33.41170754174605
+ ],
+ [
+ 69.66327911696736,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 33.9956507465314
+ ],
+ [
+ 69.54843643348367,
+ 34.190298481459855
+ ],
+ [
+ 69.31875106651633,
+ 34.190298481459855
+ ],
+ [
+ 69.20390838303264,
+ 33.9956507465314
+ ],
+ [
+ 69.31875106651633,
+ 33.80100301160295
+ ],
+ [
+ 69.54843643348367,
+ 33.80100301160295
+ ],
+ [
+ 69.66327911696736,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 34.384946216388315
+ ],
+ [
+ 69.54843643348367,
+ 34.57959395131677
+ ],
+ [
+ 69.31875106651633,
+ 34.57959395131677
+ ],
+ [
+ 69.20390838303264,
+ 34.384946216388315
+ ],
+ [
+ 69.31875106651633,
+ 34.19029848145986
+ ],
+ [
+ 69.54843643348367,
+ 34.19029848145986
+ ],
+ [
+ 69.66327911696736,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 34.774241686245226
+ ],
+ [
+ 69.54843643348367,
+ 34.96888942117368
+ ],
+ [
+ 69.31875106651633,
+ 34.96888942117368
+ ],
+ [
+ 69.20390838303264,
+ 34.774241686245226
+ ],
+ [
+ 69.31875106651633,
+ 34.579593951316774
+ ],
+ [
+ 69.54843643348367,
+ 34.579593951316774
+ ],
+ [
+ 69.66327911696736,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 35.16353715610213
+ ],
+ [
+ 69.54843643348367,
+ 35.35818489103058
+ ],
+ [
+ 69.31875106651633,
+ 35.35818489103058
+ ],
+ [
+ 69.20390838303264,
+ 35.16353715610213
+ ],
+ [
+ 69.31875106651633,
+ 34.96888942117368
+ ],
+ [
+ 69.54843643348367,
+ 34.96888942117368
+ ],
+ [
+ 69.66327911696736,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 35.552832625959034
+ ],
+ [
+ 69.54843643348367,
+ 35.74748036088749
+ ],
+ [
+ 69.31875106651633,
+ 35.74748036088749
+ ],
+ [
+ 69.20390838303264,
+ 35.552832625959034
+ ],
+ [
+ 69.31875106651633,
+ 35.35818489103058
+ ],
+ [
+ 69.54843643348367,
+ 35.35818489103058
+ ],
+ [
+ 69.66327911696736,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 35.94212809581594
+ ],
+ [
+ 69.54843643348367,
+ 36.13677583074439
+ ],
+ [
+ 69.31875106651633,
+ 36.13677583074439
+ ],
+ [
+ 69.20390838303264,
+ 35.94212809581594
+ ],
+ [
+ 69.31875106651633,
+ 35.74748036088749
+ ],
+ [
+ 69.54843643348367,
+ 35.74748036088749
+ ],
+ [
+ 69.66327911696736,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 36.33142356567284
+ ],
+ [
+ 69.54843643348367,
+ 36.526071300601295
+ ],
+ [
+ 69.31875106651633,
+ 36.526071300601295
+ ],
+ [
+ 69.20390838303264,
+ 36.33142356567284
+ ],
+ [
+ 69.31875106651633,
+ 36.13677583074439
+ ],
+ [
+ 69.54843643348367,
+ 36.13677583074439
+ ],
+ [
+ 69.66327911696736,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 36.720719035529754
+ ],
+ [
+ 69.54843643348367,
+ 36.915366770458206
+ ],
+ [
+ 69.31875106651633,
+ 36.915366770458206
+ ],
+ [
+ 69.20390838303264,
+ 36.720719035529754
+ ],
+ [
+ 69.31875106651633,
+ 36.5260713006013
+ ],
+ [
+ 69.54843643348367,
+ 36.5260713006013
+ ],
+ [
+ 69.66327911696736,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 37.11001450538666
+ ],
+ [
+ 69.54843643348367,
+ 37.30466224031511
+ ],
+ [
+ 69.31875106651633,
+ 37.30466224031511
+ ],
+ [
+ 69.20390838303264,
+ 37.11001450538666
+ ],
+ [
+ 69.31875106651633,
+ 36.915366770458206
+ ],
+ [
+ 69.54843643348367,
+ 36.915366770458206
+ ],
+ [
+ 69.66327911696736,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 37.49930997524357
+ ],
+ [
+ 69.54843643348367,
+ 37.69395771017202
+ ],
+ [
+ 69.31875106651633,
+ 37.69395771017202
+ ],
+ [
+ 69.20390838303264,
+ 37.49930997524357
+ ],
+ [
+ 69.31875106651633,
+ 37.30466224031512
+ ],
+ [
+ 69.54843643348367,
+ 37.30466224031512
+ ],
+ [
+ 69.66327911696736,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 37.888605445100474
+ ],
+ [
+ 69.54843643348367,
+ 38.083253180028926
+ ],
+ [
+ 69.31875106651633,
+ 38.083253180028926
+ ],
+ [
+ 69.20390838303264,
+ 37.888605445100474
+ ],
+ [
+ 69.31875106651633,
+ 37.69395771017202
+ ],
+ [
+ 69.54843643348367,
+ 37.69395771017202
+ ],
+ [
+ 69.66327911696736,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 38.27790091495738
+ ],
+ [
+ 69.54843643348367,
+ 38.47254864988583
+ ],
+ [
+ 69.31875106651633,
+ 38.47254864988583
+ ],
+ [
+ 69.20390838303264,
+ 38.27790091495738
+ ],
+ [
+ 69.31875106651633,
+ 38.083253180028926
+ ],
+ [
+ 69.54843643348367,
+ 38.083253180028926
+ ],
+ [
+ 69.66327911696736,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 38.66719638481428
+ ],
+ [
+ 69.54843643348367,
+ 38.861844119742734
+ ],
+ [
+ 69.31875106651633,
+ 38.861844119742734
+ ],
+ [
+ 69.20390838303264,
+ 38.66719638481428
+ ],
+ [
+ 69.31875106651633,
+ 38.47254864988583
+ ],
+ [
+ 69.54843643348367,
+ 38.47254864988583
+ ],
+ [
+ 69.66327911696736,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 39.05649185467119
+ ],
+ [
+ 69.54843643348367,
+ 39.25113958959964
+ ],
+ [
+ 69.31875106651633,
+ 39.25113958959964
+ ],
+ [
+ 69.20390838303264,
+ 39.05649185467119
+ ],
+ [
+ 69.31875106651633,
+ 38.861844119742734
+ ],
+ [
+ 69.54843643348367,
+ 38.861844119742734
+ ],
+ [
+ 69.66327911696736,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 39.4457873245281
+ ],
+ [
+ 69.54843643348367,
+ 39.64043505945655
+ ],
+ [
+ 69.31875106651633,
+ 39.64043505945655
+ ],
+ [
+ 69.20390838303264,
+ 39.4457873245281
+ ],
+ [
+ 69.31875106651633,
+ 39.251139589599646
+ ],
+ [
+ 69.54843643348367,
+ 39.251139589599646
+ ],
+ [
+ 69.66327911696736,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 39.835082794385
+ ],
+ [
+ 69.54843643348367,
+ 40.029730529313454
+ ],
+ [
+ 69.31875106651633,
+ 40.029730529313454
+ ],
+ [
+ 69.20390838303264,
+ 39.835082794385
+ ],
+ [
+ 69.31875106651633,
+ 39.64043505945655
+ ],
+ [
+ 69.54843643348367,
+ 39.64043505945655
+ ],
+ [
+ 69.66327911696736,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 40.22437826424191
+ ],
+ [
+ 69.54843643348367,
+ 40.419025999170366
+ ],
+ [
+ 69.31875106651633,
+ 40.419025999170366
+ ],
+ [
+ 69.20390838303264,
+ 40.22437826424191
+ ],
+ [
+ 69.31875106651633,
+ 40.02973052931346
+ ],
+ [
+ 69.54843643348367,
+ 40.02973052931346
+ ],
+ [
+ 69.66327911696736,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 40.61367373409882
+ ],
+ [
+ 69.54843643348367,
+ 40.80832146902727
+ ],
+ [
+ 69.31875106651633,
+ 40.80832146902727
+ ],
+ [
+ 69.20390838303264,
+ 40.61367373409882
+ ],
+ [
+ 69.31875106651633,
+ 40.419025999170366
+ ],
+ [
+ 69.54843643348367,
+ 40.419025999170366
+ ],
+ [
+ 69.66327911696736,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 41.00296920395572
+ ],
+ [
+ 69.54843643348367,
+ 41.197616938884174
+ ],
+ [
+ 69.31875106651633,
+ 41.197616938884174
+ ],
+ [
+ 69.20390838303264,
+ 41.00296920395572
+ ],
+ [
+ 69.31875106651633,
+ 40.80832146902727
+ ],
+ [
+ 69.54843643348367,
+ 40.80832146902727
+ ],
+ [
+ 69.66327911696736,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 41.392264673812626
+ ],
+ [
+ 69.54843643348367,
+ 41.58691240874108
+ ],
+ [
+ 69.31875106651633,
+ 41.58691240874108
+ ],
+ [
+ 69.20390838303264,
+ 41.392264673812626
+ ],
+ [
+ 69.31875106651633,
+ 41.197616938884174
+ ],
+ [
+ 69.54843643348367,
+ 41.197616938884174
+ ],
+ [
+ 69.66327911696736,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 41.78156014366953
+ ],
+ [
+ 69.54843643348367,
+ 41.97620787859798
+ ],
+ [
+ 69.31875106651633,
+ 41.97620787859798
+ ],
+ [
+ 69.20390838303264,
+ 41.78156014366953
+ ],
+ [
+ 69.31875106651633,
+ 41.58691240874108
+ ],
+ [
+ 69.54843643348367,
+ 41.58691240874108
+ ],
+ [
+ 69.66327911696736,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 42.17085561352644
+ ],
+ [
+ 69.54843643348367,
+ 42.365503348454894
+ ],
+ [
+ 69.31875106651633,
+ 42.365503348454894
+ ],
+ [
+ 69.20390838303264,
+ 42.17085561352644
+ ],
+ [
+ 69.31875106651633,
+ 41.97620787859799
+ ],
+ [
+ 69.54843643348367,
+ 41.97620787859799
+ ],
+ [
+ 69.66327911696736,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 42.56015108338335
+ ],
+ [
+ 69.54843643348367,
+ 42.754798818311805
+ ],
+ [
+ 69.31875106651633,
+ 42.754798818311805
+ ],
+ [
+ 69.20390838303264,
+ 42.56015108338335
+ ],
+ [
+ 69.31875106651633,
+ 42.3655033484549
+ ],
+ [
+ 69.54843643348367,
+ 42.3655033484549
+ ],
+ [
+ 69.66327911696736,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 42.94944655324026
+ ],
+ [
+ 69.54843643348367,
+ 43.14409428816871
+ ],
+ [
+ 69.31875106651633,
+ 43.14409428816871
+ ],
+ [
+ 69.20390838303264,
+ 42.94944655324026
+ ],
+ [
+ 69.31875106651633,
+ 42.754798818311805
+ ],
+ [
+ 69.54843643348367,
+ 42.754798818311805
+ ],
+ [
+ 69.66327911696736,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 43.33874202309716
+ ],
+ [
+ 69.54843643348367,
+ 43.53338975802561
+ ],
+ [
+ 69.31875106651633,
+ 43.53338975802561
+ ],
+ [
+ 69.20390838303264,
+ 43.33874202309716
+ ],
+ [
+ 69.31875106651633,
+ 43.14409428816871
+ ],
+ [
+ 69.54843643348367,
+ 43.14409428816871
+ ],
+ [
+ 69.66327911696736,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 43.728037492954066
+ ],
+ [
+ 69.54843643348367,
+ 43.92268522788252
+ ],
+ [
+ 69.31875106651633,
+ 43.92268522788252
+ ],
+ [
+ 69.20390838303264,
+ 43.728037492954066
+ ],
+ [
+ 69.31875106651633,
+ 43.53338975802561
+ ],
+ [
+ 69.54843643348367,
+ 43.53338975802561
+ ],
+ [
+ 69.66327911696736,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 44.11733296281097
+ ],
+ [
+ 69.54843643348367,
+ 44.31198069773942
+ ],
+ [
+ 69.31875106651633,
+ 44.31198069773942
+ ],
+ [
+ 69.20390838303264,
+ 44.11733296281097
+ ],
+ [
+ 69.31875106651633,
+ 43.92268522788252
+ ],
+ [
+ 69.54843643348367,
+ 43.92268522788252
+ ],
+ [
+ 69.66327911696736,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 44.506628432667874
+ ],
+ [
+ 69.54843643348367,
+ 44.701276167596326
+ ],
+ [
+ 69.31875106651633,
+ 44.701276167596326
+ ],
+ [
+ 69.20390838303264,
+ 44.506628432667874
+ ],
+ [
+ 69.31875106651633,
+ 44.31198069773942
+ ],
+ [
+ 69.54843643348367,
+ 44.31198069773942
+ ],
+ [
+ 69.66327911696736,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 44.89592390252479
+ ],
+ [
+ 69.54843643348367,
+ 45.090571637453245
+ ],
+ [
+ 69.31875106651633,
+ 45.090571637453245
+ ],
+ [
+ 69.20390838303264,
+ 44.89592390252479
+ ],
+ [
+ 69.31875106651633,
+ 44.70127616759634
+ ],
+ [
+ 69.54843643348367,
+ 44.70127616759634
+ ],
+ [
+ 69.66327911696736,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 45.2852193723817
+ ],
+ [
+ 69.54843643348367,
+ 45.47986710731015
+ ],
+ [
+ 69.31875106651633,
+ 45.47986710731015
+ ],
+ [
+ 69.20390838303264,
+ 45.2852193723817
+ ],
+ [
+ 69.31875106651633,
+ 45.090571637453245
+ ],
+ [
+ 69.54843643348367,
+ 45.090571637453245
+ ],
+ [
+ 69.66327911696736,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 45.6745148422386
+ ],
+ [
+ 69.54843643348367,
+ 45.86916257716705
+ ],
+ [
+ 69.31875106651633,
+ 45.86916257716705
+ ],
+ [
+ 69.20390838303264,
+ 45.6745148422386
+ ],
+ [
+ 69.31875106651633,
+ 45.47986710731015
+ ],
+ [
+ 69.54843643348367,
+ 45.47986710731015
+ ],
+ [
+ 69.66327911696736,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 46.063810312095505
+ ],
+ [
+ 69.54843643348367,
+ 46.25845804702396
+ ],
+ [
+ 69.31875106651633,
+ 46.25845804702396
+ ],
+ [
+ 69.20390838303264,
+ 46.063810312095505
+ ],
+ [
+ 69.31875106651633,
+ 45.86916257716705
+ ],
+ [
+ 69.54843643348367,
+ 45.86916257716705
+ ],
+ [
+ 69.66327911696736,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 46.45310578195241
+ ],
+ [
+ 69.54843643348367,
+ 46.64775351688086
+ ],
+ [
+ 69.31875106651633,
+ 46.64775351688086
+ ],
+ [
+ 69.20390838303264,
+ 46.45310578195241
+ ],
+ [
+ 69.31875106651633,
+ 46.25845804702396
+ ],
+ [
+ 69.54843643348367,
+ 46.25845804702396
+ ],
+ [
+ 69.66327911696736,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 46.842401251809314
+ ],
+ [
+ 69.54843643348367,
+ 47.037048986737766
+ ],
+ [
+ 69.31875106651633,
+ 47.037048986737766
+ ],
+ [
+ 69.20390838303264,
+ 46.842401251809314
+ ],
+ [
+ 69.31875106651633,
+ 46.64775351688086
+ ],
+ [
+ 69.54843643348367,
+ 46.64775351688086
+ ],
+ [
+ 69.66327911696736,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 47.23169672166622
+ ],
+ [
+ 69.54843643348367,
+ 47.42634445659467
+ ],
+ [
+ 69.31875106651633,
+ 47.42634445659467
+ ],
+ [
+ 69.20390838303264,
+ 47.23169672166622
+ ],
+ [
+ 69.31875106651633,
+ 47.037048986737766
+ ],
+ [
+ 69.54843643348367,
+ 47.037048986737766
+ ],
+ [
+ 69.66327911696736,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 69.66327911696736,
+ 47.620992191523136
+ ],
+ [
+ 69.54843643348367,
+ 47.81563992645159
+ ],
+ [
+ 69.31875106651633,
+ 47.81563992645159
+ ],
+ [
+ 69.20390838303264,
+ 47.620992191523136
+ ],
+ [
+ 69.31875106651633,
+ 47.426344456594684
+ ],
+ [
+ 69.54843643348367,
+ 47.426344456594684
+ ],
+ [
+ 69.66327911696736,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 12.0004566996162
+ ],
+ [
+ 69.89296448393472,
+ 12.195104434544653
+ ],
+ [
+ 69.66327911696737,
+ 12.195104434544653
+ ],
+ [
+ 69.54843643348369,
+ 12.0004566996162
+ ],
+ [
+ 69.66327911696737,
+ 11.805808964687746
+ ],
+ [
+ 69.89296448393472,
+ 11.805808964687746
+ ],
+ [
+ 70.0078071674184,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 12.389752169473105
+ ],
+ [
+ 69.89296448393472,
+ 12.58439990440156
+ ],
+ [
+ 69.66327911696737,
+ 12.58439990440156
+ ],
+ [
+ 69.54843643348369,
+ 12.389752169473105
+ ],
+ [
+ 69.66327911696737,
+ 12.195104434544652
+ ],
+ [
+ 69.89296448393472,
+ 12.195104434544652
+ ],
+ [
+ 70.0078071674184,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 12.779047639330013
+ ],
+ [
+ 69.89296448393472,
+ 12.973695374258467
+ ],
+ [
+ 69.66327911696737,
+ 12.973695374258467
+ ],
+ [
+ 69.54843643348369,
+ 12.779047639330013
+ ],
+ [
+ 69.66327911696737,
+ 12.58439990440156
+ ],
+ [
+ 69.89296448393472,
+ 12.58439990440156
+ ],
+ [
+ 70.0078071674184,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 13.16834310918692
+ ],
+ [
+ 69.89296448393472,
+ 13.362990844115373
+ ],
+ [
+ 69.66327911696737,
+ 13.362990844115373
+ ],
+ [
+ 69.54843643348369,
+ 13.16834310918692
+ ],
+ [
+ 69.66327911696737,
+ 12.973695374258465
+ ],
+ [
+ 69.89296448393472,
+ 12.973695374258465
+ ],
+ [
+ 70.0078071674184,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 13.557638579043825
+ ],
+ [
+ 69.89296448393472,
+ 13.752286313972279
+ ],
+ [
+ 69.66327911696737,
+ 13.752286313972279
+ ],
+ [
+ 69.54843643348369,
+ 13.557638579043825
+ ],
+ [
+ 69.66327911696737,
+ 13.362990844115371
+ ],
+ [
+ 69.89296448393472,
+ 13.362990844115371
+ ],
+ [
+ 70.0078071674184,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 13.946934048900731
+ ],
+ [
+ 69.89296448393472,
+ 14.141581783829185
+ ],
+ [
+ 69.66327911696737,
+ 14.141581783829185
+ ],
+ [
+ 69.54843643348369,
+ 13.946934048900731
+ ],
+ [
+ 69.66327911696737,
+ 13.752286313972277
+ ],
+ [
+ 69.89296448393472,
+ 13.752286313972277
+ ],
+ [
+ 70.0078071674184,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 14.336229518757637
+ ],
+ [
+ 69.89296448393472,
+ 14.530877253686091
+ ],
+ [
+ 69.66327911696737,
+ 14.530877253686091
+ ],
+ [
+ 69.54843643348369,
+ 14.336229518757637
+ ],
+ [
+ 69.66327911696737,
+ 14.141581783829183
+ ],
+ [
+ 69.89296448393472,
+ 14.141581783829183
+ ],
+ [
+ 70.0078071674184,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 14.725524988614545
+ ],
+ [
+ 69.89296448393472,
+ 14.920172723542999
+ ],
+ [
+ 69.66327911696737,
+ 14.920172723542999
+ ],
+ [
+ 69.54843643348369,
+ 14.725524988614545
+ ],
+ [
+ 69.66327911696737,
+ 14.530877253686091
+ ],
+ [
+ 69.89296448393472,
+ 14.530877253686091
+ ],
+ [
+ 70.0078071674184,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 15.114820458471451
+ ],
+ [
+ 69.89296448393472,
+ 15.309468193399905
+ ],
+ [
+ 69.66327911696737,
+ 15.309468193399905
+ ],
+ [
+ 69.54843643348369,
+ 15.114820458471451
+ ],
+ [
+ 69.66327911696737,
+ 14.920172723542997
+ ],
+ [
+ 69.89296448393472,
+ 14.920172723542997
+ ],
+ [
+ 70.0078071674184,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 15.504115928328357
+ ],
+ [
+ 69.89296448393472,
+ 15.69876366325681
+ ],
+ [
+ 69.66327911696737,
+ 15.69876366325681
+ ],
+ [
+ 69.54843643348369,
+ 15.504115928328357
+ ],
+ [
+ 69.66327911696737,
+ 15.309468193399903
+ ],
+ [
+ 69.89296448393472,
+ 15.309468193399903
+ ],
+ [
+ 70.0078071674184,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 15.893411398185265
+ ],
+ [
+ 69.89296448393472,
+ 16.088059133113717
+ ],
+ [
+ 69.66327911696737,
+ 16.088059133113717
+ ],
+ [
+ 69.54843643348369,
+ 15.893411398185265
+ ],
+ [
+ 69.66327911696737,
+ 15.69876366325681
+ ],
+ [
+ 69.89296448393472,
+ 15.69876366325681
+ ],
+ [
+ 70.0078071674184,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 16.28270686804217
+ ],
+ [
+ 69.89296448393472,
+ 16.47735460297062
+ ],
+ [
+ 69.66327911696737,
+ 16.47735460297062
+ ],
+ [
+ 69.54843643348369,
+ 16.28270686804217
+ ],
+ [
+ 69.66327911696737,
+ 16.088059133113717
+ ],
+ [
+ 69.89296448393472,
+ 16.088059133113717
+ ],
+ [
+ 70.0078071674184,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 16.672002337899077
+ ],
+ [
+ 69.89296448393472,
+ 16.86665007282753
+ ],
+ [
+ 69.66327911696737,
+ 16.86665007282753
+ ],
+ [
+ 69.54843643348369,
+ 16.672002337899077
+ ],
+ [
+ 69.66327911696737,
+ 16.477354602970625
+ ],
+ [
+ 69.89296448393472,
+ 16.477354602970625
+ ],
+ [
+ 70.0078071674184,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 17.06129780775598
+ ],
+ [
+ 69.89296448393472,
+ 17.255945542684433
+ ],
+ [
+ 69.66327911696737,
+ 17.255945542684433
+ ],
+ [
+ 69.54843643348369,
+ 17.06129780775598
+ ],
+ [
+ 69.66327911696737,
+ 16.86665007282753
+ ],
+ [
+ 69.89296448393472,
+ 16.86665007282753
+ ],
+ [
+ 70.0078071674184,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 17.45059327761289
+ ],
+ [
+ 69.89296448393472,
+ 17.64524101254134
+ ],
+ [
+ 69.66327911696737,
+ 17.64524101254134
+ ],
+ [
+ 69.54843643348369,
+ 17.45059327761289
+ ],
+ [
+ 69.66327911696737,
+ 17.255945542684437
+ ],
+ [
+ 69.89296448393472,
+ 17.255945542684437
+ ],
+ [
+ 70.0078071674184,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 17.839888747469793
+ ],
+ [
+ 69.89296448393472,
+ 18.034536482398245
+ ],
+ [
+ 69.66327911696737,
+ 18.034536482398245
+ ],
+ [
+ 69.54843643348369,
+ 17.839888747469793
+ ],
+ [
+ 69.66327911696737,
+ 17.64524101254134
+ ],
+ [
+ 69.89296448393472,
+ 17.64524101254134
+ ],
+ [
+ 70.0078071674184,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 18.2291842173267
+ ],
+ [
+ 69.89296448393472,
+ 18.423831952255153
+ ],
+ [
+ 69.66327911696737,
+ 18.423831952255153
+ ],
+ [
+ 69.54843643348369,
+ 18.2291842173267
+ ],
+ [
+ 69.66327911696737,
+ 18.03453648239825
+ ],
+ [
+ 69.89296448393472,
+ 18.03453648239825
+ ],
+ [
+ 70.0078071674184,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 18.61847968718361
+ ],
+ [
+ 69.89296448393472,
+ 18.81312742211206
+ ],
+ [
+ 69.66327911696737,
+ 18.81312742211206
+ ],
+ [
+ 69.54843643348369,
+ 18.61847968718361
+ ],
+ [
+ 69.66327911696737,
+ 18.423831952255156
+ ],
+ [
+ 69.89296448393472,
+ 18.423831952255156
+ ],
+ [
+ 70.0078071674184,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 19.007775157040513
+ ],
+ [
+ 69.89296448393472,
+ 19.202422891968965
+ ],
+ [
+ 69.66327911696737,
+ 19.202422891968965
+ ],
+ [
+ 69.54843643348369,
+ 19.007775157040513
+ ],
+ [
+ 69.66327911696737,
+ 18.81312742211206
+ ],
+ [
+ 69.89296448393472,
+ 18.81312742211206
+ ],
+ [
+ 70.0078071674184,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 19.39707062689742
+ ],
+ [
+ 69.89296448393472,
+ 19.591718361825873
+ ],
+ [
+ 69.66327911696737,
+ 19.591718361825873
+ ],
+ [
+ 69.54843643348369,
+ 19.39707062689742
+ ],
+ [
+ 69.66327911696737,
+ 19.20242289196897
+ ],
+ [
+ 69.89296448393472,
+ 19.20242289196897
+ ],
+ [
+ 70.0078071674184,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 19.78636609675433
+ ],
+ [
+ 69.89296448393472,
+ 19.98101383168278
+ ],
+ [
+ 69.66327911696737,
+ 19.98101383168278
+ ],
+ [
+ 69.54843643348369,
+ 19.78636609675433
+ ],
+ [
+ 69.66327911696737,
+ 19.591718361825876
+ ],
+ [
+ 69.89296448393472,
+ 19.591718361825876
+ ],
+ [
+ 70.0078071674184,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 20.175661566611232
+ ],
+ [
+ 69.89296448393472,
+ 20.370309301539685
+ ],
+ [
+ 69.66327911696737,
+ 20.370309301539685
+ ],
+ [
+ 69.54843643348369,
+ 20.175661566611232
+ ],
+ [
+ 69.66327911696737,
+ 19.98101383168278
+ ],
+ [
+ 69.89296448393472,
+ 19.98101383168278
+ ],
+ [
+ 70.0078071674184,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 20.564957036468137
+ ],
+ [
+ 69.89296448393472,
+ 20.75960477139659
+ ],
+ [
+ 69.66327911696737,
+ 20.75960477139659
+ ],
+ [
+ 69.54843643348369,
+ 20.564957036468137
+ ],
+ [
+ 69.66327911696737,
+ 20.370309301539685
+ ],
+ [
+ 69.89296448393472,
+ 20.370309301539685
+ ],
+ [
+ 70.0078071674184,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 20.954252506325044
+ ],
+ [
+ 69.89296448393472,
+ 21.148900241253497
+ ],
+ [
+ 69.66327911696737,
+ 21.148900241253497
+ ],
+ [
+ 69.54843643348369,
+ 20.954252506325044
+ ],
+ [
+ 69.66327911696737,
+ 20.759604771396592
+ ],
+ [
+ 69.89296448393472,
+ 20.759604771396592
+ ],
+ [
+ 70.0078071674184,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 21.343547976181952
+ ],
+ [
+ 69.89296448393472,
+ 21.538195711110404
+ ],
+ [
+ 69.66327911696737,
+ 21.538195711110404
+ ],
+ [
+ 69.54843643348369,
+ 21.343547976181952
+ ],
+ [
+ 69.66327911696737,
+ 21.1489002412535
+ ],
+ [
+ 69.89296448393472,
+ 21.1489002412535
+ ],
+ [
+ 70.0078071674184,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 21.732843446038856
+ ],
+ [
+ 69.89296448393472,
+ 21.92749118096731
+ ],
+ [
+ 69.66327911696737,
+ 21.92749118096731
+ ],
+ [
+ 69.54843643348369,
+ 21.732843446038856
+ ],
+ [
+ 69.66327911696737,
+ 21.538195711110404
+ ],
+ [
+ 69.89296448393472,
+ 21.538195711110404
+ ],
+ [
+ 70.0078071674184,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 22.122138915895764
+ ],
+ [
+ 69.89296448393472,
+ 22.316786650824216
+ ],
+ [
+ 69.66327911696737,
+ 22.316786650824216
+ ],
+ [
+ 69.54843643348369,
+ 22.122138915895764
+ ],
+ [
+ 69.66327911696737,
+ 21.927491180967312
+ ],
+ [
+ 69.89296448393472,
+ 21.927491180967312
+ ],
+ [
+ 70.0078071674184,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 22.511434385752672
+ ],
+ [
+ 69.89296448393472,
+ 22.706082120681124
+ ],
+ [
+ 69.66327911696737,
+ 22.706082120681124
+ ],
+ [
+ 69.54843643348369,
+ 22.511434385752672
+ ],
+ [
+ 69.66327911696737,
+ 22.31678665082422
+ ],
+ [
+ 69.89296448393472,
+ 22.31678665082422
+ ],
+ [
+ 70.0078071674184,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 22.900729855609576
+ ],
+ [
+ 69.89296448393472,
+ 23.09537759053803
+ ],
+ [
+ 69.66327911696737,
+ 23.09537759053803
+ ],
+ [
+ 69.54843643348369,
+ 22.900729855609576
+ ],
+ [
+ 69.66327911696737,
+ 22.706082120681124
+ ],
+ [
+ 69.89296448393472,
+ 22.706082120681124
+ ],
+ [
+ 70.0078071674184,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 23.290025325466484
+ ],
+ [
+ 69.89296448393472,
+ 23.484673060394936
+ ],
+ [
+ 69.66327911696737,
+ 23.484673060394936
+ ],
+ [
+ 69.54843643348369,
+ 23.290025325466484
+ ],
+ [
+ 69.66327911696737,
+ 23.095377590538032
+ ],
+ [
+ 69.89296448393472,
+ 23.095377590538032
+ ],
+ [
+ 70.0078071674184,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 23.67932079532339
+ ],
+ [
+ 69.89296448393472,
+ 23.873968530251844
+ ],
+ [
+ 69.66327911696737,
+ 23.873968530251844
+ ],
+ [
+ 69.54843643348369,
+ 23.67932079532339
+ ],
+ [
+ 69.66327911696737,
+ 23.48467306039494
+ ],
+ [
+ 69.89296448393472,
+ 23.48467306039494
+ ],
+ [
+ 70.0078071674184,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 24.068616265180296
+ ],
+ [
+ 69.89296448393472,
+ 24.263264000108748
+ ],
+ [
+ 69.66327911696737,
+ 24.263264000108748
+ ],
+ [
+ 69.54843643348369,
+ 24.068616265180296
+ ],
+ [
+ 69.66327911696737,
+ 23.873968530251844
+ ],
+ [
+ 69.89296448393472,
+ 23.873968530251844
+ ],
+ [
+ 70.0078071674184,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 24.4579117350372
+ ],
+ [
+ 69.89296448393472,
+ 24.652559469965652
+ ],
+ [
+ 69.66327911696737,
+ 24.652559469965652
+ ],
+ [
+ 69.54843643348369,
+ 24.4579117350372
+ ],
+ [
+ 69.66327911696737,
+ 24.263264000108748
+ ],
+ [
+ 69.89296448393472,
+ 24.263264000108748
+ ],
+ [
+ 70.0078071674184,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 24.847207204894108
+ ],
+ [
+ 69.89296448393472,
+ 25.04185493982256
+ ],
+ [
+ 69.66327911696737,
+ 25.04185493982256
+ ],
+ [
+ 69.54843643348369,
+ 24.847207204894108
+ ],
+ [
+ 69.66327911696737,
+ 24.652559469965656
+ ],
+ [
+ 69.89296448393472,
+ 24.652559469965656
+ ],
+ [
+ 70.0078071674184,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 25.236502674751016
+ ],
+ [
+ 69.89296448393472,
+ 25.431150409679468
+ ],
+ [
+ 69.66327911696737,
+ 25.431150409679468
+ ],
+ [
+ 69.54843643348369,
+ 25.236502674751016
+ ],
+ [
+ 69.66327911696737,
+ 25.041854939822564
+ ],
+ [
+ 69.89296448393472,
+ 25.041854939822564
+ ],
+ [
+ 70.0078071674184,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 25.62579814460792
+ ],
+ [
+ 69.89296448393472,
+ 25.820445879536372
+ ],
+ [
+ 69.66327911696737,
+ 25.820445879536372
+ ],
+ [
+ 69.54843643348369,
+ 25.62579814460792
+ ],
+ [
+ 69.66327911696737,
+ 25.431150409679468
+ ],
+ [
+ 69.89296448393472,
+ 25.431150409679468
+ ],
+ [
+ 70.0078071674184,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 26.015093614464828
+ ],
+ [
+ 69.89296448393472,
+ 26.20974134939328
+ ],
+ [
+ 69.66327911696737,
+ 26.20974134939328
+ ],
+ [
+ 69.54843643348369,
+ 26.015093614464828
+ ],
+ [
+ 69.66327911696737,
+ 25.820445879536376
+ ],
+ [
+ 69.89296448393472,
+ 25.820445879536376
+ ],
+ [
+ 70.0078071674184,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 26.404389084321735
+ ],
+ [
+ 69.89296448393472,
+ 26.599036819250188
+ ],
+ [
+ 69.66327911696737,
+ 26.599036819250188
+ ],
+ [
+ 69.54843643348369,
+ 26.404389084321735
+ ],
+ [
+ 69.66327911696737,
+ 26.209741349393283
+ ],
+ [
+ 69.89296448393472,
+ 26.209741349393283
+ ],
+ [
+ 70.0078071674184,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 26.79368455417864
+ ],
+ [
+ 69.89296448393472,
+ 26.988332289107092
+ ],
+ [
+ 69.66327911696737,
+ 26.988332289107092
+ ],
+ [
+ 69.54843643348369,
+ 26.79368455417864
+ ],
+ [
+ 69.66327911696737,
+ 26.599036819250188
+ ],
+ [
+ 69.89296448393472,
+ 26.599036819250188
+ ],
+ [
+ 70.0078071674184,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 27.182980024035547
+ ],
+ [
+ 69.89296448393472,
+ 27.377627758964
+ ],
+ [
+ 69.66327911696737,
+ 27.377627758964
+ ],
+ [
+ 69.54843643348369,
+ 27.182980024035547
+ ],
+ [
+ 69.66327911696737,
+ 26.988332289107095
+ ],
+ [
+ 69.89296448393472,
+ 26.988332289107095
+ ],
+ [
+ 70.0078071674184,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 27.572275493892455
+ ],
+ [
+ 69.89296448393472,
+ 27.766923228820907
+ ],
+ [
+ 69.66327911696737,
+ 27.766923228820907
+ ],
+ [
+ 69.54843643348369,
+ 27.572275493892455
+ ],
+ [
+ 69.66327911696737,
+ 27.377627758964003
+ ],
+ [
+ 69.89296448393472,
+ 27.377627758964003
+ ],
+ [
+ 70.0078071674184,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 27.96157096374936
+ ],
+ [
+ 69.89296448393472,
+ 28.15621869867781
+ ],
+ [
+ 69.66327911696737,
+ 28.15621869867781
+ ],
+ [
+ 69.54843643348369,
+ 27.96157096374936
+ ],
+ [
+ 69.66327911696737,
+ 27.766923228820907
+ ],
+ [
+ 69.89296448393472,
+ 27.766923228820907
+ ],
+ [
+ 70.0078071674184,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 28.350866433606267
+ ],
+ [
+ 69.89296448393472,
+ 28.54551416853472
+ ],
+ [
+ 69.66327911696737,
+ 28.54551416853472
+ ],
+ [
+ 69.54843643348369,
+ 28.350866433606267
+ ],
+ [
+ 69.66327911696737,
+ 28.156218698677815
+ ],
+ [
+ 69.89296448393472,
+ 28.156218698677815
+ ],
+ [
+ 70.0078071674184,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 28.74016190346317
+ ],
+ [
+ 69.89296448393472,
+ 28.934809638391624
+ ],
+ [
+ 69.66327911696737,
+ 28.934809638391624
+ ],
+ [
+ 69.54843643348369,
+ 28.74016190346317
+ ],
+ [
+ 69.66327911696737,
+ 28.54551416853472
+ ],
+ [
+ 69.89296448393472,
+ 28.54551416853472
+ ],
+ [
+ 70.0078071674184,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 29.12945737332008
+ ],
+ [
+ 69.89296448393472,
+ 29.32410510824853
+ ],
+ [
+ 69.66327911696737,
+ 29.32410510824853
+ ],
+ [
+ 69.54843643348369,
+ 29.12945737332008
+ ],
+ [
+ 69.66327911696737,
+ 28.934809638391627
+ ],
+ [
+ 69.89296448393472,
+ 28.934809638391627
+ ],
+ [
+ 70.0078071674184,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 29.518752843176983
+ ],
+ [
+ 69.89296448393472,
+ 29.713400578105436
+ ],
+ [
+ 69.66327911696737,
+ 29.713400578105436
+ ],
+ [
+ 69.54843643348369,
+ 29.518752843176983
+ ],
+ [
+ 69.66327911696737,
+ 29.32410510824853
+ ],
+ [
+ 69.89296448393472,
+ 29.32410510824853
+ ],
+ [
+ 70.0078071674184,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 29.90804831303389
+ ],
+ [
+ 69.89296448393472,
+ 30.102696047962343
+ ],
+ [
+ 69.66327911696737,
+ 30.102696047962343
+ ],
+ [
+ 69.54843643348369,
+ 29.90804831303389
+ ],
+ [
+ 69.66327911696737,
+ 29.71340057810544
+ ],
+ [
+ 69.89296448393472,
+ 29.71340057810544
+ ],
+ [
+ 70.0078071674184,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 30.297343782890795
+ ],
+ [
+ 69.89296448393472,
+ 30.491991517819248
+ ],
+ [
+ 69.66327911696737,
+ 30.491991517819248
+ ],
+ [
+ 69.54843643348369,
+ 30.297343782890795
+ ],
+ [
+ 69.66327911696737,
+ 30.102696047962343
+ ],
+ [
+ 69.89296448393472,
+ 30.102696047962343
+ ],
+ [
+ 70.0078071674184,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 30.686639252747703
+ ],
+ [
+ 69.89296448393472,
+ 30.881286987676155
+ ],
+ [
+ 69.66327911696737,
+ 30.881286987676155
+ ],
+ [
+ 69.54843643348369,
+ 30.686639252747703
+ ],
+ [
+ 69.66327911696737,
+ 30.49199151781925
+ ],
+ [
+ 69.89296448393472,
+ 30.49199151781925
+ ],
+ [
+ 70.0078071674184,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 31.07593472260461
+ ],
+ [
+ 69.89296448393472,
+ 31.270582457533063
+ ],
+ [
+ 69.66327911696737,
+ 31.270582457533063
+ ],
+ [
+ 69.54843643348369,
+ 31.07593472260461
+ ],
+ [
+ 69.66327911696737,
+ 30.88128698767616
+ ],
+ [
+ 69.89296448393472,
+ 30.88128698767616
+ ],
+ [
+ 70.0078071674184,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 31.465230192461515
+ ],
+ [
+ 69.89296448393472,
+ 31.659877927389967
+ ],
+ [
+ 69.66327911696737,
+ 31.659877927389967
+ ],
+ [
+ 69.54843643348369,
+ 31.465230192461515
+ ],
+ [
+ 69.66327911696737,
+ 31.270582457533063
+ ],
+ [
+ 69.89296448393472,
+ 31.270582457533063
+ ],
+ [
+ 70.0078071674184,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 31.854525662318423
+ ],
+ [
+ 69.89296448393472,
+ 32.049173397246875
+ ],
+ [
+ 69.66327911696737,
+ 32.049173397246875
+ ],
+ [
+ 69.54843643348369,
+ 31.854525662318423
+ ],
+ [
+ 69.66327911696737,
+ 31.65987792738997
+ ],
+ [
+ 69.89296448393472,
+ 31.65987792738997
+ ],
+ [
+ 70.0078071674184,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 32.24382113217533
+ ],
+ [
+ 69.89296448393472,
+ 32.43846886710378
+ ],
+ [
+ 69.66327911696737,
+ 32.43846886710378
+ ],
+ [
+ 69.54843643348369,
+ 32.24382113217533
+ ],
+ [
+ 69.66327911696737,
+ 32.049173397246875
+ ],
+ [
+ 69.89296448393472,
+ 32.049173397246875
+ ],
+ [
+ 70.0078071674184,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 32.63311660203224
+ ],
+ [
+ 69.89296448393472,
+ 32.82776433696069
+ ],
+ [
+ 69.66327911696737,
+ 32.82776433696069
+ ],
+ [
+ 69.54843643348369,
+ 32.63311660203224
+ ],
+ [
+ 69.66327911696737,
+ 32.438468867103786
+ ],
+ [
+ 69.89296448393472,
+ 32.438468867103786
+ ],
+ [
+ 70.0078071674184,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 33.02241207188914
+ ],
+ [
+ 69.89296448393472,
+ 33.217059806817595
+ ],
+ [
+ 69.66327911696737,
+ 33.217059806817595
+ ],
+ [
+ 69.54843643348369,
+ 33.02241207188914
+ ],
+ [
+ 69.66327911696737,
+ 32.82776433696069
+ ],
+ [
+ 69.89296448393472,
+ 32.82776433696069
+ ],
+ [
+ 70.0078071674184,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 33.41170754174605
+ ],
+ [
+ 69.89296448393472,
+ 33.6063552766745
+ ],
+ [
+ 69.66327911696737,
+ 33.6063552766745
+ ],
+ [
+ 69.54843643348369,
+ 33.41170754174605
+ ],
+ [
+ 69.66327911696737,
+ 33.217059806817595
+ ],
+ [
+ 69.89296448393472,
+ 33.217059806817595
+ ],
+ [
+ 70.0078071674184,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 33.80100301160295
+ ],
+ [
+ 69.89296448393472,
+ 33.9956507465314
+ ],
+ [
+ 69.66327911696737,
+ 33.9956507465314
+ ],
+ [
+ 69.54843643348369,
+ 33.80100301160295
+ ],
+ [
+ 69.66327911696737,
+ 33.6063552766745
+ ],
+ [
+ 69.89296448393472,
+ 33.6063552766745
+ ],
+ [
+ 70.0078071674184,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 34.190298481459855
+ ],
+ [
+ 69.89296448393472,
+ 34.38494621638831
+ ],
+ [
+ 69.66327911696737,
+ 34.38494621638831
+ ],
+ [
+ 69.54843643348369,
+ 34.190298481459855
+ ],
+ [
+ 69.66327911696737,
+ 33.9956507465314
+ ],
+ [
+ 69.89296448393472,
+ 33.9956507465314
+ ],
+ [
+ 70.0078071674184,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 34.57959395131677
+ ],
+ [
+ 69.89296448393472,
+ 34.77424168624522
+ ],
+ [
+ 69.66327911696737,
+ 34.77424168624522
+ ],
+ [
+ 69.54843643348369,
+ 34.57959395131677
+ ],
+ [
+ 69.66327911696737,
+ 34.384946216388315
+ ],
+ [
+ 69.89296448393472,
+ 34.384946216388315
+ ],
+ [
+ 70.0078071674184,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 34.96888942117368
+ ],
+ [
+ 69.89296448393472,
+ 35.16353715610213
+ ],
+ [
+ 69.66327911696737,
+ 35.16353715610213
+ ],
+ [
+ 69.54843643348369,
+ 34.96888942117368
+ ],
+ [
+ 69.66327911696737,
+ 34.774241686245226
+ ],
+ [
+ 69.89296448393472,
+ 34.774241686245226
+ ],
+ [
+ 70.0078071674184,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 35.35818489103058
+ ],
+ [
+ 69.89296448393472,
+ 35.552832625959034
+ ],
+ [
+ 69.66327911696737,
+ 35.552832625959034
+ ],
+ [
+ 69.54843643348369,
+ 35.35818489103058
+ ],
+ [
+ 69.66327911696737,
+ 35.16353715610213
+ ],
+ [
+ 69.89296448393472,
+ 35.16353715610213
+ ],
+ [
+ 70.0078071674184,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 35.74748036088749
+ ],
+ [
+ 69.89296448393472,
+ 35.94212809581594
+ ],
+ [
+ 69.66327911696737,
+ 35.94212809581594
+ ],
+ [
+ 69.54843643348369,
+ 35.74748036088749
+ ],
+ [
+ 69.66327911696737,
+ 35.552832625959034
+ ],
+ [
+ 69.89296448393472,
+ 35.552832625959034
+ ],
+ [
+ 70.0078071674184,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 36.13677583074439
+ ],
+ [
+ 69.89296448393472,
+ 36.33142356567284
+ ],
+ [
+ 69.66327911696737,
+ 36.33142356567284
+ ],
+ [
+ 69.54843643348369,
+ 36.13677583074439
+ ],
+ [
+ 69.66327911696737,
+ 35.94212809581594
+ ],
+ [
+ 69.89296448393472,
+ 35.94212809581594
+ ],
+ [
+ 70.0078071674184,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 36.526071300601295
+ ],
+ [
+ 69.89296448393472,
+ 36.72071903552975
+ ],
+ [
+ 69.66327911696737,
+ 36.72071903552975
+ ],
+ [
+ 69.54843643348369,
+ 36.526071300601295
+ ],
+ [
+ 69.66327911696737,
+ 36.33142356567284
+ ],
+ [
+ 69.89296448393472,
+ 36.33142356567284
+ ],
+ [
+ 70.0078071674184,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 36.915366770458206
+ ],
+ [
+ 69.89296448393472,
+ 37.11001450538666
+ ],
+ [
+ 69.66327911696737,
+ 37.11001450538666
+ ],
+ [
+ 69.54843643348369,
+ 36.915366770458206
+ ],
+ [
+ 69.66327911696737,
+ 36.720719035529754
+ ],
+ [
+ 69.89296448393472,
+ 36.720719035529754
+ ],
+ [
+ 70.0078071674184,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 37.30466224031511
+ ],
+ [
+ 69.89296448393472,
+ 37.49930997524356
+ ],
+ [
+ 69.66327911696737,
+ 37.49930997524356
+ ],
+ [
+ 69.54843643348369,
+ 37.30466224031511
+ ],
+ [
+ 69.66327911696737,
+ 37.11001450538666
+ ],
+ [
+ 69.89296448393472,
+ 37.11001450538666
+ ],
+ [
+ 70.0078071674184,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 37.69395771017202
+ ],
+ [
+ 69.89296448393472,
+ 37.888605445100474
+ ],
+ [
+ 69.66327911696737,
+ 37.888605445100474
+ ],
+ [
+ 69.54843643348369,
+ 37.69395771017202
+ ],
+ [
+ 69.66327911696737,
+ 37.49930997524357
+ ],
+ [
+ 69.89296448393472,
+ 37.49930997524357
+ ],
+ [
+ 70.0078071674184,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 38.083253180028926
+ ],
+ [
+ 69.89296448393472,
+ 38.27790091495738
+ ],
+ [
+ 69.66327911696737,
+ 38.27790091495738
+ ],
+ [
+ 69.54843643348369,
+ 38.083253180028926
+ ],
+ [
+ 69.66327911696737,
+ 37.888605445100474
+ ],
+ [
+ 69.89296448393472,
+ 37.888605445100474
+ ],
+ [
+ 70.0078071674184,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 38.47254864988583
+ ],
+ [
+ 69.89296448393472,
+ 38.66719638481428
+ ],
+ [
+ 69.66327911696737,
+ 38.66719638481428
+ ],
+ [
+ 69.54843643348369,
+ 38.47254864988583
+ ],
+ [
+ 69.66327911696737,
+ 38.27790091495738
+ ],
+ [
+ 69.89296448393472,
+ 38.27790091495738
+ ],
+ [
+ 70.0078071674184,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 38.861844119742734
+ ],
+ [
+ 69.89296448393472,
+ 39.05649185467119
+ ],
+ [
+ 69.66327911696737,
+ 39.05649185467119
+ ],
+ [
+ 69.54843643348369,
+ 38.861844119742734
+ ],
+ [
+ 69.66327911696737,
+ 38.66719638481428
+ ],
+ [
+ 69.89296448393472,
+ 38.66719638481428
+ ],
+ [
+ 70.0078071674184,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 39.25113958959964
+ ],
+ [
+ 69.89296448393472,
+ 39.44578732452809
+ ],
+ [
+ 69.66327911696737,
+ 39.44578732452809
+ ],
+ [
+ 69.54843643348369,
+ 39.25113958959964
+ ],
+ [
+ 69.66327911696737,
+ 39.05649185467119
+ ],
+ [
+ 69.89296448393472,
+ 39.05649185467119
+ ],
+ [
+ 70.0078071674184,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 39.64043505945655
+ ],
+ [
+ 69.89296448393472,
+ 39.835082794385
+ ],
+ [
+ 69.66327911696737,
+ 39.835082794385
+ ],
+ [
+ 69.54843643348369,
+ 39.64043505945655
+ ],
+ [
+ 69.66327911696737,
+ 39.4457873245281
+ ],
+ [
+ 69.89296448393472,
+ 39.4457873245281
+ ],
+ [
+ 70.0078071674184,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 40.029730529313454
+ ],
+ [
+ 69.89296448393472,
+ 40.224378264241906
+ ],
+ [
+ 69.66327911696737,
+ 40.224378264241906
+ ],
+ [
+ 69.54843643348369,
+ 40.029730529313454
+ ],
+ [
+ 69.66327911696737,
+ 39.835082794385
+ ],
+ [
+ 69.89296448393472,
+ 39.835082794385
+ ],
+ [
+ 70.0078071674184,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 40.419025999170366
+ ],
+ [
+ 69.89296448393472,
+ 40.61367373409882
+ ],
+ [
+ 69.66327911696737,
+ 40.61367373409882
+ ],
+ [
+ 69.54843643348369,
+ 40.419025999170366
+ ],
+ [
+ 69.66327911696737,
+ 40.22437826424191
+ ],
+ [
+ 69.89296448393472,
+ 40.22437826424191
+ ],
+ [
+ 70.0078071674184,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 40.80832146902727
+ ],
+ [
+ 69.89296448393472,
+ 41.00296920395572
+ ],
+ [
+ 69.66327911696737,
+ 41.00296920395572
+ ],
+ [
+ 69.54843643348369,
+ 40.80832146902727
+ ],
+ [
+ 69.66327911696737,
+ 40.61367373409882
+ ],
+ [
+ 69.89296448393472,
+ 40.61367373409882
+ ],
+ [
+ 70.0078071674184,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 41.197616938884174
+ ],
+ [
+ 69.89296448393472,
+ 41.392264673812626
+ ],
+ [
+ 69.66327911696737,
+ 41.392264673812626
+ ],
+ [
+ 69.54843643348369,
+ 41.197616938884174
+ ],
+ [
+ 69.66327911696737,
+ 41.00296920395572
+ ],
+ [
+ 69.89296448393472,
+ 41.00296920395572
+ ],
+ [
+ 70.0078071674184,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 41.58691240874108
+ ],
+ [
+ 69.89296448393472,
+ 41.78156014366953
+ ],
+ [
+ 69.66327911696737,
+ 41.78156014366953
+ ],
+ [
+ 69.54843643348369,
+ 41.58691240874108
+ ],
+ [
+ 69.66327911696737,
+ 41.392264673812626
+ ],
+ [
+ 69.89296448393472,
+ 41.392264673812626
+ ],
+ [
+ 70.0078071674184,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 41.97620787859798
+ ],
+ [
+ 69.89296448393472,
+ 42.170855613526435
+ ],
+ [
+ 69.66327911696737,
+ 42.170855613526435
+ ],
+ [
+ 69.54843643348369,
+ 41.97620787859798
+ ],
+ [
+ 69.66327911696737,
+ 41.78156014366953
+ ],
+ [
+ 69.89296448393472,
+ 41.78156014366953
+ ],
+ [
+ 70.0078071674184,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 42.365503348454894
+ ],
+ [
+ 69.89296448393472,
+ 42.560151083383346
+ ],
+ [
+ 69.66327911696737,
+ 42.560151083383346
+ ],
+ [
+ 69.54843643348369,
+ 42.365503348454894
+ ],
+ [
+ 69.66327911696737,
+ 42.17085561352644
+ ],
+ [
+ 69.89296448393472,
+ 42.17085561352644
+ ],
+ [
+ 70.0078071674184,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 42.754798818311805
+ ],
+ [
+ 69.89296448393472,
+ 42.94944655324026
+ ],
+ [
+ 69.66327911696737,
+ 42.94944655324026
+ ],
+ [
+ 69.54843643348369,
+ 42.754798818311805
+ ],
+ [
+ 69.66327911696737,
+ 42.56015108338335
+ ],
+ [
+ 69.89296448393472,
+ 42.56015108338335
+ ],
+ [
+ 70.0078071674184,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 43.14409428816871
+ ],
+ [
+ 69.89296448393472,
+ 43.33874202309716
+ ],
+ [
+ 69.66327911696737,
+ 43.33874202309716
+ ],
+ [
+ 69.54843643348369,
+ 43.14409428816871
+ ],
+ [
+ 69.66327911696737,
+ 42.94944655324026
+ ],
+ [
+ 69.89296448393472,
+ 42.94944655324026
+ ],
+ [
+ 70.0078071674184,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 43.53338975802561
+ ],
+ [
+ 69.89296448393472,
+ 43.728037492954066
+ ],
+ [
+ 69.66327911696737,
+ 43.728037492954066
+ ],
+ [
+ 69.54843643348369,
+ 43.53338975802561
+ ],
+ [
+ 69.66327911696737,
+ 43.33874202309716
+ ],
+ [
+ 69.89296448393472,
+ 43.33874202309716
+ ],
+ [
+ 70.0078071674184,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 43.92268522788252
+ ],
+ [
+ 69.89296448393472,
+ 44.11733296281097
+ ],
+ [
+ 69.66327911696737,
+ 44.11733296281097
+ ],
+ [
+ 69.54843643348369,
+ 43.92268522788252
+ ],
+ [
+ 69.66327911696737,
+ 43.728037492954066
+ ],
+ [
+ 69.89296448393472,
+ 43.728037492954066
+ ],
+ [
+ 70.0078071674184,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 44.31198069773942
+ ],
+ [
+ 69.89296448393472,
+ 44.506628432667874
+ ],
+ [
+ 69.66327911696737,
+ 44.506628432667874
+ ],
+ [
+ 69.54843643348369,
+ 44.31198069773942
+ ],
+ [
+ 69.66327911696737,
+ 44.11733296281097
+ ],
+ [
+ 69.89296448393472,
+ 44.11733296281097
+ ],
+ [
+ 70.0078071674184,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 44.701276167596326
+ ],
+ [
+ 69.89296448393472,
+ 44.89592390252478
+ ],
+ [
+ 69.66327911696737,
+ 44.89592390252478
+ ],
+ [
+ 69.54843643348369,
+ 44.701276167596326
+ ],
+ [
+ 69.66327911696737,
+ 44.506628432667874
+ ],
+ [
+ 69.89296448393472,
+ 44.506628432667874
+ ],
+ [
+ 70.0078071674184,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 45.090571637453245
+ ],
+ [
+ 69.89296448393472,
+ 45.2852193723817
+ ],
+ [
+ 69.66327911696737,
+ 45.2852193723817
+ ],
+ [
+ 69.54843643348369,
+ 45.090571637453245
+ ],
+ [
+ 69.66327911696737,
+ 44.89592390252479
+ ],
+ [
+ 69.89296448393472,
+ 44.89592390252479
+ ],
+ [
+ 70.0078071674184,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 45.47986710731015
+ ],
+ [
+ 69.89296448393472,
+ 45.6745148422386
+ ],
+ [
+ 69.66327911696737,
+ 45.6745148422386
+ ],
+ [
+ 69.54843643348369,
+ 45.47986710731015
+ ],
+ [
+ 69.66327911696737,
+ 45.2852193723817
+ ],
+ [
+ 69.89296448393472,
+ 45.2852193723817
+ ],
+ [
+ 70.0078071674184,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 45.86916257716705
+ ],
+ [
+ 69.89296448393472,
+ 46.063810312095505
+ ],
+ [
+ 69.66327911696737,
+ 46.063810312095505
+ ],
+ [
+ 69.54843643348369,
+ 45.86916257716705
+ ],
+ [
+ 69.66327911696737,
+ 45.6745148422386
+ ],
+ [
+ 69.89296448393472,
+ 45.6745148422386
+ ],
+ [
+ 70.0078071674184,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 46.25845804702396
+ ],
+ [
+ 69.89296448393472,
+ 46.45310578195241
+ ],
+ [
+ 69.66327911696737,
+ 46.45310578195241
+ ],
+ [
+ 69.54843643348369,
+ 46.25845804702396
+ ],
+ [
+ 69.66327911696737,
+ 46.063810312095505
+ ],
+ [
+ 69.89296448393472,
+ 46.063810312095505
+ ],
+ [
+ 70.0078071674184,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 46.64775351688086
+ ],
+ [
+ 69.89296448393472,
+ 46.842401251809314
+ ],
+ [
+ 69.66327911696737,
+ 46.842401251809314
+ ],
+ [
+ 69.54843643348369,
+ 46.64775351688086
+ ],
+ [
+ 69.66327911696737,
+ 46.45310578195241
+ ],
+ [
+ 69.89296448393472,
+ 46.45310578195241
+ ],
+ [
+ 70.0078071674184,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 47.037048986737766
+ ],
+ [
+ 69.89296448393472,
+ 47.23169672166622
+ ],
+ [
+ 69.66327911696737,
+ 47.23169672166622
+ ],
+ [
+ 69.54843643348369,
+ 47.037048986737766
+ ],
+ [
+ 69.66327911696737,
+ 46.842401251809314
+ ],
+ [
+ 69.89296448393472,
+ 46.842401251809314
+ ],
+ [
+ 70.0078071674184,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 47.42634445659467
+ ],
+ [
+ 69.89296448393472,
+ 47.62099219152312
+ ],
+ [
+ 69.66327911696737,
+ 47.62099219152312
+ ],
+ [
+ 69.54843643348369,
+ 47.42634445659467
+ ],
+ [
+ 69.66327911696737,
+ 47.23169672166622
+ ],
+ [
+ 69.89296448393472,
+ 47.23169672166622
+ ],
+ [
+ 70.0078071674184,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.0078071674184,
+ 47.81563992645159
+ ],
+ [
+ 69.89296448393472,
+ 48.01028766138004
+ ],
+ [
+ 69.66327911696737,
+ 48.01028766138004
+ ],
+ [
+ 69.54843643348369,
+ 47.81563992645159
+ ],
+ [
+ 69.66327911696737,
+ 47.620992191523136
+ ],
+ [
+ 69.89296448393472,
+ 47.620992191523136
+ ],
+ [
+ 70.0078071674184,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 11.805808964687746
+ ],
+ [
+ 70.23749253438575,
+ 12.0004566996162
+ ],
+ [
+ 70.0078071674184,
+ 12.0004566996162
+ ],
+ [
+ 69.89296448393472,
+ 11.805808964687746
+ ],
+ [
+ 70.0078071674184,
+ 11.611161229759292
+ ],
+ [
+ 70.23749253438575,
+ 11.611161229759292
+ ],
+ [
+ 70.35233521786944,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 12.195104434544652
+ ],
+ [
+ 70.23749253438575,
+ 12.389752169473105
+ ],
+ [
+ 70.0078071674184,
+ 12.389752169473105
+ ],
+ [
+ 69.89296448393472,
+ 12.195104434544652
+ ],
+ [
+ 70.0078071674184,
+ 12.000456699616198
+ ],
+ [
+ 70.23749253438575,
+ 12.000456699616198
+ ],
+ [
+ 70.35233521786944,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 12.58439990440156
+ ],
+ [
+ 70.23749253438575,
+ 12.779047639330013
+ ],
+ [
+ 70.0078071674184,
+ 12.779047639330013
+ ],
+ [
+ 69.89296448393472,
+ 12.58439990440156
+ ],
+ [
+ 70.0078071674184,
+ 12.389752169473105
+ ],
+ [
+ 70.23749253438575,
+ 12.389752169473105
+ ],
+ [
+ 70.35233521786944,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 12.973695374258465
+ ],
+ [
+ 70.23749253438575,
+ 13.16834310918692
+ ],
+ [
+ 70.0078071674184,
+ 13.16834310918692
+ ],
+ [
+ 69.89296448393472,
+ 12.973695374258465
+ ],
+ [
+ 70.0078071674184,
+ 12.779047639330011
+ ],
+ [
+ 70.23749253438575,
+ 12.779047639330011
+ ],
+ [
+ 70.35233521786944,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 13.362990844115371
+ ],
+ [
+ 70.23749253438575,
+ 13.557638579043825
+ ],
+ [
+ 70.0078071674184,
+ 13.557638579043825
+ ],
+ [
+ 69.89296448393472,
+ 13.362990844115371
+ ],
+ [
+ 70.0078071674184,
+ 13.168343109186917
+ ],
+ [
+ 70.23749253438575,
+ 13.168343109186917
+ ],
+ [
+ 70.35233521786944,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 13.752286313972277
+ ],
+ [
+ 70.23749253438575,
+ 13.946934048900731
+ ],
+ [
+ 70.0078071674184,
+ 13.946934048900731
+ ],
+ [
+ 69.89296448393472,
+ 13.752286313972277
+ ],
+ [
+ 70.0078071674184,
+ 13.557638579043823
+ ],
+ [
+ 70.23749253438575,
+ 13.557638579043823
+ ],
+ [
+ 70.35233521786944,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 14.141581783829183
+ ],
+ [
+ 70.23749253438575,
+ 14.336229518757637
+ ],
+ [
+ 70.0078071674184,
+ 14.336229518757637
+ ],
+ [
+ 69.89296448393472,
+ 14.141581783829183
+ ],
+ [
+ 70.0078071674184,
+ 13.94693404890073
+ ],
+ [
+ 70.23749253438575,
+ 13.94693404890073
+ ],
+ [
+ 70.35233521786944,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 14.530877253686091
+ ],
+ [
+ 70.23749253438575,
+ 14.725524988614545
+ ],
+ [
+ 70.0078071674184,
+ 14.725524988614545
+ ],
+ [
+ 69.89296448393472,
+ 14.530877253686091
+ ],
+ [
+ 70.0078071674184,
+ 14.336229518757637
+ ],
+ [
+ 70.23749253438575,
+ 14.336229518757637
+ ],
+ [
+ 70.35233521786944,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 14.920172723542997
+ ],
+ [
+ 70.23749253438575,
+ 15.114820458471451
+ ],
+ [
+ 70.0078071674184,
+ 15.114820458471451
+ ],
+ [
+ 69.89296448393472,
+ 14.920172723542997
+ ],
+ [
+ 70.0078071674184,
+ 14.725524988614543
+ ],
+ [
+ 70.23749253438575,
+ 14.725524988614543
+ ],
+ [
+ 70.35233521786944,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 15.309468193399903
+ ],
+ [
+ 70.23749253438575,
+ 15.504115928328357
+ ],
+ [
+ 70.0078071674184,
+ 15.504115928328357
+ ],
+ [
+ 69.89296448393472,
+ 15.309468193399903
+ ],
+ [
+ 70.0078071674184,
+ 15.11482045847145
+ ],
+ [
+ 70.23749253438575,
+ 15.11482045847145
+ ],
+ [
+ 70.35233521786944,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 15.69876366325681
+ ],
+ [
+ 70.23749253438575,
+ 15.893411398185265
+ ],
+ [
+ 70.0078071674184,
+ 15.893411398185265
+ ],
+ [
+ 69.89296448393472,
+ 15.69876366325681
+ ],
+ [
+ 70.0078071674184,
+ 15.504115928328357
+ ],
+ [
+ 70.23749253438575,
+ 15.504115928328357
+ ],
+ [
+ 70.35233521786944,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 16.088059133113717
+ ],
+ [
+ 70.23749253438575,
+ 16.28270686804217
+ ],
+ [
+ 70.0078071674184,
+ 16.28270686804217
+ ],
+ [
+ 69.89296448393472,
+ 16.088059133113717
+ ],
+ [
+ 70.0078071674184,
+ 15.893411398185263
+ ],
+ [
+ 70.23749253438575,
+ 15.893411398185263
+ ],
+ [
+ 70.35233521786944,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 16.477354602970625
+ ],
+ [
+ 70.23749253438575,
+ 16.672002337899077
+ ],
+ [
+ 70.0078071674184,
+ 16.672002337899077
+ ],
+ [
+ 69.89296448393472,
+ 16.477354602970625
+ ],
+ [
+ 70.0078071674184,
+ 16.282706868042172
+ ],
+ [
+ 70.23749253438575,
+ 16.282706868042172
+ ],
+ [
+ 70.35233521786944,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 16.86665007282753
+ ],
+ [
+ 70.23749253438575,
+ 17.06129780775598
+ ],
+ [
+ 70.0078071674184,
+ 17.06129780775598
+ ],
+ [
+ 69.89296448393472,
+ 16.86665007282753
+ ],
+ [
+ 70.0078071674184,
+ 16.672002337899077
+ ],
+ [
+ 70.23749253438575,
+ 16.672002337899077
+ ],
+ [
+ 70.35233521786944,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 17.255945542684437
+ ],
+ [
+ 70.23749253438575,
+ 17.45059327761289
+ ],
+ [
+ 70.0078071674184,
+ 17.45059327761289
+ ],
+ [
+ 69.89296448393472,
+ 17.255945542684437
+ ],
+ [
+ 70.0078071674184,
+ 17.061297807755984
+ ],
+ [
+ 70.23749253438575,
+ 17.061297807755984
+ ],
+ [
+ 70.35233521786944,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 17.64524101254134
+ ],
+ [
+ 70.23749253438575,
+ 17.839888747469793
+ ],
+ [
+ 70.0078071674184,
+ 17.839888747469793
+ ],
+ [
+ 69.89296448393472,
+ 17.64524101254134
+ ],
+ [
+ 70.0078071674184,
+ 17.45059327761289
+ ],
+ [
+ 70.23749253438575,
+ 17.45059327761289
+ ],
+ [
+ 70.35233521786944,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 18.03453648239825
+ ],
+ [
+ 70.23749253438575,
+ 18.2291842173267
+ ],
+ [
+ 70.0078071674184,
+ 18.2291842173267
+ ],
+ [
+ 69.89296448393472,
+ 18.03453648239825
+ ],
+ [
+ 70.0078071674184,
+ 17.839888747469796
+ ],
+ [
+ 70.23749253438575,
+ 17.839888747469796
+ ],
+ [
+ 70.35233521786944,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 18.423831952255156
+ ],
+ [
+ 70.23749253438575,
+ 18.61847968718361
+ ],
+ [
+ 70.0078071674184,
+ 18.61847968718361
+ ],
+ [
+ 69.89296448393472,
+ 18.423831952255156
+ ],
+ [
+ 70.0078071674184,
+ 18.229184217326704
+ ],
+ [
+ 70.23749253438575,
+ 18.229184217326704
+ ],
+ [
+ 70.35233521786944,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 18.81312742211206
+ ],
+ [
+ 70.23749253438575,
+ 19.007775157040513
+ ],
+ [
+ 70.0078071674184,
+ 19.007775157040513
+ ],
+ [
+ 69.89296448393472,
+ 18.81312742211206
+ ],
+ [
+ 70.0078071674184,
+ 18.61847968718361
+ ],
+ [
+ 70.23749253438575,
+ 18.61847968718361
+ ],
+ [
+ 70.35233521786944,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 19.20242289196897
+ ],
+ [
+ 70.23749253438575,
+ 19.39707062689742
+ ],
+ [
+ 70.0078071674184,
+ 19.39707062689742
+ ],
+ [
+ 69.89296448393472,
+ 19.20242289196897
+ ],
+ [
+ 70.0078071674184,
+ 19.007775157040516
+ ],
+ [
+ 70.23749253438575,
+ 19.007775157040516
+ ],
+ [
+ 70.35233521786944,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 19.591718361825876
+ ],
+ [
+ 70.23749253438575,
+ 19.78636609675433
+ ],
+ [
+ 70.0078071674184,
+ 19.78636609675433
+ ],
+ [
+ 69.89296448393472,
+ 19.591718361825876
+ ],
+ [
+ 70.0078071674184,
+ 19.397070626897424
+ ],
+ [
+ 70.23749253438575,
+ 19.397070626897424
+ ],
+ [
+ 70.35233521786944,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 19.98101383168278
+ ],
+ [
+ 70.23749253438575,
+ 20.175661566611232
+ ],
+ [
+ 70.0078071674184,
+ 20.175661566611232
+ ],
+ [
+ 69.89296448393472,
+ 19.98101383168278
+ ],
+ [
+ 70.0078071674184,
+ 19.78636609675433
+ ],
+ [
+ 70.23749253438575,
+ 19.78636609675433
+ ],
+ [
+ 70.35233521786944,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 20.370309301539685
+ ],
+ [
+ 70.23749253438575,
+ 20.564957036468137
+ ],
+ [
+ 70.0078071674184,
+ 20.564957036468137
+ ],
+ [
+ 69.89296448393472,
+ 20.370309301539685
+ ],
+ [
+ 70.0078071674184,
+ 20.175661566611232
+ ],
+ [
+ 70.23749253438575,
+ 20.175661566611232
+ ],
+ [
+ 70.35233521786944,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 20.759604771396592
+ ],
+ [
+ 70.23749253438575,
+ 20.954252506325044
+ ],
+ [
+ 70.0078071674184,
+ 20.954252506325044
+ ],
+ [
+ 69.89296448393472,
+ 20.759604771396592
+ ],
+ [
+ 70.0078071674184,
+ 20.56495703646814
+ ],
+ [
+ 70.23749253438575,
+ 20.56495703646814
+ ],
+ [
+ 70.35233521786944,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 21.1489002412535
+ ],
+ [
+ 70.23749253438575,
+ 21.343547976181952
+ ],
+ [
+ 70.0078071674184,
+ 21.343547976181952
+ ],
+ [
+ 69.89296448393472,
+ 21.1489002412535
+ ],
+ [
+ 70.0078071674184,
+ 20.954252506325048
+ ],
+ [
+ 70.23749253438575,
+ 20.954252506325048
+ ],
+ [
+ 70.35233521786944,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 21.538195711110404
+ ],
+ [
+ 70.23749253438575,
+ 21.732843446038856
+ ],
+ [
+ 70.0078071674184,
+ 21.732843446038856
+ ],
+ [
+ 69.89296448393472,
+ 21.538195711110404
+ ],
+ [
+ 70.0078071674184,
+ 21.343547976181952
+ ],
+ [
+ 70.23749253438575,
+ 21.343547976181952
+ ],
+ [
+ 70.35233521786944,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 21.927491180967312
+ ],
+ [
+ 70.23749253438575,
+ 22.122138915895764
+ ],
+ [
+ 70.0078071674184,
+ 22.122138915895764
+ ],
+ [
+ 69.89296448393472,
+ 21.927491180967312
+ ],
+ [
+ 70.0078071674184,
+ 21.73284344603886
+ ],
+ [
+ 70.23749253438575,
+ 21.73284344603886
+ ],
+ [
+ 70.35233521786944,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 22.31678665082422
+ ],
+ [
+ 70.23749253438575,
+ 22.511434385752672
+ ],
+ [
+ 70.0078071674184,
+ 22.511434385752672
+ ],
+ [
+ 69.89296448393472,
+ 22.31678665082422
+ ],
+ [
+ 70.0078071674184,
+ 22.122138915895768
+ ],
+ [
+ 70.23749253438575,
+ 22.122138915895768
+ ],
+ [
+ 70.35233521786944,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 22.706082120681124
+ ],
+ [
+ 70.23749253438575,
+ 22.900729855609576
+ ],
+ [
+ 70.0078071674184,
+ 22.900729855609576
+ ],
+ [
+ 69.89296448393472,
+ 22.706082120681124
+ ],
+ [
+ 70.0078071674184,
+ 22.511434385752672
+ ],
+ [
+ 70.23749253438575,
+ 22.511434385752672
+ ],
+ [
+ 70.35233521786944,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 23.095377590538032
+ ],
+ [
+ 70.23749253438575,
+ 23.290025325466484
+ ],
+ [
+ 70.0078071674184,
+ 23.290025325466484
+ ],
+ [
+ 69.89296448393472,
+ 23.095377590538032
+ ],
+ [
+ 70.0078071674184,
+ 22.90072985560958
+ ],
+ [
+ 70.23749253438575,
+ 22.90072985560958
+ ],
+ [
+ 70.35233521786944,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 23.48467306039494
+ ],
+ [
+ 70.23749253438575,
+ 23.67932079532339
+ ],
+ [
+ 70.0078071674184,
+ 23.67932079532339
+ ],
+ [
+ 69.89296448393472,
+ 23.48467306039494
+ ],
+ [
+ 70.0078071674184,
+ 23.290025325466488
+ ],
+ [
+ 70.23749253438575,
+ 23.290025325466488
+ ],
+ [
+ 70.35233521786944,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 23.873968530251844
+ ],
+ [
+ 70.23749253438575,
+ 24.068616265180296
+ ],
+ [
+ 70.0078071674184,
+ 24.068616265180296
+ ],
+ [
+ 69.89296448393472,
+ 23.873968530251844
+ ],
+ [
+ 70.0078071674184,
+ 23.67932079532339
+ ],
+ [
+ 70.23749253438575,
+ 23.67932079532339
+ ],
+ [
+ 70.35233521786944,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 24.263264000108748
+ ],
+ [
+ 70.23749253438575,
+ 24.4579117350372
+ ],
+ [
+ 70.0078071674184,
+ 24.4579117350372
+ ],
+ [
+ 69.89296448393472,
+ 24.263264000108748
+ ],
+ [
+ 70.0078071674184,
+ 24.068616265180296
+ ],
+ [
+ 70.23749253438575,
+ 24.068616265180296
+ ],
+ [
+ 70.35233521786944,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 24.652559469965656
+ ],
+ [
+ 70.23749253438575,
+ 24.847207204894108
+ ],
+ [
+ 70.0078071674184,
+ 24.847207204894108
+ ],
+ [
+ 69.89296448393472,
+ 24.652559469965656
+ ],
+ [
+ 70.0078071674184,
+ 24.457911735037204
+ ],
+ [
+ 70.23749253438575,
+ 24.457911735037204
+ ],
+ [
+ 70.35233521786944,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 25.041854939822564
+ ],
+ [
+ 70.23749253438575,
+ 25.236502674751016
+ ],
+ [
+ 70.0078071674184,
+ 25.236502674751016
+ ],
+ [
+ 69.89296448393472,
+ 25.041854939822564
+ ],
+ [
+ 70.0078071674184,
+ 24.84720720489411
+ ],
+ [
+ 70.23749253438575,
+ 24.84720720489411
+ ],
+ [
+ 70.35233521786944,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 25.431150409679468
+ ],
+ [
+ 70.23749253438575,
+ 25.62579814460792
+ ],
+ [
+ 70.0078071674184,
+ 25.62579814460792
+ ],
+ [
+ 69.89296448393472,
+ 25.431150409679468
+ ],
+ [
+ 70.0078071674184,
+ 25.236502674751016
+ ],
+ [
+ 70.23749253438575,
+ 25.236502674751016
+ ],
+ [
+ 70.35233521786944,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 25.820445879536376
+ ],
+ [
+ 70.23749253438575,
+ 26.015093614464828
+ ],
+ [
+ 70.0078071674184,
+ 26.015093614464828
+ ],
+ [
+ 69.89296448393472,
+ 25.820445879536376
+ ],
+ [
+ 70.0078071674184,
+ 25.625798144607923
+ ],
+ [
+ 70.23749253438575,
+ 25.625798144607923
+ ],
+ [
+ 70.35233521786944,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 26.209741349393283
+ ],
+ [
+ 70.23749253438575,
+ 26.404389084321735
+ ],
+ [
+ 70.0078071674184,
+ 26.404389084321735
+ ],
+ [
+ 69.89296448393472,
+ 26.209741349393283
+ ],
+ [
+ 70.0078071674184,
+ 26.01509361446483
+ ],
+ [
+ 70.23749253438575,
+ 26.01509361446483
+ ],
+ [
+ 70.35233521786944,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 26.599036819250188
+ ],
+ [
+ 70.23749253438575,
+ 26.79368455417864
+ ],
+ [
+ 70.0078071674184,
+ 26.79368455417864
+ ],
+ [
+ 69.89296448393472,
+ 26.599036819250188
+ ],
+ [
+ 70.0078071674184,
+ 26.404389084321735
+ ],
+ [
+ 70.23749253438575,
+ 26.404389084321735
+ ],
+ [
+ 70.35233521786944,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 26.988332289107095
+ ],
+ [
+ 70.23749253438575,
+ 27.182980024035547
+ ],
+ [
+ 70.0078071674184,
+ 27.182980024035547
+ ],
+ [
+ 69.89296448393472,
+ 26.988332289107095
+ ],
+ [
+ 70.0078071674184,
+ 26.793684554178643
+ ],
+ [
+ 70.23749253438575,
+ 26.793684554178643
+ ],
+ [
+ 70.35233521786944,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 27.377627758964003
+ ],
+ [
+ 70.23749253438575,
+ 27.572275493892455
+ ],
+ [
+ 70.0078071674184,
+ 27.572275493892455
+ ],
+ [
+ 69.89296448393472,
+ 27.377627758964003
+ ],
+ [
+ 70.0078071674184,
+ 27.18298002403555
+ ],
+ [
+ 70.23749253438575,
+ 27.18298002403555
+ ],
+ [
+ 70.35233521786944,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 27.766923228820907
+ ],
+ [
+ 70.23749253438575,
+ 27.96157096374936
+ ],
+ [
+ 70.0078071674184,
+ 27.96157096374936
+ ],
+ [
+ 69.89296448393472,
+ 27.766923228820907
+ ],
+ [
+ 70.0078071674184,
+ 27.572275493892455
+ ],
+ [
+ 70.23749253438575,
+ 27.572275493892455
+ ],
+ [
+ 70.35233521786944,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 28.156218698677815
+ ],
+ [
+ 70.23749253438575,
+ 28.350866433606267
+ ],
+ [
+ 70.0078071674184,
+ 28.350866433606267
+ ],
+ [
+ 69.89296448393472,
+ 28.156218698677815
+ ],
+ [
+ 70.0078071674184,
+ 27.961570963749363
+ ],
+ [
+ 70.23749253438575,
+ 27.961570963749363
+ ],
+ [
+ 70.35233521786944,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 28.54551416853472
+ ],
+ [
+ 70.23749253438575,
+ 28.74016190346317
+ ],
+ [
+ 70.0078071674184,
+ 28.74016190346317
+ ],
+ [
+ 69.89296448393472,
+ 28.54551416853472
+ ],
+ [
+ 70.0078071674184,
+ 28.350866433606267
+ ],
+ [
+ 70.23749253438575,
+ 28.350866433606267
+ ],
+ [
+ 70.35233521786944,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 28.934809638391627
+ ],
+ [
+ 70.23749253438575,
+ 29.12945737332008
+ ],
+ [
+ 70.0078071674184,
+ 29.12945737332008
+ ],
+ [
+ 69.89296448393472,
+ 28.934809638391627
+ ],
+ [
+ 70.0078071674184,
+ 28.740161903463175
+ ],
+ [
+ 70.23749253438575,
+ 28.740161903463175
+ ],
+ [
+ 70.35233521786944,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 29.32410510824853
+ ],
+ [
+ 70.23749253438575,
+ 29.518752843176983
+ ],
+ [
+ 70.0078071674184,
+ 29.518752843176983
+ ],
+ [
+ 69.89296448393472,
+ 29.32410510824853
+ ],
+ [
+ 70.0078071674184,
+ 29.12945737332008
+ ],
+ [
+ 70.23749253438575,
+ 29.12945737332008
+ ],
+ [
+ 70.35233521786944,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 29.71340057810544
+ ],
+ [
+ 70.23749253438575,
+ 29.90804831303389
+ ],
+ [
+ 70.0078071674184,
+ 29.90804831303389
+ ],
+ [
+ 69.89296448393472,
+ 29.71340057810544
+ ],
+ [
+ 70.0078071674184,
+ 29.518752843176987
+ ],
+ [
+ 70.23749253438575,
+ 29.518752843176987
+ ],
+ [
+ 70.35233521786944,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 30.102696047962343
+ ],
+ [
+ 70.23749253438575,
+ 30.297343782890795
+ ],
+ [
+ 70.0078071674184,
+ 30.297343782890795
+ ],
+ [
+ 69.89296448393472,
+ 30.102696047962343
+ ],
+ [
+ 70.0078071674184,
+ 29.90804831303389
+ ],
+ [
+ 70.23749253438575,
+ 29.90804831303389
+ ],
+ [
+ 70.35233521786944,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 30.49199151781925
+ ],
+ [
+ 70.23749253438575,
+ 30.686639252747703
+ ],
+ [
+ 70.0078071674184,
+ 30.686639252747703
+ ],
+ [
+ 69.89296448393472,
+ 30.49199151781925
+ ],
+ [
+ 70.0078071674184,
+ 30.2973437828908
+ ],
+ [
+ 70.23749253438575,
+ 30.2973437828908
+ ],
+ [
+ 70.35233521786944,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 30.88128698767616
+ ],
+ [
+ 70.23749253438575,
+ 31.07593472260461
+ ],
+ [
+ 70.0078071674184,
+ 31.07593472260461
+ ],
+ [
+ 69.89296448393472,
+ 30.88128698767616
+ ],
+ [
+ 70.0078071674184,
+ 30.686639252747707
+ ],
+ [
+ 70.23749253438575,
+ 30.686639252747707
+ ],
+ [
+ 70.35233521786944,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 31.270582457533063
+ ],
+ [
+ 70.23749253438575,
+ 31.465230192461515
+ ],
+ [
+ 70.0078071674184,
+ 31.465230192461515
+ ],
+ [
+ 69.89296448393472,
+ 31.270582457533063
+ ],
+ [
+ 70.0078071674184,
+ 31.07593472260461
+ ],
+ [
+ 70.23749253438575,
+ 31.07593472260461
+ ],
+ [
+ 70.35233521786944,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 31.65987792738997
+ ],
+ [
+ 70.23749253438575,
+ 31.854525662318423
+ ],
+ [
+ 70.0078071674184,
+ 31.854525662318423
+ ],
+ [
+ 69.89296448393472,
+ 31.65987792738997
+ ],
+ [
+ 70.0078071674184,
+ 31.46523019246152
+ ],
+ [
+ 70.23749253438575,
+ 31.46523019246152
+ ],
+ [
+ 70.35233521786944,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 32.049173397246875
+ ],
+ [
+ 70.23749253438575,
+ 32.24382113217533
+ ],
+ [
+ 70.0078071674184,
+ 32.24382113217533
+ ],
+ [
+ 69.89296448393472,
+ 32.049173397246875
+ ],
+ [
+ 70.0078071674184,
+ 31.854525662318423
+ ],
+ [
+ 70.23749253438575,
+ 31.854525662318423
+ ],
+ [
+ 70.35233521786944,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 32.438468867103786
+ ],
+ [
+ 70.23749253438575,
+ 32.63311660203224
+ ],
+ [
+ 70.0078071674184,
+ 32.63311660203224
+ ],
+ [
+ 69.89296448393472,
+ 32.438468867103786
+ ],
+ [
+ 70.0078071674184,
+ 32.243821132175334
+ ],
+ [
+ 70.23749253438575,
+ 32.243821132175334
+ ],
+ [
+ 70.35233521786944,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 32.82776433696069
+ ],
+ [
+ 70.23749253438575,
+ 33.02241207188914
+ ],
+ [
+ 70.0078071674184,
+ 33.02241207188914
+ ],
+ [
+ 69.89296448393472,
+ 32.82776433696069
+ ],
+ [
+ 70.0078071674184,
+ 32.63311660203224
+ ],
+ [
+ 70.23749253438575,
+ 32.63311660203224
+ ],
+ [
+ 70.35233521786944,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 33.217059806817595
+ ],
+ [
+ 70.23749253438575,
+ 33.41170754174605
+ ],
+ [
+ 70.0078071674184,
+ 33.41170754174605
+ ],
+ [
+ 69.89296448393472,
+ 33.217059806817595
+ ],
+ [
+ 70.0078071674184,
+ 33.02241207188914
+ ],
+ [
+ 70.23749253438575,
+ 33.02241207188914
+ ],
+ [
+ 70.35233521786944,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 33.6063552766745
+ ],
+ [
+ 70.23749253438575,
+ 33.80100301160295
+ ],
+ [
+ 70.0078071674184,
+ 33.80100301160295
+ ],
+ [
+ 69.89296448393472,
+ 33.6063552766745
+ ],
+ [
+ 70.0078071674184,
+ 33.41170754174605
+ ],
+ [
+ 70.23749253438575,
+ 33.41170754174605
+ ],
+ [
+ 70.35233521786944,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 33.9956507465314
+ ],
+ [
+ 70.23749253438575,
+ 34.190298481459855
+ ],
+ [
+ 70.0078071674184,
+ 34.190298481459855
+ ],
+ [
+ 69.89296448393472,
+ 33.9956507465314
+ ],
+ [
+ 70.0078071674184,
+ 33.80100301160295
+ ],
+ [
+ 70.23749253438575,
+ 33.80100301160295
+ ],
+ [
+ 70.35233521786944,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 34.384946216388315
+ ],
+ [
+ 70.23749253438575,
+ 34.57959395131677
+ ],
+ [
+ 70.0078071674184,
+ 34.57959395131677
+ ],
+ [
+ 69.89296448393472,
+ 34.384946216388315
+ ],
+ [
+ 70.0078071674184,
+ 34.19029848145986
+ ],
+ [
+ 70.23749253438575,
+ 34.19029848145986
+ ],
+ [
+ 70.35233521786944,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 34.774241686245226
+ ],
+ [
+ 70.23749253438575,
+ 34.96888942117368
+ ],
+ [
+ 70.0078071674184,
+ 34.96888942117368
+ ],
+ [
+ 69.89296448393472,
+ 34.774241686245226
+ ],
+ [
+ 70.0078071674184,
+ 34.579593951316774
+ ],
+ [
+ 70.23749253438575,
+ 34.579593951316774
+ ],
+ [
+ 70.35233521786944,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 35.16353715610213
+ ],
+ [
+ 70.23749253438575,
+ 35.35818489103058
+ ],
+ [
+ 70.0078071674184,
+ 35.35818489103058
+ ],
+ [
+ 69.89296448393472,
+ 35.16353715610213
+ ],
+ [
+ 70.0078071674184,
+ 34.96888942117368
+ ],
+ [
+ 70.23749253438575,
+ 34.96888942117368
+ ],
+ [
+ 70.35233521786944,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 35.552832625959034
+ ],
+ [
+ 70.23749253438575,
+ 35.74748036088749
+ ],
+ [
+ 70.0078071674184,
+ 35.74748036088749
+ ],
+ [
+ 69.89296448393472,
+ 35.552832625959034
+ ],
+ [
+ 70.0078071674184,
+ 35.35818489103058
+ ],
+ [
+ 70.23749253438575,
+ 35.35818489103058
+ ],
+ [
+ 70.35233521786944,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 35.94212809581594
+ ],
+ [
+ 70.23749253438575,
+ 36.13677583074439
+ ],
+ [
+ 70.0078071674184,
+ 36.13677583074439
+ ],
+ [
+ 69.89296448393472,
+ 35.94212809581594
+ ],
+ [
+ 70.0078071674184,
+ 35.74748036088749
+ ],
+ [
+ 70.23749253438575,
+ 35.74748036088749
+ ],
+ [
+ 70.35233521786944,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 36.33142356567284
+ ],
+ [
+ 70.23749253438575,
+ 36.526071300601295
+ ],
+ [
+ 70.0078071674184,
+ 36.526071300601295
+ ],
+ [
+ 69.89296448393472,
+ 36.33142356567284
+ ],
+ [
+ 70.0078071674184,
+ 36.13677583074439
+ ],
+ [
+ 70.23749253438575,
+ 36.13677583074439
+ ],
+ [
+ 70.35233521786944,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 36.720719035529754
+ ],
+ [
+ 70.23749253438575,
+ 36.915366770458206
+ ],
+ [
+ 70.0078071674184,
+ 36.915366770458206
+ ],
+ [
+ 69.89296448393472,
+ 36.720719035529754
+ ],
+ [
+ 70.0078071674184,
+ 36.5260713006013
+ ],
+ [
+ 70.23749253438575,
+ 36.5260713006013
+ ],
+ [
+ 70.35233521786944,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 37.11001450538666
+ ],
+ [
+ 70.23749253438575,
+ 37.30466224031511
+ ],
+ [
+ 70.0078071674184,
+ 37.30466224031511
+ ],
+ [
+ 69.89296448393472,
+ 37.11001450538666
+ ],
+ [
+ 70.0078071674184,
+ 36.915366770458206
+ ],
+ [
+ 70.23749253438575,
+ 36.915366770458206
+ ],
+ [
+ 70.35233521786944,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 37.49930997524357
+ ],
+ [
+ 70.23749253438575,
+ 37.69395771017202
+ ],
+ [
+ 70.0078071674184,
+ 37.69395771017202
+ ],
+ [
+ 69.89296448393472,
+ 37.49930997524357
+ ],
+ [
+ 70.0078071674184,
+ 37.30466224031512
+ ],
+ [
+ 70.23749253438575,
+ 37.30466224031512
+ ],
+ [
+ 70.35233521786944,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 37.888605445100474
+ ],
+ [
+ 70.23749253438575,
+ 38.083253180028926
+ ],
+ [
+ 70.0078071674184,
+ 38.083253180028926
+ ],
+ [
+ 69.89296448393472,
+ 37.888605445100474
+ ],
+ [
+ 70.0078071674184,
+ 37.69395771017202
+ ],
+ [
+ 70.23749253438575,
+ 37.69395771017202
+ ],
+ [
+ 70.35233521786944,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 38.27790091495738
+ ],
+ [
+ 70.23749253438575,
+ 38.47254864988583
+ ],
+ [
+ 70.0078071674184,
+ 38.47254864988583
+ ],
+ [
+ 69.89296448393472,
+ 38.27790091495738
+ ],
+ [
+ 70.0078071674184,
+ 38.083253180028926
+ ],
+ [
+ 70.23749253438575,
+ 38.083253180028926
+ ],
+ [
+ 70.35233521786944,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 38.66719638481428
+ ],
+ [
+ 70.23749253438575,
+ 38.861844119742734
+ ],
+ [
+ 70.0078071674184,
+ 38.861844119742734
+ ],
+ [
+ 69.89296448393472,
+ 38.66719638481428
+ ],
+ [
+ 70.0078071674184,
+ 38.47254864988583
+ ],
+ [
+ 70.23749253438575,
+ 38.47254864988583
+ ],
+ [
+ 70.35233521786944,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 39.05649185467119
+ ],
+ [
+ 70.23749253438575,
+ 39.25113958959964
+ ],
+ [
+ 70.0078071674184,
+ 39.25113958959964
+ ],
+ [
+ 69.89296448393472,
+ 39.05649185467119
+ ],
+ [
+ 70.0078071674184,
+ 38.861844119742734
+ ],
+ [
+ 70.23749253438575,
+ 38.861844119742734
+ ],
+ [
+ 70.35233521786944,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 39.4457873245281
+ ],
+ [
+ 70.23749253438575,
+ 39.64043505945655
+ ],
+ [
+ 70.0078071674184,
+ 39.64043505945655
+ ],
+ [
+ 69.89296448393472,
+ 39.4457873245281
+ ],
+ [
+ 70.0078071674184,
+ 39.251139589599646
+ ],
+ [
+ 70.23749253438575,
+ 39.251139589599646
+ ],
+ [
+ 70.35233521786944,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 39.835082794385
+ ],
+ [
+ 70.23749253438575,
+ 40.029730529313454
+ ],
+ [
+ 70.0078071674184,
+ 40.029730529313454
+ ],
+ [
+ 69.89296448393472,
+ 39.835082794385
+ ],
+ [
+ 70.0078071674184,
+ 39.64043505945655
+ ],
+ [
+ 70.23749253438575,
+ 39.64043505945655
+ ],
+ [
+ 70.35233521786944,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 40.22437826424191
+ ],
+ [
+ 70.23749253438575,
+ 40.419025999170366
+ ],
+ [
+ 70.0078071674184,
+ 40.419025999170366
+ ],
+ [
+ 69.89296448393472,
+ 40.22437826424191
+ ],
+ [
+ 70.0078071674184,
+ 40.02973052931346
+ ],
+ [
+ 70.23749253438575,
+ 40.02973052931346
+ ],
+ [
+ 70.35233521786944,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 40.61367373409882
+ ],
+ [
+ 70.23749253438575,
+ 40.80832146902727
+ ],
+ [
+ 70.0078071674184,
+ 40.80832146902727
+ ],
+ [
+ 69.89296448393472,
+ 40.61367373409882
+ ],
+ [
+ 70.0078071674184,
+ 40.419025999170366
+ ],
+ [
+ 70.23749253438575,
+ 40.419025999170366
+ ],
+ [
+ 70.35233521786944,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 41.00296920395572
+ ],
+ [
+ 70.23749253438575,
+ 41.197616938884174
+ ],
+ [
+ 70.0078071674184,
+ 41.197616938884174
+ ],
+ [
+ 69.89296448393472,
+ 41.00296920395572
+ ],
+ [
+ 70.0078071674184,
+ 40.80832146902727
+ ],
+ [
+ 70.23749253438575,
+ 40.80832146902727
+ ],
+ [
+ 70.35233521786944,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 41.392264673812626
+ ],
+ [
+ 70.23749253438575,
+ 41.58691240874108
+ ],
+ [
+ 70.0078071674184,
+ 41.58691240874108
+ ],
+ [
+ 69.89296448393472,
+ 41.392264673812626
+ ],
+ [
+ 70.0078071674184,
+ 41.197616938884174
+ ],
+ [
+ 70.23749253438575,
+ 41.197616938884174
+ ],
+ [
+ 70.35233521786944,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 41.78156014366953
+ ],
+ [
+ 70.23749253438575,
+ 41.97620787859798
+ ],
+ [
+ 70.0078071674184,
+ 41.97620787859798
+ ],
+ [
+ 69.89296448393472,
+ 41.78156014366953
+ ],
+ [
+ 70.0078071674184,
+ 41.58691240874108
+ ],
+ [
+ 70.23749253438575,
+ 41.58691240874108
+ ],
+ [
+ 70.35233521786944,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 42.17085561352644
+ ],
+ [
+ 70.23749253438575,
+ 42.365503348454894
+ ],
+ [
+ 70.0078071674184,
+ 42.365503348454894
+ ],
+ [
+ 69.89296448393472,
+ 42.17085561352644
+ ],
+ [
+ 70.0078071674184,
+ 41.97620787859799
+ ],
+ [
+ 70.23749253438575,
+ 41.97620787859799
+ ],
+ [
+ 70.35233521786944,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 42.56015108338335
+ ],
+ [
+ 70.23749253438575,
+ 42.754798818311805
+ ],
+ [
+ 70.0078071674184,
+ 42.754798818311805
+ ],
+ [
+ 69.89296448393472,
+ 42.56015108338335
+ ],
+ [
+ 70.0078071674184,
+ 42.3655033484549
+ ],
+ [
+ 70.23749253438575,
+ 42.3655033484549
+ ],
+ [
+ 70.35233521786944,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 42.94944655324026
+ ],
+ [
+ 70.23749253438575,
+ 43.14409428816871
+ ],
+ [
+ 70.0078071674184,
+ 43.14409428816871
+ ],
+ [
+ 69.89296448393472,
+ 42.94944655324026
+ ],
+ [
+ 70.0078071674184,
+ 42.754798818311805
+ ],
+ [
+ 70.23749253438575,
+ 42.754798818311805
+ ],
+ [
+ 70.35233521786944,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 43.33874202309716
+ ],
+ [
+ 70.23749253438575,
+ 43.53338975802561
+ ],
+ [
+ 70.0078071674184,
+ 43.53338975802561
+ ],
+ [
+ 69.89296448393472,
+ 43.33874202309716
+ ],
+ [
+ 70.0078071674184,
+ 43.14409428816871
+ ],
+ [
+ 70.23749253438575,
+ 43.14409428816871
+ ],
+ [
+ 70.35233521786944,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 43.728037492954066
+ ],
+ [
+ 70.23749253438575,
+ 43.92268522788252
+ ],
+ [
+ 70.0078071674184,
+ 43.92268522788252
+ ],
+ [
+ 69.89296448393472,
+ 43.728037492954066
+ ],
+ [
+ 70.0078071674184,
+ 43.53338975802561
+ ],
+ [
+ 70.23749253438575,
+ 43.53338975802561
+ ],
+ [
+ 70.35233521786944,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 44.11733296281097
+ ],
+ [
+ 70.23749253438575,
+ 44.31198069773942
+ ],
+ [
+ 70.0078071674184,
+ 44.31198069773942
+ ],
+ [
+ 69.89296448393472,
+ 44.11733296281097
+ ],
+ [
+ 70.0078071674184,
+ 43.92268522788252
+ ],
+ [
+ 70.23749253438575,
+ 43.92268522788252
+ ],
+ [
+ 70.35233521786944,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 44.506628432667874
+ ],
+ [
+ 70.23749253438575,
+ 44.701276167596326
+ ],
+ [
+ 70.0078071674184,
+ 44.701276167596326
+ ],
+ [
+ 69.89296448393472,
+ 44.506628432667874
+ ],
+ [
+ 70.0078071674184,
+ 44.31198069773942
+ ],
+ [
+ 70.23749253438575,
+ 44.31198069773942
+ ],
+ [
+ 70.35233521786944,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 44.89592390252479
+ ],
+ [
+ 70.23749253438575,
+ 45.090571637453245
+ ],
+ [
+ 70.0078071674184,
+ 45.090571637453245
+ ],
+ [
+ 69.89296448393472,
+ 44.89592390252479
+ ],
+ [
+ 70.0078071674184,
+ 44.70127616759634
+ ],
+ [
+ 70.23749253438575,
+ 44.70127616759634
+ ],
+ [
+ 70.35233521786944,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 45.2852193723817
+ ],
+ [
+ 70.23749253438575,
+ 45.47986710731015
+ ],
+ [
+ 70.0078071674184,
+ 45.47986710731015
+ ],
+ [
+ 69.89296448393472,
+ 45.2852193723817
+ ],
+ [
+ 70.0078071674184,
+ 45.090571637453245
+ ],
+ [
+ 70.23749253438575,
+ 45.090571637453245
+ ],
+ [
+ 70.35233521786944,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 45.6745148422386
+ ],
+ [
+ 70.23749253438575,
+ 45.86916257716705
+ ],
+ [
+ 70.0078071674184,
+ 45.86916257716705
+ ],
+ [
+ 69.89296448393472,
+ 45.6745148422386
+ ],
+ [
+ 70.0078071674184,
+ 45.47986710731015
+ ],
+ [
+ 70.23749253438575,
+ 45.47986710731015
+ ],
+ [
+ 70.35233521786944,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 46.063810312095505
+ ],
+ [
+ 70.23749253438575,
+ 46.25845804702396
+ ],
+ [
+ 70.0078071674184,
+ 46.25845804702396
+ ],
+ [
+ 69.89296448393472,
+ 46.063810312095505
+ ],
+ [
+ 70.0078071674184,
+ 45.86916257716705
+ ],
+ [
+ 70.23749253438575,
+ 45.86916257716705
+ ],
+ [
+ 70.35233521786944,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 46.45310578195241
+ ],
+ [
+ 70.23749253438575,
+ 46.64775351688086
+ ],
+ [
+ 70.0078071674184,
+ 46.64775351688086
+ ],
+ [
+ 69.89296448393472,
+ 46.45310578195241
+ ],
+ [
+ 70.0078071674184,
+ 46.25845804702396
+ ],
+ [
+ 70.23749253438575,
+ 46.25845804702396
+ ],
+ [
+ 70.35233521786944,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 46.842401251809314
+ ],
+ [
+ 70.23749253438575,
+ 47.037048986737766
+ ],
+ [
+ 70.0078071674184,
+ 47.037048986737766
+ ],
+ [
+ 69.89296448393472,
+ 46.842401251809314
+ ],
+ [
+ 70.0078071674184,
+ 46.64775351688086
+ ],
+ [
+ 70.23749253438575,
+ 46.64775351688086
+ ],
+ [
+ 70.35233521786944,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 47.23169672166622
+ ],
+ [
+ 70.23749253438575,
+ 47.42634445659467
+ ],
+ [
+ 70.0078071674184,
+ 47.42634445659467
+ ],
+ [
+ 69.89296448393472,
+ 47.23169672166622
+ ],
+ [
+ 70.0078071674184,
+ 47.037048986737766
+ ],
+ [
+ 70.23749253438575,
+ 47.037048986737766
+ ],
+ [
+ 70.35233521786944,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.35233521786944,
+ 47.620992191523136
+ ],
+ [
+ 70.23749253438575,
+ 47.81563992645159
+ ],
+ [
+ 70.0078071674184,
+ 47.81563992645159
+ ],
+ [
+ 69.89296448393472,
+ 47.620992191523136
+ ],
+ [
+ 70.0078071674184,
+ 47.426344456594684
+ ],
+ [
+ 70.23749253438575,
+ 47.426344456594684
+ ],
+ [
+ 70.35233521786944,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 12.0004566996162
+ ],
+ [
+ 70.58202058483678,
+ 12.195104434544653
+ ],
+ [
+ 70.35233521786944,
+ 12.195104434544653
+ ],
+ [
+ 70.23749253438575,
+ 12.0004566996162
+ ],
+ [
+ 70.35233521786944,
+ 11.805808964687746
+ ],
+ [
+ 70.58202058483678,
+ 11.805808964687746
+ ],
+ [
+ 70.69686326832047,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 12.389752169473105
+ ],
+ [
+ 70.58202058483678,
+ 12.58439990440156
+ ],
+ [
+ 70.35233521786944,
+ 12.58439990440156
+ ],
+ [
+ 70.23749253438575,
+ 12.389752169473105
+ ],
+ [
+ 70.35233521786944,
+ 12.195104434544652
+ ],
+ [
+ 70.58202058483678,
+ 12.195104434544652
+ ],
+ [
+ 70.69686326832047,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 12.779047639330013
+ ],
+ [
+ 70.58202058483678,
+ 12.973695374258467
+ ],
+ [
+ 70.35233521786944,
+ 12.973695374258467
+ ],
+ [
+ 70.23749253438575,
+ 12.779047639330013
+ ],
+ [
+ 70.35233521786944,
+ 12.58439990440156
+ ],
+ [
+ 70.58202058483678,
+ 12.58439990440156
+ ],
+ [
+ 70.69686326832047,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 13.16834310918692
+ ],
+ [
+ 70.58202058483678,
+ 13.362990844115373
+ ],
+ [
+ 70.35233521786944,
+ 13.362990844115373
+ ],
+ [
+ 70.23749253438575,
+ 13.16834310918692
+ ],
+ [
+ 70.35233521786944,
+ 12.973695374258465
+ ],
+ [
+ 70.58202058483678,
+ 12.973695374258465
+ ],
+ [
+ 70.69686326832047,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 13.557638579043825
+ ],
+ [
+ 70.58202058483678,
+ 13.752286313972279
+ ],
+ [
+ 70.35233521786944,
+ 13.752286313972279
+ ],
+ [
+ 70.23749253438575,
+ 13.557638579043825
+ ],
+ [
+ 70.35233521786944,
+ 13.362990844115371
+ ],
+ [
+ 70.58202058483678,
+ 13.362990844115371
+ ],
+ [
+ 70.69686326832047,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 13.946934048900731
+ ],
+ [
+ 70.58202058483678,
+ 14.141581783829185
+ ],
+ [
+ 70.35233521786944,
+ 14.141581783829185
+ ],
+ [
+ 70.23749253438575,
+ 13.946934048900731
+ ],
+ [
+ 70.35233521786944,
+ 13.752286313972277
+ ],
+ [
+ 70.58202058483678,
+ 13.752286313972277
+ ],
+ [
+ 70.69686326832047,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 14.336229518757637
+ ],
+ [
+ 70.58202058483678,
+ 14.530877253686091
+ ],
+ [
+ 70.35233521786944,
+ 14.530877253686091
+ ],
+ [
+ 70.23749253438575,
+ 14.336229518757637
+ ],
+ [
+ 70.35233521786944,
+ 14.141581783829183
+ ],
+ [
+ 70.58202058483678,
+ 14.141581783829183
+ ],
+ [
+ 70.69686326832047,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 14.725524988614545
+ ],
+ [
+ 70.58202058483678,
+ 14.920172723542999
+ ],
+ [
+ 70.35233521786944,
+ 14.920172723542999
+ ],
+ [
+ 70.23749253438575,
+ 14.725524988614545
+ ],
+ [
+ 70.35233521786944,
+ 14.530877253686091
+ ],
+ [
+ 70.58202058483678,
+ 14.530877253686091
+ ],
+ [
+ 70.69686326832047,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 15.114820458471451
+ ],
+ [
+ 70.58202058483678,
+ 15.309468193399905
+ ],
+ [
+ 70.35233521786944,
+ 15.309468193399905
+ ],
+ [
+ 70.23749253438575,
+ 15.114820458471451
+ ],
+ [
+ 70.35233521786944,
+ 14.920172723542997
+ ],
+ [
+ 70.58202058483678,
+ 14.920172723542997
+ ],
+ [
+ 70.69686326832047,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 15.504115928328357
+ ],
+ [
+ 70.58202058483678,
+ 15.69876366325681
+ ],
+ [
+ 70.35233521786944,
+ 15.69876366325681
+ ],
+ [
+ 70.23749253438575,
+ 15.504115928328357
+ ],
+ [
+ 70.35233521786944,
+ 15.309468193399903
+ ],
+ [
+ 70.58202058483678,
+ 15.309468193399903
+ ],
+ [
+ 70.69686326832047,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 15.893411398185265
+ ],
+ [
+ 70.58202058483678,
+ 16.088059133113717
+ ],
+ [
+ 70.35233521786944,
+ 16.088059133113717
+ ],
+ [
+ 70.23749253438575,
+ 15.893411398185265
+ ],
+ [
+ 70.35233521786944,
+ 15.69876366325681
+ ],
+ [
+ 70.58202058483678,
+ 15.69876366325681
+ ],
+ [
+ 70.69686326832047,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 16.28270686804217
+ ],
+ [
+ 70.58202058483678,
+ 16.47735460297062
+ ],
+ [
+ 70.35233521786944,
+ 16.47735460297062
+ ],
+ [
+ 70.23749253438575,
+ 16.28270686804217
+ ],
+ [
+ 70.35233521786944,
+ 16.088059133113717
+ ],
+ [
+ 70.58202058483678,
+ 16.088059133113717
+ ],
+ [
+ 70.69686326832047,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 16.672002337899077
+ ],
+ [
+ 70.58202058483678,
+ 16.86665007282753
+ ],
+ [
+ 70.35233521786944,
+ 16.86665007282753
+ ],
+ [
+ 70.23749253438575,
+ 16.672002337899077
+ ],
+ [
+ 70.35233521786944,
+ 16.477354602970625
+ ],
+ [
+ 70.58202058483678,
+ 16.477354602970625
+ ],
+ [
+ 70.69686326832047,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 17.06129780775598
+ ],
+ [
+ 70.58202058483678,
+ 17.255945542684433
+ ],
+ [
+ 70.35233521786944,
+ 17.255945542684433
+ ],
+ [
+ 70.23749253438575,
+ 17.06129780775598
+ ],
+ [
+ 70.35233521786944,
+ 16.86665007282753
+ ],
+ [
+ 70.58202058483678,
+ 16.86665007282753
+ ],
+ [
+ 70.69686326832047,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 17.45059327761289
+ ],
+ [
+ 70.58202058483678,
+ 17.64524101254134
+ ],
+ [
+ 70.35233521786944,
+ 17.64524101254134
+ ],
+ [
+ 70.23749253438575,
+ 17.45059327761289
+ ],
+ [
+ 70.35233521786944,
+ 17.255945542684437
+ ],
+ [
+ 70.58202058483678,
+ 17.255945542684437
+ ],
+ [
+ 70.69686326832047,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 17.839888747469793
+ ],
+ [
+ 70.58202058483678,
+ 18.034536482398245
+ ],
+ [
+ 70.35233521786944,
+ 18.034536482398245
+ ],
+ [
+ 70.23749253438575,
+ 17.839888747469793
+ ],
+ [
+ 70.35233521786944,
+ 17.64524101254134
+ ],
+ [
+ 70.58202058483678,
+ 17.64524101254134
+ ],
+ [
+ 70.69686326832047,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 18.2291842173267
+ ],
+ [
+ 70.58202058483678,
+ 18.423831952255153
+ ],
+ [
+ 70.35233521786944,
+ 18.423831952255153
+ ],
+ [
+ 70.23749253438575,
+ 18.2291842173267
+ ],
+ [
+ 70.35233521786944,
+ 18.03453648239825
+ ],
+ [
+ 70.58202058483678,
+ 18.03453648239825
+ ],
+ [
+ 70.69686326832047,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 18.61847968718361
+ ],
+ [
+ 70.58202058483678,
+ 18.81312742211206
+ ],
+ [
+ 70.35233521786944,
+ 18.81312742211206
+ ],
+ [
+ 70.23749253438575,
+ 18.61847968718361
+ ],
+ [
+ 70.35233521786944,
+ 18.423831952255156
+ ],
+ [
+ 70.58202058483678,
+ 18.423831952255156
+ ],
+ [
+ 70.69686326832047,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 19.007775157040513
+ ],
+ [
+ 70.58202058483678,
+ 19.202422891968965
+ ],
+ [
+ 70.35233521786944,
+ 19.202422891968965
+ ],
+ [
+ 70.23749253438575,
+ 19.007775157040513
+ ],
+ [
+ 70.35233521786944,
+ 18.81312742211206
+ ],
+ [
+ 70.58202058483678,
+ 18.81312742211206
+ ],
+ [
+ 70.69686326832047,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 19.39707062689742
+ ],
+ [
+ 70.58202058483678,
+ 19.591718361825873
+ ],
+ [
+ 70.35233521786944,
+ 19.591718361825873
+ ],
+ [
+ 70.23749253438575,
+ 19.39707062689742
+ ],
+ [
+ 70.35233521786944,
+ 19.20242289196897
+ ],
+ [
+ 70.58202058483678,
+ 19.20242289196897
+ ],
+ [
+ 70.69686326832047,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 19.78636609675433
+ ],
+ [
+ 70.58202058483678,
+ 19.98101383168278
+ ],
+ [
+ 70.35233521786944,
+ 19.98101383168278
+ ],
+ [
+ 70.23749253438575,
+ 19.78636609675433
+ ],
+ [
+ 70.35233521786944,
+ 19.591718361825876
+ ],
+ [
+ 70.58202058483678,
+ 19.591718361825876
+ ],
+ [
+ 70.69686326832047,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 20.175661566611232
+ ],
+ [
+ 70.58202058483678,
+ 20.370309301539685
+ ],
+ [
+ 70.35233521786944,
+ 20.370309301539685
+ ],
+ [
+ 70.23749253438575,
+ 20.175661566611232
+ ],
+ [
+ 70.35233521786944,
+ 19.98101383168278
+ ],
+ [
+ 70.58202058483678,
+ 19.98101383168278
+ ],
+ [
+ 70.69686326832047,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 20.564957036468137
+ ],
+ [
+ 70.58202058483678,
+ 20.75960477139659
+ ],
+ [
+ 70.35233521786944,
+ 20.75960477139659
+ ],
+ [
+ 70.23749253438575,
+ 20.564957036468137
+ ],
+ [
+ 70.35233521786944,
+ 20.370309301539685
+ ],
+ [
+ 70.58202058483678,
+ 20.370309301539685
+ ],
+ [
+ 70.69686326832047,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 20.954252506325044
+ ],
+ [
+ 70.58202058483678,
+ 21.148900241253497
+ ],
+ [
+ 70.35233521786944,
+ 21.148900241253497
+ ],
+ [
+ 70.23749253438575,
+ 20.954252506325044
+ ],
+ [
+ 70.35233521786944,
+ 20.759604771396592
+ ],
+ [
+ 70.58202058483678,
+ 20.759604771396592
+ ],
+ [
+ 70.69686326832047,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 21.343547976181952
+ ],
+ [
+ 70.58202058483678,
+ 21.538195711110404
+ ],
+ [
+ 70.35233521786944,
+ 21.538195711110404
+ ],
+ [
+ 70.23749253438575,
+ 21.343547976181952
+ ],
+ [
+ 70.35233521786944,
+ 21.1489002412535
+ ],
+ [
+ 70.58202058483678,
+ 21.1489002412535
+ ],
+ [
+ 70.69686326832047,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 21.732843446038856
+ ],
+ [
+ 70.58202058483678,
+ 21.92749118096731
+ ],
+ [
+ 70.35233521786944,
+ 21.92749118096731
+ ],
+ [
+ 70.23749253438575,
+ 21.732843446038856
+ ],
+ [
+ 70.35233521786944,
+ 21.538195711110404
+ ],
+ [
+ 70.58202058483678,
+ 21.538195711110404
+ ],
+ [
+ 70.69686326832047,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 22.122138915895764
+ ],
+ [
+ 70.58202058483678,
+ 22.316786650824216
+ ],
+ [
+ 70.35233521786944,
+ 22.316786650824216
+ ],
+ [
+ 70.23749253438575,
+ 22.122138915895764
+ ],
+ [
+ 70.35233521786944,
+ 21.927491180967312
+ ],
+ [
+ 70.58202058483678,
+ 21.927491180967312
+ ],
+ [
+ 70.69686326832047,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 22.511434385752672
+ ],
+ [
+ 70.58202058483678,
+ 22.706082120681124
+ ],
+ [
+ 70.35233521786944,
+ 22.706082120681124
+ ],
+ [
+ 70.23749253438575,
+ 22.511434385752672
+ ],
+ [
+ 70.35233521786944,
+ 22.31678665082422
+ ],
+ [
+ 70.58202058483678,
+ 22.31678665082422
+ ],
+ [
+ 70.69686326832047,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 22.900729855609576
+ ],
+ [
+ 70.58202058483678,
+ 23.09537759053803
+ ],
+ [
+ 70.35233521786944,
+ 23.09537759053803
+ ],
+ [
+ 70.23749253438575,
+ 22.900729855609576
+ ],
+ [
+ 70.35233521786944,
+ 22.706082120681124
+ ],
+ [
+ 70.58202058483678,
+ 22.706082120681124
+ ],
+ [
+ 70.69686326832047,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 23.290025325466484
+ ],
+ [
+ 70.58202058483678,
+ 23.484673060394936
+ ],
+ [
+ 70.35233521786944,
+ 23.484673060394936
+ ],
+ [
+ 70.23749253438575,
+ 23.290025325466484
+ ],
+ [
+ 70.35233521786944,
+ 23.095377590538032
+ ],
+ [
+ 70.58202058483678,
+ 23.095377590538032
+ ],
+ [
+ 70.69686326832047,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 23.67932079532339
+ ],
+ [
+ 70.58202058483678,
+ 23.873968530251844
+ ],
+ [
+ 70.35233521786944,
+ 23.873968530251844
+ ],
+ [
+ 70.23749253438575,
+ 23.67932079532339
+ ],
+ [
+ 70.35233521786944,
+ 23.48467306039494
+ ],
+ [
+ 70.58202058483678,
+ 23.48467306039494
+ ],
+ [
+ 70.69686326832047,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 24.068616265180296
+ ],
+ [
+ 70.58202058483678,
+ 24.263264000108748
+ ],
+ [
+ 70.35233521786944,
+ 24.263264000108748
+ ],
+ [
+ 70.23749253438575,
+ 24.068616265180296
+ ],
+ [
+ 70.35233521786944,
+ 23.873968530251844
+ ],
+ [
+ 70.58202058483678,
+ 23.873968530251844
+ ],
+ [
+ 70.69686326832047,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 24.4579117350372
+ ],
+ [
+ 70.58202058483678,
+ 24.652559469965652
+ ],
+ [
+ 70.35233521786944,
+ 24.652559469965652
+ ],
+ [
+ 70.23749253438575,
+ 24.4579117350372
+ ],
+ [
+ 70.35233521786944,
+ 24.263264000108748
+ ],
+ [
+ 70.58202058483678,
+ 24.263264000108748
+ ],
+ [
+ 70.69686326832047,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 24.847207204894108
+ ],
+ [
+ 70.58202058483678,
+ 25.04185493982256
+ ],
+ [
+ 70.35233521786944,
+ 25.04185493982256
+ ],
+ [
+ 70.23749253438575,
+ 24.847207204894108
+ ],
+ [
+ 70.35233521786944,
+ 24.652559469965656
+ ],
+ [
+ 70.58202058483678,
+ 24.652559469965656
+ ],
+ [
+ 70.69686326832047,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 25.236502674751016
+ ],
+ [
+ 70.58202058483678,
+ 25.431150409679468
+ ],
+ [
+ 70.35233521786944,
+ 25.431150409679468
+ ],
+ [
+ 70.23749253438575,
+ 25.236502674751016
+ ],
+ [
+ 70.35233521786944,
+ 25.041854939822564
+ ],
+ [
+ 70.58202058483678,
+ 25.041854939822564
+ ],
+ [
+ 70.69686326832047,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 25.62579814460792
+ ],
+ [
+ 70.58202058483678,
+ 25.820445879536372
+ ],
+ [
+ 70.35233521786944,
+ 25.820445879536372
+ ],
+ [
+ 70.23749253438575,
+ 25.62579814460792
+ ],
+ [
+ 70.35233521786944,
+ 25.431150409679468
+ ],
+ [
+ 70.58202058483678,
+ 25.431150409679468
+ ],
+ [
+ 70.69686326832047,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 26.015093614464828
+ ],
+ [
+ 70.58202058483678,
+ 26.20974134939328
+ ],
+ [
+ 70.35233521786944,
+ 26.20974134939328
+ ],
+ [
+ 70.23749253438575,
+ 26.015093614464828
+ ],
+ [
+ 70.35233521786944,
+ 25.820445879536376
+ ],
+ [
+ 70.58202058483678,
+ 25.820445879536376
+ ],
+ [
+ 70.69686326832047,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 26.404389084321735
+ ],
+ [
+ 70.58202058483678,
+ 26.599036819250188
+ ],
+ [
+ 70.35233521786944,
+ 26.599036819250188
+ ],
+ [
+ 70.23749253438575,
+ 26.404389084321735
+ ],
+ [
+ 70.35233521786944,
+ 26.209741349393283
+ ],
+ [
+ 70.58202058483678,
+ 26.209741349393283
+ ],
+ [
+ 70.69686326832047,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 26.79368455417864
+ ],
+ [
+ 70.58202058483678,
+ 26.988332289107092
+ ],
+ [
+ 70.35233521786944,
+ 26.988332289107092
+ ],
+ [
+ 70.23749253438575,
+ 26.79368455417864
+ ],
+ [
+ 70.35233521786944,
+ 26.599036819250188
+ ],
+ [
+ 70.58202058483678,
+ 26.599036819250188
+ ],
+ [
+ 70.69686326832047,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 27.182980024035547
+ ],
+ [
+ 70.58202058483678,
+ 27.377627758964
+ ],
+ [
+ 70.35233521786944,
+ 27.377627758964
+ ],
+ [
+ 70.23749253438575,
+ 27.182980024035547
+ ],
+ [
+ 70.35233521786944,
+ 26.988332289107095
+ ],
+ [
+ 70.58202058483678,
+ 26.988332289107095
+ ],
+ [
+ 70.69686326832047,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 27.572275493892455
+ ],
+ [
+ 70.58202058483678,
+ 27.766923228820907
+ ],
+ [
+ 70.35233521786944,
+ 27.766923228820907
+ ],
+ [
+ 70.23749253438575,
+ 27.572275493892455
+ ],
+ [
+ 70.35233521786944,
+ 27.377627758964003
+ ],
+ [
+ 70.58202058483678,
+ 27.377627758964003
+ ],
+ [
+ 70.69686326832047,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 27.96157096374936
+ ],
+ [
+ 70.58202058483678,
+ 28.15621869867781
+ ],
+ [
+ 70.35233521786944,
+ 28.15621869867781
+ ],
+ [
+ 70.23749253438575,
+ 27.96157096374936
+ ],
+ [
+ 70.35233521786944,
+ 27.766923228820907
+ ],
+ [
+ 70.58202058483678,
+ 27.766923228820907
+ ],
+ [
+ 70.69686326832047,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 28.350866433606267
+ ],
+ [
+ 70.58202058483678,
+ 28.54551416853472
+ ],
+ [
+ 70.35233521786944,
+ 28.54551416853472
+ ],
+ [
+ 70.23749253438575,
+ 28.350866433606267
+ ],
+ [
+ 70.35233521786944,
+ 28.156218698677815
+ ],
+ [
+ 70.58202058483678,
+ 28.156218698677815
+ ],
+ [
+ 70.69686326832047,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 28.74016190346317
+ ],
+ [
+ 70.58202058483678,
+ 28.934809638391624
+ ],
+ [
+ 70.35233521786944,
+ 28.934809638391624
+ ],
+ [
+ 70.23749253438575,
+ 28.74016190346317
+ ],
+ [
+ 70.35233521786944,
+ 28.54551416853472
+ ],
+ [
+ 70.58202058483678,
+ 28.54551416853472
+ ],
+ [
+ 70.69686326832047,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 29.12945737332008
+ ],
+ [
+ 70.58202058483678,
+ 29.32410510824853
+ ],
+ [
+ 70.35233521786944,
+ 29.32410510824853
+ ],
+ [
+ 70.23749253438575,
+ 29.12945737332008
+ ],
+ [
+ 70.35233521786944,
+ 28.934809638391627
+ ],
+ [
+ 70.58202058483678,
+ 28.934809638391627
+ ],
+ [
+ 70.69686326832047,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 29.518752843176983
+ ],
+ [
+ 70.58202058483678,
+ 29.713400578105436
+ ],
+ [
+ 70.35233521786944,
+ 29.713400578105436
+ ],
+ [
+ 70.23749253438575,
+ 29.518752843176983
+ ],
+ [
+ 70.35233521786944,
+ 29.32410510824853
+ ],
+ [
+ 70.58202058483678,
+ 29.32410510824853
+ ],
+ [
+ 70.69686326832047,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 29.90804831303389
+ ],
+ [
+ 70.58202058483678,
+ 30.102696047962343
+ ],
+ [
+ 70.35233521786944,
+ 30.102696047962343
+ ],
+ [
+ 70.23749253438575,
+ 29.90804831303389
+ ],
+ [
+ 70.35233521786944,
+ 29.71340057810544
+ ],
+ [
+ 70.58202058483678,
+ 29.71340057810544
+ ],
+ [
+ 70.69686326832047,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 30.297343782890795
+ ],
+ [
+ 70.58202058483678,
+ 30.491991517819248
+ ],
+ [
+ 70.35233521786944,
+ 30.491991517819248
+ ],
+ [
+ 70.23749253438575,
+ 30.297343782890795
+ ],
+ [
+ 70.35233521786944,
+ 30.102696047962343
+ ],
+ [
+ 70.58202058483678,
+ 30.102696047962343
+ ],
+ [
+ 70.69686326832047,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 30.686639252747703
+ ],
+ [
+ 70.58202058483678,
+ 30.881286987676155
+ ],
+ [
+ 70.35233521786944,
+ 30.881286987676155
+ ],
+ [
+ 70.23749253438575,
+ 30.686639252747703
+ ],
+ [
+ 70.35233521786944,
+ 30.49199151781925
+ ],
+ [
+ 70.58202058483678,
+ 30.49199151781925
+ ],
+ [
+ 70.69686326832047,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 31.07593472260461
+ ],
+ [
+ 70.58202058483678,
+ 31.270582457533063
+ ],
+ [
+ 70.35233521786944,
+ 31.270582457533063
+ ],
+ [
+ 70.23749253438575,
+ 31.07593472260461
+ ],
+ [
+ 70.35233521786944,
+ 30.88128698767616
+ ],
+ [
+ 70.58202058483678,
+ 30.88128698767616
+ ],
+ [
+ 70.69686326832047,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 31.465230192461515
+ ],
+ [
+ 70.58202058483678,
+ 31.659877927389967
+ ],
+ [
+ 70.35233521786944,
+ 31.659877927389967
+ ],
+ [
+ 70.23749253438575,
+ 31.465230192461515
+ ],
+ [
+ 70.35233521786944,
+ 31.270582457533063
+ ],
+ [
+ 70.58202058483678,
+ 31.270582457533063
+ ],
+ [
+ 70.69686326832047,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 31.854525662318423
+ ],
+ [
+ 70.58202058483678,
+ 32.049173397246875
+ ],
+ [
+ 70.35233521786944,
+ 32.049173397246875
+ ],
+ [
+ 70.23749253438575,
+ 31.854525662318423
+ ],
+ [
+ 70.35233521786944,
+ 31.65987792738997
+ ],
+ [
+ 70.58202058483678,
+ 31.65987792738997
+ ],
+ [
+ 70.69686326832047,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 32.24382113217533
+ ],
+ [
+ 70.58202058483678,
+ 32.43846886710378
+ ],
+ [
+ 70.35233521786944,
+ 32.43846886710378
+ ],
+ [
+ 70.23749253438575,
+ 32.24382113217533
+ ],
+ [
+ 70.35233521786944,
+ 32.049173397246875
+ ],
+ [
+ 70.58202058483678,
+ 32.049173397246875
+ ],
+ [
+ 70.69686326832047,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 32.63311660203224
+ ],
+ [
+ 70.58202058483678,
+ 32.82776433696069
+ ],
+ [
+ 70.35233521786944,
+ 32.82776433696069
+ ],
+ [
+ 70.23749253438575,
+ 32.63311660203224
+ ],
+ [
+ 70.35233521786944,
+ 32.438468867103786
+ ],
+ [
+ 70.58202058483678,
+ 32.438468867103786
+ ],
+ [
+ 70.69686326832047,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 33.02241207188914
+ ],
+ [
+ 70.58202058483678,
+ 33.217059806817595
+ ],
+ [
+ 70.35233521786944,
+ 33.217059806817595
+ ],
+ [
+ 70.23749253438575,
+ 33.02241207188914
+ ],
+ [
+ 70.35233521786944,
+ 32.82776433696069
+ ],
+ [
+ 70.58202058483678,
+ 32.82776433696069
+ ],
+ [
+ 70.69686326832047,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 33.41170754174605
+ ],
+ [
+ 70.58202058483678,
+ 33.6063552766745
+ ],
+ [
+ 70.35233521786944,
+ 33.6063552766745
+ ],
+ [
+ 70.23749253438575,
+ 33.41170754174605
+ ],
+ [
+ 70.35233521786944,
+ 33.217059806817595
+ ],
+ [
+ 70.58202058483678,
+ 33.217059806817595
+ ],
+ [
+ 70.69686326832047,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 33.80100301160295
+ ],
+ [
+ 70.58202058483678,
+ 33.9956507465314
+ ],
+ [
+ 70.35233521786944,
+ 33.9956507465314
+ ],
+ [
+ 70.23749253438575,
+ 33.80100301160295
+ ],
+ [
+ 70.35233521786944,
+ 33.6063552766745
+ ],
+ [
+ 70.58202058483678,
+ 33.6063552766745
+ ],
+ [
+ 70.69686326832047,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 34.190298481459855
+ ],
+ [
+ 70.58202058483678,
+ 34.38494621638831
+ ],
+ [
+ 70.35233521786944,
+ 34.38494621638831
+ ],
+ [
+ 70.23749253438575,
+ 34.190298481459855
+ ],
+ [
+ 70.35233521786944,
+ 33.9956507465314
+ ],
+ [
+ 70.58202058483678,
+ 33.9956507465314
+ ],
+ [
+ 70.69686326832047,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 34.57959395131677
+ ],
+ [
+ 70.58202058483678,
+ 34.77424168624522
+ ],
+ [
+ 70.35233521786944,
+ 34.77424168624522
+ ],
+ [
+ 70.23749253438575,
+ 34.57959395131677
+ ],
+ [
+ 70.35233521786944,
+ 34.384946216388315
+ ],
+ [
+ 70.58202058483678,
+ 34.384946216388315
+ ],
+ [
+ 70.69686326832047,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 34.96888942117368
+ ],
+ [
+ 70.58202058483678,
+ 35.16353715610213
+ ],
+ [
+ 70.35233521786944,
+ 35.16353715610213
+ ],
+ [
+ 70.23749253438575,
+ 34.96888942117368
+ ],
+ [
+ 70.35233521786944,
+ 34.774241686245226
+ ],
+ [
+ 70.58202058483678,
+ 34.774241686245226
+ ],
+ [
+ 70.69686326832047,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 35.35818489103058
+ ],
+ [
+ 70.58202058483678,
+ 35.552832625959034
+ ],
+ [
+ 70.35233521786944,
+ 35.552832625959034
+ ],
+ [
+ 70.23749253438575,
+ 35.35818489103058
+ ],
+ [
+ 70.35233521786944,
+ 35.16353715610213
+ ],
+ [
+ 70.58202058483678,
+ 35.16353715610213
+ ],
+ [
+ 70.69686326832047,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 35.74748036088749
+ ],
+ [
+ 70.58202058483678,
+ 35.94212809581594
+ ],
+ [
+ 70.35233521786944,
+ 35.94212809581594
+ ],
+ [
+ 70.23749253438575,
+ 35.74748036088749
+ ],
+ [
+ 70.35233521786944,
+ 35.552832625959034
+ ],
+ [
+ 70.58202058483678,
+ 35.552832625959034
+ ],
+ [
+ 70.69686326832047,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 36.13677583074439
+ ],
+ [
+ 70.58202058483678,
+ 36.33142356567284
+ ],
+ [
+ 70.35233521786944,
+ 36.33142356567284
+ ],
+ [
+ 70.23749253438575,
+ 36.13677583074439
+ ],
+ [
+ 70.35233521786944,
+ 35.94212809581594
+ ],
+ [
+ 70.58202058483678,
+ 35.94212809581594
+ ],
+ [
+ 70.69686326832047,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 36.526071300601295
+ ],
+ [
+ 70.58202058483678,
+ 36.72071903552975
+ ],
+ [
+ 70.35233521786944,
+ 36.72071903552975
+ ],
+ [
+ 70.23749253438575,
+ 36.526071300601295
+ ],
+ [
+ 70.35233521786944,
+ 36.33142356567284
+ ],
+ [
+ 70.58202058483678,
+ 36.33142356567284
+ ],
+ [
+ 70.69686326832047,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 36.915366770458206
+ ],
+ [
+ 70.58202058483678,
+ 37.11001450538666
+ ],
+ [
+ 70.35233521786944,
+ 37.11001450538666
+ ],
+ [
+ 70.23749253438575,
+ 36.915366770458206
+ ],
+ [
+ 70.35233521786944,
+ 36.720719035529754
+ ],
+ [
+ 70.58202058483678,
+ 36.720719035529754
+ ],
+ [
+ 70.69686326832047,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 37.30466224031511
+ ],
+ [
+ 70.58202058483678,
+ 37.49930997524356
+ ],
+ [
+ 70.35233521786944,
+ 37.49930997524356
+ ],
+ [
+ 70.23749253438575,
+ 37.30466224031511
+ ],
+ [
+ 70.35233521786944,
+ 37.11001450538666
+ ],
+ [
+ 70.58202058483678,
+ 37.11001450538666
+ ],
+ [
+ 70.69686326832047,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 37.69395771017202
+ ],
+ [
+ 70.58202058483678,
+ 37.888605445100474
+ ],
+ [
+ 70.35233521786944,
+ 37.888605445100474
+ ],
+ [
+ 70.23749253438575,
+ 37.69395771017202
+ ],
+ [
+ 70.35233521786944,
+ 37.49930997524357
+ ],
+ [
+ 70.58202058483678,
+ 37.49930997524357
+ ],
+ [
+ 70.69686326832047,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 38.083253180028926
+ ],
+ [
+ 70.58202058483678,
+ 38.27790091495738
+ ],
+ [
+ 70.35233521786944,
+ 38.27790091495738
+ ],
+ [
+ 70.23749253438575,
+ 38.083253180028926
+ ],
+ [
+ 70.35233521786944,
+ 37.888605445100474
+ ],
+ [
+ 70.58202058483678,
+ 37.888605445100474
+ ],
+ [
+ 70.69686326832047,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 38.47254864988583
+ ],
+ [
+ 70.58202058483678,
+ 38.66719638481428
+ ],
+ [
+ 70.35233521786944,
+ 38.66719638481428
+ ],
+ [
+ 70.23749253438575,
+ 38.47254864988583
+ ],
+ [
+ 70.35233521786944,
+ 38.27790091495738
+ ],
+ [
+ 70.58202058483678,
+ 38.27790091495738
+ ],
+ [
+ 70.69686326832047,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 38.861844119742734
+ ],
+ [
+ 70.58202058483678,
+ 39.05649185467119
+ ],
+ [
+ 70.35233521786944,
+ 39.05649185467119
+ ],
+ [
+ 70.23749253438575,
+ 38.861844119742734
+ ],
+ [
+ 70.35233521786944,
+ 38.66719638481428
+ ],
+ [
+ 70.58202058483678,
+ 38.66719638481428
+ ],
+ [
+ 70.69686326832047,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 39.25113958959964
+ ],
+ [
+ 70.58202058483678,
+ 39.44578732452809
+ ],
+ [
+ 70.35233521786944,
+ 39.44578732452809
+ ],
+ [
+ 70.23749253438575,
+ 39.25113958959964
+ ],
+ [
+ 70.35233521786944,
+ 39.05649185467119
+ ],
+ [
+ 70.58202058483678,
+ 39.05649185467119
+ ],
+ [
+ 70.69686326832047,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 39.64043505945655
+ ],
+ [
+ 70.58202058483678,
+ 39.835082794385
+ ],
+ [
+ 70.35233521786944,
+ 39.835082794385
+ ],
+ [
+ 70.23749253438575,
+ 39.64043505945655
+ ],
+ [
+ 70.35233521786944,
+ 39.4457873245281
+ ],
+ [
+ 70.58202058483678,
+ 39.4457873245281
+ ],
+ [
+ 70.69686326832047,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 40.029730529313454
+ ],
+ [
+ 70.58202058483678,
+ 40.224378264241906
+ ],
+ [
+ 70.35233521786944,
+ 40.224378264241906
+ ],
+ [
+ 70.23749253438575,
+ 40.029730529313454
+ ],
+ [
+ 70.35233521786944,
+ 39.835082794385
+ ],
+ [
+ 70.58202058483678,
+ 39.835082794385
+ ],
+ [
+ 70.69686326832047,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 40.419025999170366
+ ],
+ [
+ 70.58202058483678,
+ 40.61367373409882
+ ],
+ [
+ 70.35233521786944,
+ 40.61367373409882
+ ],
+ [
+ 70.23749253438575,
+ 40.419025999170366
+ ],
+ [
+ 70.35233521786944,
+ 40.22437826424191
+ ],
+ [
+ 70.58202058483678,
+ 40.22437826424191
+ ],
+ [
+ 70.69686326832047,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 40.80832146902727
+ ],
+ [
+ 70.58202058483678,
+ 41.00296920395572
+ ],
+ [
+ 70.35233521786944,
+ 41.00296920395572
+ ],
+ [
+ 70.23749253438575,
+ 40.80832146902727
+ ],
+ [
+ 70.35233521786944,
+ 40.61367373409882
+ ],
+ [
+ 70.58202058483678,
+ 40.61367373409882
+ ],
+ [
+ 70.69686326832047,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 41.197616938884174
+ ],
+ [
+ 70.58202058483678,
+ 41.392264673812626
+ ],
+ [
+ 70.35233521786944,
+ 41.392264673812626
+ ],
+ [
+ 70.23749253438575,
+ 41.197616938884174
+ ],
+ [
+ 70.35233521786944,
+ 41.00296920395572
+ ],
+ [
+ 70.58202058483678,
+ 41.00296920395572
+ ],
+ [
+ 70.69686326832047,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 41.58691240874108
+ ],
+ [
+ 70.58202058483678,
+ 41.78156014366953
+ ],
+ [
+ 70.35233521786944,
+ 41.78156014366953
+ ],
+ [
+ 70.23749253438575,
+ 41.58691240874108
+ ],
+ [
+ 70.35233521786944,
+ 41.392264673812626
+ ],
+ [
+ 70.58202058483678,
+ 41.392264673812626
+ ],
+ [
+ 70.69686326832047,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 41.97620787859798
+ ],
+ [
+ 70.58202058483678,
+ 42.170855613526435
+ ],
+ [
+ 70.35233521786944,
+ 42.170855613526435
+ ],
+ [
+ 70.23749253438575,
+ 41.97620787859798
+ ],
+ [
+ 70.35233521786944,
+ 41.78156014366953
+ ],
+ [
+ 70.58202058483678,
+ 41.78156014366953
+ ],
+ [
+ 70.69686326832047,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 42.365503348454894
+ ],
+ [
+ 70.58202058483678,
+ 42.560151083383346
+ ],
+ [
+ 70.35233521786944,
+ 42.560151083383346
+ ],
+ [
+ 70.23749253438575,
+ 42.365503348454894
+ ],
+ [
+ 70.35233521786944,
+ 42.17085561352644
+ ],
+ [
+ 70.58202058483678,
+ 42.17085561352644
+ ],
+ [
+ 70.69686326832047,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 42.754798818311805
+ ],
+ [
+ 70.58202058483678,
+ 42.94944655324026
+ ],
+ [
+ 70.35233521786944,
+ 42.94944655324026
+ ],
+ [
+ 70.23749253438575,
+ 42.754798818311805
+ ],
+ [
+ 70.35233521786944,
+ 42.56015108338335
+ ],
+ [
+ 70.58202058483678,
+ 42.56015108338335
+ ],
+ [
+ 70.69686326832047,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 43.14409428816871
+ ],
+ [
+ 70.58202058483678,
+ 43.33874202309716
+ ],
+ [
+ 70.35233521786944,
+ 43.33874202309716
+ ],
+ [
+ 70.23749253438575,
+ 43.14409428816871
+ ],
+ [
+ 70.35233521786944,
+ 42.94944655324026
+ ],
+ [
+ 70.58202058483678,
+ 42.94944655324026
+ ],
+ [
+ 70.69686326832047,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 43.53338975802561
+ ],
+ [
+ 70.58202058483678,
+ 43.728037492954066
+ ],
+ [
+ 70.35233521786944,
+ 43.728037492954066
+ ],
+ [
+ 70.23749253438575,
+ 43.53338975802561
+ ],
+ [
+ 70.35233521786944,
+ 43.33874202309716
+ ],
+ [
+ 70.58202058483678,
+ 43.33874202309716
+ ],
+ [
+ 70.69686326832047,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 43.92268522788252
+ ],
+ [
+ 70.58202058483678,
+ 44.11733296281097
+ ],
+ [
+ 70.35233521786944,
+ 44.11733296281097
+ ],
+ [
+ 70.23749253438575,
+ 43.92268522788252
+ ],
+ [
+ 70.35233521786944,
+ 43.728037492954066
+ ],
+ [
+ 70.58202058483678,
+ 43.728037492954066
+ ],
+ [
+ 70.69686326832047,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 44.31198069773942
+ ],
+ [
+ 70.58202058483678,
+ 44.506628432667874
+ ],
+ [
+ 70.35233521786944,
+ 44.506628432667874
+ ],
+ [
+ 70.23749253438575,
+ 44.31198069773942
+ ],
+ [
+ 70.35233521786944,
+ 44.11733296281097
+ ],
+ [
+ 70.58202058483678,
+ 44.11733296281097
+ ],
+ [
+ 70.69686326832047,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 44.701276167596326
+ ],
+ [
+ 70.58202058483678,
+ 44.89592390252478
+ ],
+ [
+ 70.35233521786944,
+ 44.89592390252478
+ ],
+ [
+ 70.23749253438575,
+ 44.701276167596326
+ ],
+ [
+ 70.35233521786944,
+ 44.506628432667874
+ ],
+ [
+ 70.58202058483678,
+ 44.506628432667874
+ ],
+ [
+ 70.69686326832047,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 45.090571637453245
+ ],
+ [
+ 70.58202058483678,
+ 45.2852193723817
+ ],
+ [
+ 70.35233521786944,
+ 45.2852193723817
+ ],
+ [
+ 70.23749253438575,
+ 45.090571637453245
+ ],
+ [
+ 70.35233521786944,
+ 44.89592390252479
+ ],
+ [
+ 70.58202058483678,
+ 44.89592390252479
+ ],
+ [
+ 70.69686326832047,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 45.47986710731015
+ ],
+ [
+ 70.58202058483678,
+ 45.6745148422386
+ ],
+ [
+ 70.35233521786944,
+ 45.6745148422386
+ ],
+ [
+ 70.23749253438575,
+ 45.47986710731015
+ ],
+ [
+ 70.35233521786944,
+ 45.2852193723817
+ ],
+ [
+ 70.58202058483678,
+ 45.2852193723817
+ ],
+ [
+ 70.69686326832047,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 45.86916257716705
+ ],
+ [
+ 70.58202058483678,
+ 46.063810312095505
+ ],
+ [
+ 70.35233521786944,
+ 46.063810312095505
+ ],
+ [
+ 70.23749253438575,
+ 45.86916257716705
+ ],
+ [
+ 70.35233521786944,
+ 45.6745148422386
+ ],
+ [
+ 70.58202058483678,
+ 45.6745148422386
+ ],
+ [
+ 70.69686326832047,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 46.25845804702396
+ ],
+ [
+ 70.58202058483678,
+ 46.45310578195241
+ ],
+ [
+ 70.35233521786944,
+ 46.45310578195241
+ ],
+ [
+ 70.23749253438575,
+ 46.25845804702396
+ ],
+ [
+ 70.35233521786944,
+ 46.063810312095505
+ ],
+ [
+ 70.58202058483678,
+ 46.063810312095505
+ ],
+ [
+ 70.69686326832047,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 46.64775351688086
+ ],
+ [
+ 70.58202058483678,
+ 46.842401251809314
+ ],
+ [
+ 70.35233521786944,
+ 46.842401251809314
+ ],
+ [
+ 70.23749253438575,
+ 46.64775351688086
+ ],
+ [
+ 70.35233521786944,
+ 46.45310578195241
+ ],
+ [
+ 70.58202058483678,
+ 46.45310578195241
+ ],
+ [
+ 70.69686326832047,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 47.037048986737766
+ ],
+ [
+ 70.58202058483678,
+ 47.23169672166622
+ ],
+ [
+ 70.35233521786944,
+ 47.23169672166622
+ ],
+ [
+ 70.23749253438575,
+ 47.037048986737766
+ ],
+ [
+ 70.35233521786944,
+ 46.842401251809314
+ ],
+ [
+ 70.58202058483678,
+ 46.842401251809314
+ ],
+ [
+ 70.69686326832047,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 47.42634445659467
+ ],
+ [
+ 70.58202058483678,
+ 47.62099219152312
+ ],
+ [
+ 70.35233521786944,
+ 47.62099219152312
+ ],
+ [
+ 70.23749253438575,
+ 47.42634445659467
+ ],
+ [
+ 70.35233521786944,
+ 47.23169672166622
+ ],
+ [
+ 70.58202058483678,
+ 47.23169672166622
+ ],
+ [
+ 70.69686326832047,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 70.69686326832047,
+ 47.81563992645159
+ ],
+ [
+ 70.58202058483678,
+ 48.01028766138004
+ ],
+ [
+ 70.35233521786944,
+ 48.01028766138004
+ ],
+ [
+ 70.23749253438575,
+ 47.81563992645159
+ ],
+ [
+ 70.35233521786944,
+ 47.620992191523136
+ ],
+ [
+ 70.58202058483678,
+ 47.620992191523136
+ ],
+ [
+ 70.69686326832047,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 11.805808964687746
+ ],
+ [
+ 70.92654863528783,
+ 12.0004566996162
+ ],
+ [
+ 70.69686326832048,
+ 12.0004566996162
+ ],
+ [
+ 70.5820205848368,
+ 11.805808964687746
+ ],
+ [
+ 70.69686326832048,
+ 11.611161229759292
+ ],
+ [
+ 70.92654863528783,
+ 11.611161229759292
+ ],
+ [
+ 71.04139131877152,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 12.195104434544652
+ ],
+ [
+ 70.92654863528783,
+ 12.389752169473105
+ ],
+ [
+ 70.69686326832048,
+ 12.389752169473105
+ ],
+ [
+ 70.5820205848368,
+ 12.195104434544652
+ ],
+ [
+ 70.69686326832048,
+ 12.000456699616198
+ ],
+ [
+ 70.92654863528783,
+ 12.000456699616198
+ ],
+ [
+ 71.04139131877152,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 12.58439990440156
+ ],
+ [
+ 70.92654863528783,
+ 12.779047639330013
+ ],
+ [
+ 70.69686326832048,
+ 12.779047639330013
+ ],
+ [
+ 70.5820205848368,
+ 12.58439990440156
+ ],
+ [
+ 70.69686326832048,
+ 12.389752169473105
+ ],
+ [
+ 70.92654863528783,
+ 12.389752169473105
+ ],
+ [
+ 71.04139131877152,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 12.973695374258465
+ ],
+ [
+ 70.92654863528783,
+ 13.16834310918692
+ ],
+ [
+ 70.69686326832048,
+ 13.16834310918692
+ ],
+ [
+ 70.5820205848368,
+ 12.973695374258465
+ ],
+ [
+ 70.69686326832048,
+ 12.779047639330011
+ ],
+ [
+ 70.92654863528783,
+ 12.779047639330011
+ ],
+ [
+ 71.04139131877152,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 13.362990844115371
+ ],
+ [
+ 70.92654863528783,
+ 13.557638579043825
+ ],
+ [
+ 70.69686326832048,
+ 13.557638579043825
+ ],
+ [
+ 70.5820205848368,
+ 13.362990844115371
+ ],
+ [
+ 70.69686326832048,
+ 13.168343109186917
+ ],
+ [
+ 70.92654863528783,
+ 13.168343109186917
+ ],
+ [
+ 71.04139131877152,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 13.752286313972277
+ ],
+ [
+ 70.92654863528783,
+ 13.946934048900731
+ ],
+ [
+ 70.69686326832048,
+ 13.946934048900731
+ ],
+ [
+ 70.5820205848368,
+ 13.752286313972277
+ ],
+ [
+ 70.69686326832048,
+ 13.557638579043823
+ ],
+ [
+ 70.92654863528783,
+ 13.557638579043823
+ ],
+ [
+ 71.04139131877152,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 14.141581783829183
+ ],
+ [
+ 70.92654863528783,
+ 14.336229518757637
+ ],
+ [
+ 70.69686326832048,
+ 14.336229518757637
+ ],
+ [
+ 70.5820205848368,
+ 14.141581783829183
+ ],
+ [
+ 70.69686326832048,
+ 13.94693404890073
+ ],
+ [
+ 70.92654863528783,
+ 13.94693404890073
+ ],
+ [
+ 71.04139131877152,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 14.530877253686091
+ ],
+ [
+ 70.92654863528783,
+ 14.725524988614545
+ ],
+ [
+ 70.69686326832048,
+ 14.725524988614545
+ ],
+ [
+ 70.5820205848368,
+ 14.530877253686091
+ ],
+ [
+ 70.69686326832048,
+ 14.336229518757637
+ ],
+ [
+ 70.92654863528783,
+ 14.336229518757637
+ ],
+ [
+ 71.04139131877152,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 14.920172723542997
+ ],
+ [
+ 70.92654863528783,
+ 15.114820458471451
+ ],
+ [
+ 70.69686326832048,
+ 15.114820458471451
+ ],
+ [
+ 70.5820205848368,
+ 14.920172723542997
+ ],
+ [
+ 70.69686326832048,
+ 14.725524988614543
+ ],
+ [
+ 70.92654863528783,
+ 14.725524988614543
+ ],
+ [
+ 71.04139131877152,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 15.309468193399903
+ ],
+ [
+ 70.92654863528783,
+ 15.504115928328357
+ ],
+ [
+ 70.69686326832048,
+ 15.504115928328357
+ ],
+ [
+ 70.5820205848368,
+ 15.309468193399903
+ ],
+ [
+ 70.69686326832048,
+ 15.11482045847145
+ ],
+ [
+ 70.92654863528783,
+ 15.11482045847145
+ ],
+ [
+ 71.04139131877152,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 15.69876366325681
+ ],
+ [
+ 70.92654863528783,
+ 15.893411398185265
+ ],
+ [
+ 70.69686326832048,
+ 15.893411398185265
+ ],
+ [
+ 70.5820205848368,
+ 15.69876366325681
+ ],
+ [
+ 70.69686326832048,
+ 15.504115928328357
+ ],
+ [
+ 70.92654863528783,
+ 15.504115928328357
+ ],
+ [
+ 71.04139131877152,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 16.088059133113717
+ ],
+ [
+ 70.92654863528783,
+ 16.28270686804217
+ ],
+ [
+ 70.69686326832048,
+ 16.28270686804217
+ ],
+ [
+ 70.5820205848368,
+ 16.088059133113717
+ ],
+ [
+ 70.69686326832048,
+ 15.893411398185263
+ ],
+ [
+ 70.92654863528783,
+ 15.893411398185263
+ ],
+ [
+ 71.04139131877152,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 16.477354602970625
+ ],
+ [
+ 70.92654863528783,
+ 16.672002337899077
+ ],
+ [
+ 70.69686326832048,
+ 16.672002337899077
+ ],
+ [
+ 70.5820205848368,
+ 16.477354602970625
+ ],
+ [
+ 70.69686326832048,
+ 16.282706868042172
+ ],
+ [
+ 70.92654863528783,
+ 16.282706868042172
+ ],
+ [
+ 71.04139131877152,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 16.86665007282753
+ ],
+ [
+ 70.92654863528783,
+ 17.06129780775598
+ ],
+ [
+ 70.69686326832048,
+ 17.06129780775598
+ ],
+ [
+ 70.5820205848368,
+ 16.86665007282753
+ ],
+ [
+ 70.69686326832048,
+ 16.672002337899077
+ ],
+ [
+ 70.92654863528783,
+ 16.672002337899077
+ ],
+ [
+ 71.04139131877152,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 17.255945542684437
+ ],
+ [
+ 70.92654863528783,
+ 17.45059327761289
+ ],
+ [
+ 70.69686326832048,
+ 17.45059327761289
+ ],
+ [
+ 70.5820205848368,
+ 17.255945542684437
+ ],
+ [
+ 70.69686326832048,
+ 17.061297807755984
+ ],
+ [
+ 70.92654863528783,
+ 17.061297807755984
+ ],
+ [
+ 71.04139131877152,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 17.64524101254134
+ ],
+ [
+ 70.92654863528783,
+ 17.839888747469793
+ ],
+ [
+ 70.69686326832048,
+ 17.839888747469793
+ ],
+ [
+ 70.5820205848368,
+ 17.64524101254134
+ ],
+ [
+ 70.69686326832048,
+ 17.45059327761289
+ ],
+ [
+ 70.92654863528783,
+ 17.45059327761289
+ ],
+ [
+ 71.04139131877152,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 18.03453648239825
+ ],
+ [
+ 70.92654863528783,
+ 18.2291842173267
+ ],
+ [
+ 70.69686326832048,
+ 18.2291842173267
+ ],
+ [
+ 70.5820205848368,
+ 18.03453648239825
+ ],
+ [
+ 70.69686326832048,
+ 17.839888747469796
+ ],
+ [
+ 70.92654863528783,
+ 17.839888747469796
+ ],
+ [
+ 71.04139131877152,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 18.423831952255156
+ ],
+ [
+ 70.92654863528783,
+ 18.61847968718361
+ ],
+ [
+ 70.69686326832048,
+ 18.61847968718361
+ ],
+ [
+ 70.5820205848368,
+ 18.423831952255156
+ ],
+ [
+ 70.69686326832048,
+ 18.229184217326704
+ ],
+ [
+ 70.92654863528783,
+ 18.229184217326704
+ ],
+ [
+ 71.04139131877152,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 18.81312742211206
+ ],
+ [
+ 70.92654863528783,
+ 19.007775157040513
+ ],
+ [
+ 70.69686326832048,
+ 19.007775157040513
+ ],
+ [
+ 70.5820205848368,
+ 18.81312742211206
+ ],
+ [
+ 70.69686326832048,
+ 18.61847968718361
+ ],
+ [
+ 70.92654863528783,
+ 18.61847968718361
+ ],
+ [
+ 71.04139131877152,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 19.20242289196897
+ ],
+ [
+ 70.92654863528783,
+ 19.39707062689742
+ ],
+ [
+ 70.69686326832048,
+ 19.39707062689742
+ ],
+ [
+ 70.5820205848368,
+ 19.20242289196897
+ ],
+ [
+ 70.69686326832048,
+ 19.007775157040516
+ ],
+ [
+ 70.92654863528783,
+ 19.007775157040516
+ ],
+ [
+ 71.04139131877152,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 19.591718361825876
+ ],
+ [
+ 70.92654863528783,
+ 19.78636609675433
+ ],
+ [
+ 70.69686326832048,
+ 19.78636609675433
+ ],
+ [
+ 70.5820205848368,
+ 19.591718361825876
+ ],
+ [
+ 70.69686326832048,
+ 19.397070626897424
+ ],
+ [
+ 70.92654863528783,
+ 19.397070626897424
+ ],
+ [
+ 71.04139131877152,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 19.98101383168278
+ ],
+ [
+ 70.92654863528783,
+ 20.175661566611232
+ ],
+ [
+ 70.69686326832048,
+ 20.175661566611232
+ ],
+ [
+ 70.5820205848368,
+ 19.98101383168278
+ ],
+ [
+ 70.69686326832048,
+ 19.78636609675433
+ ],
+ [
+ 70.92654863528783,
+ 19.78636609675433
+ ],
+ [
+ 71.04139131877152,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 20.370309301539685
+ ],
+ [
+ 70.92654863528783,
+ 20.564957036468137
+ ],
+ [
+ 70.69686326832048,
+ 20.564957036468137
+ ],
+ [
+ 70.5820205848368,
+ 20.370309301539685
+ ],
+ [
+ 70.69686326832048,
+ 20.175661566611232
+ ],
+ [
+ 70.92654863528783,
+ 20.175661566611232
+ ],
+ [
+ 71.04139131877152,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 20.759604771396592
+ ],
+ [
+ 70.92654863528783,
+ 20.954252506325044
+ ],
+ [
+ 70.69686326832048,
+ 20.954252506325044
+ ],
+ [
+ 70.5820205848368,
+ 20.759604771396592
+ ],
+ [
+ 70.69686326832048,
+ 20.56495703646814
+ ],
+ [
+ 70.92654863528783,
+ 20.56495703646814
+ ],
+ [
+ 71.04139131877152,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 21.1489002412535
+ ],
+ [
+ 70.92654863528783,
+ 21.343547976181952
+ ],
+ [
+ 70.69686326832048,
+ 21.343547976181952
+ ],
+ [
+ 70.5820205848368,
+ 21.1489002412535
+ ],
+ [
+ 70.69686326832048,
+ 20.954252506325048
+ ],
+ [
+ 70.92654863528783,
+ 20.954252506325048
+ ],
+ [
+ 71.04139131877152,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 21.538195711110404
+ ],
+ [
+ 70.92654863528783,
+ 21.732843446038856
+ ],
+ [
+ 70.69686326832048,
+ 21.732843446038856
+ ],
+ [
+ 70.5820205848368,
+ 21.538195711110404
+ ],
+ [
+ 70.69686326832048,
+ 21.343547976181952
+ ],
+ [
+ 70.92654863528783,
+ 21.343547976181952
+ ],
+ [
+ 71.04139131877152,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 21.927491180967312
+ ],
+ [
+ 70.92654863528783,
+ 22.122138915895764
+ ],
+ [
+ 70.69686326832048,
+ 22.122138915895764
+ ],
+ [
+ 70.5820205848368,
+ 21.927491180967312
+ ],
+ [
+ 70.69686326832048,
+ 21.73284344603886
+ ],
+ [
+ 70.92654863528783,
+ 21.73284344603886
+ ],
+ [
+ 71.04139131877152,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 22.31678665082422
+ ],
+ [
+ 70.92654863528783,
+ 22.511434385752672
+ ],
+ [
+ 70.69686326832048,
+ 22.511434385752672
+ ],
+ [
+ 70.5820205848368,
+ 22.31678665082422
+ ],
+ [
+ 70.69686326832048,
+ 22.122138915895768
+ ],
+ [
+ 70.92654863528783,
+ 22.122138915895768
+ ],
+ [
+ 71.04139131877152,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 22.706082120681124
+ ],
+ [
+ 70.92654863528783,
+ 22.900729855609576
+ ],
+ [
+ 70.69686326832048,
+ 22.900729855609576
+ ],
+ [
+ 70.5820205848368,
+ 22.706082120681124
+ ],
+ [
+ 70.69686326832048,
+ 22.511434385752672
+ ],
+ [
+ 70.92654863528783,
+ 22.511434385752672
+ ],
+ [
+ 71.04139131877152,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 23.095377590538032
+ ],
+ [
+ 70.92654863528783,
+ 23.290025325466484
+ ],
+ [
+ 70.69686326832048,
+ 23.290025325466484
+ ],
+ [
+ 70.5820205848368,
+ 23.095377590538032
+ ],
+ [
+ 70.69686326832048,
+ 22.90072985560958
+ ],
+ [
+ 70.92654863528783,
+ 22.90072985560958
+ ],
+ [
+ 71.04139131877152,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 23.48467306039494
+ ],
+ [
+ 70.92654863528783,
+ 23.67932079532339
+ ],
+ [
+ 70.69686326832048,
+ 23.67932079532339
+ ],
+ [
+ 70.5820205848368,
+ 23.48467306039494
+ ],
+ [
+ 70.69686326832048,
+ 23.290025325466488
+ ],
+ [
+ 70.92654863528783,
+ 23.290025325466488
+ ],
+ [
+ 71.04139131877152,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 23.873968530251844
+ ],
+ [
+ 70.92654863528783,
+ 24.068616265180296
+ ],
+ [
+ 70.69686326832048,
+ 24.068616265180296
+ ],
+ [
+ 70.5820205848368,
+ 23.873968530251844
+ ],
+ [
+ 70.69686326832048,
+ 23.67932079532339
+ ],
+ [
+ 70.92654863528783,
+ 23.67932079532339
+ ],
+ [
+ 71.04139131877152,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 24.263264000108748
+ ],
+ [
+ 70.92654863528783,
+ 24.4579117350372
+ ],
+ [
+ 70.69686326832048,
+ 24.4579117350372
+ ],
+ [
+ 70.5820205848368,
+ 24.263264000108748
+ ],
+ [
+ 70.69686326832048,
+ 24.068616265180296
+ ],
+ [
+ 70.92654863528783,
+ 24.068616265180296
+ ],
+ [
+ 71.04139131877152,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 24.652559469965656
+ ],
+ [
+ 70.92654863528783,
+ 24.847207204894108
+ ],
+ [
+ 70.69686326832048,
+ 24.847207204894108
+ ],
+ [
+ 70.5820205848368,
+ 24.652559469965656
+ ],
+ [
+ 70.69686326832048,
+ 24.457911735037204
+ ],
+ [
+ 70.92654863528783,
+ 24.457911735037204
+ ],
+ [
+ 71.04139131877152,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 25.041854939822564
+ ],
+ [
+ 70.92654863528783,
+ 25.236502674751016
+ ],
+ [
+ 70.69686326832048,
+ 25.236502674751016
+ ],
+ [
+ 70.5820205848368,
+ 25.041854939822564
+ ],
+ [
+ 70.69686326832048,
+ 24.84720720489411
+ ],
+ [
+ 70.92654863528783,
+ 24.84720720489411
+ ],
+ [
+ 71.04139131877152,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 25.431150409679468
+ ],
+ [
+ 70.92654863528783,
+ 25.62579814460792
+ ],
+ [
+ 70.69686326832048,
+ 25.62579814460792
+ ],
+ [
+ 70.5820205848368,
+ 25.431150409679468
+ ],
+ [
+ 70.69686326832048,
+ 25.236502674751016
+ ],
+ [
+ 70.92654863528783,
+ 25.236502674751016
+ ],
+ [
+ 71.04139131877152,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 25.820445879536376
+ ],
+ [
+ 70.92654863528783,
+ 26.015093614464828
+ ],
+ [
+ 70.69686326832048,
+ 26.015093614464828
+ ],
+ [
+ 70.5820205848368,
+ 25.820445879536376
+ ],
+ [
+ 70.69686326832048,
+ 25.625798144607923
+ ],
+ [
+ 70.92654863528783,
+ 25.625798144607923
+ ],
+ [
+ 71.04139131877152,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 26.209741349393283
+ ],
+ [
+ 70.92654863528783,
+ 26.404389084321735
+ ],
+ [
+ 70.69686326832048,
+ 26.404389084321735
+ ],
+ [
+ 70.5820205848368,
+ 26.209741349393283
+ ],
+ [
+ 70.69686326832048,
+ 26.01509361446483
+ ],
+ [
+ 70.92654863528783,
+ 26.01509361446483
+ ],
+ [
+ 71.04139131877152,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 26.599036819250188
+ ],
+ [
+ 70.92654863528783,
+ 26.79368455417864
+ ],
+ [
+ 70.69686326832048,
+ 26.79368455417864
+ ],
+ [
+ 70.5820205848368,
+ 26.599036819250188
+ ],
+ [
+ 70.69686326832048,
+ 26.404389084321735
+ ],
+ [
+ 70.92654863528783,
+ 26.404389084321735
+ ],
+ [
+ 71.04139131877152,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 26.988332289107095
+ ],
+ [
+ 70.92654863528783,
+ 27.182980024035547
+ ],
+ [
+ 70.69686326832048,
+ 27.182980024035547
+ ],
+ [
+ 70.5820205848368,
+ 26.988332289107095
+ ],
+ [
+ 70.69686326832048,
+ 26.793684554178643
+ ],
+ [
+ 70.92654863528783,
+ 26.793684554178643
+ ],
+ [
+ 71.04139131877152,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 27.377627758964003
+ ],
+ [
+ 70.92654863528783,
+ 27.572275493892455
+ ],
+ [
+ 70.69686326832048,
+ 27.572275493892455
+ ],
+ [
+ 70.5820205848368,
+ 27.377627758964003
+ ],
+ [
+ 70.69686326832048,
+ 27.18298002403555
+ ],
+ [
+ 70.92654863528783,
+ 27.18298002403555
+ ],
+ [
+ 71.04139131877152,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 27.766923228820907
+ ],
+ [
+ 70.92654863528783,
+ 27.96157096374936
+ ],
+ [
+ 70.69686326832048,
+ 27.96157096374936
+ ],
+ [
+ 70.5820205848368,
+ 27.766923228820907
+ ],
+ [
+ 70.69686326832048,
+ 27.572275493892455
+ ],
+ [
+ 70.92654863528783,
+ 27.572275493892455
+ ],
+ [
+ 71.04139131877152,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 28.156218698677815
+ ],
+ [
+ 70.92654863528783,
+ 28.350866433606267
+ ],
+ [
+ 70.69686326832048,
+ 28.350866433606267
+ ],
+ [
+ 70.5820205848368,
+ 28.156218698677815
+ ],
+ [
+ 70.69686326832048,
+ 27.961570963749363
+ ],
+ [
+ 70.92654863528783,
+ 27.961570963749363
+ ],
+ [
+ 71.04139131877152,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 28.54551416853472
+ ],
+ [
+ 70.92654863528783,
+ 28.74016190346317
+ ],
+ [
+ 70.69686326832048,
+ 28.74016190346317
+ ],
+ [
+ 70.5820205848368,
+ 28.54551416853472
+ ],
+ [
+ 70.69686326832048,
+ 28.350866433606267
+ ],
+ [
+ 70.92654863528783,
+ 28.350866433606267
+ ],
+ [
+ 71.04139131877152,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 28.934809638391627
+ ],
+ [
+ 70.92654863528783,
+ 29.12945737332008
+ ],
+ [
+ 70.69686326832048,
+ 29.12945737332008
+ ],
+ [
+ 70.5820205848368,
+ 28.934809638391627
+ ],
+ [
+ 70.69686326832048,
+ 28.740161903463175
+ ],
+ [
+ 70.92654863528783,
+ 28.740161903463175
+ ],
+ [
+ 71.04139131877152,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 29.32410510824853
+ ],
+ [
+ 70.92654863528783,
+ 29.518752843176983
+ ],
+ [
+ 70.69686326832048,
+ 29.518752843176983
+ ],
+ [
+ 70.5820205848368,
+ 29.32410510824853
+ ],
+ [
+ 70.69686326832048,
+ 29.12945737332008
+ ],
+ [
+ 70.92654863528783,
+ 29.12945737332008
+ ],
+ [
+ 71.04139131877152,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 29.71340057810544
+ ],
+ [
+ 70.92654863528783,
+ 29.90804831303389
+ ],
+ [
+ 70.69686326832048,
+ 29.90804831303389
+ ],
+ [
+ 70.5820205848368,
+ 29.71340057810544
+ ],
+ [
+ 70.69686326832048,
+ 29.518752843176987
+ ],
+ [
+ 70.92654863528783,
+ 29.518752843176987
+ ],
+ [
+ 71.04139131877152,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 30.102696047962343
+ ],
+ [
+ 70.92654863528783,
+ 30.297343782890795
+ ],
+ [
+ 70.69686326832048,
+ 30.297343782890795
+ ],
+ [
+ 70.5820205848368,
+ 30.102696047962343
+ ],
+ [
+ 70.69686326832048,
+ 29.90804831303389
+ ],
+ [
+ 70.92654863528783,
+ 29.90804831303389
+ ],
+ [
+ 71.04139131877152,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 30.49199151781925
+ ],
+ [
+ 70.92654863528783,
+ 30.686639252747703
+ ],
+ [
+ 70.69686326832048,
+ 30.686639252747703
+ ],
+ [
+ 70.5820205848368,
+ 30.49199151781925
+ ],
+ [
+ 70.69686326832048,
+ 30.2973437828908
+ ],
+ [
+ 70.92654863528783,
+ 30.2973437828908
+ ],
+ [
+ 71.04139131877152,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 30.88128698767616
+ ],
+ [
+ 70.92654863528783,
+ 31.07593472260461
+ ],
+ [
+ 70.69686326832048,
+ 31.07593472260461
+ ],
+ [
+ 70.5820205848368,
+ 30.88128698767616
+ ],
+ [
+ 70.69686326832048,
+ 30.686639252747707
+ ],
+ [
+ 70.92654863528783,
+ 30.686639252747707
+ ],
+ [
+ 71.04139131877152,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 31.270582457533063
+ ],
+ [
+ 70.92654863528783,
+ 31.465230192461515
+ ],
+ [
+ 70.69686326832048,
+ 31.465230192461515
+ ],
+ [
+ 70.5820205848368,
+ 31.270582457533063
+ ],
+ [
+ 70.69686326832048,
+ 31.07593472260461
+ ],
+ [
+ 70.92654863528783,
+ 31.07593472260461
+ ],
+ [
+ 71.04139131877152,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 31.65987792738997
+ ],
+ [
+ 70.92654863528783,
+ 31.854525662318423
+ ],
+ [
+ 70.69686326832048,
+ 31.854525662318423
+ ],
+ [
+ 70.5820205848368,
+ 31.65987792738997
+ ],
+ [
+ 70.69686326832048,
+ 31.46523019246152
+ ],
+ [
+ 70.92654863528783,
+ 31.46523019246152
+ ],
+ [
+ 71.04139131877152,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 32.049173397246875
+ ],
+ [
+ 70.92654863528783,
+ 32.24382113217533
+ ],
+ [
+ 70.69686326832048,
+ 32.24382113217533
+ ],
+ [
+ 70.5820205848368,
+ 32.049173397246875
+ ],
+ [
+ 70.69686326832048,
+ 31.854525662318423
+ ],
+ [
+ 70.92654863528783,
+ 31.854525662318423
+ ],
+ [
+ 71.04139131877152,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 32.438468867103786
+ ],
+ [
+ 70.92654863528783,
+ 32.63311660203224
+ ],
+ [
+ 70.69686326832048,
+ 32.63311660203224
+ ],
+ [
+ 70.5820205848368,
+ 32.438468867103786
+ ],
+ [
+ 70.69686326832048,
+ 32.243821132175334
+ ],
+ [
+ 70.92654863528783,
+ 32.243821132175334
+ ],
+ [
+ 71.04139131877152,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 32.82776433696069
+ ],
+ [
+ 70.92654863528783,
+ 33.02241207188914
+ ],
+ [
+ 70.69686326832048,
+ 33.02241207188914
+ ],
+ [
+ 70.5820205848368,
+ 32.82776433696069
+ ],
+ [
+ 70.69686326832048,
+ 32.63311660203224
+ ],
+ [
+ 70.92654863528783,
+ 32.63311660203224
+ ],
+ [
+ 71.04139131877152,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 33.217059806817595
+ ],
+ [
+ 70.92654863528783,
+ 33.41170754174605
+ ],
+ [
+ 70.69686326832048,
+ 33.41170754174605
+ ],
+ [
+ 70.5820205848368,
+ 33.217059806817595
+ ],
+ [
+ 70.69686326832048,
+ 33.02241207188914
+ ],
+ [
+ 70.92654863528783,
+ 33.02241207188914
+ ],
+ [
+ 71.04139131877152,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 33.6063552766745
+ ],
+ [
+ 70.92654863528783,
+ 33.80100301160295
+ ],
+ [
+ 70.69686326832048,
+ 33.80100301160295
+ ],
+ [
+ 70.5820205848368,
+ 33.6063552766745
+ ],
+ [
+ 70.69686326832048,
+ 33.41170754174605
+ ],
+ [
+ 70.92654863528783,
+ 33.41170754174605
+ ],
+ [
+ 71.04139131877152,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 33.9956507465314
+ ],
+ [
+ 70.92654863528783,
+ 34.190298481459855
+ ],
+ [
+ 70.69686326832048,
+ 34.190298481459855
+ ],
+ [
+ 70.5820205848368,
+ 33.9956507465314
+ ],
+ [
+ 70.69686326832048,
+ 33.80100301160295
+ ],
+ [
+ 70.92654863528783,
+ 33.80100301160295
+ ],
+ [
+ 71.04139131877152,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 34.384946216388315
+ ],
+ [
+ 70.92654863528783,
+ 34.57959395131677
+ ],
+ [
+ 70.69686326832048,
+ 34.57959395131677
+ ],
+ [
+ 70.5820205848368,
+ 34.384946216388315
+ ],
+ [
+ 70.69686326832048,
+ 34.19029848145986
+ ],
+ [
+ 70.92654863528783,
+ 34.19029848145986
+ ],
+ [
+ 71.04139131877152,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 34.774241686245226
+ ],
+ [
+ 70.92654863528783,
+ 34.96888942117368
+ ],
+ [
+ 70.69686326832048,
+ 34.96888942117368
+ ],
+ [
+ 70.5820205848368,
+ 34.774241686245226
+ ],
+ [
+ 70.69686326832048,
+ 34.579593951316774
+ ],
+ [
+ 70.92654863528783,
+ 34.579593951316774
+ ],
+ [
+ 71.04139131877152,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 35.16353715610213
+ ],
+ [
+ 70.92654863528783,
+ 35.35818489103058
+ ],
+ [
+ 70.69686326832048,
+ 35.35818489103058
+ ],
+ [
+ 70.5820205848368,
+ 35.16353715610213
+ ],
+ [
+ 70.69686326832048,
+ 34.96888942117368
+ ],
+ [
+ 70.92654863528783,
+ 34.96888942117368
+ ],
+ [
+ 71.04139131877152,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 35.552832625959034
+ ],
+ [
+ 70.92654863528783,
+ 35.74748036088749
+ ],
+ [
+ 70.69686326832048,
+ 35.74748036088749
+ ],
+ [
+ 70.5820205848368,
+ 35.552832625959034
+ ],
+ [
+ 70.69686326832048,
+ 35.35818489103058
+ ],
+ [
+ 70.92654863528783,
+ 35.35818489103058
+ ],
+ [
+ 71.04139131877152,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 35.94212809581594
+ ],
+ [
+ 70.92654863528783,
+ 36.13677583074439
+ ],
+ [
+ 70.69686326832048,
+ 36.13677583074439
+ ],
+ [
+ 70.5820205848368,
+ 35.94212809581594
+ ],
+ [
+ 70.69686326832048,
+ 35.74748036088749
+ ],
+ [
+ 70.92654863528783,
+ 35.74748036088749
+ ],
+ [
+ 71.04139131877152,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 36.33142356567284
+ ],
+ [
+ 70.92654863528783,
+ 36.526071300601295
+ ],
+ [
+ 70.69686326832048,
+ 36.526071300601295
+ ],
+ [
+ 70.5820205848368,
+ 36.33142356567284
+ ],
+ [
+ 70.69686326832048,
+ 36.13677583074439
+ ],
+ [
+ 70.92654863528783,
+ 36.13677583074439
+ ],
+ [
+ 71.04139131877152,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 36.720719035529754
+ ],
+ [
+ 70.92654863528783,
+ 36.915366770458206
+ ],
+ [
+ 70.69686326832048,
+ 36.915366770458206
+ ],
+ [
+ 70.5820205848368,
+ 36.720719035529754
+ ],
+ [
+ 70.69686326832048,
+ 36.5260713006013
+ ],
+ [
+ 70.92654863528783,
+ 36.5260713006013
+ ],
+ [
+ 71.04139131877152,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 37.11001450538666
+ ],
+ [
+ 70.92654863528783,
+ 37.30466224031511
+ ],
+ [
+ 70.69686326832048,
+ 37.30466224031511
+ ],
+ [
+ 70.5820205848368,
+ 37.11001450538666
+ ],
+ [
+ 70.69686326832048,
+ 36.915366770458206
+ ],
+ [
+ 70.92654863528783,
+ 36.915366770458206
+ ],
+ [
+ 71.04139131877152,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 37.49930997524357
+ ],
+ [
+ 70.92654863528783,
+ 37.69395771017202
+ ],
+ [
+ 70.69686326832048,
+ 37.69395771017202
+ ],
+ [
+ 70.5820205848368,
+ 37.49930997524357
+ ],
+ [
+ 70.69686326832048,
+ 37.30466224031512
+ ],
+ [
+ 70.92654863528783,
+ 37.30466224031512
+ ],
+ [
+ 71.04139131877152,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 37.888605445100474
+ ],
+ [
+ 70.92654863528783,
+ 38.083253180028926
+ ],
+ [
+ 70.69686326832048,
+ 38.083253180028926
+ ],
+ [
+ 70.5820205848368,
+ 37.888605445100474
+ ],
+ [
+ 70.69686326832048,
+ 37.69395771017202
+ ],
+ [
+ 70.92654863528783,
+ 37.69395771017202
+ ],
+ [
+ 71.04139131877152,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 38.27790091495738
+ ],
+ [
+ 70.92654863528783,
+ 38.47254864988583
+ ],
+ [
+ 70.69686326832048,
+ 38.47254864988583
+ ],
+ [
+ 70.5820205848368,
+ 38.27790091495738
+ ],
+ [
+ 70.69686326832048,
+ 38.083253180028926
+ ],
+ [
+ 70.92654863528783,
+ 38.083253180028926
+ ],
+ [
+ 71.04139131877152,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 38.66719638481428
+ ],
+ [
+ 70.92654863528783,
+ 38.861844119742734
+ ],
+ [
+ 70.69686326832048,
+ 38.861844119742734
+ ],
+ [
+ 70.5820205848368,
+ 38.66719638481428
+ ],
+ [
+ 70.69686326832048,
+ 38.47254864988583
+ ],
+ [
+ 70.92654863528783,
+ 38.47254864988583
+ ],
+ [
+ 71.04139131877152,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 39.05649185467119
+ ],
+ [
+ 70.92654863528783,
+ 39.25113958959964
+ ],
+ [
+ 70.69686326832048,
+ 39.25113958959964
+ ],
+ [
+ 70.5820205848368,
+ 39.05649185467119
+ ],
+ [
+ 70.69686326832048,
+ 38.861844119742734
+ ],
+ [
+ 70.92654863528783,
+ 38.861844119742734
+ ],
+ [
+ 71.04139131877152,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 39.4457873245281
+ ],
+ [
+ 70.92654863528783,
+ 39.64043505945655
+ ],
+ [
+ 70.69686326832048,
+ 39.64043505945655
+ ],
+ [
+ 70.5820205848368,
+ 39.4457873245281
+ ],
+ [
+ 70.69686326832048,
+ 39.251139589599646
+ ],
+ [
+ 70.92654863528783,
+ 39.251139589599646
+ ],
+ [
+ 71.04139131877152,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 39.835082794385
+ ],
+ [
+ 70.92654863528783,
+ 40.029730529313454
+ ],
+ [
+ 70.69686326832048,
+ 40.029730529313454
+ ],
+ [
+ 70.5820205848368,
+ 39.835082794385
+ ],
+ [
+ 70.69686326832048,
+ 39.64043505945655
+ ],
+ [
+ 70.92654863528783,
+ 39.64043505945655
+ ],
+ [
+ 71.04139131877152,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 40.22437826424191
+ ],
+ [
+ 70.92654863528783,
+ 40.419025999170366
+ ],
+ [
+ 70.69686326832048,
+ 40.419025999170366
+ ],
+ [
+ 70.5820205848368,
+ 40.22437826424191
+ ],
+ [
+ 70.69686326832048,
+ 40.02973052931346
+ ],
+ [
+ 70.92654863528783,
+ 40.02973052931346
+ ],
+ [
+ 71.04139131877152,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 40.61367373409882
+ ],
+ [
+ 70.92654863528783,
+ 40.80832146902727
+ ],
+ [
+ 70.69686326832048,
+ 40.80832146902727
+ ],
+ [
+ 70.5820205848368,
+ 40.61367373409882
+ ],
+ [
+ 70.69686326832048,
+ 40.419025999170366
+ ],
+ [
+ 70.92654863528783,
+ 40.419025999170366
+ ],
+ [
+ 71.04139131877152,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 41.00296920395572
+ ],
+ [
+ 70.92654863528783,
+ 41.197616938884174
+ ],
+ [
+ 70.69686326832048,
+ 41.197616938884174
+ ],
+ [
+ 70.5820205848368,
+ 41.00296920395572
+ ],
+ [
+ 70.69686326832048,
+ 40.80832146902727
+ ],
+ [
+ 70.92654863528783,
+ 40.80832146902727
+ ],
+ [
+ 71.04139131877152,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 41.392264673812626
+ ],
+ [
+ 70.92654863528783,
+ 41.58691240874108
+ ],
+ [
+ 70.69686326832048,
+ 41.58691240874108
+ ],
+ [
+ 70.5820205848368,
+ 41.392264673812626
+ ],
+ [
+ 70.69686326832048,
+ 41.197616938884174
+ ],
+ [
+ 70.92654863528783,
+ 41.197616938884174
+ ],
+ [
+ 71.04139131877152,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 41.78156014366953
+ ],
+ [
+ 70.92654863528783,
+ 41.97620787859798
+ ],
+ [
+ 70.69686326832048,
+ 41.97620787859798
+ ],
+ [
+ 70.5820205848368,
+ 41.78156014366953
+ ],
+ [
+ 70.69686326832048,
+ 41.58691240874108
+ ],
+ [
+ 70.92654863528783,
+ 41.58691240874108
+ ],
+ [
+ 71.04139131877152,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 42.17085561352644
+ ],
+ [
+ 70.92654863528783,
+ 42.365503348454894
+ ],
+ [
+ 70.69686326832048,
+ 42.365503348454894
+ ],
+ [
+ 70.5820205848368,
+ 42.17085561352644
+ ],
+ [
+ 70.69686326832048,
+ 41.97620787859799
+ ],
+ [
+ 70.92654863528783,
+ 41.97620787859799
+ ],
+ [
+ 71.04139131877152,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 42.56015108338335
+ ],
+ [
+ 70.92654863528783,
+ 42.754798818311805
+ ],
+ [
+ 70.69686326832048,
+ 42.754798818311805
+ ],
+ [
+ 70.5820205848368,
+ 42.56015108338335
+ ],
+ [
+ 70.69686326832048,
+ 42.3655033484549
+ ],
+ [
+ 70.92654863528783,
+ 42.3655033484549
+ ],
+ [
+ 71.04139131877152,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 42.94944655324026
+ ],
+ [
+ 70.92654863528783,
+ 43.14409428816871
+ ],
+ [
+ 70.69686326832048,
+ 43.14409428816871
+ ],
+ [
+ 70.5820205848368,
+ 42.94944655324026
+ ],
+ [
+ 70.69686326832048,
+ 42.754798818311805
+ ],
+ [
+ 70.92654863528783,
+ 42.754798818311805
+ ],
+ [
+ 71.04139131877152,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 43.33874202309716
+ ],
+ [
+ 70.92654863528783,
+ 43.53338975802561
+ ],
+ [
+ 70.69686326832048,
+ 43.53338975802561
+ ],
+ [
+ 70.5820205848368,
+ 43.33874202309716
+ ],
+ [
+ 70.69686326832048,
+ 43.14409428816871
+ ],
+ [
+ 70.92654863528783,
+ 43.14409428816871
+ ],
+ [
+ 71.04139131877152,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 43.728037492954066
+ ],
+ [
+ 70.92654863528783,
+ 43.92268522788252
+ ],
+ [
+ 70.69686326832048,
+ 43.92268522788252
+ ],
+ [
+ 70.5820205848368,
+ 43.728037492954066
+ ],
+ [
+ 70.69686326832048,
+ 43.53338975802561
+ ],
+ [
+ 70.92654863528783,
+ 43.53338975802561
+ ],
+ [
+ 71.04139131877152,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 44.11733296281097
+ ],
+ [
+ 70.92654863528783,
+ 44.31198069773942
+ ],
+ [
+ 70.69686326832048,
+ 44.31198069773942
+ ],
+ [
+ 70.5820205848368,
+ 44.11733296281097
+ ],
+ [
+ 70.69686326832048,
+ 43.92268522788252
+ ],
+ [
+ 70.92654863528783,
+ 43.92268522788252
+ ],
+ [
+ 71.04139131877152,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 44.506628432667874
+ ],
+ [
+ 70.92654863528783,
+ 44.701276167596326
+ ],
+ [
+ 70.69686326832048,
+ 44.701276167596326
+ ],
+ [
+ 70.5820205848368,
+ 44.506628432667874
+ ],
+ [
+ 70.69686326832048,
+ 44.31198069773942
+ ],
+ [
+ 70.92654863528783,
+ 44.31198069773942
+ ],
+ [
+ 71.04139131877152,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 44.89592390252479
+ ],
+ [
+ 70.92654863528783,
+ 45.090571637453245
+ ],
+ [
+ 70.69686326832048,
+ 45.090571637453245
+ ],
+ [
+ 70.5820205848368,
+ 44.89592390252479
+ ],
+ [
+ 70.69686326832048,
+ 44.70127616759634
+ ],
+ [
+ 70.92654863528783,
+ 44.70127616759634
+ ],
+ [
+ 71.04139131877152,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 45.2852193723817
+ ],
+ [
+ 70.92654863528783,
+ 45.47986710731015
+ ],
+ [
+ 70.69686326832048,
+ 45.47986710731015
+ ],
+ [
+ 70.5820205848368,
+ 45.2852193723817
+ ],
+ [
+ 70.69686326832048,
+ 45.090571637453245
+ ],
+ [
+ 70.92654863528783,
+ 45.090571637453245
+ ],
+ [
+ 71.04139131877152,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 45.6745148422386
+ ],
+ [
+ 70.92654863528783,
+ 45.86916257716705
+ ],
+ [
+ 70.69686326832048,
+ 45.86916257716705
+ ],
+ [
+ 70.5820205848368,
+ 45.6745148422386
+ ],
+ [
+ 70.69686326832048,
+ 45.47986710731015
+ ],
+ [
+ 70.92654863528783,
+ 45.47986710731015
+ ],
+ [
+ 71.04139131877152,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 46.063810312095505
+ ],
+ [
+ 70.92654863528783,
+ 46.25845804702396
+ ],
+ [
+ 70.69686326832048,
+ 46.25845804702396
+ ],
+ [
+ 70.5820205848368,
+ 46.063810312095505
+ ],
+ [
+ 70.69686326832048,
+ 45.86916257716705
+ ],
+ [
+ 70.92654863528783,
+ 45.86916257716705
+ ],
+ [
+ 71.04139131877152,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 46.45310578195241
+ ],
+ [
+ 70.92654863528783,
+ 46.64775351688086
+ ],
+ [
+ 70.69686326832048,
+ 46.64775351688086
+ ],
+ [
+ 70.5820205848368,
+ 46.45310578195241
+ ],
+ [
+ 70.69686326832048,
+ 46.25845804702396
+ ],
+ [
+ 70.92654863528783,
+ 46.25845804702396
+ ],
+ [
+ 71.04139131877152,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 46.842401251809314
+ ],
+ [
+ 70.92654863528783,
+ 47.037048986737766
+ ],
+ [
+ 70.69686326832048,
+ 47.037048986737766
+ ],
+ [
+ 70.5820205848368,
+ 46.842401251809314
+ ],
+ [
+ 70.69686326832048,
+ 46.64775351688086
+ ],
+ [
+ 70.92654863528783,
+ 46.64775351688086
+ ],
+ [
+ 71.04139131877152,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 47.23169672166622
+ ],
+ [
+ 70.92654863528783,
+ 47.42634445659467
+ ],
+ [
+ 70.69686326832048,
+ 47.42634445659467
+ ],
+ [
+ 70.5820205848368,
+ 47.23169672166622
+ ],
+ [
+ 70.69686326832048,
+ 47.037048986737766
+ ],
+ [
+ 70.92654863528783,
+ 47.037048986737766
+ ],
+ [
+ 71.04139131877152,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.04139131877152,
+ 47.620992191523136
+ ],
+ [
+ 70.92654863528783,
+ 47.81563992645159
+ ],
+ [
+ 70.69686326832048,
+ 47.81563992645159
+ ],
+ [
+ 70.5820205848368,
+ 47.620992191523136
+ ],
+ [
+ 70.69686326832048,
+ 47.426344456594684
+ ],
+ [
+ 70.92654863528783,
+ 47.426344456594684
+ ],
+ [
+ 71.04139131877152,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 12.0004566996162
+ ],
+ [
+ 71.27107668573886,
+ 12.195104434544653
+ ],
+ [
+ 71.04139131877152,
+ 12.195104434544653
+ ],
+ [
+ 70.92654863528783,
+ 12.0004566996162
+ ],
+ [
+ 71.04139131877152,
+ 11.805808964687746
+ ],
+ [
+ 71.27107668573886,
+ 11.805808964687746
+ ],
+ [
+ 71.38591936922255,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 12.389752169473105
+ ],
+ [
+ 71.27107668573886,
+ 12.58439990440156
+ ],
+ [
+ 71.04139131877152,
+ 12.58439990440156
+ ],
+ [
+ 70.92654863528783,
+ 12.389752169473105
+ ],
+ [
+ 71.04139131877152,
+ 12.195104434544652
+ ],
+ [
+ 71.27107668573886,
+ 12.195104434544652
+ ],
+ [
+ 71.38591936922255,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 12.779047639330013
+ ],
+ [
+ 71.27107668573886,
+ 12.973695374258467
+ ],
+ [
+ 71.04139131877152,
+ 12.973695374258467
+ ],
+ [
+ 70.92654863528783,
+ 12.779047639330013
+ ],
+ [
+ 71.04139131877152,
+ 12.58439990440156
+ ],
+ [
+ 71.27107668573886,
+ 12.58439990440156
+ ],
+ [
+ 71.38591936922255,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 13.16834310918692
+ ],
+ [
+ 71.27107668573886,
+ 13.362990844115373
+ ],
+ [
+ 71.04139131877152,
+ 13.362990844115373
+ ],
+ [
+ 70.92654863528783,
+ 13.16834310918692
+ ],
+ [
+ 71.04139131877152,
+ 12.973695374258465
+ ],
+ [
+ 71.27107668573886,
+ 12.973695374258465
+ ],
+ [
+ 71.38591936922255,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 13.557638579043825
+ ],
+ [
+ 71.27107668573886,
+ 13.752286313972279
+ ],
+ [
+ 71.04139131877152,
+ 13.752286313972279
+ ],
+ [
+ 70.92654863528783,
+ 13.557638579043825
+ ],
+ [
+ 71.04139131877152,
+ 13.362990844115371
+ ],
+ [
+ 71.27107668573886,
+ 13.362990844115371
+ ],
+ [
+ 71.38591936922255,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 13.946934048900731
+ ],
+ [
+ 71.27107668573886,
+ 14.141581783829185
+ ],
+ [
+ 71.04139131877152,
+ 14.141581783829185
+ ],
+ [
+ 70.92654863528783,
+ 13.946934048900731
+ ],
+ [
+ 71.04139131877152,
+ 13.752286313972277
+ ],
+ [
+ 71.27107668573886,
+ 13.752286313972277
+ ],
+ [
+ 71.38591936922255,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 14.336229518757637
+ ],
+ [
+ 71.27107668573886,
+ 14.530877253686091
+ ],
+ [
+ 71.04139131877152,
+ 14.530877253686091
+ ],
+ [
+ 70.92654863528783,
+ 14.336229518757637
+ ],
+ [
+ 71.04139131877152,
+ 14.141581783829183
+ ],
+ [
+ 71.27107668573886,
+ 14.141581783829183
+ ],
+ [
+ 71.38591936922255,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 14.725524988614545
+ ],
+ [
+ 71.27107668573886,
+ 14.920172723542999
+ ],
+ [
+ 71.04139131877152,
+ 14.920172723542999
+ ],
+ [
+ 70.92654863528783,
+ 14.725524988614545
+ ],
+ [
+ 71.04139131877152,
+ 14.530877253686091
+ ],
+ [
+ 71.27107668573886,
+ 14.530877253686091
+ ],
+ [
+ 71.38591936922255,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 15.114820458471451
+ ],
+ [
+ 71.27107668573886,
+ 15.309468193399905
+ ],
+ [
+ 71.04139131877152,
+ 15.309468193399905
+ ],
+ [
+ 70.92654863528783,
+ 15.114820458471451
+ ],
+ [
+ 71.04139131877152,
+ 14.920172723542997
+ ],
+ [
+ 71.27107668573886,
+ 14.920172723542997
+ ],
+ [
+ 71.38591936922255,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 15.504115928328357
+ ],
+ [
+ 71.27107668573886,
+ 15.69876366325681
+ ],
+ [
+ 71.04139131877152,
+ 15.69876366325681
+ ],
+ [
+ 70.92654863528783,
+ 15.504115928328357
+ ],
+ [
+ 71.04139131877152,
+ 15.309468193399903
+ ],
+ [
+ 71.27107668573886,
+ 15.309468193399903
+ ],
+ [
+ 71.38591936922255,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 15.893411398185265
+ ],
+ [
+ 71.27107668573886,
+ 16.088059133113717
+ ],
+ [
+ 71.04139131877152,
+ 16.088059133113717
+ ],
+ [
+ 70.92654863528783,
+ 15.893411398185265
+ ],
+ [
+ 71.04139131877152,
+ 15.69876366325681
+ ],
+ [
+ 71.27107668573886,
+ 15.69876366325681
+ ],
+ [
+ 71.38591936922255,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 16.28270686804217
+ ],
+ [
+ 71.27107668573886,
+ 16.47735460297062
+ ],
+ [
+ 71.04139131877152,
+ 16.47735460297062
+ ],
+ [
+ 70.92654863528783,
+ 16.28270686804217
+ ],
+ [
+ 71.04139131877152,
+ 16.088059133113717
+ ],
+ [
+ 71.27107668573886,
+ 16.088059133113717
+ ],
+ [
+ 71.38591936922255,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 16.672002337899077
+ ],
+ [
+ 71.27107668573886,
+ 16.86665007282753
+ ],
+ [
+ 71.04139131877152,
+ 16.86665007282753
+ ],
+ [
+ 70.92654863528783,
+ 16.672002337899077
+ ],
+ [
+ 71.04139131877152,
+ 16.477354602970625
+ ],
+ [
+ 71.27107668573886,
+ 16.477354602970625
+ ],
+ [
+ 71.38591936922255,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 17.06129780775598
+ ],
+ [
+ 71.27107668573886,
+ 17.255945542684433
+ ],
+ [
+ 71.04139131877152,
+ 17.255945542684433
+ ],
+ [
+ 70.92654863528783,
+ 17.06129780775598
+ ],
+ [
+ 71.04139131877152,
+ 16.86665007282753
+ ],
+ [
+ 71.27107668573886,
+ 16.86665007282753
+ ],
+ [
+ 71.38591936922255,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 17.45059327761289
+ ],
+ [
+ 71.27107668573886,
+ 17.64524101254134
+ ],
+ [
+ 71.04139131877152,
+ 17.64524101254134
+ ],
+ [
+ 70.92654863528783,
+ 17.45059327761289
+ ],
+ [
+ 71.04139131877152,
+ 17.255945542684437
+ ],
+ [
+ 71.27107668573886,
+ 17.255945542684437
+ ],
+ [
+ 71.38591936922255,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 17.839888747469793
+ ],
+ [
+ 71.27107668573886,
+ 18.034536482398245
+ ],
+ [
+ 71.04139131877152,
+ 18.034536482398245
+ ],
+ [
+ 70.92654863528783,
+ 17.839888747469793
+ ],
+ [
+ 71.04139131877152,
+ 17.64524101254134
+ ],
+ [
+ 71.27107668573886,
+ 17.64524101254134
+ ],
+ [
+ 71.38591936922255,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 18.2291842173267
+ ],
+ [
+ 71.27107668573886,
+ 18.423831952255153
+ ],
+ [
+ 71.04139131877152,
+ 18.423831952255153
+ ],
+ [
+ 70.92654863528783,
+ 18.2291842173267
+ ],
+ [
+ 71.04139131877152,
+ 18.03453648239825
+ ],
+ [
+ 71.27107668573886,
+ 18.03453648239825
+ ],
+ [
+ 71.38591936922255,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 18.61847968718361
+ ],
+ [
+ 71.27107668573886,
+ 18.81312742211206
+ ],
+ [
+ 71.04139131877152,
+ 18.81312742211206
+ ],
+ [
+ 70.92654863528783,
+ 18.61847968718361
+ ],
+ [
+ 71.04139131877152,
+ 18.423831952255156
+ ],
+ [
+ 71.27107668573886,
+ 18.423831952255156
+ ],
+ [
+ 71.38591936922255,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 19.007775157040513
+ ],
+ [
+ 71.27107668573886,
+ 19.202422891968965
+ ],
+ [
+ 71.04139131877152,
+ 19.202422891968965
+ ],
+ [
+ 70.92654863528783,
+ 19.007775157040513
+ ],
+ [
+ 71.04139131877152,
+ 18.81312742211206
+ ],
+ [
+ 71.27107668573886,
+ 18.81312742211206
+ ],
+ [
+ 71.38591936922255,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 19.39707062689742
+ ],
+ [
+ 71.27107668573886,
+ 19.591718361825873
+ ],
+ [
+ 71.04139131877152,
+ 19.591718361825873
+ ],
+ [
+ 70.92654863528783,
+ 19.39707062689742
+ ],
+ [
+ 71.04139131877152,
+ 19.20242289196897
+ ],
+ [
+ 71.27107668573886,
+ 19.20242289196897
+ ],
+ [
+ 71.38591936922255,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 19.78636609675433
+ ],
+ [
+ 71.27107668573886,
+ 19.98101383168278
+ ],
+ [
+ 71.04139131877152,
+ 19.98101383168278
+ ],
+ [
+ 70.92654863528783,
+ 19.78636609675433
+ ],
+ [
+ 71.04139131877152,
+ 19.591718361825876
+ ],
+ [
+ 71.27107668573886,
+ 19.591718361825876
+ ],
+ [
+ 71.38591936922255,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 20.175661566611232
+ ],
+ [
+ 71.27107668573886,
+ 20.370309301539685
+ ],
+ [
+ 71.04139131877152,
+ 20.370309301539685
+ ],
+ [
+ 70.92654863528783,
+ 20.175661566611232
+ ],
+ [
+ 71.04139131877152,
+ 19.98101383168278
+ ],
+ [
+ 71.27107668573886,
+ 19.98101383168278
+ ],
+ [
+ 71.38591936922255,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 20.564957036468137
+ ],
+ [
+ 71.27107668573886,
+ 20.75960477139659
+ ],
+ [
+ 71.04139131877152,
+ 20.75960477139659
+ ],
+ [
+ 70.92654863528783,
+ 20.564957036468137
+ ],
+ [
+ 71.04139131877152,
+ 20.370309301539685
+ ],
+ [
+ 71.27107668573886,
+ 20.370309301539685
+ ],
+ [
+ 71.38591936922255,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 20.954252506325044
+ ],
+ [
+ 71.27107668573886,
+ 21.148900241253497
+ ],
+ [
+ 71.04139131877152,
+ 21.148900241253497
+ ],
+ [
+ 70.92654863528783,
+ 20.954252506325044
+ ],
+ [
+ 71.04139131877152,
+ 20.759604771396592
+ ],
+ [
+ 71.27107668573886,
+ 20.759604771396592
+ ],
+ [
+ 71.38591936922255,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 21.343547976181952
+ ],
+ [
+ 71.27107668573886,
+ 21.538195711110404
+ ],
+ [
+ 71.04139131877152,
+ 21.538195711110404
+ ],
+ [
+ 70.92654863528783,
+ 21.343547976181952
+ ],
+ [
+ 71.04139131877152,
+ 21.1489002412535
+ ],
+ [
+ 71.27107668573886,
+ 21.1489002412535
+ ],
+ [
+ 71.38591936922255,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 21.732843446038856
+ ],
+ [
+ 71.27107668573886,
+ 21.92749118096731
+ ],
+ [
+ 71.04139131877152,
+ 21.92749118096731
+ ],
+ [
+ 70.92654863528783,
+ 21.732843446038856
+ ],
+ [
+ 71.04139131877152,
+ 21.538195711110404
+ ],
+ [
+ 71.27107668573886,
+ 21.538195711110404
+ ],
+ [
+ 71.38591936922255,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 22.122138915895764
+ ],
+ [
+ 71.27107668573886,
+ 22.316786650824216
+ ],
+ [
+ 71.04139131877152,
+ 22.316786650824216
+ ],
+ [
+ 70.92654863528783,
+ 22.122138915895764
+ ],
+ [
+ 71.04139131877152,
+ 21.927491180967312
+ ],
+ [
+ 71.27107668573886,
+ 21.927491180967312
+ ],
+ [
+ 71.38591936922255,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 22.511434385752672
+ ],
+ [
+ 71.27107668573886,
+ 22.706082120681124
+ ],
+ [
+ 71.04139131877152,
+ 22.706082120681124
+ ],
+ [
+ 70.92654863528783,
+ 22.511434385752672
+ ],
+ [
+ 71.04139131877152,
+ 22.31678665082422
+ ],
+ [
+ 71.27107668573886,
+ 22.31678665082422
+ ],
+ [
+ 71.38591936922255,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 22.900729855609576
+ ],
+ [
+ 71.27107668573886,
+ 23.09537759053803
+ ],
+ [
+ 71.04139131877152,
+ 23.09537759053803
+ ],
+ [
+ 70.92654863528783,
+ 22.900729855609576
+ ],
+ [
+ 71.04139131877152,
+ 22.706082120681124
+ ],
+ [
+ 71.27107668573886,
+ 22.706082120681124
+ ],
+ [
+ 71.38591936922255,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 23.290025325466484
+ ],
+ [
+ 71.27107668573886,
+ 23.484673060394936
+ ],
+ [
+ 71.04139131877152,
+ 23.484673060394936
+ ],
+ [
+ 70.92654863528783,
+ 23.290025325466484
+ ],
+ [
+ 71.04139131877152,
+ 23.095377590538032
+ ],
+ [
+ 71.27107668573886,
+ 23.095377590538032
+ ],
+ [
+ 71.38591936922255,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 23.67932079532339
+ ],
+ [
+ 71.27107668573886,
+ 23.873968530251844
+ ],
+ [
+ 71.04139131877152,
+ 23.873968530251844
+ ],
+ [
+ 70.92654863528783,
+ 23.67932079532339
+ ],
+ [
+ 71.04139131877152,
+ 23.48467306039494
+ ],
+ [
+ 71.27107668573886,
+ 23.48467306039494
+ ],
+ [
+ 71.38591936922255,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 24.068616265180296
+ ],
+ [
+ 71.27107668573886,
+ 24.263264000108748
+ ],
+ [
+ 71.04139131877152,
+ 24.263264000108748
+ ],
+ [
+ 70.92654863528783,
+ 24.068616265180296
+ ],
+ [
+ 71.04139131877152,
+ 23.873968530251844
+ ],
+ [
+ 71.27107668573886,
+ 23.873968530251844
+ ],
+ [
+ 71.38591936922255,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 24.4579117350372
+ ],
+ [
+ 71.27107668573886,
+ 24.652559469965652
+ ],
+ [
+ 71.04139131877152,
+ 24.652559469965652
+ ],
+ [
+ 70.92654863528783,
+ 24.4579117350372
+ ],
+ [
+ 71.04139131877152,
+ 24.263264000108748
+ ],
+ [
+ 71.27107668573886,
+ 24.263264000108748
+ ],
+ [
+ 71.38591936922255,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 24.847207204894108
+ ],
+ [
+ 71.27107668573886,
+ 25.04185493982256
+ ],
+ [
+ 71.04139131877152,
+ 25.04185493982256
+ ],
+ [
+ 70.92654863528783,
+ 24.847207204894108
+ ],
+ [
+ 71.04139131877152,
+ 24.652559469965656
+ ],
+ [
+ 71.27107668573886,
+ 24.652559469965656
+ ],
+ [
+ 71.38591936922255,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 25.236502674751016
+ ],
+ [
+ 71.27107668573886,
+ 25.431150409679468
+ ],
+ [
+ 71.04139131877152,
+ 25.431150409679468
+ ],
+ [
+ 70.92654863528783,
+ 25.236502674751016
+ ],
+ [
+ 71.04139131877152,
+ 25.041854939822564
+ ],
+ [
+ 71.27107668573886,
+ 25.041854939822564
+ ],
+ [
+ 71.38591936922255,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 25.62579814460792
+ ],
+ [
+ 71.27107668573886,
+ 25.820445879536372
+ ],
+ [
+ 71.04139131877152,
+ 25.820445879536372
+ ],
+ [
+ 70.92654863528783,
+ 25.62579814460792
+ ],
+ [
+ 71.04139131877152,
+ 25.431150409679468
+ ],
+ [
+ 71.27107668573886,
+ 25.431150409679468
+ ],
+ [
+ 71.38591936922255,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 26.015093614464828
+ ],
+ [
+ 71.27107668573886,
+ 26.20974134939328
+ ],
+ [
+ 71.04139131877152,
+ 26.20974134939328
+ ],
+ [
+ 70.92654863528783,
+ 26.015093614464828
+ ],
+ [
+ 71.04139131877152,
+ 25.820445879536376
+ ],
+ [
+ 71.27107668573886,
+ 25.820445879536376
+ ],
+ [
+ 71.38591936922255,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 26.404389084321735
+ ],
+ [
+ 71.27107668573886,
+ 26.599036819250188
+ ],
+ [
+ 71.04139131877152,
+ 26.599036819250188
+ ],
+ [
+ 70.92654863528783,
+ 26.404389084321735
+ ],
+ [
+ 71.04139131877152,
+ 26.209741349393283
+ ],
+ [
+ 71.27107668573886,
+ 26.209741349393283
+ ],
+ [
+ 71.38591936922255,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 26.79368455417864
+ ],
+ [
+ 71.27107668573886,
+ 26.988332289107092
+ ],
+ [
+ 71.04139131877152,
+ 26.988332289107092
+ ],
+ [
+ 70.92654863528783,
+ 26.79368455417864
+ ],
+ [
+ 71.04139131877152,
+ 26.599036819250188
+ ],
+ [
+ 71.27107668573886,
+ 26.599036819250188
+ ],
+ [
+ 71.38591936922255,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 27.182980024035547
+ ],
+ [
+ 71.27107668573886,
+ 27.377627758964
+ ],
+ [
+ 71.04139131877152,
+ 27.377627758964
+ ],
+ [
+ 70.92654863528783,
+ 27.182980024035547
+ ],
+ [
+ 71.04139131877152,
+ 26.988332289107095
+ ],
+ [
+ 71.27107668573886,
+ 26.988332289107095
+ ],
+ [
+ 71.38591936922255,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 27.572275493892455
+ ],
+ [
+ 71.27107668573886,
+ 27.766923228820907
+ ],
+ [
+ 71.04139131877152,
+ 27.766923228820907
+ ],
+ [
+ 70.92654863528783,
+ 27.572275493892455
+ ],
+ [
+ 71.04139131877152,
+ 27.377627758964003
+ ],
+ [
+ 71.27107668573886,
+ 27.377627758964003
+ ],
+ [
+ 71.38591936922255,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 27.96157096374936
+ ],
+ [
+ 71.27107668573886,
+ 28.15621869867781
+ ],
+ [
+ 71.04139131877152,
+ 28.15621869867781
+ ],
+ [
+ 70.92654863528783,
+ 27.96157096374936
+ ],
+ [
+ 71.04139131877152,
+ 27.766923228820907
+ ],
+ [
+ 71.27107668573886,
+ 27.766923228820907
+ ],
+ [
+ 71.38591936922255,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 28.350866433606267
+ ],
+ [
+ 71.27107668573886,
+ 28.54551416853472
+ ],
+ [
+ 71.04139131877152,
+ 28.54551416853472
+ ],
+ [
+ 70.92654863528783,
+ 28.350866433606267
+ ],
+ [
+ 71.04139131877152,
+ 28.156218698677815
+ ],
+ [
+ 71.27107668573886,
+ 28.156218698677815
+ ],
+ [
+ 71.38591936922255,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 28.74016190346317
+ ],
+ [
+ 71.27107668573886,
+ 28.934809638391624
+ ],
+ [
+ 71.04139131877152,
+ 28.934809638391624
+ ],
+ [
+ 70.92654863528783,
+ 28.74016190346317
+ ],
+ [
+ 71.04139131877152,
+ 28.54551416853472
+ ],
+ [
+ 71.27107668573886,
+ 28.54551416853472
+ ],
+ [
+ 71.38591936922255,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 29.12945737332008
+ ],
+ [
+ 71.27107668573886,
+ 29.32410510824853
+ ],
+ [
+ 71.04139131877152,
+ 29.32410510824853
+ ],
+ [
+ 70.92654863528783,
+ 29.12945737332008
+ ],
+ [
+ 71.04139131877152,
+ 28.934809638391627
+ ],
+ [
+ 71.27107668573886,
+ 28.934809638391627
+ ],
+ [
+ 71.38591936922255,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 29.518752843176983
+ ],
+ [
+ 71.27107668573886,
+ 29.713400578105436
+ ],
+ [
+ 71.04139131877152,
+ 29.713400578105436
+ ],
+ [
+ 70.92654863528783,
+ 29.518752843176983
+ ],
+ [
+ 71.04139131877152,
+ 29.32410510824853
+ ],
+ [
+ 71.27107668573886,
+ 29.32410510824853
+ ],
+ [
+ 71.38591936922255,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 29.90804831303389
+ ],
+ [
+ 71.27107668573886,
+ 30.102696047962343
+ ],
+ [
+ 71.04139131877152,
+ 30.102696047962343
+ ],
+ [
+ 70.92654863528783,
+ 29.90804831303389
+ ],
+ [
+ 71.04139131877152,
+ 29.71340057810544
+ ],
+ [
+ 71.27107668573886,
+ 29.71340057810544
+ ],
+ [
+ 71.38591936922255,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 30.297343782890795
+ ],
+ [
+ 71.27107668573886,
+ 30.491991517819248
+ ],
+ [
+ 71.04139131877152,
+ 30.491991517819248
+ ],
+ [
+ 70.92654863528783,
+ 30.297343782890795
+ ],
+ [
+ 71.04139131877152,
+ 30.102696047962343
+ ],
+ [
+ 71.27107668573886,
+ 30.102696047962343
+ ],
+ [
+ 71.38591936922255,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 30.686639252747703
+ ],
+ [
+ 71.27107668573886,
+ 30.881286987676155
+ ],
+ [
+ 71.04139131877152,
+ 30.881286987676155
+ ],
+ [
+ 70.92654863528783,
+ 30.686639252747703
+ ],
+ [
+ 71.04139131877152,
+ 30.49199151781925
+ ],
+ [
+ 71.27107668573886,
+ 30.49199151781925
+ ],
+ [
+ 71.38591936922255,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 31.07593472260461
+ ],
+ [
+ 71.27107668573886,
+ 31.270582457533063
+ ],
+ [
+ 71.04139131877152,
+ 31.270582457533063
+ ],
+ [
+ 70.92654863528783,
+ 31.07593472260461
+ ],
+ [
+ 71.04139131877152,
+ 30.88128698767616
+ ],
+ [
+ 71.27107668573886,
+ 30.88128698767616
+ ],
+ [
+ 71.38591936922255,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 31.465230192461515
+ ],
+ [
+ 71.27107668573886,
+ 31.659877927389967
+ ],
+ [
+ 71.04139131877152,
+ 31.659877927389967
+ ],
+ [
+ 70.92654863528783,
+ 31.465230192461515
+ ],
+ [
+ 71.04139131877152,
+ 31.270582457533063
+ ],
+ [
+ 71.27107668573886,
+ 31.270582457533063
+ ],
+ [
+ 71.38591936922255,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 31.854525662318423
+ ],
+ [
+ 71.27107668573886,
+ 32.049173397246875
+ ],
+ [
+ 71.04139131877152,
+ 32.049173397246875
+ ],
+ [
+ 70.92654863528783,
+ 31.854525662318423
+ ],
+ [
+ 71.04139131877152,
+ 31.65987792738997
+ ],
+ [
+ 71.27107668573886,
+ 31.65987792738997
+ ],
+ [
+ 71.38591936922255,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 32.24382113217533
+ ],
+ [
+ 71.27107668573886,
+ 32.43846886710378
+ ],
+ [
+ 71.04139131877152,
+ 32.43846886710378
+ ],
+ [
+ 70.92654863528783,
+ 32.24382113217533
+ ],
+ [
+ 71.04139131877152,
+ 32.049173397246875
+ ],
+ [
+ 71.27107668573886,
+ 32.049173397246875
+ ],
+ [
+ 71.38591936922255,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 32.63311660203224
+ ],
+ [
+ 71.27107668573886,
+ 32.82776433696069
+ ],
+ [
+ 71.04139131877152,
+ 32.82776433696069
+ ],
+ [
+ 70.92654863528783,
+ 32.63311660203224
+ ],
+ [
+ 71.04139131877152,
+ 32.438468867103786
+ ],
+ [
+ 71.27107668573886,
+ 32.438468867103786
+ ],
+ [
+ 71.38591936922255,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 33.02241207188914
+ ],
+ [
+ 71.27107668573886,
+ 33.217059806817595
+ ],
+ [
+ 71.04139131877152,
+ 33.217059806817595
+ ],
+ [
+ 70.92654863528783,
+ 33.02241207188914
+ ],
+ [
+ 71.04139131877152,
+ 32.82776433696069
+ ],
+ [
+ 71.27107668573886,
+ 32.82776433696069
+ ],
+ [
+ 71.38591936922255,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 33.41170754174605
+ ],
+ [
+ 71.27107668573886,
+ 33.6063552766745
+ ],
+ [
+ 71.04139131877152,
+ 33.6063552766745
+ ],
+ [
+ 70.92654863528783,
+ 33.41170754174605
+ ],
+ [
+ 71.04139131877152,
+ 33.217059806817595
+ ],
+ [
+ 71.27107668573886,
+ 33.217059806817595
+ ],
+ [
+ 71.38591936922255,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 33.80100301160295
+ ],
+ [
+ 71.27107668573886,
+ 33.9956507465314
+ ],
+ [
+ 71.04139131877152,
+ 33.9956507465314
+ ],
+ [
+ 70.92654863528783,
+ 33.80100301160295
+ ],
+ [
+ 71.04139131877152,
+ 33.6063552766745
+ ],
+ [
+ 71.27107668573886,
+ 33.6063552766745
+ ],
+ [
+ 71.38591936922255,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 34.190298481459855
+ ],
+ [
+ 71.27107668573886,
+ 34.38494621638831
+ ],
+ [
+ 71.04139131877152,
+ 34.38494621638831
+ ],
+ [
+ 70.92654863528783,
+ 34.190298481459855
+ ],
+ [
+ 71.04139131877152,
+ 33.9956507465314
+ ],
+ [
+ 71.27107668573886,
+ 33.9956507465314
+ ],
+ [
+ 71.38591936922255,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 34.57959395131677
+ ],
+ [
+ 71.27107668573886,
+ 34.77424168624522
+ ],
+ [
+ 71.04139131877152,
+ 34.77424168624522
+ ],
+ [
+ 70.92654863528783,
+ 34.57959395131677
+ ],
+ [
+ 71.04139131877152,
+ 34.384946216388315
+ ],
+ [
+ 71.27107668573886,
+ 34.384946216388315
+ ],
+ [
+ 71.38591936922255,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 34.96888942117368
+ ],
+ [
+ 71.27107668573886,
+ 35.16353715610213
+ ],
+ [
+ 71.04139131877152,
+ 35.16353715610213
+ ],
+ [
+ 70.92654863528783,
+ 34.96888942117368
+ ],
+ [
+ 71.04139131877152,
+ 34.774241686245226
+ ],
+ [
+ 71.27107668573886,
+ 34.774241686245226
+ ],
+ [
+ 71.38591936922255,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 35.35818489103058
+ ],
+ [
+ 71.27107668573886,
+ 35.552832625959034
+ ],
+ [
+ 71.04139131877152,
+ 35.552832625959034
+ ],
+ [
+ 70.92654863528783,
+ 35.35818489103058
+ ],
+ [
+ 71.04139131877152,
+ 35.16353715610213
+ ],
+ [
+ 71.27107668573886,
+ 35.16353715610213
+ ],
+ [
+ 71.38591936922255,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 35.74748036088749
+ ],
+ [
+ 71.27107668573886,
+ 35.94212809581594
+ ],
+ [
+ 71.04139131877152,
+ 35.94212809581594
+ ],
+ [
+ 70.92654863528783,
+ 35.74748036088749
+ ],
+ [
+ 71.04139131877152,
+ 35.552832625959034
+ ],
+ [
+ 71.27107668573886,
+ 35.552832625959034
+ ],
+ [
+ 71.38591936922255,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 36.13677583074439
+ ],
+ [
+ 71.27107668573886,
+ 36.33142356567284
+ ],
+ [
+ 71.04139131877152,
+ 36.33142356567284
+ ],
+ [
+ 70.92654863528783,
+ 36.13677583074439
+ ],
+ [
+ 71.04139131877152,
+ 35.94212809581594
+ ],
+ [
+ 71.27107668573886,
+ 35.94212809581594
+ ],
+ [
+ 71.38591936922255,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 36.526071300601295
+ ],
+ [
+ 71.27107668573886,
+ 36.72071903552975
+ ],
+ [
+ 71.04139131877152,
+ 36.72071903552975
+ ],
+ [
+ 70.92654863528783,
+ 36.526071300601295
+ ],
+ [
+ 71.04139131877152,
+ 36.33142356567284
+ ],
+ [
+ 71.27107668573886,
+ 36.33142356567284
+ ],
+ [
+ 71.38591936922255,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 36.915366770458206
+ ],
+ [
+ 71.27107668573886,
+ 37.11001450538666
+ ],
+ [
+ 71.04139131877152,
+ 37.11001450538666
+ ],
+ [
+ 70.92654863528783,
+ 36.915366770458206
+ ],
+ [
+ 71.04139131877152,
+ 36.720719035529754
+ ],
+ [
+ 71.27107668573886,
+ 36.720719035529754
+ ],
+ [
+ 71.38591936922255,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 37.30466224031511
+ ],
+ [
+ 71.27107668573886,
+ 37.49930997524356
+ ],
+ [
+ 71.04139131877152,
+ 37.49930997524356
+ ],
+ [
+ 70.92654863528783,
+ 37.30466224031511
+ ],
+ [
+ 71.04139131877152,
+ 37.11001450538666
+ ],
+ [
+ 71.27107668573886,
+ 37.11001450538666
+ ],
+ [
+ 71.38591936922255,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 37.69395771017202
+ ],
+ [
+ 71.27107668573886,
+ 37.888605445100474
+ ],
+ [
+ 71.04139131877152,
+ 37.888605445100474
+ ],
+ [
+ 70.92654863528783,
+ 37.69395771017202
+ ],
+ [
+ 71.04139131877152,
+ 37.49930997524357
+ ],
+ [
+ 71.27107668573886,
+ 37.49930997524357
+ ],
+ [
+ 71.38591936922255,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 38.083253180028926
+ ],
+ [
+ 71.27107668573886,
+ 38.27790091495738
+ ],
+ [
+ 71.04139131877152,
+ 38.27790091495738
+ ],
+ [
+ 70.92654863528783,
+ 38.083253180028926
+ ],
+ [
+ 71.04139131877152,
+ 37.888605445100474
+ ],
+ [
+ 71.27107668573886,
+ 37.888605445100474
+ ],
+ [
+ 71.38591936922255,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 38.47254864988583
+ ],
+ [
+ 71.27107668573886,
+ 38.66719638481428
+ ],
+ [
+ 71.04139131877152,
+ 38.66719638481428
+ ],
+ [
+ 70.92654863528783,
+ 38.47254864988583
+ ],
+ [
+ 71.04139131877152,
+ 38.27790091495738
+ ],
+ [
+ 71.27107668573886,
+ 38.27790091495738
+ ],
+ [
+ 71.38591936922255,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 38.861844119742734
+ ],
+ [
+ 71.27107668573886,
+ 39.05649185467119
+ ],
+ [
+ 71.04139131877152,
+ 39.05649185467119
+ ],
+ [
+ 70.92654863528783,
+ 38.861844119742734
+ ],
+ [
+ 71.04139131877152,
+ 38.66719638481428
+ ],
+ [
+ 71.27107668573886,
+ 38.66719638481428
+ ],
+ [
+ 71.38591936922255,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 39.25113958959964
+ ],
+ [
+ 71.27107668573886,
+ 39.44578732452809
+ ],
+ [
+ 71.04139131877152,
+ 39.44578732452809
+ ],
+ [
+ 70.92654863528783,
+ 39.25113958959964
+ ],
+ [
+ 71.04139131877152,
+ 39.05649185467119
+ ],
+ [
+ 71.27107668573886,
+ 39.05649185467119
+ ],
+ [
+ 71.38591936922255,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 39.64043505945655
+ ],
+ [
+ 71.27107668573886,
+ 39.835082794385
+ ],
+ [
+ 71.04139131877152,
+ 39.835082794385
+ ],
+ [
+ 70.92654863528783,
+ 39.64043505945655
+ ],
+ [
+ 71.04139131877152,
+ 39.4457873245281
+ ],
+ [
+ 71.27107668573886,
+ 39.4457873245281
+ ],
+ [
+ 71.38591936922255,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 40.029730529313454
+ ],
+ [
+ 71.27107668573886,
+ 40.224378264241906
+ ],
+ [
+ 71.04139131877152,
+ 40.224378264241906
+ ],
+ [
+ 70.92654863528783,
+ 40.029730529313454
+ ],
+ [
+ 71.04139131877152,
+ 39.835082794385
+ ],
+ [
+ 71.27107668573886,
+ 39.835082794385
+ ],
+ [
+ 71.38591936922255,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 40.419025999170366
+ ],
+ [
+ 71.27107668573886,
+ 40.61367373409882
+ ],
+ [
+ 71.04139131877152,
+ 40.61367373409882
+ ],
+ [
+ 70.92654863528783,
+ 40.419025999170366
+ ],
+ [
+ 71.04139131877152,
+ 40.22437826424191
+ ],
+ [
+ 71.27107668573886,
+ 40.22437826424191
+ ],
+ [
+ 71.38591936922255,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 40.80832146902727
+ ],
+ [
+ 71.27107668573886,
+ 41.00296920395572
+ ],
+ [
+ 71.04139131877152,
+ 41.00296920395572
+ ],
+ [
+ 70.92654863528783,
+ 40.80832146902727
+ ],
+ [
+ 71.04139131877152,
+ 40.61367373409882
+ ],
+ [
+ 71.27107668573886,
+ 40.61367373409882
+ ],
+ [
+ 71.38591936922255,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 41.197616938884174
+ ],
+ [
+ 71.27107668573886,
+ 41.392264673812626
+ ],
+ [
+ 71.04139131877152,
+ 41.392264673812626
+ ],
+ [
+ 70.92654863528783,
+ 41.197616938884174
+ ],
+ [
+ 71.04139131877152,
+ 41.00296920395572
+ ],
+ [
+ 71.27107668573886,
+ 41.00296920395572
+ ],
+ [
+ 71.38591936922255,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 41.58691240874108
+ ],
+ [
+ 71.27107668573886,
+ 41.78156014366953
+ ],
+ [
+ 71.04139131877152,
+ 41.78156014366953
+ ],
+ [
+ 70.92654863528783,
+ 41.58691240874108
+ ],
+ [
+ 71.04139131877152,
+ 41.392264673812626
+ ],
+ [
+ 71.27107668573886,
+ 41.392264673812626
+ ],
+ [
+ 71.38591936922255,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 41.97620787859798
+ ],
+ [
+ 71.27107668573886,
+ 42.170855613526435
+ ],
+ [
+ 71.04139131877152,
+ 42.170855613526435
+ ],
+ [
+ 70.92654863528783,
+ 41.97620787859798
+ ],
+ [
+ 71.04139131877152,
+ 41.78156014366953
+ ],
+ [
+ 71.27107668573886,
+ 41.78156014366953
+ ],
+ [
+ 71.38591936922255,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 42.365503348454894
+ ],
+ [
+ 71.27107668573886,
+ 42.560151083383346
+ ],
+ [
+ 71.04139131877152,
+ 42.560151083383346
+ ],
+ [
+ 70.92654863528783,
+ 42.365503348454894
+ ],
+ [
+ 71.04139131877152,
+ 42.17085561352644
+ ],
+ [
+ 71.27107668573886,
+ 42.17085561352644
+ ],
+ [
+ 71.38591936922255,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 42.754798818311805
+ ],
+ [
+ 71.27107668573886,
+ 42.94944655324026
+ ],
+ [
+ 71.04139131877152,
+ 42.94944655324026
+ ],
+ [
+ 70.92654863528783,
+ 42.754798818311805
+ ],
+ [
+ 71.04139131877152,
+ 42.56015108338335
+ ],
+ [
+ 71.27107668573886,
+ 42.56015108338335
+ ],
+ [
+ 71.38591936922255,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 43.14409428816871
+ ],
+ [
+ 71.27107668573886,
+ 43.33874202309716
+ ],
+ [
+ 71.04139131877152,
+ 43.33874202309716
+ ],
+ [
+ 70.92654863528783,
+ 43.14409428816871
+ ],
+ [
+ 71.04139131877152,
+ 42.94944655324026
+ ],
+ [
+ 71.27107668573886,
+ 42.94944655324026
+ ],
+ [
+ 71.38591936922255,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 43.53338975802561
+ ],
+ [
+ 71.27107668573886,
+ 43.728037492954066
+ ],
+ [
+ 71.04139131877152,
+ 43.728037492954066
+ ],
+ [
+ 70.92654863528783,
+ 43.53338975802561
+ ],
+ [
+ 71.04139131877152,
+ 43.33874202309716
+ ],
+ [
+ 71.27107668573886,
+ 43.33874202309716
+ ],
+ [
+ 71.38591936922255,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 43.92268522788252
+ ],
+ [
+ 71.27107668573886,
+ 44.11733296281097
+ ],
+ [
+ 71.04139131877152,
+ 44.11733296281097
+ ],
+ [
+ 70.92654863528783,
+ 43.92268522788252
+ ],
+ [
+ 71.04139131877152,
+ 43.728037492954066
+ ],
+ [
+ 71.27107668573886,
+ 43.728037492954066
+ ],
+ [
+ 71.38591936922255,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 44.31198069773942
+ ],
+ [
+ 71.27107668573886,
+ 44.506628432667874
+ ],
+ [
+ 71.04139131877152,
+ 44.506628432667874
+ ],
+ [
+ 70.92654863528783,
+ 44.31198069773942
+ ],
+ [
+ 71.04139131877152,
+ 44.11733296281097
+ ],
+ [
+ 71.27107668573886,
+ 44.11733296281097
+ ],
+ [
+ 71.38591936922255,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 44.701276167596326
+ ],
+ [
+ 71.27107668573886,
+ 44.89592390252478
+ ],
+ [
+ 71.04139131877152,
+ 44.89592390252478
+ ],
+ [
+ 70.92654863528783,
+ 44.701276167596326
+ ],
+ [
+ 71.04139131877152,
+ 44.506628432667874
+ ],
+ [
+ 71.27107668573886,
+ 44.506628432667874
+ ],
+ [
+ 71.38591936922255,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 45.090571637453245
+ ],
+ [
+ 71.27107668573886,
+ 45.2852193723817
+ ],
+ [
+ 71.04139131877152,
+ 45.2852193723817
+ ],
+ [
+ 70.92654863528783,
+ 45.090571637453245
+ ],
+ [
+ 71.04139131877152,
+ 44.89592390252479
+ ],
+ [
+ 71.27107668573886,
+ 44.89592390252479
+ ],
+ [
+ 71.38591936922255,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 45.47986710731015
+ ],
+ [
+ 71.27107668573886,
+ 45.6745148422386
+ ],
+ [
+ 71.04139131877152,
+ 45.6745148422386
+ ],
+ [
+ 70.92654863528783,
+ 45.47986710731015
+ ],
+ [
+ 71.04139131877152,
+ 45.2852193723817
+ ],
+ [
+ 71.27107668573886,
+ 45.2852193723817
+ ],
+ [
+ 71.38591936922255,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 45.86916257716705
+ ],
+ [
+ 71.27107668573886,
+ 46.063810312095505
+ ],
+ [
+ 71.04139131877152,
+ 46.063810312095505
+ ],
+ [
+ 70.92654863528783,
+ 45.86916257716705
+ ],
+ [
+ 71.04139131877152,
+ 45.6745148422386
+ ],
+ [
+ 71.27107668573886,
+ 45.6745148422386
+ ],
+ [
+ 71.38591936922255,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 46.25845804702396
+ ],
+ [
+ 71.27107668573886,
+ 46.45310578195241
+ ],
+ [
+ 71.04139131877152,
+ 46.45310578195241
+ ],
+ [
+ 70.92654863528783,
+ 46.25845804702396
+ ],
+ [
+ 71.04139131877152,
+ 46.063810312095505
+ ],
+ [
+ 71.27107668573886,
+ 46.063810312095505
+ ],
+ [
+ 71.38591936922255,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 46.64775351688086
+ ],
+ [
+ 71.27107668573886,
+ 46.842401251809314
+ ],
+ [
+ 71.04139131877152,
+ 46.842401251809314
+ ],
+ [
+ 70.92654863528783,
+ 46.64775351688086
+ ],
+ [
+ 71.04139131877152,
+ 46.45310578195241
+ ],
+ [
+ 71.27107668573886,
+ 46.45310578195241
+ ],
+ [
+ 71.38591936922255,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 47.037048986737766
+ ],
+ [
+ 71.27107668573886,
+ 47.23169672166622
+ ],
+ [
+ 71.04139131877152,
+ 47.23169672166622
+ ],
+ [
+ 70.92654863528783,
+ 47.037048986737766
+ ],
+ [
+ 71.04139131877152,
+ 46.842401251809314
+ ],
+ [
+ 71.27107668573886,
+ 46.842401251809314
+ ],
+ [
+ 71.38591936922255,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 47.42634445659467
+ ],
+ [
+ 71.27107668573886,
+ 47.62099219152312
+ ],
+ [
+ 71.04139131877152,
+ 47.62099219152312
+ ],
+ [
+ 70.92654863528783,
+ 47.42634445659467
+ ],
+ [
+ 71.04139131877152,
+ 47.23169672166622
+ ],
+ [
+ 71.27107668573886,
+ 47.23169672166622
+ ],
+ [
+ 71.38591936922255,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.38591936922255,
+ 47.81563992645159
+ ],
+ [
+ 71.27107668573886,
+ 48.01028766138004
+ ],
+ [
+ 71.04139131877152,
+ 48.01028766138004
+ ],
+ [
+ 70.92654863528783,
+ 47.81563992645159
+ ],
+ [
+ 71.04139131877152,
+ 47.620992191523136
+ ],
+ [
+ 71.27107668573886,
+ 47.620992191523136
+ ],
+ [
+ 71.38591936922255,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 11.805808964687746
+ ],
+ [
+ 71.6156047361899,
+ 12.0004566996162
+ ],
+ [
+ 71.38591936922255,
+ 12.0004566996162
+ ],
+ [
+ 71.27107668573886,
+ 11.805808964687746
+ ],
+ [
+ 71.38591936922255,
+ 11.611161229759292
+ ],
+ [
+ 71.6156047361899,
+ 11.611161229759292
+ ],
+ [
+ 71.73044741967358,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 12.195104434544652
+ ],
+ [
+ 71.6156047361899,
+ 12.389752169473105
+ ],
+ [
+ 71.38591936922255,
+ 12.389752169473105
+ ],
+ [
+ 71.27107668573886,
+ 12.195104434544652
+ ],
+ [
+ 71.38591936922255,
+ 12.000456699616198
+ ],
+ [
+ 71.6156047361899,
+ 12.000456699616198
+ ],
+ [
+ 71.73044741967358,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 12.58439990440156
+ ],
+ [
+ 71.6156047361899,
+ 12.779047639330013
+ ],
+ [
+ 71.38591936922255,
+ 12.779047639330013
+ ],
+ [
+ 71.27107668573886,
+ 12.58439990440156
+ ],
+ [
+ 71.38591936922255,
+ 12.389752169473105
+ ],
+ [
+ 71.6156047361899,
+ 12.389752169473105
+ ],
+ [
+ 71.73044741967358,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 12.973695374258465
+ ],
+ [
+ 71.6156047361899,
+ 13.16834310918692
+ ],
+ [
+ 71.38591936922255,
+ 13.16834310918692
+ ],
+ [
+ 71.27107668573886,
+ 12.973695374258465
+ ],
+ [
+ 71.38591936922255,
+ 12.779047639330011
+ ],
+ [
+ 71.6156047361899,
+ 12.779047639330011
+ ],
+ [
+ 71.73044741967358,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 13.362990844115371
+ ],
+ [
+ 71.6156047361899,
+ 13.557638579043825
+ ],
+ [
+ 71.38591936922255,
+ 13.557638579043825
+ ],
+ [
+ 71.27107668573886,
+ 13.362990844115371
+ ],
+ [
+ 71.38591936922255,
+ 13.168343109186917
+ ],
+ [
+ 71.6156047361899,
+ 13.168343109186917
+ ],
+ [
+ 71.73044741967358,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 13.752286313972277
+ ],
+ [
+ 71.6156047361899,
+ 13.946934048900731
+ ],
+ [
+ 71.38591936922255,
+ 13.946934048900731
+ ],
+ [
+ 71.27107668573886,
+ 13.752286313972277
+ ],
+ [
+ 71.38591936922255,
+ 13.557638579043823
+ ],
+ [
+ 71.6156047361899,
+ 13.557638579043823
+ ],
+ [
+ 71.73044741967358,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 14.141581783829183
+ ],
+ [
+ 71.6156047361899,
+ 14.336229518757637
+ ],
+ [
+ 71.38591936922255,
+ 14.336229518757637
+ ],
+ [
+ 71.27107668573886,
+ 14.141581783829183
+ ],
+ [
+ 71.38591936922255,
+ 13.94693404890073
+ ],
+ [
+ 71.6156047361899,
+ 13.94693404890073
+ ],
+ [
+ 71.73044741967358,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 14.530877253686091
+ ],
+ [
+ 71.6156047361899,
+ 14.725524988614545
+ ],
+ [
+ 71.38591936922255,
+ 14.725524988614545
+ ],
+ [
+ 71.27107668573886,
+ 14.530877253686091
+ ],
+ [
+ 71.38591936922255,
+ 14.336229518757637
+ ],
+ [
+ 71.6156047361899,
+ 14.336229518757637
+ ],
+ [
+ 71.73044741967358,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 14.920172723542997
+ ],
+ [
+ 71.6156047361899,
+ 15.114820458471451
+ ],
+ [
+ 71.38591936922255,
+ 15.114820458471451
+ ],
+ [
+ 71.27107668573886,
+ 14.920172723542997
+ ],
+ [
+ 71.38591936922255,
+ 14.725524988614543
+ ],
+ [
+ 71.6156047361899,
+ 14.725524988614543
+ ],
+ [
+ 71.73044741967358,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 15.309468193399903
+ ],
+ [
+ 71.6156047361899,
+ 15.504115928328357
+ ],
+ [
+ 71.38591936922255,
+ 15.504115928328357
+ ],
+ [
+ 71.27107668573886,
+ 15.309468193399903
+ ],
+ [
+ 71.38591936922255,
+ 15.11482045847145
+ ],
+ [
+ 71.6156047361899,
+ 15.11482045847145
+ ],
+ [
+ 71.73044741967358,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 15.69876366325681
+ ],
+ [
+ 71.6156047361899,
+ 15.893411398185265
+ ],
+ [
+ 71.38591936922255,
+ 15.893411398185265
+ ],
+ [
+ 71.27107668573886,
+ 15.69876366325681
+ ],
+ [
+ 71.38591936922255,
+ 15.504115928328357
+ ],
+ [
+ 71.6156047361899,
+ 15.504115928328357
+ ],
+ [
+ 71.73044741967358,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 16.088059133113717
+ ],
+ [
+ 71.6156047361899,
+ 16.28270686804217
+ ],
+ [
+ 71.38591936922255,
+ 16.28270686804217
+ ],
+ [
+ 71.27107668573886,
+ 16.088059133113717
+ ],
+ [
+ 71.38591936922255,
+ 15.893411398185263
+ ],
+ [
+ 71.6156047361899,
+ 15.893411398185263
+ ],
+ [
+ 71.73044741967358,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 16.477354602970625
+ ],
+ [
+ 71.6156047361899,
+ 16.672002337899077
+ ],
+ [
+ 71.38591936922255,
+ 16.672002337899077
+ ],
+ [
+ 71.27107668573886,
+ 16.477354602970625
+ ],
+ [
+ 71.38591936922255,
+ 16.282706868042172
+ ],
+ [
+ 71.6156047361899,
+ 16.282706868042172
+ ],
+ [
+ 71.73044741967358,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 16.86665007282753
+ ],
+ [
+ 71.6156047361899,
+ 17.06129780775598
+ ],
+ [
+ 71.38591936922255,
+ 17.06129780775598
+ ],
+ [
+ 71.27107668573886,
+ 16.86665007282753
+ ],
+ [
+ 71.38591936922255,
+ 16.672002337899077
+ ],
+ [
+ 71.6156047361899,
+ 16.672002337899077
+ ],
+ [
+ 71.73044741967358,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 17.255945542684437
+ ],
+ [
+ 71.6156047361899,
+ 17.45059327761289
+ ],
+ [
+ 71.38591936922255,
+ 17.45059327761289
+ ],
+ [
+ 71.27107668573886,
+ 17.255945542684437
+ ],
+ [
+ 71.38591936922255,
+ 17.061297807755984
+ ],
+ [
+ 71.6156047361899,
+ 17.061297807755984
+ ],
+ [
+ 71.73044741967358,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 17.64524101254134
+ ],
+ [
+ 71.6156047361899,
+ 17.839888747469793
+ ],
+ [
+ 71.38591936922255,
+ 17.839888747469793
+ ],
+ [
+ 71.27107668573886,
+ 17.64524101254134
+ ],
+ [
+ 71.38591936922255,
+ 17.45059327761289
+ ],
+ [
+ 71.6156047361899,
+ 17.45059327761289
+ ],
+ [
+ 71.73044741967358,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 18.03453648239825
+ ],
+ [
+ 71.6156047361899,
+ 18.2291842173267
+ ],
+ [
+ 71.38591936922255,
+ 18.2291842173267
+ ],
+ [
+ 71.27107668573886,
+ 18.03453648239825
+ ],
+ [
+ 71.38591936922255,
+ 17.839888747469796
+ ],
+ [
+ 71.6156047361899,
+ 17.839888747469796
+ ],
+ [
+ 71.73044741967358,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 18.423831952255156
+ ],
+ [
+ 71.6156047361899,
+ 18.61847968718361
+ ],
+ [
+ 71.38591936922255,
+ 18.61847968718361
+ ],
+ [
+ 71.27107668573886,
+ 18.423831952255156
+ ],
+ [
+ 71.38591936922255,
+ 18.229184217326704
+ ],
+ [
+ 71.6156047361899,
+ 18.229184217326704
+ ],
+ [
+ 71.73044741967358,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 18.81312742211206
+ ],
+ [
+ 71.6156047361899,
+ 19.007775157040513
+ ],
+ [
+ 71.38591936922255,
+ 19.007775157040513
+ ],
+ [
+ 71.27107668573886,
+ 18.81312742211206
+ ],
+ [
+ 71.38591936922255,
+ 18.61847968718361
+ ],
+ [
+ 71.6156047361899,
+ 18.61847968718361
+ ],
+ [
+ 71.73044741967358,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 19.20242289196897
+ ],
+ [
+ 71.6156047361899,
+ 19.39707062689742
+ ],
+ [
+ 71.38591936922255,
+ 19.39707062689742
+ ],
+ [
+ 71.27107668573886,
+ 19.20242289196897
+ ],
+ [
+ 71.38591936922255,
+ 19.007775157040516
+ ],
+ [
+ 71.6156047361899,
+ 19.007775157040516
+ ],
+ [
+ 71.73044741967358,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 19.591718361825876
+ ],
+ [
+ 71.6156047361899,
+ 19.78636609675433
+ ],
+ [
+ 71.38591936922255,
+ 19.78636609675433
+ ],
+ [
+ 71.27107668573886,
+ 19.591718361825876
+ ],
+ [
+ 71.38591936922255,
+ 19.397070626897424
+ ],
+ [
+ 71.6156047361899,
+ 19.397070626897424
+ ],
+ [
+ 71.73044741967358,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 19.98101383168278
+ ],
+ [
+ 71.6156047361899,
+ 20.175661566611232
+ ],
+ [
+ 71.38591936922255,
+ 20.175661566611232
+ ],
+ [
+ 71.27107668573886,
+ 19.98101383168278
+ ],
+ [
+ 71.38591936922255,
+ 19.78636609675433
+ ],
+ [
+ 71.6156047361899,
+ 19.78636609675433
+ ],
+ [
+ 71.73044741967358,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 20.370309301539685
+ ],
+ [
+ 71.6156047361899,
+ 20.564957036468137
+ ],
+ [
+ 71.38591936922255,
+ 20.564957036468137
+ ],
+ [
+ 71.27107668573886,
+ 20.370309301539685
+ ],
+ [
+ 71.38591936922255,
+ 20.175661566611232
+ ],
+ [
+ 71.6156047361899,
+ 20.175661566611232
+ ],
+ [
+ 71.73044741967358,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 20.759604771396592
+ ],
+ [
+ 71.6156047361899,
+ 20.954252506325044
+ ],
+ [
+ 71.38591936922255,
+ 20.954252506325044
+ ],
+ [
+ 71.27107668573886,
+ 20.759604771396592
+ ],
+ [
+ 71.38591936922255,
+ 20.56495703646814
+ ],
+ [
+ 71.6156047361899,
+ 20.56495703646814
+ ],
+ [
+ 71.73044741967358,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 21.1489002412535
+ ],
+ [
+ 71.6156047361899,
+ 21.343547976181952
+ ],
+ [
+ 71.38591936922255,
+ 21.343547976181952
+ ],
+ [
+ 71.27107668573886,
+ 21.1489002412535
+ ],
+ [
+ 71.38591936922255,
+ 20.954252506325048
+ ],
+ [
+ 71.6156047361899,
+ 20.954252506325048
+ ],
+ [
+ 71.73044741967358,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 21.538195711110404
+ ],
+ [
+ 71.6156047361899,
+ 21.732843446038856
+ ],
+ [
+ 71.38591936922255,
+ 21.732843446038856
+ ],
+ [
+ 71.27107668573886,
+ 21.538195711110404
+ ],
+ [
+ 71.38591936922255,
+ 21.343547976181952
+ ],
+ [
+ 71.6156047361899,
+ 21.343547976181952
+ ],
+ [
+ 71.73044741967358,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 21.927491180967312
+ ],
+ [
+ 71.6156047361899,
+ 22.122138915895764
+ ],
+ [
+ 71.38591936922255,
+ 22.122138915895764
+ ],
+ [
+ 71.27107668573886,
+ 21.927491180967312
+ ],
+ [
+ 71.38591936922255,
+ 21.73284344603886
+ ],
+ [
+ 71.6156047361899,
+ 21.73284344603886
+ ],
+ [
+ 71.73044741967358,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 22.31678665082422
+ ],
+ [
+ 71.6156047361899,
+ 22.511434385752672
+ ],
+ [
+ 71.38591936922255,
+ 22.511434385752672
+ ],
+ [
+ 71.27107668573886,
+ 22.31678665082422
+ ],
+ [
+ 71.38591936922255,
+ 22.122138915895768
+ ],
+ [
+ 71.6156047361899,
+ 22.122138915895768
+ ],
+ [
+ 71.73044741967358,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 22.706082120681124
+ ],
+ [
+ 71.6156047361899,
+ 22.900729855609576
+ ],
+ [
+ 71.38591936922255,
+ 22.900729855609576
+ ],
+ [
+ 71.27107668573886,
+ 22.706082120681124
+ ],
+ [
+ 71.38591936922255,
+ 22.511434385752672
+ ],
+ [
+ 71.6156047361899,
+ 22.511434385752672
+ ],
+ [
+ 71.73044741967358,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 23.095377590538032
+ ],
+ [
+ 71.6156047361899,
+ 23.290025325466484
+ ],
+ [
+ 71.38591936922255,
+ 23.290025325466484
+ ],
+ [
+ 71.27107668573886,
+ 23.095377590538032
+ ],
+ [
+ 71.38591936922255,
+ 22.90072985560958
+ ],
+ [
+ 71.6156047361899,
+ 22.90072985560958
+ ],
+ [
+ 71.73044741967358,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 23.48467306039494
+ ],
+ [
+ 71.6156047361899,
+ 23.67932079532339
+ ],
+ [
+ 71.38591936922255,
+ 23.67932079532339
+ ],
+ [
+ 71.27107668573886,
+ 23.48467306039494
+ ],
+ [
+ 71.38591936922255,
+ 23.290025325466488
+ ],
+ [
+ 71.6156047361899,
+ 23.290025325466488
+ ],
+ [
+ 71.73044741967358,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 23.873968530251844
+ ],
+ [
+ 71.6156047361899,
+ 24.068616265180296
+ ],
+ [
+ 71.38591936922255,
+ 24.068616265180296
+ ],
+ [
+ 71.27107668573886,
+ 23.873968530251844
+ ],
+ [
+ 71.38591936922255,
+ 23.67932079532339
+ ],
+ [
+ 71.6156047361899,
+ 23.67932079532339
+ ],
+ [
+ 71.73044741967358,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 24.263264000108748
+ ],
+ [
+ 71.6156047361899,
+ 24.4579117350372
+ ],
+ [
+ 71.38591936922255,
+ 24.4579117350372
+ ],
+ [
+ 71.27107668573886,
+ 24.263264000108748
+ ],
+ [
+ 71.38591936922255,
+ 24.068616265180296
+ ],
+ [
+ 71.6156047361899,
+ 24.068616265180296
+ ],
+ [
+ 71.73044741967358,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 24.652559469965656
+ ],
+ [
+ 71.6156047361899,
+ 24.847207204894108
+ ],
+ [
+ 71.38591936922255,
+ 24.847207204894108
+ ],
+ [
+ 71.27107668573886,
+ 24.652559469965656
+ ],
+ [
+ 71.38591936922255,
+ 24.457911735037204
+ ],
+ [
+ 71.6156047361899,
+ 24.457911735037204
+ ],
+ [
+ 71.73044741967358,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 25.041854939822564
+ ],
+ [
+ 71.6156047361899,
+ 25.236502674751016
+ ],
+ [
+ 71.38591936922255,
+ 25.236502674751016
+ ],
+ [
+ 71.27107668573886,
+ 25.041854939822564
+ ],
+ [
+ 71.38591936922255,
+ 24.84720720489411
+ ],
+ [
+ 71.6156047361899,
+ 24.84720720489411
+ ],
+ [
+ 71.73044741967358,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 25.431150409679468
+ ],
+ [
+ 71.6156047361899,
+ 25.62579814460792
+ ],
+ [
+ 71.38591936922255,
+ 25.62579814460792
+ ],
+ [
+ 71.27107668573886,
+ 25.431150409679468
+ ],
+ [
+ 71.38591936922255,
+ 25.236502674751016
+ ],
+ [
+ 71.6156047361899,
+ 25.236502674751016
+ ],
+ [
+ 71.73044741967358,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 25.820445879536376
+ ],
+ [
+ 71.6156047361899,
+ 26.015093614464828
+ ],
+ [
+ 71.38591936922255,
+ 26.015093614464828
+ ],
+ [
+ 71.27107668573886,
+ 25.820445879536376
+ ],
+ [
+ 71.38591936922255,
+ 25.625798144607923
+ ],
+ [
+ 71.6156047361899,
+ 25.625798144607923
+ ],
+ [
+ 71.73044741967358,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 26.209741349393283
+ ],
+ [
+ 71.6156047361899,
+ 26.404389084321735
+ ],
+ [
+ 71.38591936922255,
+ 26.404389084321735
+ ],
+ [
+ 71.27107668573886,
+ 26.209741349393283
+ ],
+ [
+ 71.38591936922255,
+ 26.01509361446483
+ ],
+ [
+ 71.6156047361899,
+ 26.01509361446483
+ ],
+ [
+ 71.73044741967358,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 26.599036819250188
+ ],
+ [
+ 71.6156047361899,
+ 26.79368455417864
+ ],
+ [
+ 71.38591936922255,
+ 26.79368455417864
+ ],
+ [
+ 71.27107668573886,
+ 26.599036819250188
+ ],
+ [
+ 71.38591936922255,
+ 26.404389084321735
+ ],
+ [
+ 71.6156047361899,
+ 26.404389084321735
+ ],
+ [
+ 71.73044741967358,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 26.988332289107095
+ ],
+ [
+ 71.6156047361899,
+ 27.182980024035547
+ ],
+ [
+ 71.38591936922255,
+ 27.182980024035547
+ ],
+ [
+ 71.27107668573886,
+ 26.988332289107095
+ ],
+ [
+ 71.38591936922255,
+ 26.793684554178643
+ ],
+ [
+ 71.6156047361899,
+ 26.793684554178643
+ ],
+ [
+ 71.73044741967358,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 27.377627758964003
+ ],
+ [
+ 71.6156047361899,
+ 27.572275493892455
+ ],
+ [
+ 71.38591936922255,
+ 27.572275493892455
+ ],
+ [
+ 71.27107668573886,
+ 27.377627758964003
+ ],
+ [
+ 71.38591936922255,
+ 27.18298002403555
+ ],
+ [
+ 71.6156047361899,
+ 27.18298002403555
+ ],
+ [
+ 71.73044741967358,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 27.766923228820907
+ ],
+ [
+ 71.6156047361899,
+ 27.96157096374936
+ ],
+ [
+ 71.38591936922255,
+ 27.96157096374936
+ ],
+ [
+ 71.27107668573886,
+ 27.766923228820907
+ ],
+ [
+ 71.38591936922255,
+ 27.572275493892455
+ ],
+ [
+ 71.6156047361899,
+ 27.572275493892455
+ ],
+ [
+ 71.73044741967358,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 28.156218698677815
+ ],
+ [
+ 71.6156047361899,
+ 28.350866433606267
+ ],
+ [
+ 71.38591936922255,
+ 28.350866433606267
+ ],
+ [
+ 71.27107668573886,
+ 28.156218698677815
+ ],
+ [
+ 71.38591936922255,
+ 27.961570963749363
+ ],
+ [
+ 71.6156047361899,
+ 27.961570963749363
+ ],
+ [
+ 71.73044741967358,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 28.54551416853472
+ ],
+ [
+ 71.6156047361899,
+ 28.74016190346317
+ ],
+ [
+ 71.38591936922255,
+ 28.74016190346317
+ ],
+ [
+ 71.27107668573886,
+ 28.54551416853472
+ ],
+ [
+ 71.38591936922255,
+ 28.350866433606267
+ ],
+ [
+ 71.6156047361899,
+ 28.350866433606267
+ ],
+ [
+ 71.73044741967358,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 28.934809638391627
+ ],
+ [
+ 71.6156047361899,
+ 29.12945737332008
+ ],
+ [
+ 71.38591936922255,
+ 29.12945737332008
+ ],
+ [
+ 71.27107668573886,
+ 28.934809638391627
+ ],
+ [
+ 71.38591936922255,
+ 28.740161903463175
+ ],
+ [
+ 71.6156047361899,
+ 28.740161903463175
+ ],
+ [
+ 71.73044741967358,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 29.32410510824853
+ ],
+ [
+ 71.6156047361899,
+ 29.518752843176983
+ ],
+ [
+ 71.38591936922255,
+ 29.518752843176983
+ ],
+ [
+ 71.27107668573886,
+ 29.32410510824853
+ ],
+ [
+ 71.38591936922255,
+ 29.12945737332008
+ ],
+ [
+ 71.6156047361899,
+ 29.12945737332008
+ ],
+ [
+ 71.73044741967358,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 29.71340057810544
+ ],
+ [
+ 71.6156047361899,
+ 29.90804831303389
+ ],
+ [
+ 71.38591936922255,
+ 29.90804831303389
+ ],
+ [
+ 71.27107668573886,
+ 29.71340057810544
+ ],
+ [
+ 71.38591936922255,
+ 29.518752843176987
+ ],
+ [
+ 71.6156047361899,
+ 29.518752843176987
+ ],
+ [
+ 71.73044741967358,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 30.102696047962343
+ ],
+ [
+ 71.6156047361899,
+ 30.297343782890795
+ ],
+ [
+ 71.38591936922255,
+ 30.297343782890795
+ ],
+ [
+ 71.27107668573886,
+ 30.102696047962343
+ ],
+ [
+ 71.38591936922255,
+ 29.90804831303389
+ ],
+ [
+ 71.6156047361899,
+ 29.90804831303389
+ ],
+ [
+ 71.73044741967358,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 30.49199151781925
+ ],
+ [
+ 71.6156047361899,
+ 30.686639252747703
+ ],
+ [
+ 71.38591936922255,
+ 30.686639252747703
+ ],
+ [
+ 71.27107668573886,
+ 30.49199151781925
+ ],
+ [
+ 71.38591936922255,
+ 30.2973437828908
+ ],
+ [
+ 71.6156047361899,
+ 30.2973437828908
+ ],
+ [
+ 71.73044741967358,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 30.88128698767616
+ ],
+ [
+ 71.6156047361899,
+ 31.07593472260461
+ ],
+ [
+ 71.38591936922255,
+ 31.07593472260461
+ ],
+ [
+ 71.27107668573886,
+ 30.88128698767616
+ ],
+ [
+ 71.38591936922255,
+ 30.686639252747707
+ ],
+ [
+ 71.6156047361899,
+ 30.686639252747707
+ ],
+ [
+ 71.73044741967358,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 31.270582457533063
+ ],
+ [
+ 71.6156047361899,
+ 31.465230192461515
+ ],
+ [
+ 71.38591936922255,
+ 31.465230192461515
+ ],
+ [
+ 71.27107668573886,
+ 31.270582457533063
+ ],
+ [
+ 71.38591936922255,
+ 31.07593472260461
+ ],
+ [
+ 71.6156047361899,
+ 31.07593472260461
+ ],
+ [
+ 71.73044741967358,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 31.65987792738997
+ ],
+ [
+ 71.6156047361899,
+ 31.854525662318423
+ ],
+ [
+ 71.38591936922255,
+ 31.854525662318423
+ ],
+ [
+ 71.27107668573886,
+ 31.65987792738997
+ ],
+ [
+ 71.38591936922255,
+ 31.46523019246152
+ ],
+ [
+ 71.6156047361899,
+ 31.46523019246152
+ ],
+ [
+ 71.73044741967358,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 32.049173397246875
+ ],
+ [
+ 71.6156047361899,
+ 32.24382113217533
+ ],
+ [
+ 71.38591936922255,
+ 32.24382113217533
+ ],
+ [
+ 71.27107668573886,
+ 32.049173397246875
+ ],
+ [
+ 71.38591936922255,
+ 31.854525662318423
+ ],
+ [
+ 71.6156047361899,
+ 31.854525662318423
+ ],
+ [
+ 71.73044741967358,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 32.438468867103786
+ ],
+ [
+ 71.6156047361899,
+ 32.63311660203224
+ ],
+ [
+ 71.38591936922255,
+ 32.63311660203224
+ ],
+ [
+ 71.27107668573886,
+ 32.438468867103786
+ ],
+ [
+ 71.38591936922255,
+ 32.243821132175334
+ ],
+ [
+ 71.6156047361899,
+ 32.243821132175334
+ ],
+ [
+ 71.73044741967358,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 32.82776433696069
+ ],
+ [
+ 71.6156047361899,
+ 33.02241207188914
+ ],
+ [
+ 71.38591936922255,
+ 33.02241207188914
+ ],
+ [
+ 71.27107668573886,
+ 32.82776433696069
+ ],
+ [
+ 71.38591936922255,
+ 32.63311660203224
+ ],
+ [
+ 71.6156047361899,
+ 32.63311660203224
+ ],
+ [
+ 71.73044741967358,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 33.217059806817595
+ ],
+ [
+ 71.6156047361899,
+ 33.41170754174605
+ ],
+ [
+ 71.38591936922255,
+ 33.41170754174605
+ ],
+ [
+ 71.27107668573886,
+ 33.217059806817595
+ ],
+ [
+ 71.38591936922255,
+ 33.02241207188914
+ ],
+ [
+ 71.6156047361899,
+ 33.02241207188914
+ ],
+ [
+ 71.73044741967358,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 33.6063552766745
+ ],
+ [
+ 71.6156047361899,
+ 33.80100301160295
+ ],
+ [
+ 71.38591936922255,
+ 33.80100301160295
+ ],
+ [
+ 71.27107668573886,
+ 33.6063552766745
+ ],
+ [
+ 71.38591936922255,
+ 33.41170754174605
+ ],
+ [
+ 71.6156047361899,
+ 33.41170754174605
+ ],
+ [
+ 71.73044741967358,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 33.9956507465314
+ ],
+ [
+ 71.6156047361899,
+ 34.190298481459855
+ ],
+ [
+ 71.38591936922255,
+ 34.190298481459855
+ ],
+ [
+ 71.27107668573886,
+ 33.9956507465314
+ ],
+ [
+ 71.38591936922255,
+ 33.80100301160295
+ ],
+ [
+ 71.6156047361899,
+ 33.80100301160295
+ ],
+ [
+ 71.73044741967358,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 34.384946216388315
+ ],
+ [
+ 71.6156047361899,
+ 34.57959395131677
+ ],
+ [
+ 71.38591936922255,
+ 34.57959395131677
+ ],
+ [
+ 71.27107668573886,
+ 34.384946216388315
+ ],
+ [
+ 71.38591936922255,
+ 34.19029848145986
+ ],
+ [
+ 71.6156047361899,
+ 34.19029848145986
+ ],
+ [
+ 71.73044741967358,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 34.774241686245226
+ ],
+ [
+ 71.6156047361899,
+ 34.96888942117368
+ ],
+ [
+ 71.38591936922255,
+ 34.96888942117368
+ ],
+ [
+ 71.27107668573886,
+ 34.774241686245226
+ ],
+ [
+ 71.38591936922255,
+ 34.579593951316774
+ ],
+ [
+ 71.6156047361899,
+ 34.579593951316774
+ ],
+ [
+ 71.73044741967358,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 35.16353715610213
+ ],
+ [
+ 71.6156047361899,
+ 35.35818489103058
+ ],
+ [
+ 71.38591936922255,
+ 35.35818489103058
+ ],
+ [
+ 71.27107668573886,
+ 35.16353715610213
+ ],
+ [
+ 71.38591936922255,
+ 34.96888942117368
+ ],
+ [
+ 71.6156047361899,
+ 34.96888942117368
+ ],
+ [
+ 71.73044741967358,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 35.552832625959034
+ ],
+ [
+ 71.6156047361899,
+ 35.74748036088749
+ ],
+ [
+ 71.38591936922255,
+ 35.74748036088749
+ ],
+ [
+ 71.27107668573886,
+ 35.552832625959034
+ ],
+ [
+ 71.38591936922255,
+ 35.35818489103058
+ ],
+ [
+ 71.6156047361899,
+ 35.35818489103058
+ ],
+ [
+ 71.73044741967358,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 35.94212809581594
+ ],
+ [
+ 71.6156047361899,
+ 36.13677583074439
+ ],
+ [
+ 71.38591936922255,
+ 36.13677583074439
+ ],
+ [
+ 71.27107668573886,
+ 35.94212809581594
+ ],
+ [
+ 71.38591936922255,
+ 35.74748036088749
+ ],
+ [
+ 71.6156047361899,
+ 35.74748036088749
+ ],
+ [
+ 71.73044741967358,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 36.33142356567284
+ ],
+ [
+ 71.6156047361899,
+ 36.526071300601295
+ ],
+ [
+ 71.38591936922255,
+ 36.526071300601295
+ ],
+ [
+ 71.27107668573886,
+ 36.33142356567284
+ ],
+ [
+ 71.38591936922255,
+ 36.13677583074439
+ ],
+ [
+ 71.6156047361899,
+ 36.13677583074439
+ ],
+ [
+ 71.73044741967358,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 36.720719035529754
+ ],
+ [
+ 71.6156047361899,
+ 36.915366770458206
+ ],
+ [
+ 71.38591936922255,
+ 36.915366770458206
+ ],
+ [
+ 71.27107668573886,
+ 36.720719035529754
+ ],
+ [
+ 71.38591936922255,
+ 36.5260713006013
+ ],
+ [
+ 71.6156047361899,
+ 36.5260713006013
+ ],
+ [
+ 71.73044741967358,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 37.11001450538666
+ ],
+ [
+ 71.6156047361899,
+ 37.30466224031511
+ ],
+ [
+ 71.38591936922255,
+ 37.30466224031511
+ ],
+ [
+ 71.27107668573886,
+ 37.11001450538666
+ ],
+ [
+ 71.38591936922255,
+ 36.915366770458206
+ ],
+ [
+ 71.6156047361899,
+ 36.915366770458206
+ ],
+ [
+ 71.73044741967358,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 37.49930997524357
+ ],
+ [
+ 71.6156047361899,
+ 37.69395771017202
+ ],
+ [
+ 71.38591936922255,
+ 37.69395771017202
+ ],
+ [
+ 71.27107668573886,
+ 37.49930997524357
+ ],
+ [
+ 71.38591936922255,
+ 37.30466224031512
+ ],
+ [
+ 71.6156047361899,
+ 37.30466224031512
+ ],
+ [
+ 71.73044741967358,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 37.888605445100474
+ ],
+ [
+ 71.6156047361899,
+ 38.083253180028926
+ ],
+ [
+ 71.38591936922255,
+ 38.083253180028926
+ ],
+ [
+ 71.27107668573886,
+ 37.888605445100474
+ ],
+ [
+ 71.38591936922255,
+ 37.69395771017202
+ ],
+ [
+ 71.6156047361899,
+ 37.69395771017202
+ ],
+ [
+ 71.73044741967358,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 38.27790091495738
+ ],
+ [
+ 71.6156047361899,
+ 38.47254864988583
+ ],
+ [
+ 71.38591936922255,
+ 38.47254864988583
+ ],
+ [
+ 71.27107668573886,
+ 38.27790091495738
+ ],
+ [
+ 71.38591936922255,
+ 38.083253180028926
+ ],
+ [
+ 71.6156047361899,
+ 38.083253180028926
+ ],
+ [
+ 71.73044741967358,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 38.66719638481428
+ ],
+ [
+ 71.6156047361899,
+ 38.861844119742734
+ ],
+ [
+ 71.38591936922255,
+ 38.861844119742734
+ ],
+ [
+ 71.27107668573886,
+ 38.66719638481428
+ ],
+ [
+ 71.38591936922255,
+ 38.47254864988583
+ ],
+ [
+ 71.6156047361899,
+ 38.47254864988583
+ ],
+ [
+ 71.73044741967358,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 39.05649185467119
+ ],
+ [
+ 71.6156047361899,
+ 39.25113958959964
+ ],
+ [
+ 71.38591936922255,
+ 39.25113958959964
+ ],
+ [
+ 71.27107668573886,
+ 39.05649185467119
+ ],
+ [
+ 71.38591936922255,
+ 38.861844119742734
+ ],
+ [
+ 71.6156047361899,
+ 38.861844119742734
+ ],
+ [
+ 71.73044741967358,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 39.4457873245281
+ ],
+ [
+ 71.6156047361899,
+ 39.64043505945655
+ ],
+ [
+ 71.38591936922255,
+ 39.64043505945655
+ ],
+ [
+ 71.27107668573886,
+ 39.4457873245281
+ ],
+ [
+ 71.38591936922255,
+ 39.251139589599646
+ ],
+ [
+ 71.6156047361899,
+ 39.251139589599646
+ ],
+ [
+ 71.73044741967358,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 39.835082794385
+ ],
+ [
+ 71.6156047361899,
+ 40.029730529313454
+ ],
+ [
+ 71.38591936922255,
+ 40.029730529313454
+ ],
+ [
+ 71.27107668573886,
+ 39.835082794385
+ ],
+ [
+ 71.38591936922255,
+ 39.64043505945655
+ ],
+ [
+ 71.6156047361899,
+ 39.64043505945655
+ ],
+ [
+ 71.73044741967358,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 40.22437826424191
+ ],
+ [
+ 71.6156047361899,
+ 40.419025999170366
+ ],
+ [
+ 71.38591936922255,
+ 40.419025999170366
+ ],
+ [
+ 71.27107668573886,
+ 40.22437826424191
+ ],
+ [
+ 71.38591936922255,
+ 40.02973052931346
+ ],
+ [
+ 71.6156047361899,
+ 40.02973052931346
+ ],
+ [
+ 71.73044741967358,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 40.61367373409882
+ ],
+ [
+ 71.6156047361899,
+ 40.80832146902727
+ ],
+ [
+ 71.38591936922255,
+ 40.80832146902727
+ ],
+ [
+ 71.27107668573886,
+ 40.61367373409882
+ ],
+ [
+ 71.38591936922255,
+ 40.419025999170366
+ ],
+ [
+ 71.6156047361899,
+ 40.419025999170366
+ ],
+ [
+ 71.73044741967358,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 41.00296920395572
+ ],
+ [
+ 71.6156047361899,
+ 41.197616938884174
+ ],
+ [
+ 71.38591936922255,
+ 41.197616938884174
+ ],
+ [
+ 71.27107668573886,
+ 41.00296920395572
+ ],
+ [
+ 71.38591936922255,
+ 40.80832146902727
+ ],
+ [
+ 71.6156047361899,
+ 40.80832146902727
+ ],
+ [
+ 71.73044741967358,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 41.392264673812626
+ ],
+ [
+ 71.6156047361899,
+ 41.58691240874108
+ ],
+ [
+ 71.38591936922255,
+ 41.58691240874108
+ ],
+ [
+ 71.27107668573886,
+ 41.392264673812626
+ ],
+ [
+ 71.38591936922255,
+ 41.197616938884174
+ ],
+ [
+ 71.6156047361899,
+ 41.197616938884174
+ ],
+ [
+ 71.73044741967358,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 41.78156014366953
+ ],
+ [
+ 71.6156047361899,
+ 41.97620787859798
+ ],
+ [
+ 71.38591936922255,
+ 41.97620787859798
+ ],
+ [
+ 71.27107668573886,
+ 41.78156014366953
+ ],
+ [
+ 71.38591936922255,
+ 41.58691240874108
+ ],
+ [
+ 71.6156047361899,
+ 41.58691240874108
+ ],
+ [
+ 71.73044741967358,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 42.17085561352644
+ ],
+ [
+ 71.6156047361899,
+ 42.365503348454894
+ ],
+ [
+ 71.38591936922255,
+ 42.365503348454894
+ ],
+ [
+ 71.27107668573886,
+ 42.17085561352644
+ ],
+ [
+ 71.38591936922255,
+ 41.97620787859799
+ ],
+ [
+ 71.6156047361899,
+ 41.97620787859799
+ ],
+ [
+ 71.73044741967358,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 42.56015108338335
+ ],
+ [
+ 71.6156047361899,
+ 42.754798818311805
+ ],
+ [
+ 71.38591936922255,
+ 42.754798818311805
+ ],
+ [
+ 71.27107668573886,
+ 42.56015108338335
+ ],
+ [
+ 71.38591936922255,
+ 42.3655033484549
+ ],
+ [
+ 71.6156047361899,
+ 42.3655033484549
+ ],
+ [
+ 71.73044741967358,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 42.94944655324026
+ ],
+ [
+ 71.6156047361899,
+ 43.14409428816871
+ ],
+ [
+ 71.38591936922255,
+ 43.14409428816871
+ ],
+ [
+ 71.27107668573886,
+ 42.94944655324026
+ ],
+ [
+ 71.38591936922255,
+ 42.754798818311805
+ ],
+ [
+ 71.6156047361899,
+ 42.754798818311805
+ ],
+ [
+ 71.73044741967358,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 43.33874202309716
+ ],
+ [
+ 71.6156047361899,
+ 43.53338975802561
+ ],
+ [
+ 71.38591936922255,
+ 43.53338975802561
+ ],
+ [
+ 71.27107668573886,
+ 43.33874202309716
+ ],
+ [
+ 71.38591936922255,
+ 43.14409428816871
+ ],
+ [
+ 71.6156047361899,
+ 43.14409428816871
+ ],
+ [
+ 71.73044741967358,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 43.728037492954066
+ ],
+ [
+ 71.6156047361899,
+ 43.92268522788252
+ ],
+ [
+ 71.38591936922255,
+ 43.92268522788252
+ ],
+ [
+ 71.27107668573886,
+ 43.728037492954066
+ ],
+ [
+ 71.38591936922255,
+ 43.53338975802561
+ ],
+ [
+ 71.6156047361899,
+ 43.53338975802561
+ ],
+ [
+ 71.73044741967358,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 44.11733296281097
+ ],
+ [
+ 71.6156047361899,
+ 44.31198069773942
+ ],
+ [
+ 71.38591936922255,
+ 44.31198069773942
+ ],
+ [
+ 71.27107668573886,
+ 44.11733296281097
+ ],
+ [
+ 71.38591936922255,
+ 43.92268522788252
+ ],
+ [
+ 71.6156047361899,
+ 43.92268522788252
+ ],
+ [
+ 71.73044741967358,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 44.506628432667874
+ ],
+ [
+ 71.6156047361899,
+ 44.701276167596326
+ ],
+ [
+ 71.38591936922255,
+ 44.701276167596326
+ ],
+ [
+ 71.27107668573886,
+ 44.506628432667874
+ ],
+ [
+ 71.38591936922255,
+ 44.31198069773942
+ ],
+ [
+ 71.6156047361899,
+ 44.31198069773942
+ ],
+ [
+ 71.73044741967358,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 44.89592390252479
+ ],
+ [
+ 71.6156047361899,
+ 45.090571637453245
+ ],
+ [
+ 71.38591936922255,
+ 45.090571637453245
+ ],
+ [
+ 71.27107668573886,
+ 44.89592390252479
+ ],
+ [
+ 71.38591936922255,
+ 44.70127616759634
+ ],
+ [
+ 71.6156047361899,
+ 44.70127616759634
+ ],
+ [
+ 71.73044741967358,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 45.2852193723817
+ ],
+ [
+ 71.6156047361899,
+ 45.47986710731015
+ ],
+ [
+ 71.38591936922255,
+ 45.47986710731015
+ ],
+ [
+ 71.27107668573886,
+ 45.2852193723817
+ ],
+ [
+ 71.38591936922255,
+ 45.090571637453245
+ ],
+ [
+ 71.6156047361899,
+ 45.090571637453245
+ ],
+ [
+ 71.73044741967358,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 45.6745148422386
+ ],
+ [
+ 71.6156047361899,
+ 45.86916257716705
+ ],
+ [
+ 71.38591936922255,
+ 45.86916257716705
+ ],
+ [
+ 71.27107668573886,
+ 45.6745148422386
+ ],
+ [
+ 71.38591936922255,
+ 45.47986710731015
+ ],
+ [
+ 71.6156047361899,
+ 45.47986710731015
+ ],
+ [
+ 71.73044741967358,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 46.063810312095505
+ ],
+ [
+ 71.6156047361899,
+ 46.25845804702396
+ ],
+ [
+ 71.38591936922255,
+ 46.25845804702396
+ ],
+ [
+ 71.27107668573886,
+ 46.063810312095505
+ ],
+ [
+ 71.38591936922255,
+ 45.86916257716705
+ ],
+ [
+ 71.6156047361899,
+ 45.86916257716705
+ ],
+ [
+ 71.73044741967358,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 46.45310578195241
+ ],
+ [
+ 71.6156047361899,
+ 46.64775351688086
+ ],
+ [
+ 71.38591936922255,
+ 46.64775351688086
+ ],
+ [
+ 71.27107668573886,
+ 46.45310578195241
+ ],
+ [
+ 71.38591936922255,
+ 46.25845804702396
+ ],
+ [
+ 71.6156047361899,
+ 46.25845804702396
+ ],
+ [
+ 71.73044741967358,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 46.842401251809314
+ ],
+ [
+ 71.6156047361899,
+ 47.037048986737766
+ ],
+ [
+ 71.38591936922255,
+ 47.037048986737766
+ ],
+ [
+ 71.27107668573886,
+ 46.842401251809314
+ ],
+ [
+ 71.38591936922255,
+ 46.64775351688086
+ ],
+ [
+ 71.6156047361899,
+ 46.64775351688086
+ ],
+ [
+ 71.73044741967358,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 47.23169672166622
+ ],
+ [
+ 71.6156047361899,
+ 47.42634445659467
+ ],
+ [
+ 71.38591936922255,
+ 47.42634445659467
+ ],
+ [
+ 71.27107668573886,
+ 47.23169672166622
+ ],
+ [
+ 71.38591936922255,
+ 47.037048986737766
+ ],
+ [
+ 71.6156047361899,
+ 47.037048986737766
+ ],
+ [
+ 71.73044741967358,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 71.73044741967358,
+ 47.620992191523136
+ ],
+ [
+ 71.6156047361899,
+ 47.81563992645159
+ ],
+ [
+ 71.38591936922255,
+ 47.81563992645159
+ ],
+ [
+ 71.27107668573886,
+ 47.620992191523136
+ ],
+ [
+ 71.38591936922255,
+ 47.426344456594684
+ ],
+ [
+ 71.6156047361899,
+ 47.426344456594684
+ ],
+ [
+ 71.73044741967358,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 12.0004566996162
+ ],
+ [
+ 71.96013278664094,
+ 12.195104434544653
+ ],
+ [
+ 71.7304474196736,
+ 12.195104434544653
+ ],
+ [
+ 71.61560473618991,
+ 12.0004566996162
+ ],
+ [
+ 71.7304474196736,
+ 11.805808964687746
+ ],
+ [
+ 71.96013278664094,
+ 11.805808964687746
+ ],
+ [
+ 72.07497547012463,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 12.389752169473105
+ ],
+ [
+ 71.96013278664094,
+ 12.58439990440156
+ ],
+ [
+ 71.7304474196736,
+ 12.58439990440156
+ ],
+ [
+ 71.61560473618991,
+ 12.389752169473105
+ ],
+ [
+ 71.7304474196736,
+ 12.195104434544652
+ ],
+ [
+ 71.96013278664094,
+ 12.195104434544652
+ ],
+ [
+ 72.07497547012463,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 12.779047639330013
+ ],
+ [
+ 71.96013278664094,
+ 12.973695374258467
+ ],
+ [
+ 71.7304474196736,
+ 12.973695374258467
+ ],
+ [
+ 71.61560473618991,
+ 12.779047639330013
+ ],
+ [
+ 71.7304474196736,
+ 12.58439990440156
+ ],
+ [
+ 71.96013278664094,
+ 12.58439990440156
+ ],
+ [
+ 72.07497547012463,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 13.16834310918692
+ ],
+ [
+ 71.96013278664094,
+ 13.362990844115373
+ ],
+ [
+ 71.7304474196736,
+ 13.362990844115373
+ ],
+ [
+ 71.61560473618991,
+ 13.16834310918692
+ ],
+ [
+ 71.7304474196736,
+ 12.973695374258465
+ ],
+ [
+ 71.96013278664094,
+ 12.973695374258465
+ ],
+ [
+ 72.07497547012463,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 13.557638579043825
+ ],
+ [
+ 71.96013278664094,
+ 13.752286313972279
+ ],
+ [
+ 71.7304474196736,
+ 13.752286313972279
+ ],
+ [
+ 71.61560473618991,
+ 13.557638579043825
+ ],
+ [
+ 71.7304474196736,
+ 13.362990844115371
+ ],
+ [
+ 71.96013278664094,
+ 13.362990844115371
+ ],
+ [
+ 72.07497547012463,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 13.946934048900731
+ ],
+ [
+ 71.96013278664094,
+ 14.141581783829185
+ ],
+ [
+ 71.7304474196736,
+ 14.141581783829185
+ ],
+ [
+ 71.61560473618991,
+ 13.946934048900731
+ ],
+ [
+ 71.7304474196736,
+ 13.752286313972277
+ ],
+ [
+ 71.96013278664094,
+ 13.752286313972277
+ ],
+ [
+ 72.07497547012463,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 14.336229518757637
+ ],
+ [
+ 71.96013278664094,
+ 14.530877253686091
+ ],
+ [
+ 71.7304474196736,
+ 14.530877253686091
+ ],
+ [
+ 71.61560473618991,
+ 14.336229518757637
+ ],
+ [
+ 71.7304474196736,
+ 14.141581783829183
+ ],
+ [
+ 71.96013278664094,
+ 14.141581783829183
+ ],
+ [
+ 72.07497547012463,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 14.725524988614545
+ ],
+ [
+ 71.96013278664094,
+ 14.920172723542999
+ ],
+ [
+ 71.7304474196736,
+ 14.920172723542999
+ ],
+ [
+ 71.61560473618991,
+ 14.725524988614545
+ ],
+ [
+ 71.7304474196736,
+ 14.530877253686091
+ ],
+ [
+ 71.96013278664094,
+ 14.530877253686091
+ ],
+ [
+ 72.07497547012463,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 15.114820458471451
+ ],
+ [
+ 71.96013278664094,
+ 15.309468193399905
+ ],
+ [
+ 71.7304474196736,
+ 15.309468193399905
+ ],
+ [
+ 71.61560473618991,
+ 15.114820458471451
+ ],
+ [
+ 71.7304474196736,
+ 14.920172723542997
+ ],
+ [
+ 71.96013278664094,
+ 14.920172723542997
+ ],
+ [
+ 72.07497547012463,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 15.504115928328357
+ ],
+ [
+ 71.96013278664094,
+ 15.69876366325681
+ ],
+ [
+ 71.7304474196736,
+ 15.69876366325681
+ ],
+ [
+ 71.61560473618991,
+ 15.504115928328357
+ ],
+ [
+ 71.7304474196736,
+ 15.309468193399903
+ ],
+ [
+ 71.96013278664094,
+ 15.309468193399903
+ ],
+ [
+ 72.07497547012463,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 15.893411398185265
+ ],
+ [
+ 71.96013278664094,
+ 16.088059133113717
+ ],
+ [
+ 71.7304474196736,
+ 16.088059133113717
+ ],
+ [
+ 71.61560473618991,
+ 15.893411398185265
+ ],
+ [
+ 71.7304474196736,
+ 15.69876366325681
+ ],
+ [
+ 71.96013278664094,
+ 15.69876366325681
+ ],
+ [
+ 72.07497547012463,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 16.28270686804217
+ ],
+ [
+ 71.96013278664094,
+ 16.47735460297062
+ ],
+ [
+ 71.7304474196736,
+ 16.47735460297062
+ ],
+ [
+ 71.61560473618991,
+ 16.28270686804217
+ ],
+ [
+ 71.7304474196736,
+ 16.088059133113717
+ ],
+ [
+ 71.96013278664094,
+ 16.088059133113717
+ ],
+ [
+ 72.07497547012463,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 16.672002337899077
+ ],
+ [
+ 71.96013278664094,
+ 16.86665007282753
+ ],
+ [
+ 71.7304474196736,
+ 16.86665007282753
+ ],
+ [
+ 71.61560473618991,
+ 16.672002337899077
+ ],
+ [
+ 71.7304474196736,
+ 16.477354602970625
+ ],
+ [
+ 71.96013278664094,
+ 16.477354602970625
+ ],
+ [
+ 72.07497547012463,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 17.06129780775598
+ ],
+ [
+ 71.96013278664094,
+ 17.255945542684433
+ ],
+ [
+ 71.7304474196736,
+ 17.255945542684433
+ ],
+ [
+ 71.61560473618991,
+ 17.06129780775598
+ ],
+ [
+ 71.7304474196736,
+ 16.86665007282753
+ ],
+ [
+ 71.96013278664094,
+ 16.86665007282753
+ ],
+ [
+ 72.07497547012463,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 17.45059327761289
+ ],
+ [
+ 71.96013278664094,
+ 17.64524101254134
+ ],
+ [
+ 71.7304474196736,
+ 17.64524101254134
+ ],
+ [
+ 71.61560473618991,
+ 17.45059327761289
+ ],
+ [
+ 71.7304474196736,
+ 17.255945542684437
+ ],
+ [
+ 71.96013278664094,
+ 17.255945542684437
+ ],
+ [
+ 72.07497547012463,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 17.839888747469793
+ ],
+ [
+ 71.96013278664094,
+ 18.034536482398245
+ ],
+ [
+ 71.7304474196736,
+ 18.034536482398245
+ ],
+ [
+ 71.61560473618991,
+ 17.839888747469793
+ ],
+ [
+ 71.7304474196736,
+ 17.64524101254134
+ ],
+ [
+ 71.96013278664094,
+ 17.64524101254134
+ ],
+ [
+ 72.07497547012463,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 18.2291842173267
+ ],
+ [
+ 71.96013278664094,
+ 18.423831952255153
+ ],
+ [
+ 71.7304474196736,
+ 18.423831952255153
+ ],
+ [
+ 71.61560473618991,
+ 18.2291842173267
+ ],
+ [
+ 71.7304474196736,
+ 18.03453648239825
+ ],
+ [
+ 71.96013278664094,
+ 18.03453648239825
+ ],
+ [
+ 72.07497547012463,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 18.61847968718361
+ ],
+ [
+ 71.96013278664094,
+ 18.81312742211206
+ ],
+ [
+ 71.7304474196736,
+ 18.81312742211206
+ ],
+ [
+ 71.61560473618991,
+ 18.61847968718361
+ ],
+ [
+ 71.7304474196736,
+ 18.423831952255156
+ ],
+ [
+ 71.96013278664094,
+ 18.423831952255156
+ ],
+ [
+ 72.07497547012463,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 19.007775157040513
+ ],
+ [
+ 71.96013278664094,
+ 19.202422891968965
+ ],
+ [
+ 71.7304474196736,
+ 19.202422891968965
+ ],
+ [
+ 71.61560473618991,
+ 19.007775157040513
+ ],
+ [
+ 71.7304474196736,
+ 18.81312742211206
+ ],
+ [
+ 71.96013278664094,
+ 18.81312742211206
+ ],
+ [
+ 72.07497547012463,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 19.39707062689742
+ ],
+ [
+ 71.96013278664094,
+ 19.591718361825873
+ ],
+ [
+ 71.7304474196736,
+ 19.591718361825873
+ ],
+ [
+ 71.61560473618991,
+ 19.39707062689742
+ ],
+ [
+ 71.7304474196736,
+ 19.20242289196897
+ ],
+ [
+ 71.96013278664094,
+ 19.20242289196897
+ ],
+ [
+ 72.07497547012463,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 19.78636609675433
+ ],
+ [
+ 71.96013278664094,
+ 19.98101383168278
+ ],
+ [
+ 71.7304474196736,
+ 19.98101383168278
+ ],
+ [
+ 71.61560473618991,
+ 19.78636609675433
+ ],
+ [
+ 71.7304474196736,
+ 19.591718361825876
+ ],
+ [
+ 71.96013278664094,
+ 19.591718361825876
+ ],
+ [
+ 72.07497547012463,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 20.175661566611232
+ ],
+ [
+ 71.96013278664094,
+ 20.370309301539685
+ ],
+ [
+ 71.7304474196736,
+ 20.370309301539685
+ ],
+ [
+ 71.61560473618991,
+ 20.175661566611232
+ ],
+ [
+ 71.7304474196736,
+ 19.98101383168278
+ ],
+ [
+ 71.96013278664094,
+ 19.98101383168278
+ ],
+ [
+ 72.07497547012463,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 20.564957036468137
+ ],
+ [
+ 71.96013278664094,
+ 20.75960477139659
+ ],
+ [
+ 71.7304474196736,
+ 20.75960477139659
+ ],
+ [
+ 71.61560473618991,
+ 20.564957036468137
+ ],
+ [
+ 71.7304474196736,
+ 20.370309301539685
+ ],
+ [
+ 71.96013278664094,
+ 20.370309301539685
+ ],
+ [
+ 72.07497547012463,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 20.954252506325044
+ ],
+ [
+ 71.96013278664094,
+ 21.148900241253497
+ ],
+ [
+ 71.7304474196736,
+ 21.148900241253497
+ ],
+ [
+ 71.61560473618991,
+ 20.954252506325044
+ ],
+ [
+ 71.7304474196736,
+ 20.759604771396592
+ ],
+ [
+ 71.96013278664094,
+ 20.759604771396592
+ ],
+ [
+ 72.07497547012463,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 21.343547976181952
+ ],
+ [
+ 71.96013278664094,
+ 21.538195711110404
+ ],
+ [
+ 71.7304474196736,
+ 21.538195711110404
+ ],
+ [
+ 71.61560473618991,
+ 21.343547976181952
+ ],
+ [
+ 71.7304474196736,
+ 21.1489002412535
+ ],
+ [
+ 71.96013278664094,
+ 21.1489002412535
+ ],
+ [
+ 72.07497547012463,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 21.732843446038856
+ ],
+ [
+ 71.96013278664094,
+ 21.92749118096731
+ ],
+ [
+ 71.7304474196736,
+ 21.92749118096731
+ ],
+ [
+ 71.61560473618991,
+ 21.732843446038856
+ ],
+ [
+ 71.7304474196736,
+ 21.538195711110404
+ ],
+ [
+ 71.96013278664094,
+ 21.538195711110404
+ ],
+ [
+ 72.07497547012463,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 22.122138915895764
+ ],
+ [
+ 71.96013278664094,
+ 22.316786650824216
+ ],
+ [
+ 71.7304474196736,
+ 22.316786650824216
+ ],
+ [
+ 71.61560473618991,
+ 22.122138915895764
+ ],
+ [
+ 71.7304474196736,
+ 21.927491180967312
+ ],
+ [
+ 71.96013278664094,
+ 21.927491180967312
+ ],
+ [
+ 72.07497547012463,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 22.511434385752672
+ ],
+ [
+ 71.96013278664094,
+ 22.706082120681124
+ ],
+ [
+ 71.7304474196736,
+ 22.706082120681124
+ ],
+ [
+ 71.61560473618991,
+ 22.511434385752672
+ ],
+ [
+ 71.7304474196736,
+ 22.31678665082422
+ ],
+ [
+ 71.96013278664094,
+ 22.31678665082422
+ ],
+ [
+ 72.07497547012463,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 22.900729855609576
+ ],
+ [
+ 71.96013278664094,
+ 23.09537759053803
+ ],
+ [
+ 71.7304474196736,
+ 23.09537759053803
+ ],
+ [
+ 71.61560473618991,
+ 22.900729855609576
+ ],
+ [
+ 71.7304474196736,
+ 22.706082120681124
+ ],
+ [
+ 71.96013278664094,
+ 22.706082120681124
+ ],
+ [
+ 72.07497547012463,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 23.290025325466484
+ ],
+ [
+ 71.96013278664094,
+ 23.484673060394936
+ ],
+ [
+ 71.7304474196736,
+ 23.484673060394936
+ ],
+ [
+ 71.61560473618991,
+ 23.290025325466484
+ ],
+ [
+ 71.7304474196736,
+ 23.095377590538032
+ ],
+ [
+ 71.96013278664094,
+ 23.095377590538032
+ ],
+ [
+ 72.07497547012463,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 23.67932079532339
+ ],
+ [
+ 71.96013278664094,
+ 23.873968530251844
+ ],
+ [
+ 71.7304474196736,
+ 23.873968530251844
+ ],
+ [
+ 71.61560473618991,
+ 23.67932079532339
+ ],
+ [
+ 71.7304474196736,
+ 23.48467306039494
+ ],
+ [
+ 71.96013278664094,
+ 23.48467306039494
+ ],
+ [
+ 72.07497547012463,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 24.068616265180296
+ ],
+ [
+ 71.96013278664094,
+ 24.263264000108748
+ ],
+ [
+ 71.7304474196736,
+ 24.263264000108748
+ ],
+ [
+ 71.61560473618991,
+ 24.068616265180296
+ ],
+ [
+ 71.7304474196736,
+ 23.873968530251844
+ ],
+ [
+ 71.96013278664094,
+ 23.873968530251844
+ ],
+ [
+ 72.07497547012463,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 24.4579117350372
+ ],
+ [
+ 71.96013278664094,
+ 24.652559469965652
+ ],
+ [
+ 71.7304474196736,
+ 24.652559469965652
+ ],
+ [
+ 71.61560473618991,
+ 24.4579117350372
+ ],
+ [
+ 71.7304474196736,
+ 24.263264000108748
+ ],
+ [
+ 71.96013278664094,
+ 24.263264000108748
+ ],
+ [
+ 72.07497547012463,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 24.847207204894108
+ ],
+ [
+ 71.96013278664094,
+ 25.04185493982256
+ ],
+ [
+ 71.7304474196736,
+ 25.04185493982256
+ ],
+ [
+ 71.61560473618991,
+ 24.847207204894108
+ ],
+ [
+ 71.7304474196736,
+ 24.652559469965656
+ ],
+ [
+ 71.96013278664094,
+ 24.652559469965656
+ ],
+ [
+ 72.07497547012463,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 25.236502674751016
+ ],
+ [
+ 71.96013278664094,
+ 25.431150409679468
+ ],
+ [
+ 71.7304474196736,
+ 25.431150409679468
+ ],
+ [
+ 71.61560473618991,
+ 25.236502674751016
+ ],
+ [
+ 71.7304474196736,
+ 25.041854939822564
+ ],
+ [
+ 71.96013278664094,
+ 25.041854939822564
+ ],
+ [
+ 72.07497547012463,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 25.62579814460792
+ ],
+ [
+ 71.96013278664094,
+ 25.820445879536372
+ ],
+ [
+ 71.7304474196736,
+ 25.820445879536372
+ ],
+ [
+ 71.61560473618991,
+ 25.62579814460792
+ ],
+ [
+ 71.7304474196736,
+ 25.431150409679468
+ ],
+ [
+ 71.96013278664094,
+ 25.431150409679468
+ ],
+ [
+ 72.07497547012463,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 26.015093614464828
+ ],
+ [
+ 71.96013278664094,
+ 26.20974134939328
+ ],
+ [
+ 71.7304474196736,
+ 26.20974134939328
+ ],
+ [
+ 71.61560473618991,
+ 26.015093614464828
+ ],
+ [
+ 71.7304474196736,
+ 25.820445879536376
+ ],
+ [
+ 71.96013278664094,
+ 25.820445879536376
+ ],
+ [
+ 72.07497547012463,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 26.404389084321735
+ ],
+ [
+ 71.96013278664094,
+ 26.599036819250188
+ ],
+ [
+ 71.7304474196736,
+ 26.599036819250188
+ ],
+ [
+ 71.61560473618991,
+ 26.404389084321735
+ ],
+ [
+ 71.7304474196736,
+ 26.209741349393283
+ ],
+ [
+ 71.96013278664094,
+ 26.209741349393283
+ ],
+ [
+ 72.07497547012463,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 26.79368455417864
+ ],
+ [
+ 71.96013278664094,
+ 26.988332289107092
+ ],
+ [
+ 71.7304474196736,
+ 26.988332289107092
+ ],
+ [
+ 71.61560473618991,
+ 26.79368455417864
+ ],
+ [
+ 71.7304474196736,
+ 26.599036819250188
+ ],
+ [
+ 71.96013278664094,
+ 26.599036819250188
+ ],
+ [
+ 72.07497547012463,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 27.182980024035547
+ ],
+ [
+ 71.96013278664094,
+ 27.377627758964
+ ],
+ [
+ 71.7304474196736,
+ 27.377627758964
+ ],
+ [
+ 71.61560473618991,
+ 27.182980024035547
+ ],
+ [
+ 71.7304474196736,
+ 26.988332289107095
+ ],
+ [
+ 71.96013278664094,
+ 26.988332289107095
+ ],
+ [
+ 72.07497547012463,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 27.572275493892455
+ ],
+ [
+ 71.96013278664094,
+ 27.766923228820907
+ ],
+ [
+ 71.7304474196736,
+ 27.766923228820907
+ ],
+ [
+ 71.61560473618991,
+ 27.572275493892455
+ ],
+ [
+ 71.7304474196736,
+ 27.377627758964003
+ ],
+ [
+ 71.96013278664094,
+ 27.377627758964003
+ ],
+ [
+ 72.07497547012463,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 27.96157096374936
+ ],
+ [
+ 71.96013278664094,
+ 28.15621869867781
+ ],
+ [
+ 71.7304474196736,
+ 28.15621869867781
+ ],
+ [
+ 71.61560473618991,
+ 27.96157096374936
+ ],
+ [
+ 71.7304474196736,
+ 27.766923228820907
+ ],
+ [
+ 71.96013278664094,
+ 27.766923228820907
+ ],
+ [
+ 72.07497547012463,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 28.350866433606267
+ ],
+ [
+ 71.96013278664094,
+ 28.54551416853472
+ ],
+ [
+ 71.7304474196736,
+ 28.54551416853472
+ ],
+ [
+ 71.61560473618991,
+ 28.350866433606267
+ ],
+ [
+ 71.7304474196736,
+ 28.156218698677815
+ ],
+ [
+ 71.96013278664094,
+ 28.156218698677815
+ ],
+ [
+ 72.07497547012463,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 28.74016190346317
+ ],
+ [
+ 71.96013278664094,
+ 28.934809638391624
+ ],
+ [
+ 71.7304474196736,
+ 28.934809638391624
+ ],
+ [
+ 71.61560473618991,
+ 28.74016190346317
+ ],
+ [
+ 71.7304474196736,
+ 28.54551416853472
+ ],
+ [
+ 71.96013278664094,
+ 28.54551416853472
+ ],
+ [
+ 72.07497547012463,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 29.12945737332008
+ ],
+ [
+ 71.96013278664094,
+ 29.32410510824853
+ ],
+ [
+ 71.7304474196736,
+ 29.32410510824853
+ ],
+ [
+ 71.61560473618991,
+ 29.12945737332008
+ ],
+ [
+ 71.7304474196736,
+ 28.934809638391627
+ ],
+ [
+ 71.96013278664094,
+ 28.934809638391627
+ ],
+ [
+ 72.07497547012463,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 29.518752843176983
+ ],
+ [
+ 71.96013278664094,
+ 29.713400578105436
+ ],
+ [
+ 71.7304474196736,
+ 29.713400578105436
+ ],
+ [
+ 71.61560473618991,
+ 29.518752843176983
+ ],
+ [
+ 71.7304474196736,
+ 29.32410510824853
+ ],
+ [
+ 71.96013278664094,
+ 29.32410510824853
+ ],
+ [
+ 72.07497547012463,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 29.90804831303389
+ ],
+ [
+ 71.96013278664094,
+ 30.102696047962343
+ ],
+ [
+ 71.7304474196736,
+ 30.102696047962343
+ ],
+ [
+ 71.61560473618991,
+ 29.90804831303389
+ ],
+ [
+ 71.7304474196736,
+ 29.71340057810544
+ ],
+ [
+ 71.96013278664094,
+ 29.71340057810544
+ ],
+ [
+ 72.07497547012463,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 30.297343782890795
+ ],
+ [
+ 71.96013278664094,
+ 30.491991517819248
+ ],
+ [
+ 71.7304474196736,
+ 30.491991517819248
+ ],
+ [
+ 71.61560473618991,
+ 30.297343782890795
+ ],
+ [
+ 71.7304474196736,
+ 30.102696047962343
+ ],
+ [
+ 71.96013278664094,
+ 30.102696047962343
+ ],
+ [
+ 72.07497547012463,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 30.686639252747703
+ ],
+ [
+ 71.96013278664094,
+ 30.881286987676155
+ ],
+ [
+ 71.7304474196736,
+ 30.881286987676155
+ ],
+ [
+ 71.61560473618991,
+ 30.686639252747703
+ ],
+ [
+ 71.7304474196736,
+ 30.49199151781925
+ ],
+ [
+ 71.96013278664094,
+ 30.49199151781925
+ ],
+ [
+ 72.07497547012463,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 31.07593472260461
+ ],
+ [
+ 71.96013278664094,
+ 31.270582457533063
+ ],
+ [
+ 71.7304474196736,
+ 31.270582457533063
+ ],
+ [
+ 71.61560473618991,
+ 31.07593472260461
+ ],
+ [
+ 71.7304474196736,
+ 30.88128698767616
+ ],
+ [
+ 71.96013278664094,
+ 30.88128698767616
+ ],
+ [
+ 72.07497547012463,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 31.465230192461515
+ ],
+ [
+ 71.96013278664094,
+ 31.659877927389967
+ ],
+ [
+ 71.7304474196736,
+ 31.659877927389967
+ ],
+ [
+ 71.61560473618991,
+ 31.465230192461515
+ ],
+ [
+ 71.7304474196736,
+ 31.270582457533063
+ ],
+ [
+ 71.96013278664094,
+ 31.270582457533063
+ ],
+ [
+ 72.07497547012463,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 31.854525662318423
+ ],
+ [
+ 71.96013278664094,
+ 32.049173397246875
+ ],
+ [
+ 71.7304474196736,
+ 32.049173397246875
+ ],
+ [
+ 71.61560473618991,
+ 31.854525662318423
+ ],
+ [
+ 71.7304474196736,
+ 31.65987792738997
+ ],
+ [
+ 71.96013278664094,
+ 31.65987792738997
+ ],
+ [
+ 72.07497547012463,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 32.24382113217533
+ ],
+ [
+ 71.96013278664094,
+ 32.43846886710378
+ ],
+ [
+ 71.7304474196736,
+ 32.43846886710378
+ ],
+ [
+ 71.61560473618991,
+ 32.24382113217533
+ ],
+ [
+ 71.7304474196736,
+ 32.049173397246875
+ ],
+ [
+ 71.96013278664094,
+ 32.049173397246875
+ ],
+ [
+ 72.07497547012463,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 32.63311660203224
+ ],
+ [
+ 71.96013278664094,
+ 32.82776433696069
+ ],
+ [
+ 71.7304474196736,
+ 32.82776433696069
+ ],
+ [
+ 71.61560473618991,
+ 32.63311660203224
+ ],
+ [
+ 71.7304474196736,
+ 32.438468867103786
+ ],
+ [
+ 71.96013278664094,
+ 32.438468867103786
+ ],
+ [
+ 72.07497547012463,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 33.02241207188914
+ ],
+ [
+ 71.96013278664094,
+ 33.217059806817595
+ ],
+ [
+ 71.7304474196736,
+ 33.217059806817595
+ ],
+ [
+ 71.61560473618991,
+ 33.02241207188914
+ ],
+ [
+ 71.7304474196736,
+ 32.82776433696069
+ ],
+ [
+ 71.96013278664094,
+ 32.82776433696069
+ ],
+ [
+ 72.07497547012463,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 33.41170754174605
+ ],
+ [
+ 71.96013278664094,
+ 33.6063552766745
+ ],
+ [
+ 71.7304474196736,
+ 33.6063552766745
+ ],
+ [
+ 71.61560473618991,
+ 33.41170754174605
+ ],
+ [
+ 71.7304474196736,
+ 33.217059806817595
+ ],
+ [
+ 71.96013278664094,
+ 33.217059806817595
+ ],
+ [
+ 72.07497547012463,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 33.80100301160295
+ ],
+ [
+ 71.96013278664094,
+ 33.9956507465314
+ ],
+ [
+ 71.7304474196736,
+ 33.9956507465314
+ ],
+ [
+ 71.61560473618991,
+ 33.80100301160295
+ ],
+ [
+ 71.7304474196736,
+ 33.6063552766745
+ ],
+ [
+ 71.96013278664094,
+ 33.6063552766745
+ ],
+ [
+ 72.07497547012463,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 34.190298481459855
+ ],
+ [
+ 71.96013278664094,
+ 34.38494621638831
+ ],
+ [
+ 71.7304474196736,
+ 34.38494621638831
+ ],
+ [
+ 71.61560473618991,
+ 34.190298481459855
+ ],
+ [
+ 71.7304474196736,
+ 33.9956507465314
+ ],
+ [
+ 71.96013278664094,
+ 33.9956507465314
+ ],
+ [
+ 72.07497547012463,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 34.57959395131677
+ ],
+ [
+ 71.96013278664094,
+ 34.77424168624522
+ ],
+ [
+ 71.7304474196736,
+ 34.77424168624522
+ ],
+ [
+ 71.61560473618991,
+ 34.57959395131677
+ ],
+ [
+ 71.7304474196736,
+ 34.384946216388315
+ ],
+ [
+ 71.96013278664094,
+ 34.384946216388315
+ ],
+ [
+ 72.07497547012463,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 34.96888942117368
+ ],
+ [
+ 71.96013278664094,
+ 35.16353715610213
+ ],
+ [
+ 71.7304474196736,
+ 35.16353715610213
+ ],
+ [
+ 71.61560473618991,
+ 34.96888942117368
+ ],
+ [
+ 71.7304474196736,
+ 34.774241686245226
+ ],
+ [
+ 71.96013278664094,
+ 34.774241686245226
+ ],
+ [
+ 72.07497547012463,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 35.35818489103058
+ ],
+ [
+ 71.96013278664094,
+ 35.552832625959034
+ ],
+ [
+ 71.7304474196736,
+ 35.552832625959034
+ ],
+ [
+ 71.61560473618991,
+ 35.35818489103058
+ ],
+ [
+ 71.7304474196736,
+ 35.16353715610213
+ ],
+ [
+ 71.96013278664094,
+ 35.16353715610213
+ ],
+ [
+ 72.07497547012463,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 35.74748036088749
+ ],
+ [
+ 71.96013278664094,
+ 35.94212809581594
+ ],
+ [
+ 71.7304474196736,
+ 35.94212809581594
+ ],
+ [
+ 71.61560473618991,
+ 35.74748036088749
+ ],
+ [
+ 71.7304474196736,
+ 35.552832625959034
+ ],
+ [
+ 71.96013278664094,
+ 35.552832625959034
+ ],
+ [
+ 72.07497547012463,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 36.13677583074439
+ ],
+ [
+ 71.96013278664094,
+ 36.33142356567284
+ ],
+ [
+ 71.7304474196736,
+ 36.33142356567284
+ ],
+ [
+ 71.61560473618991,
+ 36.13677583074439
+ ],
+ [
+ 71.7304474196736,
+ 35.94212809581594
+ ],
+ [
+ 71.96013278664094,
+ 35.94212809581594
+ ],
+ [
+ 72.07497547012463,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 36.526071300601295
+ ],
+ [
+ 71.96013278664094,
+ 36.72071903552975
+ ],
+ [
+ 71.7304474196736,
+ 36.72071903552975
+ ],
+ [
+ 71.61560473618991,
+ 36.526071300601295
+ ],
+ [
+ 71.7304474196736,
+ 36.33142356567284
+ ],
+ [
+ 71.96013278664094,
+ 36.33142356567284
+ ],
+ [
+ 72.07497547012463,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 36.915366770458206
+ ],
+ [
+ 71.96013278664094,
+ 37.11001450538666
+ ],
+ [
+ 71.7304474196736,
+ 37.11001450538666
+ ],
+ [
+ 71.61560473618991,
+ 36.915366770458206
+ ],
+ [
+ 71.7304474196736,
+ 36.720719035529754
+ ],
+ [
+ 71.96013278664094,
+ 36.720719035529754
+ ],
+ [
+ 72.07497547012463,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 37.30466224031511
+ ],
+ [
+ 71.96013278664094,
+ 37.49930997524356
+ ],
+ [
+ 71.7304474196736,
+ 37.49930997524356
+ ],
+ [
+ 71.61560473618991,
+ 37.30466224031511
+ ],
+ [
+ 71.7304474196736,
+ 37.11001450538666
+ ],
+ [
+ 71.96013278664094,
+ 37.11001450538666
+ ],
+ [
+ 72.07497547012463,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 37.69395771017202
+ ],
+ [
+ 71.96013278664094,
+ 37.888605445100474
+ ],
+ [
+ 71.7304474196736,
+ 37.888605445100474
+ ],
+ [
+ 71.61560473618991,
+ 37.69395771017202
+ ],
+ [
+ 71.7304474196736,
+ 37.49930997524357
+ ],
+ [
+ 71.96013278664094,
+ 37.49930997524357
+ ],
+ [
+ 72.07497547012463,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 38.083253180028926
+ ],
+ [
+ 71.96013278664094,
+ 38.27790091495738
+ ],
+ [
+ 71.7304474196736,
+ 38.27790091495738
+ ],
+ [
+ 71.61560473618991,
+ 38.083253180028926
+ ],
+ [
+ 71.7304474196736,
+ 37.888605445100474
+ ],
+ [
+ 71.96013278664094,
+ 37.888605445100474
+ ],
+ [
+ 72.07497547012463,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 38.47254864988583
+ ],
+ [
+ 71.96013278664094,
+ 38.66719638481428
+ ],
+ [
+ 71.7304474196736,
+ 38.66719638481428
+ ],
+ [
+ 71.61560473618991,
+ 38.47254864988583
+ ],
+ [
+ 71.7304474196736,
+ 38.27790091495738
+ ],
+ [
+ 71.96013278664094,
+ 38.27790091495738
+ ],
+ [
+ 72.07497547012463,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 38.861844119742734
+ ],
+ [
+ 71.96013278664094,
+ 39.05649185467119
+ ],
+ [
+ 71.7304474196736,
+ 39.05649185467119
+ ],
+ [
+ 71.61560473618991,
+ 38.861844119742734
+ ],
+ [
+ 71.7304474196736,
+ 38.66719638481428
+ ],
+ [
+ 71.96013278664094,
+ 38.66719638481428
+ ],
+ [
+ 72.07497547012463,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 39.25113958959964
+ ],
+ [
+ 71.96013278664094,
+ 39.44578732452809
+ ],
+ [
+ 71.7304474196736,
+ 39.44578732452809
+ ],
+ [
+ 71.61560473618991,
+ 39.25113958959964
+ ],
+ [
+ 71.7304474196736,
+ 39.05649185467119
+ ],
+ [
+ 71.96013278664094,
+ 39.05649185467119
+ ],
+ [
+ 72.07497547012463,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 39.64043505945655
+ ],
+ [
+ 71.96013278664094,
+ 39.835082794385
+ ],
+ [
+ 71.7304474196736,
+ 39.835082794385
+ ],
+ [
+ 71.61560473618991,
+ 39.64043505945655
+ ],
+ [
+ 71.7304474196736,
+ 39.4457873245281
+ ],
+ [
+ 71.96013278664094,
+ 39.4457873245281
+ ],
+ [
+ 72.07497547012463,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 40.029730529313454
+ ],
+ [
+ 71.96013278664094,
+ 40.224378264241906
+ ],
+ [
+ 71.7304474196736,
+ 40.224378264241906
+ ],
+ [
+ 71.61560473618991,
+ 40.029730529313454
+ ],
+ [
+ 71.7304474196736,
+ 39.835082794385
+ ],
+ [
+ 71.96013278664094,
+ 39.835082794385
+ ],
+ [
+ 72.07497547012463,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 40.419025999170366
+ ],
+ [
+ 71.96013278664094,
+ 40.61367373409882
+ ],
+ [
+ 71.7304474196736,
+ 40.61367373409882
+ ],
+ [
+ 71.61560473618991,
+ 40.419025999170366
+ ],
+ [
+ 71.7304474196736,
+ 40.22437826424191
+ ],
+ [
+ 71.96013278664094,
+ 40.22437826424191
+ ],
+ [
+ 72.07497547012463,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 40.80832146902727
+ ],
+ [
+ 71.96013278664094,
+ 41.00296920395572
+ ],
+ [
+ 71.7304474196736,
+ 41.00296920395572
+ ],
+ [
+ 71.61560473618991,
+ 40.80832146902727
+ ],
+ [
+ 71.7304474196736,
+ 40.61367373409882
+ ],
+ [
+ 71.96013278664094,
+ 40.61367373409882
+ ],
+ [
+ 72.07497547012463,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 41.197616938884174
+ ],
+ [
+ 71.96013278664094,
+ 41.392264673812626
+ ],
+ [
+ 71.7304474196736,
+ 41.392264673812626
+ ],
+ [
+ 71.61560473618991,
+ 41.197616938884174
+ ],
+ [
+ 71.7304474196736,
+ 41.00296920395572
+ ],
+ [
+ 71.96013278664094,
+ 41.00296920395572
+ ],
+ [
+ 72.07497547012463,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 41.58691240874108
+ ],
+ [
+ 71.96013278664094,
+ 41.78156014366953
+ ],
+ [
+ 71.7304474196736,
+ 41.78156014366953
+ ],
+ [
+ 71.61560473618991,
+ 41.58691240874108
+ ],
+ [
+ 71.7304474196736,
+ 41.392264673812626
+ ],
+ [
+ 71.96013278664094,
+ 41.392264673812626
+ ],
+ [
+ 72.07497547012463,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 41.97620787859798
+ ],
+ [
+ 71.96013278664094,
+ 42.170855613526435
+ ],
+ [
+ 71.7304474196736,
+ 42.170855613526435
+ ],
+ [
+ 71.61560473618991,
+ 41.97620787859798
+ ],
+ [
+ 71.7304474196736,
+ 41.78156014366953
+ ],
+ [
+ 71.96013278664094,
+ 41.78156014366953
+ ],
+ [
+ 72.07497547012463,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 42.365503348454894
+ ],
+ [
+ 71.96013278664094,
+ 42.560151083383346
+ ],
+ [
+ 71.7304474196736,
+ 42.560151083383346
+ ],
+ [
+ 71.61560473618991,
+ 42.365503348454894
+ ],
+ [
+ 71.7304474196736,
+ 42.17085561352644
+ ],
+ [
+ 71.96013278664094,
+ 42.17085561352644
+ ],
+ [
+ 72.07497547012463,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 42.754798818311805
+ ],
+ [
+ 71.96013278664094,
+ 42.94944655324026
+ ],
+ [
+ 71.7304474196736,
+ 42.94944655324026
+ ],
+ [
+ 71.61560473618991,
+ 42.754798818311805
+ ],
+ [
+ 71.7304474196736,
+ 42.56015108338335
+ ],
+ [
+ 71.96013278664094,
+ 42.56015108338335
+ ],
+ [
+ 72.07497547012463,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 43.14409428816871
+ ],
+ [
+ 71.96013278664094,
+ 43.33874202309716
+ ],
+ [
+ 71.7304474196736,
+ 43.33874202309716
+ ],
+ [
+ 71.61560473618991,
+ 43.14409428816871
+ ],
+ [
+ 71.7304474196736,
+ 42.94944655324026
+ ],
+ [
+ 71.96013278664094,
+ 42.94944655324026
+ ],
+ [
+ 72.07497547012463,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 43.53338975802561
+ ],
+ [
+ 71.96013278664094,
+ 43.728037492954066
+ ],
+ [
+ 71.7304474196736,
+ 43.728037492954066
+ ],
+ [
+ 71.61560473618991,
+ 43.53338975802561
+ ],
+ [
+ 71.7304474196736,
+ 43.33874202309716
+ ],
+ [
+ 71.96013278664094,
+ 43.33874202309716
+ ],
+ [
+ 72.07497547012463,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 43.92268522788252
+ ],
+ [
+ 71.96013278664094,
+ 44.11733296281097
+ ],
+ [
+ 71.7304474196736,
+ 44.11733296281097
+ ],
+ [
+ 71.61560473618991,
+ 43.92268522788252
+ ],
+ [
+ 71.7304474196736,
+ 43.728037492954066
+ ],
+ [
+ 71.96013278664094,
+ 43.728037492954066
+ ],
+ [
+ 72.07497547012463,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 44.31198069773942
+ ],
+ [
+ 71.96013278664094,
+ 44.506628432667874
+ ],
+ [
+ 71.7304474196736,
+ 44.506628432667874
+ ],
+ [
+ 71.61560473618991,
+ 44.31198069773942
+ ],
+ [
+ 71.7304474196736,
+ 44.11733296281097
+ ],
+ [
+ 71.96013278664094,
+ 44.11733296281097
+ ],
+ [
+ 72.07497547012463,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 44.701276167596326
+ ],
+ [
+ 71.96013278664094,
+ 44.89592390252478
+ ],
+ [
+ 71.7304474196736,
+ 44.89592390252478
+ ],
+ [
+ 71.61560473618991,
+ 44.701276167596326
+ ],
+ [
+ 71.7304474196736,
+ 44.506628432667874
+ ],
+ [
+ 71.96013278664094,
+ 44.506628432667874
+ ],
+ [
+ 72.07497547012463,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 45.090571637453245
+ ],
+ [
+ 71.96013278664094,
+ 45.2852193723817
+ ],
+ [
+ 71.7304474196736,
+ 45.2852193723817
+ ],
+ [
+ 71.61560473618991,
+ 45.090571637453245
+ ],
+ [
+ 71.7304474196736,
+ 44.89592390252479
+ ],
+ [
+ 71.96013278664094,
+ 44.89592390252479
+ ],
+ [
+ 72.07497547012463,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 45.47986710731015
+ ],
+ [
+ 71.96013278664094,
+ 45.6745148422386
+ ],
+ [
+ 71.7304474196736,
+ 45.6745148422386
+ ],
+ [
+ 71.61560473618991,
+ 45.47986710731015
+ ],
+ [
+ 71.7304474196736,
+ 45.2852193723817
+ ],
+ [
+ 71.96013278664094,
+ 45.2852193723817
+ ],
+ [
+ 72.07497547012463,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 45.86916257716705
+ ],
+ [
+ 71.96013278664094,
+ 46.063810312095505
+ ],
+ [
+ 71.7304474196736,
+ 46.063810312095505
+ ],
+ [
+ 71.61560473618991,
+ 45.86916257716705
+ ],
+ [
+ 71.7304474196736,
+ 45.6745148422386
+ ],
+ [
+ 71.96013278664094,
+ 45.6745148422386
+ ],
+ [
+ 72.07497547012463,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 46.25845804702396
+ ],
+ [
+ 71.96013278664094,
+ 46.45310578195241
+ ],
+ [
+ 71.7304474196736,
+ 46.45310578195241
+ ],
+ [
+ 71.61560473618991,
+ 46.25845804702396
+ ],
+ [
+ 71.7304474196736,
+ 46.063810312095505
+ ],
+ [
+ 71.96013278664094,
+ 46.063810312095505
+ ],
+ [
+ 72.07497547012463,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 46.64775351688086
+ ],
+ [
+ 71.96013278664094,
+ 46.842401251809314
+ ],
+ [
+ 71.7304474196736,
+ 46.842401251809314
+ ],
+ [
+ 71.61560473618991,
+ 46.64775351688086
+ ],
+ [
+ 71.7304474196736,
+ 46.45310578195241
+ ],
+ [
+ 71.96013278664094,
+ 46.45310578195241
+ ],
+ [
+ 72.07497547012463,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 47.037048986737766
+ ],
+ [
+ 71.96013278664094,
+ 47.23169672166622
+ ],
+ [
+ 71.7304474196736,
+ 47.23169672166622
+ ],
+ [
+ 71.61560473618991,
+ 47.037048986737766
+ ],
+ [
+ 71.7304474196736,
+ 46.842401251809314
+ ],
+ [
+ 71.96013278664094,
+ 46.842401251809314
+ ],
+ [
+ 72.07497547012463,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 47.42634445659467
+ ],
+ [
+ 71.96013278664094,
+ 47.62099219152312
+ ],
+ [
+ 71.7304474196736,
+ 47.62099219152312
+ ],
+ [
+ 71.61560473618991,
+ 47.42634445659467
+ ],
+ [
+ 71.7304474196736,
+ 47.23169672166622
+ ],
+ [
+ 71.96013278664094,
+ 47.23169672166622
+ ],
+ [
+ 72.07497547012463,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.07497547012463,
+ 47.81563992645159
+ ],
+ [
+ 71.96013278664094,
+ 48.01028766138004
+ ],
+ [
+ 71.7304474196736,
+ 48.01028766138004
+ ],
+ [
+ 71.61560473618991,
+ 47.81563992645159
+ ],
+ [
+ 71.7304474196736,
+ 47.620992191523136
+ ],
+ [
+ 71.96013278664094,
+ 47.620992191523136
+ ],
+ [
+ 72.07497547012463,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 11.805808964687746
+ ],
+ [
+ 72.30466083709197,
+ 12.0004566996162
+ ],
+ [
+ 72.07497547012463,
+ 12.0004566996162
+ ],
+ [
+ 71.96013278664094,
+ 11.805808964687746
+ ],
+ [
+ 72.07497547012463,
+ 11.611161229759292
+ ],
+ [
+ 72.30466083709197,
+ 11.611161229759292
+ ],
+ [
+ 72.41950352057566,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 12.195104434544652
+ ],
+ [
+ 72.30466083709197,
+ 12.389752169473105
+ ],
+ [
+ 72.07497547012463,
+ 12.389752169473105
+ ],
+ [
+ 71.96013278664094,
+ 12.195104434544652
+ ],
+ [
+ 72.07497547012463,
+ 12.000456699616198
+ ],
+ [
+ 72.30466083709197,
+ 12.000456699616198
+ ],
+ [
+ 72.41950352057566,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 12.58439990440156
+ ],
+ [
+ 72.30466083709197,
+ 12.779047639330013
+ ],
+ [
+ 72.07497547012463,
+ 12.779047639330013
+ ],
+ [
+ 71.96013278664094,
+ 12.58439990440156
+ ],
+ [
+ 72.07497547012463,
+ 12.389752169473105
+ ],
+ [
+ 72.30466083709197,
+ 12.389752169473105
+ ],
+ [
+ 72.41950352057566,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 12.973695374258465
+ ],
+ [
+ 72.30466083709197,
+ 13.16834310918692
+ ],
+ [
+ 72.07497547012463,
+ 13.16834310918692
+ ],
+ [
+ 71.96013278664094,
+ 12.973695374258465
+ ],
+ [
+ 72.07497547012463,
+ 12.779047639330011
+ ],
+ [
+ 72.30466083709197,
+ 12.779047639330011
+ ],
+ [
+ 72.41950352057566,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 13.362990844115371
+ ],
+ [
+ 72.30466083709197,
+ 13.557638579043825
+ ],
+ [
+ 72.07497547012463,
+ 13.557638579043825
+ ],
+ [
+ 71.96013278664094,
+ 13.362990844115371
+ ],
+ [
+ 72.07497547012463,
+ 13.168343109186917
+ ],
+ [
+ 72.30466083709197,
+ 13.168343109186917
+ ],
+ [
+ 72.41950352057566,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 13.752286313972277
+ ],
+ [
+ 72.30466083709197,
+ 13.946934048900731
+ ],
+ [
+ 72.07497547012463,
+ 13.946934048900731
+ ],
+ [
+ 71.96013278664094,
+ 13.752286313972277
+ ],
+ [
+ 72.07497547012463,
+ 13.557638579043823
+ ],
+ [
+ 72.30466083709197,
+ 13.557638579043823
+ ],
+ [
+ 72.41950352057566,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 14.141581783829183
+ ],
+ [
+ 72.30466083709197,
+ 14.336229518757637
+ ],
+ [
+ 72.07497547012463,
+ 14.336229518757637
+ ],
+ [
+ 71.96013278664094,
+ 14.141581783829183
+ ],
+ [
+ 72.07497547012463,
+ 13.94693404890073
+ ],
+ [
+ 72.30466083709197,
+ 13.94693404890073
+ ],
+ [
+ 72.41950352057566,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 14.530877253686091
+ ],
+ [
+ 72.30466083709197,
+ 14.725524988614545
+ ],
+ [
+ 72.07497547012463,
+ 14.725524988614545
+ ],
+ [
+ 71.96013278664094,
+ 14.530877253686091
+ ],
+ [
+ 72.07497547012463,
+ 14.336229518757637
+ ],
+ [
+ 72.30466083709197,
+ 14.336229518757637
+ ],
+ [
+ 72.41950352057566,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 14.920172723542997
+ ],
+ [
+ 72.30466083709197,
+ 15.114820458471451
+ ],
+ [
+ 72.07497547012463,
+ 15.114820458471451
+ ],
+ [
+ 71.96013278664094,
+ 14.920172723542997
+ ],
+ [
+ 72.07497547012463,
+ 14.725524988614543
+ ],
+ [
+ 72.30466083709197,
+ 14.725524988614543
+ ],
+ [
+ 72.41950352057566,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 15.309468193399903
+ ],
+ [
+ 72.30466083709197,
+ 15.504115928328357
+ ],
+ [
+ 72.07497547012463,
+ 15.504115928328357
+ ],
+ [
+ 71.96013278664094,
+ 15.309468193399903
+ ],
+ [
+ 72.07497547012463,
+ 15.11482045847145
+ ],
+ [
+ 72.30466083709197,
+ 15.11482045847145
+ ],
+ [
+ 72.41950352057566,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 15.69876366325681
+ ],
+ [
+ 72.30466083709197,
+ 15.893411398185265
+ ],
+ [
+ 72.07497547012463,
+ 15.893411398185265
+ ],
+ [
+ 71.96013278664094,
+ 15.69876366325681
+ ],
+ [
+ 72.07497547012463,
+ 15.504115928328357
+ ],
+ [
+ 72.30466083709197,
+ 15.504115928328357
+ ],
+ [
+ 72.41950352057566,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 16.088059133113717
+ ],
+ [
+ 72.30466083709197,
+ 16.28270686804217
+ ],
+ [
+ 72.07497547012463,
+ 16.28270686804217
+ ],
+ [
+ 71.96013278664094,
+ 16.088059133113717
+ ],
+ [
+ 72.07497547012463,
+ 15.893411398185263
+ ],
+ [
+ 72.30466083709197,
+ 15.893411398185263
+ ],
+ [
+ 72.41950352057566,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 16.477354602970625
+ ],
+ [
+ 72.30466083709197,
+ 16.672002337899077
+ ],
+ [
+ 72.07497547012463,
+ 16.672002337899077
+ ],
+ [
+ 71.96013278664094,
+ 16.477354602970625
+ ],
+ [
+ 72.07497547012463,
+ 16.282706868042172
+ ],
+ [
+ 72.30466083709197,
+ 16.282706868042172
+ ],
+ [
+ 72.41950352057566,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 16.86665007282753
+ ],
+ [
+ 72.30466083709197,
+ 17.06129780775598
+ ],
+ [
+ 72.07497547012463,
+ 17.06129780775598
+ ],
+ [
+ 71.96013278664094,
+ 16.86665007282753
+ ],
+ [
+ 72.07497547012463,
+ 16.672002337899077
+ ],
+ [
+ 72.30466083709197,
+ 16.672002337899077
+ ],
+ [
+ 72.41950352057566,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 17.255945542684437
+ ],
+ [
+ 72.30466083709197,
+ 17.45059327761289
+ ],
+ [
+ 72.07497547012463,
+ 17.45059327761289
+ ],
+ [
+ 71.96013278664094,
+ 17.255945542684437
+ ],
+ [
+ 72.07497547012463,
+ 17.061297807755984
+ ],
+ [
+ 72.30466083709197,
+ 17.061297807755984
+ ],
+ [
+ 72.41950352057566,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 17.64524101254134
+ ],
+ [
+ 72.30466083709197,
+ 17.839888747469793
+ ],
+ [
+ 72.07497547012463,
+ 17.839888747469793
+ ],
+ [
+ 71.96013278664094,
+ 17.64524101254134
+ ],
+ [
+ 72.07497547012463,
+ 17.45059327761289
+ ],
+ [
+ 72.30466083709197,
+ 17.45059327761289
+ ],
+ [
+ 72.41950352057566,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 18.03453648239825
+ ],
+ [
+ 72.30466083709197,
+ 18.2291842173267
+ ],
+ [
+ 72.07497547012463,
+ 18.2291842173267
+ ],
+ [
+ 71.96013278664094,
+ 18.03453648239825
+ ],
+ [
+ 72.07497547012463,
+ 17.839888747469796
+ ],
+ [
+ 72.30466083709197,
+ 17.839888747469796
+ ],
+ [
+ 72.41950352057566,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 18.423831952255156
+ ],
+ [
+ 72.30466083709197,
+ 18.61847968718361
+ ],
+ [
+ 72.07497547012463,
+ 18.61847968718361
+ ],
+ [
+ 71.96013278664094,
+ 18.423831952255156
+ ],
+ [
+ 72.07497547012463,
+ 18.229184217326704
+ ],
+ [
+ 72.30466083709197,
+ 18.229184217326704
+ ],
+ [
+ 72.41950352057566,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 18.81312742211206
+ ],
+ [
+ 72.30466083709197,
+ 19.007775157040513
+ ],
+ [
+ 72.07497547012463,
+ 19.007775157040513
+ ],
+ [
+ 71.96013278664094,
+ 18.81312742211206
+ ],
+ [
+ 72.07497547012463,
+ 18.61847968718361
+ ],
+ [
+ 72.30466083709197,
+ 18.61847968718361
+ ],
+ [
+ 72.41950352057566,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 19.20242289196897
+ ],
+ [
+ 72.30466083709197,
+ 19.39707062689742
+ ],
+ [
+ 72.07497547012463,
+ 19.39707062689742
+ ],
+ [
+ 71.96013278664094,
+ 19.20242289196897
+ ],
+ [
+ 72.07497547012463,
+ 19.007775157040516
+ ],
+ [
+ 72.30466083709197,
+ 19.007775157040516
+ ],
+ [
+ 72.41950352057566,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 19.591718361825876
+ ],
+ [
+ 72.30466083709197,
+ 19.78636609675433
+ ],
+ [
+ 72.07497547012463,
+ 19.78636609675433
+ ],
+ [
+ 71.96013278664094,
+ 19.591718361825876
+ ],
+ [
+ 72.07497547012463,
+ 19.397070626897424
+ ],
+ [
+ 72.30466083709197,
+ 19.397070626897424
+ ],
+ [
+ 72.41950352057566,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 19.98101383168278
+ ],
+ [
+ 72.30466083709197,
+ 20.175661566611232
+ ],
+ [
+ 72.07497547012463,
+ 20.175661566611232
+ ],
+ [
+ 71.96013278664094,
+ 19.98101383168278
+ ],
+ [
+ 72.07497547012463,
+ 19.78636609675433
+ ],
+ [
+ 72.30466083709197,
+ 19.78636609675433
+ ],
+ [
+ 72.41950352057566,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 20.370309301539685
+ ],
+ [
+ 72.30466083709197,
+ 20.564957036468137
+ ],
+ [
+ 72.07497547012463,
+ 20.564957036468137
+ ],
+ [
+ 71.96013278664094,
+ 20.370309301539685
+ ],
+ [
+ 72.07497547012463,
+ 20.175661566611232
+ ],
+ [
+ 72.30466083709197,
+ 20.175661566611232
+ ],
+ [
+ 72.41950352057566,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 20.759604771396592
+ ],
+ [
+ 72.30466083709197,
+ 20.954252506325044
+ ],
+ [
+ 72.07497547012463,
+ 20.954252506325044
+ ],
+ [
+ 71.96013278664094,
+ 20.759604771396592
+ ],
+ [
+ 72.07497547012463,
+ 20.56495703646814
+ ],
+ [
+ 72.30466083709197,
+ 20.56495703646814
+ ],
+ [
+ 72.41950352057566,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 21.1489002412535
+ ],
+ [
+ 72.30466083709197,
+ 21.343547976181952
+ ],
+ [
+ 72.07497547012463,
+ 21.343547976181952
+ ],
+ [
+ 71.96013278664094,
+ 21.1489002412535
+ ],
+ [
+ 72.07497547012463,
+ 20.954252506325048
+ ],
+ [
+ 72.30466083709197,
+ 20.954252506325048
+ ],
+ [
+ 72.41950352057566,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 21.538195711110404
+ ],
+ [
+ 72.30466083709197,
+ 21.732843446038856
+ ],
+ [
+ 72.07497547012463,
+ 21.732843446038856
+ ],
+ [
+ 71.96013278664094,
+ 21.538195711110404
+ ],
+ [
+ 72.07497547012463,
+ 21.343547976181952
+ ],
+ [
+ 72.30466083709197,
+ 21.343547976181952
+ ],
+ [
+ 72.41950352057566,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 21.927491180967312
+ ],
+ [
+ 72.30466083709197,
+ 22.122138915895764
+ ],
+ [
+ 72.07497547012463,
+ 22.122138915895764
+ ],
+ [
+ 71.96013278664094,
+ 21.927491180967312
+ ],
+ [
+ 72.07497547012463,
+ 21.73284344603886
+ ],
+ [
+ 72.30466083709197,
+ 21.73284344603886
+ ],
+ [
+ 72.41950352057566,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 22.31678665082422
+ ],
+ [
+ 72.30466083709197,
+ 22.511434385752672
+ ],
+ [
+ 72.07497547012463,
+ 22.511434385752672
+ ],
+ [
+ 71.96013278664094,
+ 22.31678665082422
+ ],
+ [
+ 72.07497547012463,
+ 22.122138915895768
+ ],
+ [
+ 72.30466083709197,
+ 22.122138915895768
+ ],
+ [
+ 72.41950352057566,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 22.706082120681124
+ ],
+ [
+ 72.30466083709197,
+ 22.900729855609576
+ ],
+ [
+ 72.07497547012463,
+ 22.900729855609576
+ ],
+ [
+ 71.96013278664094,
+ 22.706082120681124
+ ],
+ [
+ 72.07497547012463,
+ 22.511434385752672
+ ],
+ [
+ 72.30466083709197,
+ 22.511434385752672
+ ],
+ [
+ 72.41950352057566,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 23.095377590538032
+ ],
+ [
+ 72.30466083709197,
+ 23.290025325466484
+ ],
+ [
+ 72.07497547012463,
+ 23.290025325466484
+ ],
+ [
+ 71.96013278664094,
+ 23.095377590538032
+ ],
+ [
+ 72.07497547012463,
+ 22.90072985560958
+ ],
+ [
+ 72.30466083709197,
+ 22.90072985560958
+ ],
+ [
+ 72.41950352057566,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 23.48467306039494
+ ],
+ [
+ 72.30466083709197,
+ 23.67932079532339
+ ],
+ [
+ 72.07497547012463,
+ 23.67932079532339
+ ],
+ [
+ 71.96013278664094,
+ 23.48467306039494
+ ],
+ [
+ 72.07497547012463,
+ 23.290025325466488
+ ],
+ [
+ 72.30466083709197,
+ 23.290025325466488
+ ],
+ [
+ 72.41950352057566,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 23.873968530251844
+ ],
+ [
+ 72.30466083709197,
+ 24.068616265180296
+ ],
+ [
+ 72.07497547012463,
+ 24.068616265180296
+ ],
+ [
+ 71.96013278664094,
+ 23.873968530251844
+ ],
+ [
+ 72.07497547012463,
+ 23.67932079532339
+ ],
+ [
+ 72.30466083709197,
+ 23.67932079532339
+ ],
+ [
+ 72.41950352057566,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 24.263264000108748
+ ],
+ [
+ 72.30466083709197,
+ 24.4579117350372
+ ],
+ [
+ 72.07497547012463,
+ 24.4579117350372
+ ],
+ [
+ 71.96013278664094,
+ 24.263264000108748
+ ],
+ [
+ 72.07497547012463,
+ 24.068616265180296
+ ],
+ [
+ 72.30466083709197,
+ 24.068616265180296
+ ],
+ [
+ 72.41950352057566,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 24.652559469965656
+ ],
+ [
+ 72.30466083709197,
+ 24.847207204894108
+ ],
+ [
+ 72.07497547012463,
+ 24.847207204894108
+ ],
+ [
+ 71.96013278664094,
+ 24.652559469965656
+ ],
+ [
+ 72.07497547012463,
+ 24.457911735037204
+ ],
+ [
+ 72.30466083709197,
+ 24.457911735037204
+ ],
+ [
+ 72.41950352057566,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 25.041854939822564
+ ],
+ [
+ 72.30466083709197,
+ 25.236502674751016
+ ],
+ [
+ 72.07497547012463,
+ 25.236502674751016
+ ],
+ [
+ 71.96013278664094,
+ 25.041854939822564
+ ],
+ [
+ 72.07497547012463,
+ 24.84720720489411
+ ],
+ [
+ 72.30466083709197,
+ 24.84720720489411
+ ],
+ [
+ 72.41950352057566,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 25.431150409679468
+ ],
+ [
+ 72.30466083709197,
+ 25.62579814460792
+ ],
+ [
+ 72.07497547012463,
+ 25.62579814460792
+ ],
+ [
+ 71.96013278664094,
+ 25.431150409679468
+ ],
+ [
+ 72.07497547012463,
+ 25.236502674751016
+ ],
+ [
+ 72.30466083709197,
+ 25.236502674751016
+ ],
+ [
+ 72.41950352057566,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 25.820445879536376
+ ],
+ [
+ 72.30466083709197,
+ 26.015093614464828
+ ],
+ [
+ 72.07497547012463,
+ 26.015093614464828
+ ],
+ [
+ 71.96013278664094,
+ 25.820445879536376
+ ],
+ [
+ 72.07497547012463,
+ 25.625798144607923
+ ],
+ [
+ 72.30466083709197,
+ 25.625798144607923
+ ],
+ [
+ 72.41950352057566,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 26.209741349393283
+ ],
+ [
+ 72.30466083709197,
+ 26.404389084321735
+ ],
+ [
+ 72.07497547012463,
+ 26.404389084321735
+ ],
+ [
+ 71.96013278664094,
+ 26.209741349393283
+ ],
+ [
+ 72.07497547012463,
+ 26.01509361446483
+ ],
+ [
+ 72.30466083709197,
+ 26.01509361446483
+ ],
+ [
+ 72.41950352057566,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 26.599036819250188
+ ],
+ [
+ 72.30466083709197,
+ 26.79368455417864
+ ],
+ [
+ 72.07497547012463,
+ 26.79368455417864
+ ],
+ [
+ 71.96013278664094,
+ 26.599036819250188
+ ],
+ [
+ 72.07497547012463,
+ 26.404389084321735
+ ],
+ [
+ 72.30466083709197,
+ 26.404389084321735
+ ],
+ [
+ 72.41950352057566,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 26.988332289107095
+ ],
+ [
+ 72.30466083709197,
+ 27.182980024035547
+ ],
+ [
+ 72.07497547012463,
+ 27.182980024035547
+ ],
+ [
+ 71.96013278664094,
+ 26.988332289107095
+ ],
+ [
+ 72.07497547012463,
+ 26.793684554178643
+ ],
+ [
+ 72.30466083709197,
+ 26.793684554178643
+ ],
+ [
+ 72.41950352057566,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 27.377627758964003
+ ],
+ [
+ 72.30466083709197,
+ 27.572275493892455
+ ],
+ [
+ 72.07497547012463,
+ 27.572275493892455
+ ],
+ [
+ 71.96013278664094,
+ 27.377627758964003
+ ],
+ [
+ 72.07497547012463,
+ 27.18298002403555
+ ],
+ [
+ 72.30466083709197,
+ 27.18298002403555
+ ],
+ [
+ 72.41950352057566,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 27.766923228820907
+ ],
+ [
+ 72.30466083709197,
+ 27.96157096374936
+ ],
+ [
+ 72.07497547012463,
+ 27.96157096374936
+ ],
+ [
+ 71.96013278664094,
+ 27.766923228820907
+ ],
+ [
+ 72.07497547012463,
+ 27.572275493892455
+ ],
+ [
+ 72.30466083709197,
+ 27.572275493892455
+ ],
+ [
+ 72.41950352057566,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 28.156218698677815
+ ],
+ [
+ 72.30466083709197,
+ 28.350866433606267
+ ],
+ [
+ 72.07497547012463,
+ 28.350866433606267
+ ],
+ [
+ 71.96013278664094,
+ 28.156218698677815
+ ],
+ [
+ 72.07497547012463,
+ 27.961570963749363
+ ],
+ [
+ 72.30466083709197,
+ 27.961570963749363
+ ],
+ [
+ 72.41950352057566,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 28.54551416853472
+ ],
+ [
+ 72.30466083709197,
+ 28.74016190346317
+ ],
+ [
+ 72.07497547012463,
+ 28.74016190346317
+ ],
+ [
+ 71.96013278664094,
+ 28.54551416853472
+ ],
+ [
+ 72.07497547012463,
+ 28.350866433606267
+ ],
+ [
+ 72.30466083709197,
+ 28.350866433606267
+ ],
+ [
+ 72.41950352057566,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 28.934809638391627
+ ],
+ [
+ 72.30466083709197,
+ 29.12945737332008
+ ],
+ [
+ 72.07497547012463,
+ 29.12945737332008
+ ],
+ [
+ 71.96013278664094,
+ 28.934809638391627
+ ],
+ [
+ 72.07497547012463,
+ 28.740161903463175
+ ],
+ [
+ 72.30466083709197,
+ 28.740161903463175
+ ],
+ [
+ 72.41950352057566,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 29.32410510824853
+ ],
+ [
+ 72.30466083709197,
+ 29.518752843176983
+ ],
+ [
+ 72.07497547012463,
+ 29.518752843176983
+ ],
+ [
+ 71.96013278664094,
+ 29.32410510824853
+ ],
+ [
+ 72.07497547012463,
+ 29.12945737332008
+ ],
+ [
+ 72.30466083709197,
+ 29.12945737332008
+ ],
+ [
+ 72.41950352057566,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 29.71340057810544
+ ],
+ [
+ 72.30466083709197,
+ 29.90804831303389
+ ],
+ [
+ 72.07497547012463,
+ 29.90804831303389
+ ],
+ [
+ 71.96013278664094,
+ 29.71340057810544
+ ],
+ [
+ 72.07497547012463,
+ 29.518752843176987
+ ],
+ [
+ 72.30466083709197,
+ 29.518752843176987
+ ],
+ [
+ 72.41950352057566,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 30.102696047962343
+ ],
+ [
+ 72.30466083709197,
+ 30.297343782890795
+ ],
+ [
+ 72.07497547012463,
+ 30.297343782890795
+ ],
+ [
+ 71.96013278664094,
+ 30.102696047962343
+ ],
+ [
+ 72.07497547012463,
+ 29.90804831303389
+ ],
+ [
+ 72.30466083709197,
+ 29.90804831303389
+ ],
+ [
+ 72.41950352057566,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 30.49199151781925
+ ],
+ [
+ 72.30466083709197,
+ 30.686639252747703
+ ],
+ [
+ 72.07497547012463,
+ 30.686639252747703
+ ],
+ [
+ 71.96013278664094,
+ 30.49199151781925
+ ],
+ [
+ 72.07497547012463,
+ 30.2973437828908
+ ],
+ [
+ 72.30466083709197,
+ 30.2973437828908
+ ],
+ [
+ 72.41950352057566,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 30.88128698767616
+ ],
+ [
+ 72.30466083709197,
+ 31.07593472260461
+ ],
+ [
+ 72.07497547012463,
+ 31.07593472260461
+ ],
+ [
+ 71.96013278664094,
+ 30.88128698767616
+ ],
+ [
+ 72.07497547012463,
+ 30.686639252747707
+ ],
+ [
+ 72.30466083709197,
+ 30.686639252747707
+ ],
+ [
+ 72.41950352057566,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 31.270582457533063
+ ],
+ [
+ 72.30466083709197,
+ 31.465230192461515
+ ],
+ [
+ 72.07497547012463,
+ 31.465230192461515
+ ],
+ [
+ 71.96013278664094,
+ 31.270582457533063
+ ],
+ [
+ 72.07497547012463,
+ 31.07593472260461
+ ],
+ [
+ 72.30466083709197,
+ 31.07593472260461
+ ],
+ [
+ 72.41950352057566,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 31.65987792738997
+ ],
+ [
+ 72.30466083709197,
+ 31.854525662318423
+ ],
+ [
+ 72.07497547012463,
+ 31.854525662318423
+ ],
+ [
+ 71.96013278664094,
+ 31.65987792738997
+ ],
+ [
+ 72.07497547012463,
+ 31.46523019246152
+ ],
+ [
+ 72.30466083709197,
+ 31.46523019246152
+ ],
+ [
+ 72.41950352057566,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 32.049173397246875
+ ],
+ [
+ 72.30466083709197,
+ 32.24382113217533
+ ],
+ [
+ 72.07497547012463,
+ 32.24382113217533
+ ],
+ [
+ 71.96013278664094,
+ 32.049173397246875
+ ],
+ [
+ 72.07497547012463,
+ 31.854525662318423
+ ],
+ [
+ 72.30466083709197,
+ 31.854525662318423
+ ],
+ [
+ 72.41950352057566,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 32.438468867103786
+ ],
+ [
+ 72.30466083709197,
+ 32.63311660203224
+ ],
+ [
+ 72.07497547012463,
+ 32.63311660203224
+ ],
+ [
+ 71.96013278664094,
+ 32.438468867103786
+ ],
+ [
+ 72.07497547012463,
+ 32.243821132175334
+ ],
+ [
+ 72.30466083709197,
+ 32.243821132175334
+ ],
+ [
+ 72.41950352057566,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 32.82776433696069
+ ],
+ [
+ 72.30466083709197,
+ 33.02241207188914
+ ],
+ [
+ 72.07497547012463,
+ 33.02241207188914
+ ],
+ [
+ 71.96013278664094,
+ 32.82776433696069
+ ],
+ [
+ 72.07497547012463,
+ 32.63311660203224
+ ],
+ [
+ 72.30466083709197,
+ 32.63311660203224
+ ],
+ [
+ 72.41950352057566,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 33.217059806817595
+ ],
+ [
+ 72.30466083709197,
+ 33.41170754174605
+ ],
+ [
+ 72.07497547012463,
+ 33.41170754174605
+ ],
+ [
+ 71.96013278664094,
+ 33.217059806817595
+ ],
+ [
+ 72.07497547012463,
+ 33.02241207188914
+ ],
+ [
+ 72.30466083709197,
+ 33.02241207188914
+ ],
+ [
+ 72.41950352057566,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 33.6063552766745
+ ],
+ [
+ 72.30466083709197,
+ 33.80100301160295
+ ],
+ [
+ 72.07497547012463,
+ 33.80100301160295
+ ],
+ [
+ 71.96013278664094,
+ 33.6063552766745
+ ],
+ [
+ 72.07497547012463,
+ 33.41170754174605
+ ],
+ [
+ 72.30466083709197,
+ 33.41170754174605
+ ],
+ [
+ 72.41950352057566,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 33.9956507465314
+ ],
+ [
+ 72.30466083709197,
+ 34.190298481459855
+ ],
+ [
+ 72.07497547012463,
+ 34.190298481459855
+ ],
+ [
+ 71.96013278664094,
+ 33.9956507465314
+ ],
+ [
+ 72.07497547012463,
+ 33.80100301160295
+ ],
+ [
+ 72.30466083709197,
+ 33.80100301160295
+ ],
+ [
+ 72.41950352057566,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 34.384946216388315
+ ],
+ [
+ 72.30466083709197,
+ 34.57959395131677
+ ],
+ [
+ 72.07497547012463,
+ 34.57959395131677
+ ],
+ [
+ 71.96013278664094,
+ 34.384946216388315
+ ],
+ [
+ 72.07497547012463,
+ 34.19029848145986
+ ],
+ [
+ 72.30466083709197,
+ 34.19029848145986
+ ],
+ [
+ 72.41950352057566,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 34.774241686245226
+ ],
+ [
+ 72.30466083709197,
+ 34.96888942117368
+ ],
+ [
+ 72.07497547012463,
+ 34.96888942117368
+ ],
+ [
+ 71.96013278664094,
+ 34.774241686245226
+ ],
+ [
+ 72.07497547012463,
+ 34.579593951316774
+ ],
+ [
+ 72.30466083709197,
+ 34.579593951316774
+ ],
+ [
+ 72.41950352057566,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 35.16353715610213
+ ],
+ [
+ 72.30466083709197,
+ 35.35818489103058
+ ],
+ [
+ 72.07497547012463,
+ 35.35818489103058
+ ],
+ [
+ 71.96013278664094,
+ 35.16353715610213
+ ],
+ [
+ 72.07497547012463,
+ 34.96888942117368
+ ],
+ [
+ 72.30466083709197,
+ 34.96888942117368
+ ],
+ [
+ 72.41950352057566,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 35.552832625959034
+ ],
+ [
+ 72.30466083709197,
+ 35.74748036088749
+ ],
+ [
+ 72.07497547012463,
+ 35.74748036088749
+ ],
+ [
+ 71.96013278664094,
+ 35.552832625959034
+ ],
+ [
+ 72.07497547012463,
+ 35.35818489103058
+ ],
+ [
+ 72.30466083709197,
+ 35.35818489103058
+ ],
+ [
+ 72.41950352057566,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 35.94212809581594
+ ],
+ [
+ 72.30466083709197,
+ 36.13677583074439
+ ],
+ [
+ 72.07497547012463,
+ 36.13677583074439
+ ],
+ [
+ 71.96013278664094,
+ 35.94212809581594
+ ],
+ [
+ 72.07497547012463,
+ 35.74748036088749
+ ],
+ [
+ 72.30466083709197,
+ 35.74748036088749
+ ],
+ [
+ 72.41950352057566,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 36.33142356567284
+ ],
+ [
+ 72.30466083709197,
+ 36.526071300601295
+ ],
+ [
+ 72.07497547012463,
+ 36.526071300601295
+ ],
+ [
+ 71.96013278664094,
+ 36.33142356567284
+ ],
+ [
+ 72.07497547012463,
+ 36.13677583074439
+ ],
+ [
+ 72.30466083709197,
+ 36.13677583074439
+ ],
+ [
+ 72.41950352057566,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 36.720719035529754
+ ],
+ [
+ 72.30466083709197,
+ 36.915366770458206
+ ],
+ [
+ 72.07497547012463,
+ 36.915366770458206
+ ],
+ [
+ 71.96013278664094,
+ 36.720719035529754
+ ],
+ [
+ 72.07497547012463,
+ 36.5260713006013
+ ],
+ [
+ 72.30466083709197,
+ 36.5260713006013
+ ],
+ [
+ 72.41950352057566,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 37.11001450538666
+ ],
+ [
+ 72.30466083709197,
+ 37.30466224031511
+ ],
+ [
+ 72.07497547012463,
+ 37.30466224031511
+ ],
+ [
+ 71.96013278664094,
+ 37.11001450538666
+ ],
+ [
+ 72.07497547012463,
+ 36.915366770458206
+ ],
+ [
+ 72.30466083709197,
+ 36.915366770458206
+ ],
+ [
+ 72.41950352057566,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 37.49930997524357
+ ],
+ [
+ 72.30466083709197,
+ 37.69395771017202
+ ],
+ [
+ 72.07497547012463,
+ 37.69395771017202
+ ],
+ [
+ 71.96013278664094,
+ 37.49930997524357
+ ],
+ [
+ 72.07497547012463,
+ 37.30466224031512
+ ],
+ [
+ 72.30466083709197,
+ 37.30466224031512
+ ],
+ [
+ 72.41950352057566,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 37.888605445100474
+ ],
+ [
+ 72.30466083709197,
+ 38.083253180028926
+ ],
+ [
+ 72.07497547012463,
+ 38.083253180028926
+ ],
+ [
+ 71.96013278664094,
+ 37.888605445100474
+ ],
+ [
+ 72.07497547012463,
+ 37.69395771017202
+ ],
+ [
+ 72.30466083709197,
+ 37.69395771017202
+ ],
+ [
+ 72.41950352057566,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 38.27790091495738
+ ],
+ [
+ 72.30466083709197,
+ 38.47254864988583
+ ],
+ [
+ 72.07497547012463,
+ 38.47254864988583
+ ],
+ [
+ 71.96013278664094,
+ 38.27790091495738
+ ],
+ [
+ 72.07497547012463,
+ 38.083253180028926
+ ],
+ [
+ 72.30466083709197,
+ 38.083253180028926
+ ],
+ [
+ 72.41950352057566,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 38.66719638481428
+ ],
+ [
+ 72.30466083709197,
+ 38.861844119742734
+ ],
+ [
+ 72.07497547012463,
+ 38.861844119742734
+ ],
+ [
+ 71.96013278664094,
+ 38.66719638481428
+ ],
+ [
+ 72.07497547012463,
+ 38.47254864988583
+ ],
+ [
+ 72.30466083709197,
+ 38.47254864988583
+ ],
+ [
+ 72.41950352057566,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 39.05649185467119
+ ],
+ [
+ 72.30466083709197,
+ 39.25113958959964
+ ],
+ [
+ 72.07497547012463,
+ 39.25113958959964
+ ],
+ [
+ 71.96013278664094,
+ 39.05649185467119
+ ],
+ [
+ 72.07497547012463,
+ 38.861844119742734
+ ],
+ [
+ 72.30466083709197,
+ 38.861844119742734
+ ],
+ [
+ 72.41950352057566,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 39.4457873245281
+ ],
+ [
+ 72.30466083709197,
+ 39.64043505945655
+ ],
+ [
+ 72.07497547012463,
+ 39.64043505945655
+ ],
+ [
+ 71.96013278664094,
+ 39.4457873245281
+ ],
+ [
+ 72.07497547012463,
+ 39.251139589599646
+ ],
+ [
+ 72.30466083709197,
+ 39.251139589599646
+ ],
+ [
+ 72.41950352057566,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 39.835082794385
+ ],
+ [
+ 72.30466083709197,
+ 40.029730529313454
+ ],
+ [
+ 72.07497547012463,
+ 40.029730529313454
+ ],
+ [
+ 71.96013278664094,
+ 39.835082794385
+ ],
+ [
+ 72.07497547012463,
+ 39.64043505945655
+ ],
+ [
+ 72.30466083709197,
+ 39.64043505945655
+ ],
+ [
+ 72.41950352057566,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 40.22437826424191
+ ],
+ [
+ 72.30466083709197,
+ 40.419025999170366
+ ],
+ [
+ 72.07497547012463,
+ 40.419025999170366
+ ],
+ [
+ 71.96013278664094,
+ 40.22437826424191
+ ],
+ [
+ 72.07497547012463,
+ 40.02973052931346
+ ],
+ [
+ 72.30466083709197,
+ 40.02973052931346
+ ],
+ [
+ 72.41950352057566,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 40.61367373409882
+ ],
+ [
+ 72.30466083709197,
+ 40.80832146902727
+ ],
+ [
+ 72.07497547012463,
+ 40.80832146902727
+ ],
+ [
+ 71.96013278664094,
+ 40.61367373409882
+ ],
+ [
+ 72.07497547012463,
+ 40.419025999170366
+ ],
+ [
+ 72.30466083709197,
+ 40.419025999170366
+ ],
+ [
+ 72.41950352057566,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 41.00296920395572
+ ],
+ [
+ 72.30466083709197,
+ 41.197616938884174
+ ],
+ [
+ 72.07497547012463,
+ 41.197616938884174
+ ],
+ [
+ 71.96013278664094,
+ 41.00296920395572
+ ],
+ [
+ 72.07497547012463,
+ 40.80832146902727
+ ],
+ [
+ 72.30466083709197,
+ 40.80832146902727
+ ],
+ [
+ 72.41950352057566,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 41.392264673812626
+ ],
+ [
+ 72.30466083709197,
+ 41.58691240874108
+ ],
+ [
+ 72.07497547012463,
+ 41.58691240874108
+ ],
+ [
+ 71.96013278664094,
+ 41.392264673812626
+ ],
+ [
+ 72.07497547012463,
+ 41.197616938884174
+ ],
+ [
+ 72.30466083709197,
+ 41.197616938884174
+ ],
+ [
+ 72.41950352057566,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 41.78156014366953
+ ],
+ [
+ 72.30466083709197,
+ 41.97620787859798
+ ],
+ [
+ 72.07497547012463,
+ 41.97620787859798
+ ],
+ [
+ 71.96013278664094,
+ 41.78156014366953
+ ],
+ [
+ 72.07497547012463,
+ 41.58691240874108
+ ],
+ [
+ 72.30466083709197,
+ 41.58691240874108
+ ],
+ [
+ 72.41950352057566,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 42.17085561352644
+ ],
+ [
+ 72.30466083709197,
+ 42.365503348454894
+ ],
+ [
+ 72.07497547012463,
+ 42.365503348454894
+ ],
+ [
+ 71.96013278664094,
+ 42.17085561352644
+ ],
+ [
+ 72.07497547012463,
+ 41.97620787859799
+ ],
+ [
+ 72.30466083709197,
+ 41.97620787859799
+ ],
+ [
+ 72.41950352057566,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 42.56015108338335
+ ],
+ [
+ 72.30466083709197,
+ 42.754798818311805
+ ],
+ [
+ 72.07497547012463,
+ 42.754798818311805
+ ],
+ [
+ 71.96013278664094,
+ 42.56015108338335
+ ],
+ [
+ 72.07497547012463,
+ 42.3655033484549
+ ],
+ [
+ 72.30466083709197,
+ 42.3655033484549
+ ],
+ [
+ 72.41950352057566,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 42.94944655324026
+ ],
+ [
+ 72.30466083709197,
+ 43.14409428816871
+ ],
+ [
+ 72.07497547012463,
+ 43.14409428816871
+ ],
+ [
+ 71.96013278664094,
+ 42.94944655324026
+ ],
+ [
+ 72.07497547012463,
+ 42.754798818311805
+ ],
+ [
+ 72.30466083709197,
+ 42.754798818311805
+ ],
+ [
+ 72.41950352057566,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 43.33874202309716
+ ],
+ [
+ 72.30466083709197,
+ 43.53338975802561
+ ],
+ [
+ 72.07497547012463,
+ 43.53338975802561
+ ],
+ [
+ 71.96013278664094,
+ 43.33874202309716
+ ],
+ [
+ 72.07497547012463,
+ 43.14409428816871
+ ],
+ [
+ 72.30466083709197,
+ 43.14409428816871
+ ],
+ [
+ 72.41950352057566,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 43.728037492954066
+ ],
+ [
+ 72.30466083709197,
+ 43.92268522788252
+ ],
+ [
+ 72.07497547012463,
+ 43.92268522788252
+ ],
+ [
+ 71.96013278664094,
+ 43.728037492954066
+ ],
+ [
+ 72.07497547012463,
+ 43.53338975802561
+ ],
+ [
+ 72.30466083709197,
+ 43.53338975802561
+ ],
+ [
+ 72.41950352057566,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 44.11733296281097
+ ],
+ [
+ 72.30466083709197,
+ 44.31198069773942
+ ],
+ [
+ 72.07497547012463,
+ 44.31198069773942
+ ],
+ [
+ 71.96013278664094,
+ 44.11733296281097
+ ],
+ [
+ 72.07497547012463,
+ 43.92268522788252
+ ],
+ [
+ 72.30466083709197,
+ 43.92268522788252
+ ],
+ [
+ 72.41950352057566,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 44.506628432667874
+ ],
+ [
+ 72.30466083709197,
+ 44.701276167596326
+ ],
+ [
+ 72.07497547012463,
+ 44.701276167596326
+ ],
+ [
+ 71.96013278664094,
+ 44.506628432667874
+ ],
+ [
+ 72.07497547012463,
+ 44.31198069773942
+ ],
+ [
+ 72.30466083709197,
+ 44.31198069773942
+ ],
+ [
+ 72.41950352057566,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 44.89592390252479
+ ],
+ [
+ 72.30466083709197,
+ 45.090571637453245
+ ],
+ [
+ 72.07497547012463,
+ 45.090571637453245
+ ],
+ [
+ 71.96013278664094,
+ 44.89592390252479
+ ],
+ [
+ 72.07497547012463,
+ 44.70127616759634
+ ],
+ [
+ 72.30466083709197,
+ 44.70127616759634
+ ],
+ [
+ 72.41950352057566,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 45.2852193723817
+ ],
+ [
+ 72.30466083709197,
+ 45.47986710731015
+ ],
+ [
+ 72.07497547012463,
+ 45.47986710731015
+ ],
+ [
+ 71.96013278664094,
+ 45.2852193723817
+ ],
+ [
+ 72.07497547012463,
+ 45.090571637453245
+ ],
+ [
+ 72.30466083709197,
+ 45.090571637453245
+ ],
+ [
+ 72.41950352057566,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 45.6745148422386
+ ],
+ [
+ 72.30466083709197,
+ 45.86916257716705
+ ],
+ [
+ 72.07497547012463,
+ 45.86916257716705
+ ],
+ [
+ 71.96013278664094,
+ 45.6745148422386
+ ],
+ [
+ 72.07497547012463,
+ 45.47986710731015
+ ],
+ [
+ 72.30466083709197,
+ 45.47986710731015
+ ],
+ [
+ 72.41950352057566,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 46.063810312095505
+ ],
+ [
+ 72.30466083709197,
+ 46.25845804702396
+ ],
+ [
+ 72.07497547012463,
+ 46.25845804702396
+ ],
+ [
+ 71.96013278664094,
+ 46.063810312095505
+ ],
+ [
+ 72.07497547012463,
+ 45.86916257716705
+ ],
+ [
+ 72.30466083709197,
+ 45.86916257716705
+ ],
+ [
+ 72.41950352057566,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 46.45310578195241
+ ],
+ [
+ 72.30466083709197,
+ 46.64775351688086
+ ],
+ [
+ 72.07497547012463,
+ 46.64775351688086
+ ],
+ [
+ 71.96013278664094,
+ 46.45310578195241
+ ],
+ [
+ 72.07497547012463,
+ 46.25845804702396
+ ],
+ [
+ 72.30466083709197,
+ 46.25845804702396
+ ],
+ [
+ 72.41950352057566,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 46.842401251809314
+ ],
+ [
+ 72.30466083709197,
+ 47.037048986737766
+ ],
+ [
+ 72.07497547012463,
+ 47.037048986737766
+ ],
+ [
+ 71.96013278664094,
+ 46.842401251809314
+ ],
+ [
+ 72.07497547012463,
+ 46.64775351688086
+ ],
+ [
+ 72.30466083709197,
+ 46.64775351688086
+ ],
+ [
+ 72.41950352057566,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 47.23169672166622
+ ],
+ [
+ 72.30466083709197,
+ 47.42634445659467
+ ],
+ [
+ 72.07497547012463,
+ 47.42634445659467
+ ],
+ [
+ 71.96013278664094,
+ 47.23169672166622
+ ],
+ [
+ 72.07497547012463,
+ 47.037048986737766
+ ],
+ [
+ 72.30466083709197,
+ 47.037048986737766
+ ],
+ [
+ 72.41950352057566,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.41950352057566,
+ 47.620992191523136
+ ],
+ [
+ 72.30466083709197,
+ 47.81563992645159
+ ],
+ [
+ 72.07497547012463,
+ 47.81563992645159
+ ],
+ [
+ 71.96013278664094,
+ 47.620992191523136
+ ],
+ [
+ 72.07497547012463,
+ 47.426344456594684
+ ],
+ [
+ 72.30466083709197,
+ 47.426344456594684
+ ],
+ [
+ 72.41950352057566,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 12.0004566996162
+ ],
+ [
+ 72.64918888754302,
+ 12.195104434544653
+ ],
+ [
+ 72.41950352057567,
+ 12.195104434544653
+ ],
+ [
+ 72.30466083709199,
+ 12.0004566996162
+ ],
+ [
+ 72.41950352057567,
+ 11.805808964687746
+ ],
+ [
+ 72.64918888754302,
+ 11.805808964687746
+ ],
+ [
+ 72.7640315710267,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 12.389752169473105
+ ],
+ [
+ 72.64918888754302,
+ 12.58439990440156
+ ],
+ [
+ 72.41950352057567,
+ 12.58439990440156
+ ],
+ [
+ 72.30466083709199,
+ 12.389752169473105
+ ],
+ [
+ 72.41950352057567,
+ 12.195104434544652
+ ],
+ [
+ 72.64918888754302,
+ 12.195104434544652
+ ],
+ [
+ 72.7640315710267,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 12.779047639330013
+ ],
+ [
+ 72.64918888754302,
+ 12.973695374258467
+ ],
+ [
+ 72.41950352057567,
+ 12.973695374258467
+ ],
+ [
+ 72.30466083709199,
+ 12.779047639330013
+ ],
+ [
+ 72.41950352057567,
+ 12.58439990440156
+ ],
+ [
+ 72.64918888754302,
+ 12.58439990440156
+ ],
+ [
+ 72.7640315710267,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 13.16834310918692
+ ],
+ [
+ 72.64918888754302,
+ 13.362990844115373
+ ],
+ [
+ 72.41950352057567,
+ 13.362990844115373
+ ],
+ [
+ 72.30466083709199,
+ 13.16834310918692
+ ],
+ [
+ 72.41950352057567,
+ 12.973695374258465
+ ],
+ [
+ 72.64918888754302,
+ 12.973695374258465
+ ],
+ [
+ 72.7640315710267,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 13.557638579043825
+ ],
+ [
+ 72.64918888754302,
+ 13.752286313972279
+ ],
+ [
+ 72.41950352057567,
+ 13.752286313972279
+ ],
+ [
+ 72.30466083709199,
+ 13.557638579043825
+ ],
+ [
+ 72.41950352057567,
+ 13.362990844115371
+ ],
+ [
+ 72.64918888754302,
+ 13.362990844115371
+ ],
+ [
+ 72.7640315710267,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 13.946934048900731
+ ],
+ [
+ 72.64918888754302,
+ 14.141581783829185
+ ],
+ [
+ 72.41950352057567,
+ 14.141581783829185
+ ],
+ [
+ 72.30466083709199,
+ 13.946934048900731
+ ],
+ [
+ 72.41950352057567,
+ 13.752286313972277
+ ],
+ [
+ 72.64918888754302,
+ 13.752286313972277
+ ],
+ [
+ 72.7640315710267,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 14.336229518757637
+ ],
+ [
+ 72.64918888754302,
+ 14.530877253686091
+ ],
+ [
+ 72.41950352057567,
+ 14.530877253686091
+ ],
+ [
+ 72.30466083709199,
+ 14.336229518757637
+ ],
+ [
+ 72.41950352057567,
+ 14.141581783829183
+ ],
+ [
+ 72.64918888754302,
+ 14.141581783829183
+ ],
+ [
+ 72.7640315710267,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 14.725524988614545
+ ],
+ [
+ 72.64918888754302,
+ 14.920172723542999
+ ],
+ [
+ 72.41950352057567,
+ 14.920172723542999
+ ],
+ [
+ 72.30466083709199,
+ 14.725524988614545
+ ],
+ [
+ 72.41950352057567,
+ 14.530877253686091
+ ],
+ [
+ 72.64918888754302,
+ 14.530877253686091
+ ],
+ [
+ 72.7640315710267,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 15.114820458471451
+ ],
+ [
+ 72.64918888754302,
+ 15.309468193399905
+ ],
+ [
+ 72.41950352057567,
+ 15.309468193399905
+ ],
+ [
+ 72.30466083709199,
+ 15.114820458471451
+ ],
+ [
+ 72.41950352057567,
+ 14.920172723542997
+ ],
+ [
+ 72.64918888754302,
+ 14.920172723542997
+ ],
+ [
+ 72.7640315710267,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 15.504115928328357
+ ],
+ [
+ 72.64918888754302,
+ 15.69876366325681
+ ],
+ [
+ 72.41950352057567,
+ 15.69876366325681
+ ],
+ [
+ 72.30466083709199,
+ 15.504115928328357
+ ],
+ [
+ 72.41950352057567,
+ 15.309468193399903
+ ],
+ [
+ 72.64918888754302,
+ 15.309468193399903
+ ],
+ [
+ 72.7640315710267,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 15.893411398185265
+ ],
+ [
+ 72.64918888754302,
+ 16.088059133113717
+ ],
+ [
+ 72.41950352057567,
+ 16.088059133113717
+ ],
+ [
+ 72.30466083709199,
+ 15.893411398185265
+ ],
+ [
+ 72.41950352057567,
+ 15.69876366325681
+ ],
+ [
+ 72.64918888754302,
+ 15.69876366325681
+ ],
+ [
+ 72.7640315710267,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 16.28270686804217
+ ],
+ [
+ 72.64918888754302,
+ 16.47735460297062
+ ],
+ [
+ 72.41950352057567,
+ 16.47735460297062
+ ],
+ [
+ 72.30466083709199,
+ 16.28270686804217
+ ],
+ [
+ 72.41950352057567,
+ 16.088059133113717
+ ],
+ [
+ 72.64918888754302,
+ 16.088059133113717
+ ],
+ [
+ 72.7640315710267,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 16.672002337899077
+ ],
+ [
+ 72.64918888754302,
+ 16.86665007282753
+ ],
+ [
+ 72.41950352057567,
+ 16.86665007282753
+ ],
+ [
+ 72.30466083709199,
+ 16.672002337899077
+ ],
+ [
+ 72.41950352057567,
+ 16.477354602970625
+ ],
+ [
+ 72.64918888754302,
+ 16.477354602970625
+ ],
+ [
+ 72.7640315710267,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 17.06129780775598
+ ],
+ [
+ 72.64918888754302,
+ 17.255945542684433
+ ],
+ [
+ 72.41950352057567,
+ 17.255945542684433
+ ],
+ [
+ 72.30466083709199,
+ 17.06129780775598
+ ],
+ [
+ 72.41950352057567,
+ 16.86665007282753
+ ],
+ [
+ 72.64918888754302,
+ 16.86665007282753
+ ],
+ [
+ 72.7640315710267,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 17.45059327761289
+ ],
+ [
+ 72.64918888754302,
+ 17.64524101254134
+ ],
+ [
+ 72.41950352057567,
+ 17.64524101254134
+ ],
+ [
+ 72.30466083709199,
+ 17.45059327761289
+ ],
+ [
+ 72.41950352057567,
+ 17.255945542684437
+ ],
+ [
+ 72.64918888754302,
+ 17.255945542684437
+ ],
+ [
+ 72.7640315710267,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 17.839888747469793
+ ],
+ [
+ 72.64918888754302,
+ 18.034536482398245
+ ],
+ [
+ 72.41950352057567,
+ 18.034536482398245
+ ],
+ [
+ 72.30466083709199,
+ 17.839888747469793
+ ],
+ [
+ 72.41950352057567,
+ 17.64524101254134
+ ],
+ [
+ 72.64918888754302,
+ 17.64524101254134
+ ],
+ [
+ 72.7640315710267,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 18.2291842173267
+ ],
+ [
+ 72.64918888754302,
+ 18.423831952255153
+ ],
+ [
+ 72.41950352057567,
+ 18.423831952255153
+ ],
+ [
+ 72.30466083709199,
+ 18.2291842173267
+ ],
+ [
+ 72.41950352057567,
+ 18.03453648239825
+ ],
+ [
+ 72.64918888754302,
+ 18.03453648239825
+ ],
+ [
+ 72.7640315710267,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 18.61847968718361
+ ],
+ [
+ 72.64918888754302,
+ 18.81312742211206
+ ],
+ [
+ 72.41950352057567,
+ 18.81312742211206
+ ],
+ [
+ 72.30466083709199,
+ 18.61847968718361
+ ],
+ [
+ 72.41950352057567,
+ 18.423831952255156
+ ],
+ [
+ 72.64918888754302,
+ 18.423831952255156
+ ],
+ [
+ 72.7640315710267,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 19.007775157040513
+ ],
+ [
+ 72.64918888754302,
+ 19.202422891968965
+ ],
+ [
+ 72.41950352057567,
+ 19.202422891968965
+ ],
+ [
+ 72.30466083709199,
+ 19.007775157040513
+ ],
+ [
+ 72.41950352057567,
+ 18.81312742211206
+ ],
+ [
+ 72.64918888754302,
+ 18.81312742211206
+ ],
+ [
+ 72.7640315710267,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 19.39707062689742
+ ],
+ [
+ 72.64918888754302,
+ 19.591718361825873
+ ],
+ [
+ 72.41950352057567,
+ 19.591718361825873
+ ],
+ [
+ 72.30466083709199,
+ 19.39707062689742
+ ],
+ [
+ 72.41950352057567,
+ 19.20242289196897
+ ],
+ [
+ 72.64918888754302,
+ 19.20242289196897
+ ],
+ [
+ 72.7640315710267,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 19.78636609675433
+ ],
+ [
+ 72.64918888754302,
+ 19.98101383168278
+ ],
+ [
+ 72.41950352057567,
+ 19.98101383168278
+ ],
+ [
+ 72.30466083709199,
+ 19.78636609675433
+ ],
+ [
+ 72.41950352057567,
+ 19.591718361825876
+ ],
+ [
+ 72.64918888754302,
+ 19.591718361825876
+ ],
+ [
+ 72.7640315710267,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 20.175661566611232
+ ],
+ [
+ 72.64918888754302,
+ 20.370309301539685
+ ],
+ [
+ 72.41950352057567,
+ 20.370309301539685
+ ],
+ [
+ 72.30466083709199,
+ 20.175661566611232
+ ],
+ [
+ 72.41950352057567,
+ 19.98101383168278
+ ],
+ [
+ 72.64918888754302,
+ 19.98101383168278
+ ],
+ [
+ 72.7640315710267,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 20.564957036468137
+ ],
+ [
+ 72.64918888754302,
+ 20.75960477139659
+ ],
+ [
+ 72.41950352057567,
+ 20.75960477139659
+ ],
+ [
+ 72.30466083709199,
+ 20.564957036468137
+ ],
+ [
+ 72.41950352057567,
+ 20.370309301539685
+ ],
+ [
+ 72.64918888754302,
+ 20.370309301539685
+ ],
+ [
+ 72.7640315710267,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 20.954252506325044
+ ],
+ [
+ 72.64918888754302,
+ 21.148900241253497
+ ],
+ [
+ 72.41950352057567,
+ 21.148900241253497
+ ],
+ [
+ 72.30466083709199,
+ 20.954252506325044
+ ],
+ [
+ 72.41950352057567,
+ 20.759604771396592
+ ],
+ [
+ 72.64918888754302,
+ 20.759604771396592
+ ],
+ [
+ 72.7640315710267,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 21.343547976181952
+ ],
+ [
+ 72.64918888754302,
+ 21.538195711110404
+ ],
+ [
+ 72.41950352057567,
+ 21.538195711110404
+ ],
+ [
+ 72.30466083709199,
+ 21.343547976181952
+ ],
+ [
+ 72.41950352057567,
+ 21.1489002412535
+ ],
+ [
+ 72.64918888754302,
+ 21.1489002412535
+ ],
+ [
+ 72.7640315710267,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 21.732843446038856
+ ],
+ [
+ 72.64918888754302,
+ 21.92749118096731
+ ],
+ [
+ 72.41950352057567,
+ 21.92749118096731
+ ],
+ [
+ 72.30466083709199,
+ 21.732843446038856
+ ],
+ [
+ 72.41950352057567,
+ 21.538195711110404
+ ],
+ [
+ 72.64918888754302,
+ 21.538195711110404
+ ],
+ [
+ 72.7640315710267,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 22.122138915895764
+ ],
+ [
+ 72.64918888754302,
+ 22.316786650824216
+ ],
+ [
+ 72.41950352057567,
+ 22.316786650824216
+ ],
+ [
+ 72.30466083709199,
+ 22.122138915895764
+ ],
+ [
+ 72.41950352057567,
+ 21.927491180967312
+ ],
+ [
+ 72.64918888754302,
+ 21.927491180967312
+ ],
+ [
+ 72.7640315710267,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 22.511434385752672
+ ],
+ [
+ 72.64918888754302,
+ 22.706082120681124
+ ],
+ [
+ 72.41950352057567,
+ 22.706082120681124
+ ],
+ [
+ 72.30466083709199,
+ 22.511434385752672
+ ],
+ [
+ 72.41950352057567,
+ 22.31678665082422
+ ],
+ [
+ 72.64918888754302,
+ 22.31678665082422
+ ],
+ [
+ 72.7640315710267,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 22.900729855609576
+ ],
+ [
+ 72.64918888754302,
+ 23.09537759053803
+ ],
+ [
+ 72.41950352057567,
+ 23.09537759053803
+ ],
+ [
+ 72.30466083709199,
+ 22.900729855609576
+ ],
+ [
+ 72.41950352057567,
+ 22.706082120681124
+ ],
+ [
+ 72.64918888754302,
+ 22.706082120681124
+ ],
+ [
+ 72.7640315710267,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 23.290025325466484
+ ],
+ [
+ 72.64918888754302,
+ 23.484673060394936
+ ],
+ [
+ 72.41950352057567,
+ 23.484673060394936
+ ],
+ [
+ 72.30466083709199,
+ 23.290025325466484
+ ],
+ [
+ 72.41950352057567,
+ 23.095377590538032
+ ],
+ [
+ 72.64918888754302,
+ 23.095377590538032
+ ],
+ [
+ 72.7640315710267,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 23.67932079532339
+ ],
+ [
+ 72.64918888754302,
+ 23.873968530251844
+ ],
+ [
+ 72.41950352057567,
+ 23.873968530251844
+ ],
+ [
+ 72.30466083709199,
+ 23.67932079532339
+ ],
+ [
+ 72.41950352057567,
+ 23.48467306039494
+ ],
+ [
+ 72.64918888754302,
+ 23.48467306039494
+ ],
+ [
+ 72.7640315710267,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 24.068616265180296
+ ],
+ [
+ 72.64918888754302,
+ 24.263264000108748
+ ],
+ [
+ 72.41950352057567,
+ 24.263264000108748
+ ],
+ [
+ 72.30466083709199,
+ 24.068616265180296
+ ],
+ [
+ 72.41950352057567,
+ 23.873968530251844
+ ],
+ [
+ 72.64918888754302,
+ 23.873968530251844
+ ],
+ [
+ 72.7640315710267,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 24.4579117350372
+ ],
+ [
+ 72.64918888754302,
+ 24.652559469965652
+ ],
+ [
+ 72.41950352057567,
+ 24.652559469965652
+ ],
+ [
+ 72.30466083709199,
+ 24.4579117350372
+ ],
+ [
+ 72.41950352057567,
+ 24.263264000108748
+ ],
+ [
+ 72.64918888754302,
+ 24.263264000108748
+ ],
+ [
+ 72.7640315710267,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 24.847207204894108
+ ],
+ [
+ 72.64918888754302,
+ 25.04185493982256
+ ],
+ [
+ 72.41950352057567,
+ 25.04185493982256
+ ],
+ [
+ 72.30466083709199,
+ 24.847207204894108
+ ],
+ [
+ 72.41950352057567,
+ 24.652559469965656
+ ],
+ [
+ 72.64918888754302,
+ 24.652559469965656
+ ],
+ [
+ 72.7640315710267,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 25.236502674751016
+ ],
+ [
+ 72.64918888754302,
+ 25.431150409679468
+ ],
+ [
+ 72.41950352057567,
+ 25.431150409679468
+ ],
+ [
+ 72.30466083709199,
+ 25.236502674751016
+ ],
+ [
+ 72.41950352057567,
+ 25.041854939822564
+ ],
+ [
+ 72.64918888754302,
+ 25.041854939822564
+ ],
+ [
+ 72.7640315710267,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 25.62579814460792
+ ],
+ [
+ 72.64918888754302,
+ 25.820445879536372
+ ],
+ [
+ 72.41950352057567,
+ 25.820445879536372
+ ],
+ [
+ 72.30466083709199,
+ 25.62579814460792
+ ],
+ [
+ 72.41950352057567,
+ 25.431150409679468
+ ],
+ [
+ 72.64918888754302,
+ 25.431150409679468
+ ],
+ [
+ 72.7640315710267,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 26.015093614464828
+ ],
+ [
+ 72.64918888754302,
+ 26.20974134939328
+ ],
+ [
+ 72.41950352057567,
+ 26.20974134939328
+ ],
+ [
+ 72.30466083709199,
+ 26.015093614464828
+ ],
+ [
+ 72.41950352057567,
+ 25.820445879536376
+ ],
+ [
+ 72.64918888754302,
+ 25.820445879536376
+ ],
+ [
+ 72.7640315710267,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 26.404389084321735
+ ],
+ [
+ 72.64918888754302,
+ 26.599036819250188
+ ],
+ [
+ 72.41950352057567,
+ 26.599036819250188
+ ],
+ [
+ 72.30466083709199,
+ 26.404389084321735
+ ],
+ [
+ 72.41950352057567,
+ 26.209741349393283
+ ],
+ [
+ 72.64918888754302,
+ 26.209741349393283
+ ],
+ [
+ 72.7640315710267,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 26.79368455417864
+ ],
+ [
+ 72.64918888754302,
+ 26.988332289107092
+ ],
+ [
+ 72.41950352057567,
+ 26.988332289107092
+ ],
+ [
+ 72.30466083709199,
+ 26.79368455417864
+ ],
+ [
+ 72.41950352057567,
+ 26.599036819250188
+ ],
+ [
+ 72.64918888754302,
+ 26.599036819250188
+ ],
+ [
+ 72.7640315710267,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 27.182980024035547
+ ],
+ [
+ 72.64918888754302,
+ 27.377627758964
+ ],
+ [
+ 72.41950352057567,
+ 27.377627758964
+ ],
+ [
+ 72.30466083709199,
+ 27.182980024035547
+ ],
+ [
+ 72.41950352057567,
+ 26.988332289107095
+ ],
+ [
+ 72.64918888754302,
+ 26.988332289107095
+ ],
+ [
+ 72.7640315710267,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 27.572275493892455
+ ],
+ [
+ 72.64918888754302,
+ 27.766923228820907
+ ],
+ [
+ 72.41950352057567,
+ 27.766923228820907
+ ],
+ [
+ 72.30466083709199,
+ 27.572275493892455
+ ],
+ [
+ 72.41950352057567,
+ 27.377627758964003
+ ],
+ [
+ 72.64918888754302,
+ 27.377627758964003
+ ],
+ [
+ 72.7640315710267,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 27.96157096374936
+ ],
+ [
+ 72.64918888754302,
+ 28.15621869867781
+ ],
+ [
+ 72.41950352057567,
+ 28.15621869867781
+ ],
+ [
+ 72.30466083709199,
+ 27.96157096374936
+ ],
+ [
+ 72.41950352057567,
+ 27.766923228820907
+ ],
+ [
+ 72.64918888754302,
+ 27.766923228820907
+ ],
+ [
+ 72.7640315710267,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 28.350866433606267
+ ],
+ [
+ 72.64918888754302,
+ 28.54551416853472
+ ],
+ [
+ 72.41950352057567,
+ 28.54551416853472
+ ],
+ [
+ 72.30466083709199,
+ 28.350866433606267
+ ],
+ [
+ 72.41950352057567,
+ 28.156218698677815
+ ],
+ [
+ 72.64918888754302,
+ 28.156218698677815
+ ],
+ [
+ 72.7640315710267,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 28.74016190346317
+ ],
+ [
+ 72.64918888754302,
+ 28.934809638391624
+ ],
+ [
+ 72.41950352057567,
+ 28.934809638391624
+ ],
+ [
+ 72.30466083709199,
+ 28.74016190346317
+ ],
+ [
+ 72.41950352057567,
+ 28.54551416853472
+ ],
+ [
+ 72.64918888754302,
+ 28.54551416853472
+ ],
+ [
+ 72.7640315710267,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 29.12945737332008
+ ],
+ [
+ 72.64918888754302,
+ 29.32410510824853
+ ],
+ [
+ 72.41950352057567,
+ 29.32410510824853
+ ],
+ [
+ 72.30466083709199,
+ 29.12945737332008
+ ],
+ [
+ 72.41950352057567,
+ 28.934809638391627
+ ],
+ [
+ 72.64918888754302,
+ 28.934809638391627
+ ],
+ [
+ 72.7640315710267,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 29.518752843176983
+ ],
+ [
+ 72.64918888754302,
+ 29.713400578105436
+ ],
+ [
+ 72.41950352057567,
+ 29.713400578105436
+ ],
+ [
+ 72.30466083709199,
+ 29.518752843176983
+ ],
+ [
+ 72.41950352057567,
+ 29.32410510824853
+ ],
+ [
+ 72.64918888754302,
+ 29.32410510824853
+ ],
+ [
+ 72.7640315710267,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 29.90804831303389
+ ],
+ [
+ 72.64918888754302,
+ 30.102696047962343
+ ],
+ [
+ 72.41950352057567,
+ 30.102696047962343
+ ],
+ [
+ 72.30466083709199,
+ 29.90804831303389
+ ],
+ [
+ 72.41950352057567,
+ 29.71340057810544
+ ],
+ [
+ 72.64918888754302,
+ 29.71340057810544
+ ],
+ [
+ 72.7640315710267,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 30.297343782890795
+ ],
+ [
+ 72.64918888754302,
+ 30.491991517819248
+ ],
+ [
+ 72.41950352057567,
+ 30.491991517819248
+ ],
+ [
+ 72.30466083709199,
+ 30.297343782890795
+ ],
+ [
+ 72.41950352057567,
+ 30.102696047962343
+ ],
+ [
+ 72.64918888754302,
+ 30.102696047962343
+ ],
+ [
+ 72.7640315710267,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 30.686639252747703
+ ],
+ [
+ 72.64918888754302,
+ 30.881286987676155
+ ],
+ [
+ 72.41950352057567,
+ 30.881286987676155
+ ],
+ [
+ 72.30466083709199,
+ 30.686639252747703
+ ],
+ [
+ 72.41950352057567,
+ 30.49199151781925
+ ],
+ [
+ 72.64918888754302,
+ 30.49199151781925
+ ],
+ [
+ 72.7640315710267,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 31.07593472260461
+ ],
+ [
+ 72.64918888754302,
+ 31.270582457533063
+ ],
+ [
+ 72.41950352057567,
+ 31.270582457533063
+ ],
+ [
+ 72.30466083709199,
+ 31.07593472260461
+ ],
+ [
+ 72.41950352057567,
+ 30.88128698767616
+ ],
+ [
+ 72.64918888754302,
+ 30.88128698767616
+ ],
+ [
+ 72.7640315710267,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 31.465230192461515
+ ],
+ [
+ 72.64918888754302,
+ 31.659877927389967
+ ],
+ [
+ 72.41950352057567,
+ 31.659877927389967
+ ],
+ [
+ 72.30466083709199,
+ 31.465230192461515
+ ],
+ [
+ 72.41950352057567,
+ 31.270582457533063
+ ],
+ [
+ 72.64918888754302,
+ 31.270582457533063
+ ],
+ [
+ 72.7640315710267,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 31.854525662318423
+ ],
+ [
+ 72.64918888754302,
+ 32.049173397246875
+ ],
+ [
+ 72.41950352057567,
+ 32.049173397246875
+ ],
+ [
+ 72.30466083709199,
+ 31.854525662318423
+ ],
+ [
+ 72.41950352057567,
+ 31.65987792738997
+ ],
+ [
+ 72.64918888754302,
+ 31.65987792738997
+ ],
+ [
+ 72.7640315710267,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 32.24382113217533
+ ],
+ [
+ 72.64918888754302,
+ 32.43846886710378
+ ],
+ [
+ 72.41950352057567,
+ 32.43846886710378
+ ],
+ [
+ 72.30466083709199,
+ 32.24382113217533
+ ],
+ [
+ 72.41950352057567,
+ 32.049173397246875
+ ],
+ [
+ 72.64918888754302,
+ 32.049173397246875
+ ],
+ [
+ 72.7640315710267,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 32.63311660203224
+ ],
+ [
+ 72.64918888754302,
+ 32.82776433696069
+ ],
+ [
+ 72.41950352057567,
+ 32.82776433696069
+ ],
+ [
+ 72.30466083709199,
+ 32.63311660203224
+ ],
+ [
+ 72.41950352057567,
+ 32.438468867103786
+ ],
+ [
+ 72.64918888754302,
+ 32.438468867103786
+ ],
+ [
+ 72.7640315710267,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 33.02241207188914
+ ],
+ [
+ 72.64918888754302,
+ 33.217059806817595
+ ],
+ [
+ 72.41950352057567,
+ 33.217059806817595
+ ],
+ [
+ 72.30466083709199,
+ 33.02241207188914
+ ],
+ [
+ 72.41950352057567,
+ 32.82776433696069
+ ],
+ [
+ 72.64918888754302,
+ 32.82776433696069
+ ],
+ [
+ 72.7640315710267,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 33.41170754174605
+ ],
+ [
+ 72.64918888754302,
+ 33.6063552766745
+ ],
+ [
+ 72.41950352057567,
+ 33.6063552766745
+ ],
+ [
+ 72.30466083709199,
+ 33.41170754174605
+ ],
+ [
+ 72.41950352057567,
+ 33.217059806817595
+ ],
+ [
+ 72.64918888754302,
+ 33.217059806817595
+ ],
+ [
+ 72.7640315710267,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 33.80100301160295
+ ],
+ [
+ 72.64918888754302,
+ 33.9956507465314
+ ],
+ [
+ 72.41950352057567,
+ 33.9956507465314
+ ],
+ [
+ 72.30466083709199,
+ 33.80100301160295
+ ],
+ [
+ 72.41950352057567,
+ 33.6063552766745
+ ],
+ [
+ 72.64918888754302,
+ 33.6063552766745
+ ],
+ [
+ 72.7640315710267,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 34.190298481459855
+ ],
+ [
+ 72.64918888754302,
+ 34.38494621638831
+ ],
+ [
+ 72.41950352057567,
+ 34.38494621638831
+ ],
+ [
+ 72.30466083709199,
+ 34.190298481459855
+ ],
+ [
+ 72.41950352057567,
+ 33.9956507465314
+ ],
+ [
+ 72.64918888754302,
+ 33.9956507465314
+ ],
+ [
+ 72.7640315710267,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 34.57959395131677
+ ],
+ [
+ 72.64918888754302,
+ 34.77424168624522
+ ],
+ [
+ 72.41950352057567,
+ 34.77424168624522
+ ],
+ [
+ 72.30466083709199,
+ 34.57959395131677
+ ],
+ [
+ 72.41950352057567,
+ 34.384946216388315
+ ],
+ [
+ 72.64918888754302,
+ 34.384946216388315
+ ],
+ [
+ 72.7640315710267,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 34.96888942117368
+ ],
+ [
+ 72.64918888754302,
+ 35.16353715610213
+ ],
+ [
+ 72.41950352057567,
+ 35.16353715610213
+ ],
+ [
+ 72.30466083709199,
+ 34.96888942117368
+ ],
+ [
+ 72.41950352057567,
+ 34.774241686245226
+ ],
+ [
+ 72.64918888754302,
+ 34.774241686245226
+ ],
+ [
+ 72.7640315710267,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 35.35818489103058
+ ],
+ [
+ 72.64918888754302,
+ 35.552832625959034
+ ],
+ [
+ 72.41950352057567,
+ 35.552832625959034
+ ],
+ [
+ 72.30466083709199,
+ 35.35818489103058
+ ],
+ [
+ 72.41950352057567,
+ 35.16353715610213
+ ],
+ [
+ 72.64918888754302,
+ 35.16353715610213
+ ],
+ [
+ 72.7640315710267,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 35.74748036088749
+ ],
+ [
+ 72.64918888754302,
+ 35.94212809581594
+ ],
+ [
+ 72.41950352057567,
+ 35.94212809581594
+ ],
+ [
+ 72.30466083709199,
+ 35.74748036088749
+ ],
+ [
+ 72.41950352057567,
+ 35.552832625959034
+ ],
+ [
+ 72.64918888754302,
+ 35.552832625959034
+ ],
+ [
+ 72.7640315710267,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 36.13677583074439
+ ],
+ [
+ 72.64918888754302,
+ 36.33142356567284
+ ],
+ [
+ 72.41950352057567,
+ 36.33142356567284
+ ],
+ [
+ 72.30466083709199,
+ 36.13677583074439
+ ],
+ [
+ 72.41950352057567,
+ 35.94212809581594
+ ],
+ [
+ 72.64918888754302,
+ 35.94212809581594
+ ],
+ [
+ 72.7640315710267,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 36.526071300601295
+ ],
+ [
+ 72.64918888754302,
+ 36.72071903552975
+ ],
+ [
+ 72.41950352057567,
+ 36.72071903552975
+ ],
+ [
+ 72.30466083709199,
+ 36.526071300601295
+ ],
+ [
+ 72.41950352057567,
+ 36.33142356567284
+ ],
+ [
+ 72.64918888754302,
+ 36.33142356567284
+ ],
+ [
+ 72.7640315710267,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 36.915366770458206
+ ],
+ [
+ 72.64918888754302,
+ 37.11001450538666
+ ],
+ [
+ 72.41950352057567,
+ 37.11001450538666
+ ],
+ [
+ 72.30466083709199,
+ 36.915366770458206
+ ],
+ [
+ 72.41950352057567,
+ 36.720719035529754
+ ],
+ [
+ 72.64918888754302,
+ 36.720719035529754
+ ],
+ [
+ 72.7640315710267,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 37.30466224031511
+ ],
+ [
+ 72.64918888754302,
+ 37.49930997524356
+ ],
+ [
+ 72.41950352057567,
+ 37.49930997524356
+ ],
+ [
+ 72.30466083709199,
+ 37.30466224031511
+ ],
+ [
+ 72.41950352057567,
+ 37.11001450538666
+ ],
+ [
+ 72.64918888754302,
+ 37.11001450538666
+ ],
+ [
+ 72.7640315710267,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 37.69395771017202
+ ],
+ [
+ 72.64918888754302,
+ 37.888605445100474
+ ],
+ [
+ 72.41950352057567,
+ 37.888605445100474
+ ],
+ [
+ 72.30466083709199,
+ 37.69395771017202
+ ],
+ [
+ 72.41950352057567,
+ 37.49930997524357
+ ],
+ [
+ 72.64918888754302,
+ 37.49930997524357
+ ],
+ [
+ 72.7640315710267,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 38.083253180028926
+ ],
+ [
+ 72.64918888754302,
+ 38.27790091495738
+ ],
+ [
+ 72.41950352057567,
+ 38.27790091495738
+ ],
+ [
+ 72.30466083709199,
+ 38.083253180028926
+ ],
+ [
+ 72.41950352057567,
+ 37.888605445100474
+ ],
+ [
+ 72.64918888754302,
+ 37.888605445100474
+ ],
+ [
+ 72.7640315710267,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 38.47254864988583
+ ],
+ [
+ 72.64918888754302,
+ 38.66719638481428
+ ],
+ [
+ 72.41950352057567,
+ 38.66719638481428
+ ],
+ [
+ 72.30466083709199,
+ 38.47254864988583
+ ],
+ [
+ 72.41950352057567,
+ 38.27790091495738
+ ],
+ [
+ 72.64918888754302,
+ 38.27790091495738
+ ],
+ [
+ 72.7640315710267,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 38.861844119742734
+ ],
+ [
+ 72.64918888754302,
+ 39.05649185467119
+ ],
+ [
+ 72.41950352057567,
+ 39.05649185467119
+ ],
+ [
+ 72.30466083709199,
+ 38.861844119742734
+ ],
+ [
+ 72.41950352057567,
+ 38.66719638481428
+ ],
+ [
+ 72.64918888754302,
+ 38.66719638481428
+ ],
+ [
+ 72.7640315710267,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 39.25113958959964
+ ],
+ [
+ 72.64918888754302,
+ 39.44578732452809
+ ],
+ [
+ 72.41950352057567,
+ 39.44578732452809
+ ],
+ [
+ 72.30466083709199,
+ 39.25113958959964
+ ],
+ [
+ 72.41950352057567,
+ 39.05649185467119
+ ],
+ [
+ 72.64918888754302,
+ 39.05649185467119
+ ],
+ [
+ 72.7640315710267,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 39.64043505945655
+ ],
+ [
+ 72.64918888754302,
+ 39.835082794385
+ ],
+ [
+ 72.41950352057567,
+ 39.835082794385
+ ],
+ [
+ 72.30466083709199,
+ 39.64043505945655
+ ],
+ [
+ 72.41950352057567,
+ 39.4457873245281
+ ],
+ [
+ 72.64918888754302,
+ 39.4457873245281
+ ],
+ [
+ 72.7640315710267,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 40.029730529313454
+ ],
+ [
+ 72.64918888754302,
+ 40.224378264241906
+ ],
+ [
+ 72.41950352057567,
+ 40.224378264241906
+ ],
+ [
+ 72.30466083709199,
+ 40.029730529313454
+ ],
+ [
+ 72.41950352057567,
+ 39.835082794385
+ ],
+ [
+ 72.64918888754302,
+ 39.835082794385
+ ],
+ [
+ 72.7640315710267,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 40.419025999170366
+ ],
+ [
+ 72.64918888754302,
+ 40.61367373409882
+ ],
+ [
+ 72.41950352057567,
+ 40.61367373409882
+ ],
+ [
+ 72.30466083709199,
+ 40.419025999170366
+ ],
+ [
+ 72.41950352057567,
+ 40.22437826424191
+ ],
+ [
+ 72.64918888754302,
+ 40.22437826424191
+ ],
+ [
+ 72.7640315710267,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 40.80832146902727
+ ],
+ [
+ 72.64918888754302,
+ 41.00296920395572
+ ],
+ [
+ 72.41950352057567,
+ 41.00296920395572
+ ],
+ [
+ 72.30466083709199,
+ 40.80832146902727
+ ],
+ [
+ 72.41950352057567,
+ 40.61367373409882
+ ],
+ [
+ 72.64918888754302,
+ 40.61367373409882
+ ],
+ [
+ 72.7640315710267,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 41.197616938884174
+ ],
+ [
+ 72.64918888754302,
+ 41.392264673812626
+ ],
+ [
+ 72.41950352057567,
+ 41.392264673812626
+ ],
+ [
+ 72.30466083709199,
+ 41.197616938884174
+ ],
+ [
+ 72.41950352057567,
+ 41.00296920395572
+ ],
+ [
+ 72.64918888754302,
+ 41.00296920395572
+ ],
+ [
+ 72.7640315710267,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 41.58691240874108
+ ],
+ [
+ 72.64918888754302,
+ 41.78156014366953
+ ],
+ [
+ 72.41950352057567,
+ 41.78156014366953
+ ],
+ [
+ 72.30466083709199,
+ 41.58691240874108
+ ],
+ [
+ 72.41950352057567,
+ 41.392264673812626
+ ],
+ [
+ 72.64918888754302,
+ 41.392264673812626
+ ],
+ [
+ 72.7640315710267,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 41.97620787859798
+ ],
+ [
+ 72.64918888754302,
+ 42.170855613526435
+ ],
+ [
+ 72.41950352057567,
+ 42.170855613526435
+ ],
+ [
+ 72.30466083709199,
+ 41.97620787859798
+ ],
+ [
+ 72.41950352057567,
+ 41.78156014366953
+ ],
+ [
+ 72.64918888754302,
+ 41.78156014366953
+ ],
+ [
+ 72.7640315710267,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 42.365503348454894
+ ],
+ [
+ 72.64918888754302,
+ 42.560151083383346
+ ],
+ [
+ 72.41950352057567,
+ 42.560151083383346
+ ],
+ [
+ 72.30466083709199,
+ 42.365503348454894
+ ],
+ [
+ 72.41950352057567,
+ 42.17085561352644
+ ],
+ [
+ 72.64918888754302,
+ 42.17085561352644
+ ],
+ [
+ 72.7640315710267,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 42.754798818311805
+ ],
+ [
+ 72.64918888754302,
+ 42.94944655324026
+ ],
+ [
+ 72.41950352057567,
+ 42.94944655324026
+ ],
+ [
+ 72.30466083709199,
+ 42.754798818311805
+ ],
+ [
+ 72.41950352057567,
+ 42.56015108338335
+ ],
+ [
+ 72.64918888754302,
+ 42.56015108338335
+ ],
+ [
+ 72.7640315710267,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 43.14409428816871
+ ],
+ [
+ 72.64918888754302,
+ 43.33874202309716
+ ],
+ [
+ 72.41950352057567,
+ 43.33874202309716
+ ],
+ [
+ 72.30466083709199,
+ 43.14409428816871
+ ],
+ [
+ 72.41950352057567,
+ 42.94944655324026
+ ],
+ [
+ 72.64918888754302,
+ 42.94944655324026
+ ],
+ [
+ 72.7640315710267,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 43.53338975802561
+ ],
+ [
+ 72.64918888754302,
+ 43.728037492954066
+ ],
+ [
+ 72.41950352057567,
+ 43.728037492954066
+ ],
+ [
+ 72.30466083709199,
+ 43.53338975802561
+ ],
+ [
+ 72.41950352057567,
+ 43.33874202309716
+ ],
+ [
+ 72.64918888754302,
+ 43.33874202309716
+ ],
+ [
+ 72.7640315710267,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 43.92268522788252
+ ],
+ [
+ 72.64918888754302,
+ 44.11733296281097
+ ],
+ [
+ 72.41950352057567,
+ 44.11733296281097
+ ],
+ [
+ 72.30466083709199,
+ 43.92268522788252
+ ],
+ [
+ 72.41950352057567,
+ 43.728037492954066
+ ],
+ [
+ 72.64918888754302,
+ 43.728037492954066
+ ],
+ [
+ 72.7640315710267,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 44.31198069773942
+ ],
+ [
+ 72.64918888754302,
+ 44.506628432667874
+ ],
+ [
+ 72.41950352057567,
+ 44.506628432667874
+ ],
+ [
+ 72.30466083709199,
+ 44.31198069773942
+ ],
+ [
+ 72.41950352057567,
+ 44.11733296281097
+ ],
+ [
+ 72.64918888754302,
+ 44.11733296281097
+ ],
+ [
+ 72.7640315710267,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 44.701276167596326
+ ],
+ [
+ 72.64918888754302,
+ 44.89592390252478
+ ],
+ [
+ 72.41950352057567,
+ 44.89592390252478
+ ],
+ [
+ 72.30466083709199,
+ 44.701276167596326
+ ],
+ [
+ 72.41950352057567,
+ 44.506628432667874
+ ],
+ [
+ 72.64918888754302,
+ 44.506628432667874
+ ],
+ [
+ 72.7640315710267,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 45.090571637453245
+ ],
+ [
+ 72.64918888754302,
+ 45.2852193723817
+ ],
+ [
+ 72.41950352057567,
+ 45.2852193723817
+ ],
+ [
+ 72.30466083709199,
+ 45.090571637453245
+ ],
+ [
+ 72.41950352057567,
+ 44.89592390252479
+ ],
+ [
+ 72.64918888754302,
+ 44.89592390252479
+ ],
+ [
+ 72.7640315710267,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 45.47986710731015
+ ],
+ [
+ 72.64918888754302,
+ 45.6745148422386
+ ],
+ [
+ 72.41950352057567,
+ 45.6745148422386
+ ],
+ [
+ 72.30466083709199,
+ 45.47986710731015
+ ],
+ [
+ 72.41950352057567,
+ 45.2852193723817
+ ],
+ [
+ 72.64918888754302,
+ 45.2852193723817
+ ],
+ [
+ 72.7640315710267,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 45.86916257716705
+ ],
+ [
+ 72.64918888754302,
+ 46.063810312095505
+ ],
+ [
+ 72.41950352057567,
+ 46.063810312095505
+ ],
+ [
+ 72.30466083709199,
+ 45.86916257716705
+ ],
+ [
+ 72.41950352057567,
+ 45.6745148422386
+ ],
+ [
+ 72.64918888754302,
+ 45.6745148422386
+ ],
+ [
+ 72.7640315710267,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 46.25845804702396
+ ],
+ [
+ 72.64918888754302,
+ 46.45310578195241
+ ],
+ [
+ 72.41950352057567,
+ 46.45310578195241
+ ],
+ [
+ 72.30466083709199,
+ 46.25845804702396
+ ],
+ [
+ 72.41950352057567,
+ 46.063810312095505
+ ],
+ [
+ 72.64918888754302,
+ 46.063810312095505
+ ],
+ [
+ 72.7640315710267,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 46.64775351688086
+ ],
+ [
+ 72.64918888754302,
+ 46.842401251809314
+ ],
+ [
+ 72.41950352057567,
+ 46.842401251809314
+ ],
+ [
+ 72.30466083709199,
+ 46.64775351688086
+ ],
+ [
+ 72.41950352057567,
+ 46.45310578195241
+ ],
+ [
+ 72.64918888754302,
+ 46.45310578195241
+ ],
+ [
+ 72.7640315710267,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 47.037048986737766
+ ],
+ [
+ 72.64918888754302,
+ 47.23169672166622
+ ],
+ [
+ 72.41950352057567,
+ 47.23169672166622
+ ],
+ [
+ 72.30466083709199,
+ 47.037048986737766
+ ],
+ [
+ 72.41950352057567,
+ 46.842401251809314
+ ],
+ [
+ 72.64918888754302,
+ 46.842401251809314
+ ],
+ [
+ 72.7640315710267,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 47.42634445659467
+ ],
+ [
+ 72.64918888754302,
+ 47.62099219152312
+ ],
+ [
+ 72.41950352057567,
+ 47.62099219152312
+ ],
+ [
+ 72.30466083709199,
+ 47.42634445659467
+ ],
+ [
+ 72.41950352057567,
+ 47.23169672166622
+ ],
+ [
+ 72.64918888754302,
+ 47.23169672166622
+ ],
+ [
+ 72.7640315710267,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 72.7640315710267,
+ 47.81563992645159
+ ],
+ [
+ 72.64918888754302,
+ 48.01028766138004
+ ],
+ [
+ 72.41950352057567,
+ 48.01028766138004
+ ],
+ [
+ 72.30466083709199,
+ 47.81563992645159
+ ],
+ [
+ 72.41950352057567,
+ 47.620992191523136
+ ],
+ [
+ 72.64918888754302,
+ 47.620992191523136
+ ],
+ [
+ 72.7640315710267,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 11.805808964687746
+ ],
+ [
+ 72.99371693799405,
+ 12.0004566996162
+ ],
+ [
+ 72.7640315710267,
+ 12.0004566996162
+ ],
+ [
+ 72.64918888754302,
+ 11.805808964687746
+ ],
+ [
+ 72.7640315710267,
+ 11.611161229759292
+ ],
+ [
+ 72.99371693799405,
+ 11.611161229759292
+ ],
+ [
+ 73.10855962147774,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 12.195104434544652
+ ],
+ [
+ 72.99371693799405,
+ 12.389752169473105
+ ],
+ [
+ 72.7640315710267,
+ 12.389752169473105
+ ],
+ [
+ 72.64918888754302,
+ 12.195104434544652
+ ],
+ [
+ 72.7640315710267,
+ 12.000456699616198
+ ],
+ [
+ 72.99371693799405,
+ 12.000456699616198
+ ],
+ [
+ 73.10855962147774,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 12.58439990440156
+ ],
+ [
+ 72.99371693799405,
+ 12.779047639330013
+ ],
+ [
+ 72.7640315710267,
+ 12.779047639330013
+ ],
+ [
+ 72.64918888754302,
+ 12.58439990440156
+ ],
+ [
+ 72.7640315710267,
+ 12.389752169473105
+ ],
+ [
+ 72.99371693799405,
+ 12.389752169473105
+ ],
+ [
+ 73.10855962147774,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 12.973695374258465
+ ],
+ [
+ 72.99371693799405,
+ 13.16834310918692
+ ],
+ [
+ 72.7640315710267,
+ 13.16834310918692
+ ],
+ [
+ 72.64918888754302,
+ 12.973695374258465
+ ],
+ [
+ 72.7640315710267,
+ 12.779047639330011
+ ],
+ [
+ 72.99371693799405,
+ 12.779047639330011
+ ],
+ [
+ 73.10855962147774,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 13.362990844115371
+ ],
+ [
+ 72.99371693799405,
+ 13.557638579043825
+ ],
+ [
+ 72.7640315710267,
+ 13.557638579043825
+ ],
+ [
+ 72.64918888754302,
+ 13.362990844115371
+ ],
+ [
+ 72.7640315710267,
+ 13.168343109186917
+ ],
+ [
+ 72.99371693799405,
+ 13.168343109186917
+ ],
+ [
+ 73.10855962147774,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 13.752286313972277
+ ],
+ [
+ 72.99371693799405,
+ 13.946934048900731
+ ],
+ [
+ 72.7640315710267,
+ 13.946934048900731
+ ],
+ [
+ 72.64918888754302,
+ 13.752286313972277
+ ],
+ [
+ 72.7640315710267,
+ 13.557638579043823
+ ],
+ [
+ 72.99371693799405,
+ 13.557638579043823
+ ],
+ [
+ 73.10855962147774,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 14.141581783829183
+ ],
+ [
+ 72.99371693799405,
+ 14.336229518757637
+ ],
+ [
+ 72.7640315710267,
+ 14.336229518757637
+ ],
+ [
+ 72.64918888754302,
+ 14.141581783829183
+ ],
+ [
+ 72.7640315710267,
+ 13.94693404890073
+ ],
+ [
+ 72.99371693799405,
+ 13.94693404890073
+ ],
+ [
+ 73.10855962147774,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 14.530877253686091
+ ],
+ [
+ 72.99371693799405,
+ 14.725524988614545
+ ],
+ [
+ 72.7640315710267,
+ 14.725524988614545
+ ],
+ [
+ 72.64918888754302,
+ 14.530877253686091
+ ],
+ [
+ 72.7640315710267,
+ 14.336229518757637
+ ],
+ [
+ 72.99371693799405,
+ 14.336229518757637
+ ],
+ [
+ 73.10855962147774,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 14.920172723542997
+ ],
+ [
+ 72.99371693799405,
+ 15.114820458471451
+ ],
+ [
+ 72.7640315710267,
+ 15.114820458471451
+ ],
+ [
+ 72.64918888754302,
+ 14.920172723542997
+ ],
+ [
+ 72.7640315710267,
+ 14.725524988614543
+ ],
+ [
+ 72.99371693799405,
+ 14.725524988614543
+ ],
+ [
+ 73.10855962147774,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 15.309468193399903
+ ],
+ [
+ 72.99371693799405,
+ 15.504115928328357
+ ],
+ [
+ 72.7640315710267,
+ 15.504115928328357
+ ],
+ [
+ 72.64918888754302,
+ 15.309468193399903
+ ],
+ [
+ 72.7640315710267,
+ 15.11482045847145
+ ],
+ [
+ 72.99371693799405,
+ 15.11482045847145
+ ],
+ [
+ 73.10855962147774,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 15.69876366325681
+ ],
+ [
+ 72.99371693799405,
+ 15.893411398185265
+ ],
+ [
+ 72.7640315710267,
+ 15.893411398185265
+ ],
+ [
+ 72.64918888754302,
+ 15.69876366325681
+ ],
+ [
+ 72.7640315710267,
+ 15.504115928328357
+ ],
+ [
+ 72.99371693799405,
+ 15.504115928328357
+ ],
+ [
+ 73.10855962147774,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 16.088059133113717
+ ],
+ [
+ 72.99371693799405,
+ 16.28270686804217
+ ],
+ [
+ 72.7640315710267,
+ 16.28270686804217
+ ],
+ [
+ 72.64918888754302,
+ 16.088059133113717
+ ],
+ [
+ 72.7640315710267,
+ 15.893411398185263
+ ],
+ [
+ 72.99371693799405,
+ 15.893411398185263
+ ],
+ [
+ 73.10855962147774,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 16.477354602970625
+ ],
+ [
+ 72.99371693799405,
+ 16.672002337899077
+ ],
+ [
+ 72.7640315710267,
+ 16.672002337899077
+ ],
+ [
+ 72.64918888754302,
+ 16.477354602970625
+ ],
+ [
+ 72.7640315710267,
+ 16.282706868042172
+ ],
+ [
+ 72.99371693799405,
+ 16.282706868042172
+ ],
+ [
+ 73.10855962147774,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 16.86665007282753
+ ],
+ [
+ 72.99371693799405,
+ 17.06129780775598
+ ],
+ [
+ 72.7640315710267,
+ 17.06129780775598
+ ],
+ [
+ 72.64918888754302,
+ 16.86665007282753
+ ],
+ [
+ 72.7640315710267,
+ 16.672002337899077
+ ],
+ [
+ 72.99371693799405,
+ 16.672002337899077
+ ],
+ [
+ 73.10855962147774,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 17.255945542684437
+ ],
+ [
+ 72.99371693799405,
+ 17.45059327761289
+ ],
+ [
+ 72.7640315710267,
+ 17.45059327761289
+ ],
+ [
+ 72.64918888754302,
+ 17.255945542684437
+ ],
+ [
+ 72.7640315710267,
+ 17.061297807755984
+ ],
+ [
+ 72.99371693799405,
+ 17.061297807755984
+ ],
+ [
+ 73.10855962147774,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 17.64524101254134
+ ],
+ [
+ 72.99371693799405,
+ 17.839888747469793
+ ],
+ [
+ 72.7640315710267,
+ 17.839888747469793
+ ],
+ [
+ 72.64918888754302,
+ 17.64524101254134
+ ],
+ [
+ 72.7640315710267,
+ 17.45059327761289
+ ],
+ [
+ 72.99371693799405,
+ 17.45059327761289
+ ],
+ [
+ 73.10855962147774,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 18.03453648239825
+ ],
+ [
+ 72.99371693799405,
+ 18.2291842173267
+ ],
+ [
+ 72.7640315710267,
+ 18.2291842173267
+ ],
+ [
+ 72.64918888754302,
+ 18.03453648239825
+ ],
+ [
+ 72.7640315710267,
+ 17.839888747469796
+ ],
+ [
+ 72.99371693799405,
+ 17.839888747469796
+ ],
+ [
+ 73.10855962147774,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 18.423831952255156
+ ],
+ [
+ 72.99371693799405,
+ 18.61847968718361
+ ],
+ [
+ 72.7640315710267,
+ 18.61847968718361
+ ],
+ [
+ 72.64918888754302,
+ 18.423831952255156
+ ],
+ [
+ 72.7640315710267,
+ 18.229184217326704
+ ],
+ [
+ 72.99371693799405,
+ 18.229184217326704
+ ],
+ [
+ 73.10855962147774,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 18.81312742211206
+ ],
+ [
+ 72.99371693799405,
+ 19.007775157040513
+ ],
+ [
+ 72.7640315710267,
+ 19.007775157040513
+ ],
+ [
+ 72.64918888754302,
+ 18.81312742211206
+ ],
+ [
+ 72.7640315710267,
+ 18.61847968718361
+ ],
+ [
+ 72.99371693799405,
+ 18.61847968718361
+ ],
+ [
+ 73.10855962147774,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 19.20242289196897
+ ],
+ [
+ 72.99371693799405,
+ 19.39707062689742
+ ],
+ [
+ 72.7640315710267,
+ 19.39707062689742
+ ],
+ [
+ 72.64918888754302,
+ 19.20242289196897
+ ],
+ [
+ 72.7640315710267,
+ 19.007775157040516
+ ],
+ [
+ 72.99371693799405,
+ 19.007775157040516
+ ],
+ [
+ 73.10855962147774,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 19.591718361825876
+ ],
+ [
+ 72.99371693799405,
+ 19.78636609675433
+ ],
+ [
+ 72.7640315710267,
+ 19.78636609675433
+ ],
+ [
+ 72.64918888754302,
+ 19.591718361825876
+ ],
+ [
+ 72.7640315710267,
+ 19.397070626897424
+ ],
+ [
+ 72.99371693799405,
+ 19.397070626897424
+ ],
+ [
+ 73.10855962147774,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 19.98101383168278
+ ],
+ [
+ 72.99371693799405,
+ 20.175661566611232
+ ],
+ [
+ 72.7640315710267,
+ 20.175661566611232
+ ],
+ [
+ 72.64918888754302,
+ 19.98101383168278
+ ],
+ [
+ 72.7640315710267,
+ 19.78636609675433
+ ],
+ [
+ 72.99371693799405,
+ 19.78636609675433
+ ],
+ [
+ 73.10855962147774,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 20.370309301539685
+ ],
+ [
+ 72.99371693799405,
+ 20.564957036468137
+ ],
+ [
+ 72.7640315710267,
+ 20.564957036468137
+ ],
+ [
+ 72.64918888754302,
+ 20.370309301539685
+ ],
+ [
+ 72.7640315710267,
+ 20.175661566611232
+ ],
+ [
+ 72.99371693799405,
+ 20.175661566611232
+ ],
+ [
+ 73.10855962147774,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 20.759604771396592
+ ],
+ [
+ 72.99371693799405,
+ 20.954252506325044
+ ],
+ [
+ 72.7640315710267,
+ 20.954252506325044
+ ],
+ [
+ 72.64918888754302,
+ 20.759604771396592
+ ],
+ [
+ 72.7640315710267,
+ 20.56495703646814
+ ],
+ [
+ 72.99371693799405,
+ 20.56495703646814
+ ],
+ [
+ 73.10855962147774,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 21.1489002412535
+ ],
+ [
+ 72.99371693799405,
+ 21.343547976181952
+ ],
+ [
+ 72.7640315710267,
+ 21.343547976181952
+ ],
+ [
+ 72.64918888754302,
+ 21.1489002412535
+ ],
+ [
+ 72.7640315710267,
+ 20.954252506325048
+ ],
+ [
+ 72.99371693799405,
+ 20.954252506325048
+ ],
+ [
+ 73.10855962147774,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 21.538195711110404
+ ],
+ [
+ 72.99371693799405,
+ 21.732843446038856
+ ],
+ [
+ 72.7640315710267,
+ 21.732843446038856
+ ],
+ [
+ 72.64918888754302,
+ 21.538195711110404
+ ],
+ [
+ 72.7640315710267,
+ 21.343547976181952
+ ],
+ [
+ 72.99371693799405,
+ 21.343547976181952
+ ],
+ [
+ 73.10855962147774,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 21.927491180967312
+ ],
+ [
+ 72.99371693799405,
+ 22.122138915895764
+ ],
+ [
+ 72.7640315710267,
+ 22.122138915895764
+ ],
+ [
+ 72.64918888754302,
+ 21.927491180967312
+ ],
+ [
+ 72.7640315710267,
+ 21.73284344603886
+ ],
+ [
+ 72.99371693799405,
+ 21.73284344603886
+ ],
+ [
+ 73.10855962147774,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 22.31678665082422
+ ],
+ [
+ 72.99371693799405,
+ 22.511434385752672
+ ],
+ [
+ 72.7640315710267,
+ 22.511434385752672
+ ],
+ [
+ 72.64918888754302,
+ 22.31678665082422
+ ],
+ [
+ 72.7640315710267,
+ 22.122138915895768
+ ],
+ [
+ 72.99371693799405,
+ 22.122138915895768
+ ],
+ [
+ 73.10855962147774,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 22.706082120681124
+ ],
+ [
+ 72.99371693799405,
+ 22.900729855609576
+ ],
+ [
+ 72.7640315710267,
+ 22.900729855609576
+ ],
+ [
+ 72.64918888754302,
+ 22.706082120681124
+ ],
+ [
+ 72.7640315710267,
+ 22.511434385752672
+ ],
+ [
+ 72.99371693799405,
+ 22.511434385752672
+ ],
+ [
+ 73.10855962147774,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 23.095377590538032
+ ],
+ [
+ 72.99371693799405,
+ 23.290025325466484
+ ],
+ [
+ 72.7640315710267,
+ 23.290025325466484
+ ],
+ [
+ 72.64918888754302,
+ 23.095377590538032
+ ],
+ [
+ 72.7640315710267,
+ 22.90072985560958
+ ],
+ [
+ 72.99371693799405,
+ 22.90072985560958
+ ],
+ [
+ 73.10855962147774,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 23.48467306039494
+ ],
+ [
+ 72.99371693799405,
+ 23.67932079532339
+ ],
+ [
+ 72.7640315710267,
+ 23.67932079532339
+ ],
+ [
+ 72.64918888754302,
+ 23.48467306039494
+ ],
+ [
+ 72.7640315710267,
+ 23.290025325466488
+ ],
+ [
+ 72.99371693799405,
+ 23.290025325466488
+ ],
+ [
+ 73.10855962147774,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 23.873968530251844
+ ],
+ [
+ 72.99371693799405,
+ 24.068616265180296
+ ],
+ [
+ 72.7640315710267,
+ 24.068616265180296
+ ],
+ [
+ 72.64918888754302,
+ 23.873968530251844
+ ],
+ [
+ 72.7640315710267,
+ 23.67932079532339
+ ],
+ [
+ 72.99371693799405,
+ 23.67932079532339
+ ],
+ [
+ 73.10855962147774,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 24.263264000108748
+ ],
+ [
+ 72.99371693799405,
+ 24.4579117350372
+ ],
+ [
+ 72.7640315710267,
+ 24.4579117350372
+ ],
+ [
+ 72.64918888754302,
+ 24.263264000108748
+ ],
+ [
+ 72.7640315710267,
+ 24.068616265180296
+ ],
+ [
+ 72.99371693799405,
+ 24.068616265180296
+ ],
+ [
+ 73.10855962147774,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 24.652559469965656
+ ],
+ [
+ 72.99371693799405,
+ 24.847207204894108
+ ],
+ [
+ 72.7640315710267,
+ 24.847207204894108
+ ],
+ [
+ 72.64918888754302,
+ 24.652559469965656
+ ],
+ [
+ 72.7640315710267,
+ 24.457911735037204
+ ],
+ [
+ 72.99371693799405,
+ 24.457911735037204
+ ],
+ [
+ 73.10855962147774,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 25.041854939822564
+ ],
+ [
+ 72.99371693799405,
+ 25.236502674751016
+ ],
+ [
+ 72.7640315710267,
+ 25.236502674751016
+ ],
+ [
+ 72.64918888754302,
+ 25.041854939822564
+ ],
+ [
+ 72.7640315710267,
+ 24.84720720489411
+ ],
+ [
+ 72.99371693799405,
+ 24.84720720489411
+ ],
+ [
+ 73.10855962147774,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 25.431150409679468
+ ],
+ [
+ 72.99371693799405,
+ 25.62579814460792
+ ],
+ [
+ 72.7640315710267,
+ 25.62579814460792
+ ],
+ [
+ 72.64918888754302,
+ 25.431150409679468
+ ],
+ [
+ 72.7640315710267,
+ 25.236502674751016
+ ],
+ [
+ 72.99371693799405,
+ 25.236502674751016
+ ],
+ [
+ 73.10855962147774,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 25.820445879536376
+ ],
+ [
+ 72.99371693799405,
+ 26.015093614464828
+ ],
+ [
+ 72.7640315710267,
+ 26.015093614464828
+ ],
+ [
+ 72.64918888754302,
+ 25.820445879536376
+ ],
+ [
+ 72.7640315710267,
+ 25.625798144607923
+ ],
+ [
+ 72.99371693799405,
+ 25.625798144607923
+ ],
+ [
+ 73.10855962147774,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 26.209741349393283
+ ],
+ [
+ 72.99371693799405,
+ 26.404389084321735
+ ],
+ [
+ 72.7640315710267,
+ 26.404389084321735
+ ],
+ [
+ 72.64918888754302,
+ 26.209741349393283
+ ],
+ [
+ 72.7640315710267,
+ 26.01509361446483
+ ],
+ [
+ 72.99371693799405,
+ 26.01509361446483
+ ],
+ [
+ 73.10855962147774,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 26.599036819250188
+ ],
+ [
+ 72.99371693799405,
+ 26.79368455417864
+ ],
+ [
+ 72.7640315710267,
+ 26.79368455417864
+ ],
+ [
+ 72.64918888754302,
+ 26.599036819250188
+ ],
+ [
+ 72.7640315710267,
+ 26.404389084321735
+ ],
+ [
+ 72.99371693799405,
+ 26.404389084321735
+ ],
+ [
+ 73.10855962147774,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 26.988332289107095
+ ],
+ [
+ 72.99371693799405,
+ 27.182980024035547
+ ],
+ [
+ 72.7640315710267,
+ 27.182980024035547
+ ],
+ [
+ 72.64918888754302,
+ 26.988332289107095
+ ],
+ [
+ 72.7640315710267,
+ 26.793684554178643
+ ],
+ [
+ 72.99371693799405,
+ 26.793684554178643
+ ],
+ [
+ 73.10855962147774,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 27.377627758964003
+ ],
+ [
+ 72.99371693799405,
+ 27.572275493892455
+ ],
+ [
+ 72.7640315710267,
+ 27.572275493892455
+ ],
+ [
+ 72.64918888754302,
+ 27.377627758964003
+ ],
+ [
+ 72.7640315710267,
+ 27.18298002403555
+ ],
+ [
+ 72.99371693799405,
+ 27.18298002403555
+ ],
+ [
+ 73.10855962147774,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 27.766923228820907
+ ],
+ [
+ 72.99371693799405,
+ 27.96157096374936
+ ],
+ [
+ 72.7640315710267,
+ 27.96157096374936
+ ],
+ [
+ 72.64918888754302,
+ 27.766923228820907
+ ],
+ [
+ 72.7640315710267,
+ 27.572275493892455
+ ],
+ [
+ 72.99371693799405,
+ 27.572275493892455
+ ],
+ [
+ 73.10855962147774,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 28.156218698677815
+ ],
+ [
+ 72.99371693799405,
+ 28.350866433606267
+ ],
+ [
+ 72.7640315710267,
+ 28.350866433606267
+ ],
+ [
+ 72.64918888754302,
+ 28.156218698677815
+ ],
+ [
+ 72.7640315710267,
+ 27.961570963749363
+ ],
+ [
+ 72.99371693799405,
+ 27.961570963749363
+ ],
+ [
+ 73.10855962147774,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 28.54551416853472
+ ],
+ [
+ 72.99371693799405,
+ 28.74016190346317
+ ],
+ [
+ 72.7640315710267,
+ 28.74016190346317
+ ],
+ [
+ 72.64918888754302,
+ 28.54551416853472
+ ],
+ [
+ 72.7640315710267,
+ 28.350866433606267
+ ],
+ [
+ 72.99371693799405,
+ 28.350866433606267
+ ],
+ [
+ 73.10855962147774,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 28.934809638391627
+ ],
+ [
+ 72.99371693799405,
+ 29.12945737332008
+ ],
+ [
+ 72.7640315710267,
+ 29.12945737332008
+ ],
+ [
+ 72.64918888754302,
+ 28.934809638391627
+ ],
+ [
+ 72.7640315710267,
+ 28.740161903463175
+ ],
+ [
+ 72.99371693799405,
+ 28.740161903463175
+ ],
+ [
+ 73.10855962147774,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 29.32410510824853
+ ],
+ [
+ 72.99371693799405,
+ 29.518752843176983
+ ],
+ [
+ 72.7640315710267,
+ 29.518752843176983
+ ],
+ [
+ 72.64918888754302,
+ 29.32410510824853
+ ],
+ [
+ 72.7640315710267,
+ 29.12945737332008
+ ],
+ [
+ 72.99371693799405,
+ 29.12945737332008
+ ],
+ [
+ 73.10855962147774,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 29.71340057810544
+ ],
+ [
+ 72.99371693799405,
+ 29.90804831303389
+ ],
+ [
+ 72.7640315710267,
+ 29.90804831303389
+ ],
+ [
+ 72.64918888754302,
+ 29.71340057810544
+ ],
+ [
+ 72.7640315710267,
+ 29.518752843176987
+ ],
+ [
+ 72.99371693799405,
+ 29.518752843176987
+ ],
+ [
+ 73.10855962147774,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 30.102696047962343
+ ],
+ [
+ 72.99371693799405,
+ 30.297343782890795
+ ],
+ [
+ 72.7640315710267,
+ 30.297343782890795
+ ],
+ [
+ 72.64918888754302,
+ 30.102696047962343
+ ],
+ [
+ 72.7640315710267,
+ 29.90804831303389
+ ],
+ [
+ 72.99371693799405,
+ 29.90804831303389
+ ],
+ [
+ 73.10855962147774,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 30.49199151781925
+ ],
+ [
+ 72.99371693799405,
+ 30.686639252747703
+ ],
+ [
+ 72.7640315710267,
+ 30.686639252747703
+ ],
+ [
+ 72.64918888754302,
+ 30.49199151781925
+ ],
+ [
+ 72.7640315710267,
+ 30.2973437828908
+ ],
+ [
+ 72.99371693799405,
+ 30.2973437828908
+ ],
+ [
+ 73.10855962147774,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 30.88128698767616
+ ],
+ [
+ 72.99371693799405,
+ 31.07593472260461
+ ],
+ [
+ 72.7640315710267,
+ 31.07593472260461
+ ],
+ [
+ 72.64918888754302,
+ 30.88128698767616
+ ],
+ [
+ 72.7640315710267,
+ 30.686639252747707
+ ],
+ [
+ 72.99371693799405,
+ 30.686639252747707
+ ],
+ [
+ 73.10855962147774,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 31.270582457533063
+ ],
+ [
+ 72.99371693799405,
+ 31.465230192461515
+ ],
+ [
+ 72.7640315710267,
+ 31.465230192461515
+ ],
+ [
+ 72.64918888754302,
+ 31.270582457533063
+ ],
+ [
+ 72.7640315710267,
+ 31.07593472260461
+ ],
+ [
+ 72.99371693799405,
+ 31.07593472260461
+ ],
+ [
+ 73.10855962147774,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 31.65987792738997
+ ],
+ [
+ 72.99371693799405,
+ 31.854525662318423
+ ],
+ [
+ 72.7640315710267,
+ 31.854525662318423
+ ],
+ [
+ 72.64918888754302,
+ 31.65987792738997
+ ],
+ [
+ 72.7640315710267,
+ 31.46523019246152
+ ],
+ [
+ 72.99371693799405,
+ 31.46523019246152
+ ],
+ [
+ 73.10855962147774,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 32.049173397246875
+ ],
+ [
+ 72.99371693799405,
+ 32.24382113217533
+ ],
+ [
+ 72.7640315710267,
+ 32.24382113217533
+ ],
+ [
+ 72.64918888754302,
+ 32.049173397246875
+ ],
+ [
+ 72.7640315710267,
+ 31.854525662318423
+ ],
+ [
+ 72.99371693799405,
+ 31.854525662318423
+ ],
+ [
+ 73.10855962147774,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 32.438468867103786
+ ],
+ [
+ 72.99371693799405,
+ 32.63311660203224
+ ],
+ [
+ 72.7640315710267,
+ 32.63311660203224
+ ],
+ [
+ 72.64918888754302,
+ 32.438468867103786
+ ],
+ [
+ 72.7640315710267,
+ 32.243821132175334
+ ],
+ [
+ 72.99371693799405,
+ 32.243821132175334
+ ],
+ [
+ 73.10855962147774,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 32.82776433696069
+ ],
+ [
+ 72.99371693799405,
+ 33.02241207188914
+ ],
+ [
+ 72.7640315710267,
+ 33.02241207188914
+ ],
+ [
+ 72.64918888754302,
+ 32.82776433696069
+ ],
+ [
+ 72.7640315710267,
+ 32.63311660203224
+ ],
+ [
+ 72.99371693799405,
+ 32.63311660203224
+ ],
+ [
+ 73.10855962147774,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 33.217059806817595
+ ],
+ [
+ 72.99371693799405,
+ 33.41170754174605
+ ],
+ [
+ 72.7640315710267,
+ 33.41170754174605
+ ],
+ [
+ 72.64918888754302,
+ 33.217059806817595
+ ],
+ [
+ 72.7640315710267,
+ 33.02241207188914
+ ],
+ [
+ 72.99371693799405,
+ 33.02241207188914
+ ],
+ [
+ 73.10855962147774,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 33.6063552766745
+ ],
+ [
+ 72.99371693799405,
+ 33.80100301160295
+ ],
+ [
+ 72.7640315710267,
+ 33.80100301160295
+ ],
+ [
+ 72.64918888754302,
+ 33.6063552766745
+ ],
+ [
+ 72.7640315710267,
+ 33.41170754174605
+ ],
+ [
+ 72.99371693799405,
+ 33.41170754174605
+ ],
+ [
+ 73.10855962147774,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 33.9956507465314
+ ],
+ [
+ 72.99371693799405,
+ 34.190298481459855
+ ],
+ [
+ 72.7640315710267,
+ 34.190298481459855
+ ],
+ [
+ 72.64918888754302,
+ 33.9956507465314
+ ],
+ [
+ 72.7640315710267,
+ 33.80100301160295
+ ],
+ [
+ 72.99371693799405,
+ 33.80100301160295
+ ],
+ [
+ 73.10855962147774,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 34.384946216388315
+ ],
+ [
+ 72.99371693799405,
+ 34.57959395131677
+ ],
+ [
+ 72.7640315710267,
+ 34.57959395131677
+ ],
+ [
+ 72.64918888754302,
+ 34.384946216388315
+ ],
+ [
+ 72.7640315710267,
+ 34.19029848145986
+ ],
+ [
+ 72.99371693799405,
+ 34.19029848145986
+ ],
+ [
+ 73.10855962147774,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 34.774241686245226
+ ],
+ [
+ 72.99371693799405,
+ 34.96888942117368
+ ],
+ [
+ 72.7640315710267,
+ 34.96888942117368
+ ],
+ [
+ 72.64918888754302,
+ 34.774241686245226
+ ],
+ [
+ 72.7640315710267,
+ 34.579593951316774
+ ],
+ [
+ 72.99371693799405,
+ 34.579593951316774
+ ],
+ [
+ 73.10855962147774,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 35.16353715610213
+ ],
+ [
+ 72.99371693799405,
+ 35.35818489103058
+ ],
+ [
+ 72.7640315710267,
+ 35.35818489103058
+ ],
+ [
+ 72.64918888754302,
+ 35.16353715610213
+ ],
+ [
+ 72.7640315710267,
+ 34.96888942117368
+ ],
+ [
+ 72.99371693799405,
+ 34.96888942117368
+ ],
+ [
+ 73.10855962147774,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 35.552832625959034
+ ],
+ [
+ 72.99371693799405,
+ 35.74748036088749
+ ],
+ [
+ 72.7640315710267,
+ 35.74748036088749
+ ],
+ [
+ 72.64918888754302,
+ 35.552832625959034
+ ],
+ [
+ 72.7640315710267,
+ 35.35818489103058
+ ],
+ [
+ 72.99371693799405,
+ 35.35818489103058
+ ],
+ [
+ 73.10855962147774,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 35.94212809581594
+ ],
+ [
+ 72.99371693799405,
+ 36.13677583074439
+ ],
+ [
+ 72.7640315710267,
+ 36.13677583074439
+ ],
+ [
+ 72.64918888754302,
+ 35.94212809581594
+ ],
+ [
+ 72.7640315710267,
+ 35.74748036088749
+ ],
+ [
+ 72.99371693799405,
+ 35.74748036088749
+ ],
+ [
+ 73.10855962147774,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 36.33142356567284
+ ],
+ [
+ 72.99371693799405,
+ 36.526071300601295
+ ],
+ [
+ 72.7640315710267,
+ 36.526071300601295
+ ],
+ [
+ 72.64918888754302,
+ 36.33142356567284
+ ],
+ [
+ 72.7640315710267,
+ 36.13677583074439
+ ],
+ [
+ 72.99371693799405,
+ 36.13677583074439
+ ],
+ [
+ 73.10855962147774,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 36.720719035529754
+ ],
+ [
+ 72.99371693799405,
+ 36.915366770458206
+ ],
+ [
+ 72.7640315710267,
+ 36.915366770458206
+ ],
+ [
+ 72.64918888754302,
+ 36.720719035529754
+ ],
+ [
+ 72.7640315710267,
+ 36.5260713006013
+ ],
+ [
+ 72.99371693799405,
+ 36.5260713006013
+ ],
+ [
+ 73.10855962147774,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 37.11001450538666
+ ],
+ [
+ 72.99371693799405,
+ 37.30466224031511
+ ],
+ [
+ 72.7640315710267,
+ 37.30466224031511
+ ],
+ [
+ 72.64918888754302,
+ 37.11001450538666
+ ],
+ [
+ 72.7640315710267,
+ 36.915366770458206
+ ],
+ [
+ 72.99371693799405,
+ 36.915366770458206
+ ],
+ [
+ 73.10855962147774,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 37.49930997524357
+ ],
+ [
+ 72.99371693799405,
+ 37.69395771017202
+ ],
+ [
+ 72.7640315710267,
+ 37.69395771017202
+ ],
+ [
+ 72.64918888754302,
+ 37.49930997524357
+ ],
+ [
+ 72.7640315710267,
+ 37.30466224031512
+ ],
+ [
+ 72.99371693799405,
+ 37.30466224031512
+ ],
+ [
+ 73.10855962147774,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 37.888605445100474
+ ],
+ [
+ 72.99371693799405,
+ 38.083253180028926
+ ],
+ [
+ 72.7640315710267,
+ 38.083253180028926
+ ],
+ [
+ 72.64918888754302,
+ 37.888605445100474
+ ],
+ [
+ 72.7640315710267,
+ 37.69395771017202
+ ],
+ [
+ 72.99371693799405,
+ 37.69395771017202
+ ],
+ [
+ 73.10855962147774,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 38.27790091495738
+ ],
+ [
+ 72.99371693799405,
+ 38.47254864988583
+ ],
+ [
+ 72.7640315710267,
+ 38.47254864988583
+ ],
+ [
+ 72.64918888754302,
+ 38.27790091495738
+ ],
+ [
+ 72.7640315710267,
+ 38.083253180028926
+ ],
+ [
+ 72.99371693799405,
+ 38.083253180028926
+ ],
+ [
+ 73.10855962147774,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 38.66719638481428
+ ],
+ [
+ 72.99371693799405,
+ 38.861844119742734
+ ],
+ [
+ 72.7640315710267,
+ 38.861844119742734
+ ],
+ [
+ 72.64918888754302,
+ 38.66719638481428
+ ],
+ [
+ 72.7640315710267,
+ 38.47254864988583
+ ],
+ [
+ 72.99371693799405,
+ 38.47254864988583
+ ],
+ [
+ 73.10855962147774,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 39.05649185467119
+ ],
+ [
+ 72.99371693799405,
+ 39.25113958959964
+ ],
+ [
+ 72.7640315710267,
+ 39.25113958959964
+ ],
+ [
+ 72.64918888754302,
+ 39.05649185467119
+ ],
+ [
+ 72.7640315710267,
+ 38.861844119742734
+ ],
+ [
+ 72.99371693799405,
+ 38.861844119742734
+ ],
+ [
+ 73.10855962147774,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 39.4457873245281
+ ],
+ [
+ 72.99371693799405,
+ 39.64043505945655
+ ],
+ [
+ 72.7640315710267,
+ 39.64043505945655
+ ],
+ [
+ 72.64918888754302,
+ 39.4457873245281
+ ],
+ [
+ 72.7640315710267,
+ 39.251139589599646
+ ],
+ [
+ 72.99371693799405,
+ 39.251139589599646
+ ],
+ [
+ 73.10855962147774,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 39.835082794385
+ ],
+ [
+ 72.99371693799405,
+ 40.029730529313454
+ ],
+ [
+ 72.7640315710267,
+ 40.029730529313454
+ ],
+ [
+ 72.64918888754302,
+ 39.835082794385
+ ],
+ [
+ 72.7640315710267,
+ 39.64043505945655
+ ],
+ [
+ 72.99371693799405,
+ 39.64043505945655
+ ],
+ [
+ 73.10855962147774,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 40.22437826424191
+ ],
+ [
+ 72.99371693799405,
+ 40.419025999170366
+ ],
+ [
+ 72.7640315710267,
+ 40.419025999170366
+ ],
+ [
+ 72.64918888754302,
+ 40.22437826424191
+ ],
+ [
+ 72.7640315710267,
+ 40.02973052931346
+ ],
+ [
+ 72.99371693799405,
+ 40.02973052931346
+ ],
+ [
+ 73.10855962147774,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 40.61367373409882
+ ],
+ [
+ 72.99371693799405,
+ 40.80832146902727
+ ],
+ [
+ 72.7640315710267,
+ 40.80832146902727
+ ],
+ [
+ 72.64918888754302,
+ 40.61367373409882
+ ],
+ [
+ 72.7640315710267,
+ 40.419025999170366
+ ],
+ [
+ 72.99371693799405,
+ 40.419025999170366
+ ],
+ [
+ 73.10855962147774,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 41.00296920395572
+ ],
+ [
+ 72.99371693799405,
+ 41.197616938884174
+ ],
+ [
+ 72.7640315710267,
+ 41.197616938884174
+ ],
+ [
+ 72.64918888754302,
+ 41.00296920395572
+ ],
+ [
+ 72.7640315710267,
+ 40.80832146902727
+ ],
+ [
+ 72.99371693799405,
+ 40.80832146902727
+ ],
+ [
+ 73.10855962147774,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 41.392264673812626
+ ],
+ [
+ 72.99371693799405,
+ 41.58691240874108
+ ],
+ [
+ 72.7640315710267,
+ 41.58691240874108
+ ],
+ [
+ 72.64918888754302,
+ 41.392264673812626
+ ],
+ [
+ 72.7640315710267,
+ 41.197616938884174
+ ],
+ [
+ 72.99371693799405,
+ 41.197616938884174
+ ],
+ [
+ 73.10855962147774,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 41.78156014366953
+ ],
+ [
+ 72.99371693799405,
+ 41.97620787859798
+ ],
+ [
+ 72.7640315710267,
+ 41.97620787859798
+ ],
+ [
+ 72.64918888754302,
+ 41.78156014366953
+ ],
+ [
+ 72.7640315710267,
+ 41.58691240874108
+ ],
+ [
+ 72.99371693799405,
+ 41.58691240874108
+ ],
+ [
+ 73.10855962147774,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 42.17085561352644
+ ],
+ [
+ 72.99371693799405,
+ 42.365503348454894
+ ],
+ [
+ 72.7640315710267,
+ 42.365503348454894
+ ],
+ [
+ 72.64918888754302,
+ 42.17085561352644
+ ],
+ [
+ 72.7640315710267,
+ 41.97620787859799
+ ],
+ [
+ 72.99371693799405,
+ 41.97620787859799
+ ],
+ [
+ 73.10855962147774,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 42.56015108338335
+ ],
+ [
+ 72.99371693799405,
+ 42.754798818311805
+ ],
+ [
+ 72.7640315710267,
+ 42.754798818311805
+ ],
+ [
+ 72.64918888754302,
+ 42.56015108338335
+ ],
+ [
+ 72.7640315710267,
+ 42.3655033484549
+ ],
+ [
+ 72.99371693799405,
+ 42.3655033484549
+ ],
+ [
+ 73.10855962147774,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 42.94944655324026
+ ],
+ [
+ 72.99371693799405,
+ 43.14409428816871
+ ],
+ [
+ 72.7640315710267,
+ 43.14409428816871
+ ],
+ [
+ 72.64918888754302,
+ 42.94944655324026
+ ],
+ [
+ 72.7640315710267,
+ 42.754798818311805
+ ],
+ [
+ 72.99371693799405,
+ 42.754798818311805
+ ],
+ [
+ 73.10855962147774,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 43.33874202309716
+ ],
+ [
+ 72.99371693799405,
+ 43.53338975802561
+ ],
+ [
+ 72.7640315710267,
+ 43.53338975802561
+ ],
+ [
+ 72.64918888754302,
+ 43.33874202309716
+ ],
+ [
+ 72.7640315710267,
+ 43.14409428816871
+ ],
+ [
+ 72.99371693799405,
+ 43.14409428816871
+ ],
+ [
+ 73.10855962147774,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 43.728037492954066
+ ],
+ [
+ 72.99371693799405,
+ 43.92268522788252
+ ],
+ [
+ 72.7640315710267,
+ 43.92268522788252
+ ],
+ [
+ 72.64918888754302,
+ 43.728037492954066
+ ],
+ [
+ 72.7640315710267,
+ 43.53338975802561
+ ],
+ [
+ 72.99371693799405,
+ 43.53338975802561
+ ],
+ [
+ 73.10855962147774,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 44.11733296281097
+ ],
+ [
+ 72.99371693799405,
+ 44.31198069773942
+ ],
+ [
+ 72.7640315710267,
+ 44.31198069773942
+ ],
+ [
+ 72.64918888754302,
+ 44.11733296281097
+ ],
+ [
+ 72.7640315710267,
+ 43.92268522788252
+ ],
+ [
+ 72.99371693799405,
+ 43.92268522788252
+ ],
+ [
+ 73.10855962147774,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 44.506628432667874
+ ],
+ [
+ 72.99371693799405,
+ 44.701276167596326
+ ],
+ [
+ 72.7640315710267,
+ 44.701276167596326
+ ],
+ [
+ 72.64918888754302,
+ 44.506628432667874
+ ],
+ [
+ 72.7640315710267,
+ 44.31198069773942
+ ],
+ [
+ 72.99371693799405,
+ 44.31198069773942
+ ],
+ [
+ 73.10855962147774,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 44.89592390252479
+ ],
+ [
+ 72.99371693799405,
+ 45.090571637453245
+ ],
+ [
+ 72.7640315710267,
+ 45.090571637453245
+ ],
+ [
+ 72.64918888754302,
+ 44.89592390252479
+ ],
+ [
+ 72.7640315710267,
+ 44.70127616759634
+ ],
+ [
+ 72.99371693799405,
+ 44.70127616759634
+ ],
+ [
+ 73.10855962147774,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 45.2852193723817
+ ],
+ [
+ 72.99371693799405,
+ 45.47986710731015
+ ],
+ [
+ 72.7640315710267,
+ 45.47986710731015
+ ],
+ [
+ 72.64918888754302,
+ 45.2852193723817
+ ],
+ [
+ 72.7640315710267,
+ 45.090571637453245
+ ],
+ [
+ 72.99371693799405,
+ 45.090571637453245
+ ],
+ [
+ 73.10855962147774,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 45.6745148422386
+ ],
+ [
+ 72.99371693799405,
+ 45.86916257716705
+ ],
+ [
+ 72.7640315710267,
+ 45.86916257716705
+ ],
+ [
+ 72.64918888754302,
+ 45.6745148422386
+ ],
+ [
+ 72.7640315710267,
+ 45.47986710731015
+ ],
+ [
+ 72.99371693799405,
+ 45.47986710731015
+ ],
+ [
+ 73.10855962147774,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 46.063810312095505
+ ],
+ [
+ 72.99371693799405,
+ 46.25845804702396
+ ],
+ [
+ 72.7640315710267,
+ 46.25845804702396
+ ],
+ [
+ 72.64918888754302,
+ 46.063810312095505
+ ],
+ [
+ 72.7640315710267,
+ 45.86916257716705
+ ],
+ [
+ 72.99371693799405,
+ 45.86916257716705
+ ],
+ [
+ 73.10855962147774,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 46.45310578195241
+ ],
+ [
+ 72.99371693799405,
+ 46.64775351688086
+ ],
+ [
+ 72.7640315710267,
+ 46.64775351688086
+ ],
+ [
+ 72.64918888754302,
+ 46.45310578195241
+ ],
+ [
+ 72.7640315710267,
+ 46.25845804702396
+ ],
+ [
+ 72.99371693799405,
+ 46.25845804702396
+ ],
+ [
+ 73.10855962147774,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 46.842401251809314
+ ],
+ [
+ 72.99371693799405,
+ 47.037048986737766
+ ],
+ [
+ 72.7640315710267,
+ 47.037048986737766
+ ],
+ [
+ 72.64918888754302,
+ 46.842401251809314
+ ],
+ [
+ 72.7640315710267,
+ 46.64775351688086
+ ],
+ [
+ 72.99371693799405,
+ 46.64775351688086
+ ],
+ [
+ 73.10855962147774,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 47.23169672166622
+ ],
+ [
+ 72.99371693799405,
+ 47.42634445659467
+ ],
+ [
+ 72.7640315710267,
+ 47.42634445659467
+ ],
+ [
+ 72.64918888754302,
+ 47.23169672166622
+ ],
+ [
+ 72.7640315710267,
+ 47.037048986737766
+ ],
+ [
+ 72.99371693799405,
+ 47.037048986737766
+ ],
+ [
+ 73.10855962147774,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.10855962147774,
+ 47.620992191523136
+ ],
+ [
+ 72.99371693799405,
+ 47.81563992645159
+ ],
+ [
+ 72.7640315710267,
+ 47.81563992645159
+ ],
+ [
+ 72.64918888754302,
+ 47.620992191523136
+ ],
+ [
+ 72.7640315710267,
+ 47.426344456594684
+ ],
+ [
+ 72.99371693799405,
+ 47.426344456594684
+ ],
+ [
+ 73.10855962147774,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 12.0004566996162
+ ],
+ [
+ 73.33824498844508,
+ 12.195104434544653
+ ],
+ [
+ 73.10855962147774,
+ 12.195104434544653
+ ],
+ [
+ 72.99371693799405,
+ 12.0004566996162
+ ],
+ [
+ 73.10855962147774,
+ 11.805808964687746
+ ],
+ [
+ 73.33824498844508,
+ 11.805808964687746
+ ],
+ [
+ 73.45308767192877,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 12.389752169473105
+ ],
+ [
+ 73.33824498844508,
+ 12.58439990440156
+ ],
+ [
+ 73.10855962147774,
+ 12.58439990440156
+ ],
+ [
+ 72.99371693799405,
+ 12.389752169473105
+ ],
+ [
+ 73.10855962147774,
+ 12.195104434544652
+ ],
+ [
+ 73.33824498844508,
+ 12.195104434544652
+ ],
+ [
+ 73.45308767192877,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 12.779047639330013
+ ],
+ [
+ 73.33824498844508,
+ 12.973695374258467
+ ],
+ [
+ 73.10855962147774,
+ 12.973695374258467
+ ],
+ [
+ 72.99371693799405,
+ 12.779047639330013
+ ],
+ [
+ 73.10855962147774,
+ 12.58439990440156
+ ],
+ [
+ 73.33824498844508,
+ 12.58439990440156
+ ],
+ [
+ 73.45308767192877,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 13.16834310918692
+ ],
+ [
+ 73.33824498844508,
+ 13.362990844115373
+ ],
+ [
+ 73.10855962147774,
+ 13.362990844115373
+ ],
+ [
+ 72.99371693799405,
+ 13.16834310918692
+ ],
+ [
+ 73.10855962147774,
+ 12.973695374258465
+ ],
+ [
+ 73.33824498844508,
+ 12.973695374258465
+ ],
+ [
+ 73.45308767192877,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 13.557638579043825
+ ],
+ [
+ 73.33824498844508,
+ 13.752286313972279
+ ],
+ [
+ 73.10855962147774,
+ 13.752286313972279
+ ],
+ [
+ 72.99371693799405,
+ 13.557638579043825
+ ],
+ [
+ 73.10855962147774,
+ 13.362990844115371
+ ],
+ [
+ 73.33824498844508,
+ 13.362990844115371
+ ],
+ [
+ 73.45308767192877,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 13.946934048900731
+ ],
+ [
+ 73.33824498844508,
+ 14.141581783829185
+ ],
+ [
+ 73.10855962147774,
+ 14.141581783829185
+ ],
+ [
+ 72.99371693799405,
+ 13.946934048900731
+ ],
+ [
+ 73.10855962147774,
+ 13.752286313972277
+ ],
+ [
+ 73.33824498844508,
+ 13.752286313972277
+ ],
+ [
+ 73.45308767192877,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 14.336229518757637
+ ],
+ [
+ 73.33824498844508,
+ 14.530877253686091
+ ],
+ [
+ 73.10855962147774,
+ 14.530877253686091
+ ],
+ [
+ 72.99371693799405,
+ 14.336229518757637
+ ],
+ [
+ 73.10855962147774,
+ 14.141581783829183
+ ],
+ [
+ 73.33824498844508,
+ 14.141581783829183
+ ],
+ [
+ 73.45308767192877,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 14.725524988614545
+ ],
+ [
+ 73.33824498844508,
+ 14.920172723542999
+ ],
+ [
+ 73.10855962147774,
+ 14.920172723542999
+ ],
+ [
+ 72.99371693799405,
+ 14.725524988614545
+ ],
+ [
+ 73.10855962147774,
+ 14.530877253686091
+ ],
+ [
+ 73.33824498844508,
+ 14.530877253686091
+ ],
+ [
+ 73.45308767192877,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 15.114820458471451
+ ],
+ [
+ 73.33824498844508,
+ 15.309468193399905
+ ],
+ [
+ 73.10855962147774,
+ 15.309468193399905
+ ],
+ [
+ 72.99371693799405,
+ 15.114820458471451
+ ],
+ [
+ 73.10855962147774,
+ 14.920172723542997
+ ],
+ [
+ 73.33824498844508,
+ 14.920172723542997
+ ],
+ [
+ 73.45308767192877,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 15.504115928328357
+ ],
+ [
+ 73.33824498844508,
+ 15.69876366325681
+ ],
+ [
+ 73.10855962147774,
+ 15.69876366325681
+ ],
+ [
+ 72.99371693799405,
+ 15.504115928328357
+ ],
+ [
+ 73.10855962147774,
+ 15.309468193399903
+ ],
+ [
+ 73.33824498844508,
+ 15.309468193399903
+ ],
+ [
+ 73.45308767192877,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 15.893411398185265
+ ],
+ [
+ 73.33824498844508,
+ 16.088059133113717
+ ],
+ [
+ 73.10855962147774,
+ 16.088059133113717
+ ],
+ [
+ 72.99371693799405,
+ 15.893411398185265
+ ],
+ [
+ 73.10855962147774,
+ 15.69876366325681
+ ],
+ [
+ 73.33824498844508,
+ 15.69876366325681
+ ],
+ [
+ 73.45308767192877,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 16.28270686804217
+ ],
+ [
+ 73.33824498844508,
+ 16.47735460297062
+ ],
+ [
+ 73.10855962147774,
+ 16.47735460297062
+ ],
+ [
+ 72.99371693799405,
+ 16.28270686804217
+ ],
+ [
+ 73.10855962147774,
+ 16.088059133113717
+ ],
+ [
+ 73.33824498844508,
+ 16.088059133113717
+ ],
+ [
+ 73.45308767192877,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 16.672002337899077
+ ],
+ [
+ 73.33824498844508,
+ 16.86665007282753
+ ],
+ [
+ 73.10855962147774,
+ 16.86665007282753
+ ],
+ [
+ 72.99371693799405,
+ 16.672002337899077
+ ],
+ [
+ 73.10855962147774,
+ 16.477354602970625
+ ],
+ [
+ 73.33824498844508,
+ 16.477354602970625
+ ],
+ [
+ 73.45308767192877,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 17.06129780775598
+ ],
+ [
+ 73.33824498844508,
+ 17.255945542684433
+ ],
+ [
+ 73.10855962147774,
+ 17.255945542684433
+ ],
+ [
+ 72.99371693799405,
+ 17.06129780775598
+ ],
+ [
+ 73.10855962147774,
+ 16.86665007282753
+ ],
+ [
+ 73.33824498844508,
+ 16.86665007282753
+ ],
+ [
+ 73.45308767192877,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 17.45059327761289
+ ],
+ [
+ 73.33824498844508,
+ 17.64524101254134
+ ],
+ [
+ 73.10855962147774,
+ 17.64524101254134
+ ],
+ [
+ 72.99371693799405,
+ 17.45059327761289
+ ],
+ [
+ 73.10855962147774,
+ 17.255945542684437
+ ],
+ [
+ 73.33824498844508,
+ 17.255945542684437
+ ],
+ [
+ 73.45308767192877,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 17.839888747469793
+ ],
+ [
+ 73.33824498844508,
+ 18.034536482398245
+ ],
+ [
+ 73.10855962147774,
+ 18.034536482398245
+ ],
+ [
+ 72.99371693799405,
+ 17.839888747469793
+ ],
+ [
+ 73.10855962147774,
+ 17.64524101254134
+ ],
+ [
+ 73.33824498844508,
+ 17.64524101254134
+ ],
+ [
+ 73.45308767192877,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 18.2291842173267
+ ],
+ [
+ 73.33824498844508,
+ 18.423831952255153
+ ],
+ [
+ 73.10855962147774,
+ 18.423831952255153
+ ],
+ [
+ 72.99371693799405,
+ 18.2291842173267
+ ],
+ [
+ 73.10855962147774,
+ 18.03453648239825
+ ],
+ [
+ 73.33824498844508,
+ 18.03453648239825
+ ],
+ [
+ 73.45308767192877,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 18.61847968718361
+ ],
+ [
+ 73.33824498844508,
+ 18.81312742211206
+ ],
+ [
+ 73.10855962147774,
+ 18.81312742211206
+ ],
+ [
+ 72.99371693799405,
+ 18.61847968718361
+ ],
+ [
+ 73.10855962147774,
+ 18.423831952255156
+ ],
+ [
+ 73.33824498844508,
+ 18.423831952255156
+ ],
+ [
+ 73.45308767192877,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 19.007775157040513
+ ],
+ [
+ 73.33824498844508,
+ 19.202422891968965
+ ],
+ [
+ 73.10855962147774,
+ 19.202422891968965
+ ],
+ [
+ 72.99371693799405,
+ 19.007775157040513
+ ],
+ [
+ 73.10855962147774,
+ 18.81312742211206
+ ],
+ [
+ 73.33824498844508,
+ 18.81312742211206
+ ],
+ [
+ 73.45308767192877,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 19.39707062689742
+ ],
+ [
+ 73.33824498844508,
+ 19.591718361825873
+ ],
+ [
+ 73.10855962147774,
+ 19.591718361825873
+ ],
+ [
+ 72.99371693799405,
+ 19.39707062689742
+ ],
+ [
+ 73.10855962147774,
+ 19.20242289196897
+ ],
+ [
+ 73.33824498844508,
+ 19.20242289196897
+ ],
+ [
+ 73.45308767192877,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 19.78636609675433
+ ],
+ [
+ 73.33824498844508,
+ 19.98101383168278
+ ],
+ [
+ 73.10855962147774,
+ 19.98101383168278
+ ],
+ [
+ 72.99371693799405,
+ 19.78636609675433
+ ],
+ [
+ 73.10855962147774,
+ 19.591718361825876
+ ],
+ [
+ 73.33824498844508,
+ 19.591718361825876
+ ],
+ [
+ 73.45308767192877,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 20.175661566611232
+ ],
+ [
+ 73.33824498844508,
+ 20.370309301539685
+ ],
+ [
+ 73.10855962147774,
+ 20.370309301539685
+ ],
+ [
+ 72.99371693799405,
+ 20.175661566611232
+ ],
+ [
+ 73.10855962147774,
+ 19.98101383168278
+ ],
+ [
+ 73.33824498844508,
+ 19.98101383168278
+ ],
+ [
+ 73.45308767192877,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 20.564957036468137
+ ],
+ [
+ 73.33824498844508,
+ 20.75960477139659
+ ],
+ [
+ 73.10855962147774,
+ 20.75960477139659
+ ],
+ [
+ 72.99371693799405,
+ 20.564957036468137
+ ],
+ [
+ 73.10855962147774,
+ 20.370309301539685
+ ],
+ [
+ 73.33824498844508,
+ 20.370309301539685
+ ],
+ [
+ 73.45308767192877,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 20.954252506325044
+ ],
+ [
+ 73.33824498844508,
+ 21.148900241253497
+ ],
+ [
+ 73.10855962147774,
+ 21.148900241253497
+ ],
+ [
+ 72.99371693799405,
+ 20.954252506325044
+ ],
+ [
+ 73.10855962147774,
+ 20.759604771396592
+ ],
+ [
+ 73.33824498844508,
+ 20.759604771396592
+ ],
+ [
+ 73.45308767192877,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 21.343547976181952
+ ],
+ [
+ 73.33824498844508,
+ 21.538195711110404
+ ],
+ [
+ 73.10855962147774,
+ 21.538195711110404
+ ],
+ [
+ 72.99371693799405,
+ 21.343547976181952
+ ],
+ [
+ 73.10855962147774,
+ 21.1489002412535
+ ],
+ [
+ 73.33824498844508,
+ 21.1489002412535
+ ],
+ [
+ 73.45308767192877,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 21.732843446038856
+ ],
+ [
+ 73.33824498844508,
+ 21.92749118096731
+ ],
+ [
+ 73.10855962147774,
+ 21.92749118096731
+ ],
+ [
+ 72.99371693799405,
+ 21.732843446038856
+ ],
+ [
+ 73.10855962147774,
+ 21.538195711110404
+ ],
+ [
+ 73.33824498844508,
+ 21.538195711110404
+ ],
+ [
+ 73.45308767192877,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 22.122138915895764
+ ],
+ [
+ 73.33824498844508,
+ 22.316786650824216
+ ],
+ [
+ 73.10855962147774,
+ 22.316786650824216
+ ],
+ [
+ 72.99371693799405,
+ 22.122138915895764
+ ],
+ [
+ 73.10855962147774,
+ 21.927491180967312
+ ],
+ [
+ 73.33824498844508,
+ 21.927491180967312
+ ],
+ [
+ 73.45308767192877,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 22.511434385752672
+ ],
+ [
+ 73.33824498844508,
+ 22.706082120681124
+ ],
+ [
+ 73.10855962147774,
+ 22.706082120681124
+ ],
+ [
+ 72.99371693799405,
+ 22.511434385752672
+ ],
+ [
+ 73.10855962147774,
+ 22.31678665082422
+ ],
+ [
+ 73.33824498844508,
+ 22.31678665082422
+ ],
+ [
+ 73.45308767192877,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 22.900729855609576
+ ],
+ [
+ 73.33824498844508,
+ 23.09537759053803
+ ],
+ [
+ 73.10855962147774,
+ 23.09537759053803
+ ],
+ [
+ 72.99371693799405,
+ 22.900729855609576
+ ],
+ [
+ 73.10855962147774,
+ 22.706082120681124
+ ],
+ [
+ 73.33824498844508,
+ 22.706082120681124
+ ],
+ [
+ 73.45308767192877,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 23.290025325466484
+ ],
+ [
+ 73.33824498844508,
+ 23.484673060394936
+ ],
+ [
+ 73.10855962147774,
+ 23.484673060394936
+ ],
+ [
+ 72.99371693799405,
+ 23.290025325466484
+ ],
+ [
+ 73.10855962147774,
+ 23.095377590538032
+ ],
+ [
+ 73.33824498844508,
+ 23.095377590538032
+ ],
+ [
+ 73.45308767192877,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 23.67932079532339
+ ],
+ [
+ 73.33824498844508,
+ 23.873968530251844
+ ],
+ [
+ 73.10855962147774,
+ 23.873968530251844
+ ],
+ [
+ 72.99371693799405,
+ 23.67932079532339
+ ],
+ [
+ 73.10855962147774,
+ 23.48467306039494
+ ],
+ [
+ 73.33824498844508,
+ 23.48467306039494
+ ],
+ [
+ 73.45308767192877,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 24.068616265180296
+ ],
+ [
+ 73.33824498844508,
+ 24.263264000108748
+ ],
+ [
+ 73.10855962147774,
+ 24.263264000108748
+ ],
+ [
+ 72.99371693799405,
+ 24.068616265180296
+ ],
+ [
+ 73.10855962147774,
+ 23.873968530251844
+ ],
+ [
+ 73.33824498844508,
+ 23.873968530251844
+ ],
+ [
+ 73.45308767192877,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 24.4579117350372
+ ],
+ [
+ 73.33824498844508,
+ 24.652559469965652
+ ],
+ [
+ 73.10855962147774,
+ 24.652559469965652
+ ],
+ [
+ 72.99371693799405,
+ 24.4579117350372
+ ],
+ [
+ 73.10855962147774,
+ 24.263264000108748
+ ],
+ [
+ 73.33824498844508,
+ 24.263264000108748
+ ],
+ [
+ 73.45308767192877,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 24.847207204894108
+ ],
+ [
+ 73.33824498844508,
+ 25.04185493982256
+ ],
+ [
+ 73.10855962147774,
+ 25.04185493982256
+ ],
+ [
+ 72.99371693799405,
+ 24.847207204894108
+ ],
+ [
+ 73.10855962147774,
+ 24.652559469965656
+ ],
+ [
+ 73.33824498844508,
+ 24.652559469965656
+ ],
+ [
+ 73.45308767192877,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 25.236502674751016
+ ],
+ [
+ 73.33824498844508,
+ 25.431150409679468
+ ],
+ [
+ 73.10855962147774,
+ 25.431150409679468
+ ],
+ [
+ 72.99371693799405,
+ 25.236502674751016
+ ],
+ [
+ 73.10855962147774,
+ 25.041854939822564
+ ],
+ [
+ 73.33824498844508,
+ 25.041854939822564
+ ],
+ [
+ 73.45308767192877,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 25.62579814460792
+ ],
+ [
+ 73.33824498844508,
+ 25.820445879536372
+ ],
+ [
+ 73.10855962147774,
+ 25.820445879536372
+ ],
+ [
+ 72.99371693799405,
+ 25.62579814460792
+ ],
+ [
+ 73.10855962147774,
+ 25.431150409679468
+ ],
+ [
+ 73.33824498844508,
+ 25.431150409679468
+ ],
+ [
+ 73.45308767192877,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 26.015093614464828
+ ],
+ [
+ 73.33824498844508,
+ 26.20974134939328
+ ],
+ [
+ 73.10855962147774,
+ 26.20974134939328
+ ],
+ [
+ 72.99371693799405,
+ 26.015093614464828
+ ],
+ [
+ 73.10855962147774,
+ 25.820445879536376
+ ],
+ [
+ 73.33824498844508,
+ 25.820445879536376
+ ],
+ [
+ 73.45308767192877,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 26.404389084321735
+ ],
+ [
+ 73.33824498844508,
+ 26.599036819250188
+ ],
+ [
+ 73.10855962147774,
+ 26.599036819250188
+ ],
+ [
+ 72.99371693799405,
+ 26.404389084321735
+ ],
+ [
+ 73.10855962147774,
+ 26.209741349393283
+ ],
+ [
+ 73.33824498844508,
+ 26.209741349393283
+ ],
+ [
+ 73.45308767192877,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 26.79368455417864
+ ],
+ [
+ 73.33824498844508,
+ 26.988332289107092
+ ],
+ [
+ 73.10855962147774,
+ 26.988332289107092
+ ],
+ [
+ 72.99371693799405,
+ 26.79368455417864
+ ],
+ [
+ 73.10855962147774,
+ 26.599036819250188
+ ],
+ [
+ 73.33824498844508,
+ 26.599036819250188
+ ],
+ [
+ 73.45308767192877,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 27.182980024035547
+ ],
+ [
+ 73.33824498844508,
+ 27.377627758964
+ ],
+ [
+ 73.10855962147774,
+ 27.377627758964
+ ],
+ [
+ 72.99371693799405,
+ 27.182980024035547
+ ],
+ [
+ 73.10855962147774,
+ 26.988332289107095
+ ],
+ [
+ 73.33824498844508,
+ 26.988332289107095
+ ],
+ [
+ 73.45308767192877,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 27.572275493892455
+ ],
+ [
+ 73.33824498844508,
+ 27.766923228820907
+ ],
+ [
+ 73.10855962147774,
+ 27.766923228820907
+ ],
+ [
+ 72.99371693799405,
+ 27.572275493892455
+ ],
+ [
+ 73.10855962147774,
+ 27.377627758964003
+ ],
+ [
+ 73.33824498844508,
+ 27.377627758964003
+ ],
+ [
+ 73.45308767192877,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 27.96157096374936
+ ],
+ [
+ 73.33824498844508,
+ 28.15621869867781
+ ],
+ [
+ 73.10855962147774,
+ 28.15621869867781
+ ],
+ [
+ 72.99371693799405,
+ 27.96157096374936
+ ],
+ [
+ 73.10855962147774,
+ 27.766923228820907
+ ],
+ [
+ 73.33824498844508,
+ 27.766923228820907
+ ],
+ [
+ 73.45308767192877,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 28.350866433606267
+ ],
+ [
+ 73.33824498844508,
+ 28.54551416853472
+ ],
+ [
+ 73.10855962147774,
+ 28.54551416853472
+ ],
+ [
+ 72.99371693799405,
+ 28.350866433606267
+ ],
+ [
+ 73.10855962147774,
+ 28.156218698677815
+ ],
+ [
+ 73.33824498844508,
+ 28.156218698677815
+ ],
+ [
+ 73.45308767192877,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 28.74016190346317
+ ],
+ [
+ 73.33824498844508,
+ 28.934809638391624
+ ],
+ [
+ 73.10855962147774,
+ 28.934809638391624
+ ],
+ [
+ 72.99371693799405,
+ 28.74016190346317
+ ],
+ [
+ 73.10855962147774,
+ 28.54551416853472
+ ],
+ [
+ 73.33824498844508,
+ 28.54551416853472
+ ],
+ [
+ 73.45308767192877,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 29.12945737332008
+ ],
+ [
+ 73.33824498844508,
+ 29.32410510824853
+ ],
+ [
+ 73.10855962147774,
+ 29.32410510824853
+ ],
+ [
+ 72.99371693799405,
+ 29.12945737332008
+ ],
+ [
+ 73.10855962147774,
+ 28.934809638391627
+ ],
+ [
+ 73.33824498844508,
+ 28.934809638391627
+ ],
+ [
+ 73.45308767192877,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 29.518752843176983
+ ],
+ [
+ 73.33824498844508,
+ 29.713400578105436
+ ],
+ [
+ 73.10855962147774,
+ 29.713400578105436
+ ],
+ [
+ 72.99371693799405,
+ 29.518752843176983
+ ],
+ [
+ 73.10855962147774,
+ 29.32410510824853
+ ],
+ [
+ 73.33824498844508,
+ 29.32410510824853
+ ],
+ [
+ 73.45308767192877,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 29.90804831303389
+ ],
+ [
+ 73.33824498844508,
+ 30.102696047962343
+ ],
+ [
+ 73.10855962147774,
+ 30.102696047962343
+ ],
+ [
+ 72.99371693799405,
+ 29.90804831303389
+ ],
+ [
+ 73.10855962147774,
+ 29.71340057810544
+ ],
+ [
+ 73.33824498844508,
+ 29.71340057810544
+ ],
+ [
+ 73.45308767192877,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 30.297343782890795
+ ],
+ [
+ 73.33824498844508,
+ 30.491991517819248
+ ],
+ [
+ 73.10855962147774,
+ 30.491991517819248
+ ],
+ [
+ 72.99371693799405,
+ 30.297343782890795
+ ],
+ [
+ 73.10855962147774,
+ 30.102696047962343
+ ],
+ [
+ 73.33824498844508,
+ 30.102696047962343
+ ],
+ [
+ 73.45308767192877,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 30.686639252747703
+ ],
+ [
+ 73.33824498844508,
+ 30.881286987676155
+ ],
+ [
+ 73.10855962147774,
+ 30.881286987676155
+ ],
+ [
+ 72.99371693799405,
+ 30.686639252747703
+ ],
+ [
+ 73.10855962147774,
+ 30.49199151781925
+ ],
+ [
+ 73.33824498844508,
+ 30.49199151781925
+ ],
+ [
+ 73.45308767192877,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 31.07593472260461
+ ],
+ [
+ 73.33824498844508,
+ 31.270582457533063
+ ],
+ [
+ 73.10855962147774,
+ 31.270582457533063
+ ],
+ [
+ 72.99371693799405,
+ 31.07593472260461
+ ],
+ [
+ 73.10855962147774,
+ 30.88128698767616
+ ],
+ [
+ 73.33824498844508,
+ 30.88128698767616
+ ],
+ [
+ 73.45308767192877,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 31.465230192461515
+ ],
+ [
+ 73.33824498844508,
+ 31.659877927389967
+ ],
+ [
+ 73.10855962147774,
+ 31.659877927389967
+ ],
+ [
+ 72.99371693799405,
+ 31.465230192461515
+ ],
+ [
+ 73.10855962147774,
+ 31.270582457533063
+ ],
+ [
+ 73.33824498844508,
+ 31.270582457533063
+ ],
+ [
+ 73.45308767192877,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 31.854525662318423
+ ],
+ [
+ 73.33824498844508,
+ 32.049173397246875
+ ],
+ [
+ 73.10855962147774,
+ 32.049173397246875
+ ],
+ [
+ 72.99371693799405,
+ 31.854525662318423
+ ],
+ [
+ 73.10855962147774,
+ 31.65987792738997
+ ],
+ [
+ 73.33824498844508,
+ 31.65987792738997
+ ],
+ [
+ 73.45308767192877,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 32.24382113217533
+ ],
+ [
+ 73.33824498844508,
+ 32.43846886710378
+ ],
+ [
+ 73.10855962147774,
+ 32.43846886710378
+ ],
+ [
+ 72.99371693799405,
+ 32.24382113217533
+ ],
+ [
+ 73.10855962147774,
+ 32.049173397246875
+ ],
+ [
+ 73.33824498844508,
+ 32.049173397246875
+ ],
+ [
+ 73.45308767192877,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 32.63311660203224
+ ],
+ [
+ 73.33824498844508,
+ 32.82776433696069
+ ],
+ [
+ 73.10855962147774,
+ 32.82776433696069
+ ],
+ [
+ 72.99371693799405,
+ 32.63311660203224
+ ],
+ [
+ 73.10855962147774,
+ 32.438468867103786
+ ],
+ [
+ 73.33824498844508,
+ 32.438468867103786
+ ],
+ [
+ 73.45308767192877,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 33.02241207188914
+ ],
+ [
+ 73.33824498844508,
+ 33.217059806817595
+ ],
+ [
+ 73.10855962147774,
+ 33.217059806817595
+ ],
+ [
+ 72.99371693799405,
+ 33.02241207188914
+ ],
+ [
+ 73.10855962147774,
+ 32.82776433696069
+ ],
+ [
+ 73.33824498844508,
+ 32.82776433696069
+ ],
+ [
+ 73.45308767192877,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 33.41170754174605
+ ],
+ [
+ 73.33824498844508,
+ 33.6063552766745
+ ],
+ [
+ 73.10855962147774,
+ 33.6063552766745
+ ],
+ [
+ 72.99371693799405,
+ 33.41170754174605
+ ],
+ [
+ 73.10855962147774,
+ 33.217059806817595
+ ],
+ [
+ 73.33824498844508,
+ 33.217059806817595
+ ],
+ [
+ 73.45308767192877,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 33.80100301160295
+ ],
+ [
+ 73.33824498844508,
+ 33.9956507465314
+ ],
+ [
+ 73.10855962147774,
+ 33.9956507465314
+ ],
+ [
+ 72.99371693799405,
+ 33.80100301160295
+ ],
+ [
+ 73.10855962147774,
+ 33.6063552766745
+ ],
+ [
+ 73.33824498844508,
+ 33.6063552766745
+ ],
+ [
+ 73.45308767192877,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 34.190298481459855
+ ],
+ [
+ 73.33824498844508,
+ 34.38494621638831
+ ],
+ [
+ 73.10855962147774,
+ 34.38494621638831
+ ],
+ [
+ 72.99371693799405,
+ 34.190298481459855
+ ],
+ [
+ 73.10855962147774,
+ 33.9956507465314
+ ],
+ [
+ 73.33824498844508,
+ 33.9956507465314
+ ],
+ [
+ 73.45308767192877,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 34.57959395131677
+ ],
+ [
+ 73.33824498844508,
+ 34.77424168624522
+ ],
+ [
+ 73.10855962147774,
+ 34.77424168624522
+ ],
+ [
+ 72.99371693799405,
+ 34.57959395131677
+ ],
+ [
+ 73.10855962147774,
+ 34.384946216388315
+ ],
+ [
+ 73.33824498844508,
+ 34.384946216388315
+ ],
+ [
+ 73.45308767192877,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 34.96888942117368
+ ],
+ [
+ 73.33824498844508,
+ 35.16353715610213
+ ],
+ [
+ 73.10855962147774,
+ 35.16353715610213
+ ],
+ [
+ 72.99371693799405,
+ 34.96888942117368
+ ],
+ [
+ 73.10855962147774,
+ 34.774241686245226
+ ],
+ [
+ 73.33824498844508,
+ 34.774241686245226
+ ],
+ [
+ 73.45308767192877,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 35.35818489103058
+ ],
+ [
+ 73.33824498844508,
+ 35.552832625959034
+ ],
+ [
+ 73.10855962147774,
+ 35.552832625959034
+ ],
+ [
+ 72.99371693799405,
+ 35.35818489103058
+ ],
+ [
+ 73.10855962147774,
+ 35.16353715610213
+ ],
+ [
+ 73.33824498844508,
+ 35.16353715610213
+ ],
+ [
+ 73.45308767192877,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 35.74748036088749
+ ],
+ [
+ 73.33824498844508,
+ 35.94212809581594
+ ],
+ [
+ 73.10855962147774,
+ 35.94212809581594
+ ],
+ [
+ 72.99371693799405,
+ 35.74748036088749
+ ],
+ [
+ 73.10855962147774,
+ 35.552832625959034
+ ],
+ [
+ 73.33824498844508,
+ 35.552832625959034
+ ],
+ [
+ 73.45308767192877,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 36.13677583074439
+ ],
+ [
+ 73.33824498844508,
+ 36.33142356567284
+ ],
+ [
+ 73.10855962147774,
+ 36.33142356567284
+ ],
+ [
+ 72.99371693799405,
+ 36.13677583074439
+ ],
+ [
+ 73.10855962147774,
+ 35.94212809581594
+ ],
+ [
+ 73.33824498844508,
+ 35.94212809581594
+ ],
+ [
+ 73.45308767192877,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 36.526071300601295
+ ],
+ [
+ 73.33824498844508,
+ 36.72071903552975
+ ],
+ [
+ 73.10855962147774,
+ 36.72071903552975
+ ],
+ [
+ 72.99371693799405,
+ 36.526071300601295
+ ],
+ [
+ 73.10855962147774,
+ 36.33142356567284
+ ],
+ [
+ 73.33824498844508,
+ 36.33142356567284
+ ],
+ [
+ 73.45308767192877,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 36.915366770458206
+ ],
+ [
+ 73.33824498844508,
+ 37.11001450538666
+ ],
+ [
+ 73.10855962147774,
+ 37.11001450538666
+ ],
+ [
+ 72.99371693799405,
+ 36.915366770458206
+ ],
+ [
+ 73.10855962147774,
+ 36.720719035529754
+ ],
+ [
+ 73.33824498844508,
+ 36.720719035529754
+ ],
+ [
+ 73.45308767192877,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 37.30466224031511
+ ],
+ [
+ 73.33824498844508,
+ 37.49930997524356
+ ],
+ [
+ 73.10855962147774,
+ 37.49930997524356
+ ],
+ [
+ 72.99371693799405,
+ 37.30466224031511
+ ],
+ [
+ 73.10855962147774,
+ 37.11001450538666
+ ],
+ [
+ 73.33824498844508,
+ 37.11001450538666
+ ],
+ [
+ 73.45308767192877,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 37.69395771017202
+ ],
+ [
+ 73.33824498844508,
+ 37.888605445100474
+ ],
+ [
+ 73.10855962147774,
+ 37.888605445100474
+ ],
+ [
+ 72.99371693799405,
+ 37.69395771017202
+ ],
+ [
+ 73.10855962147774,
+ 37.49930997524357
+ ],
+ [
+ 73.33824498844508,
+ 37.49930997524357
+ ],
+ [
+ 73.45308767192877,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 38.083253180028926
+ ],
+ [
+ 73.33824498844508,
+ 38.27790091495738
+ ],
+ [
+ 73.10855962147774,
+ 38.27790091495738
+ ],
+ [
+ 72.99371693799405,
+ 38.083253180028926
+ ],
+ [
+ 73.10855962147774,
+ 37.888605445100474
+ ],
+ [
+ 73.33824498844508,
+ 37.888605445100474
+ ],
+ [
+ 73.45308767192877,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 38.47254864988583
+ ],
+ [
+ 73.33824498844508,
+ 38.66719638481428
+ ],
+ [
+ 73.10855962147774,
+ 38.66719638481428
+ ],
+ [
+ 72.99371693799405,
+ 38.47254864988583
+ ],
+ [
+ 73.10855962147774,
+ 38.27790091495738
+ ],
+ [
+ 73.33824498844508,
+ 38.27790091495738
+ ],
+ [
+ 73.45308767192877,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 38.861844119742734
+ ],
+ [
+ 73.33824498844508,
+ 39.05649185467119
+ ],
+ [
+ 73.10855962147774,
+ 39.05649185467119
+ ],
+ [
+ 72.99371693799405,
+ 38.861844119742734
+ ],
+ [
+ 73.10855962147774,
+ 38.66719638481428
+ ],
+ [
+ 73.33824498844508,
+ 38.66719638481428
+ ],
+ [
+ 73.45308767192877,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 39.25113958959964
+ ],
+ [
+ 73.33824498844508,
+ 39.44578732452809
+ ],
+ [
+ 73.10855962147774,
+ 39.44578732452809
+ ],
+ [
+ 72.99371693799405,
+ 39.25113958959964
+ ],
+ [
+ 73.10855962147774,
+ 39.05649185467119
+ ],
+ [
+ 73.33824498844508,
+ 39.05649185467119
+ ],
+ [
+ 73.45308767192877,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 39.64043505945655
+ ],
+ [
+ 73.33824498844508,
+ 39.835082794385
+ ],
+ [
+ 73.10855962147774,
+ 39.835082794385
+ ],
+ [
+ 72.99371693799405,
+ 39.64043505945655
+ ],
+ [
+ 73.10855962147774,
+ 39.4457873245281
+ ],
+ [
+ 73.33824498844508,
+ 39.4457873245281
+ ],
+ [
+ 73.45308767192877,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 40.029730529313454
+ ],
+ [
+ 73.33824498844508,
+ 40.224378264241906
+ ],
+ [
+ 73.10855962147774,
+ 40.224378264241906
+ ],
+ [
+ 72.99371693799405,
+ 40.029730529313454
+ ],
+ [
+ 73.10855962147774,
+ 39.835082794385
+ ],
+ [
+ 73.33824498844508,
+ 39.835082794385
+ ],
+ [
+ 73.45308767192877,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 40.419025999170366
+ ],
+ [
+ 73.33824498844508,
+ 40.61367373409882
+ ],
+ [
+ 73.10855962147774,
+ 40.61367373409882
+ ],
+ [
+ 72.99371693799405,
+ 40.419025999170366
+ ],
+ [
+ 73.10855962147774,
+ 40.22437826424191
+ ],
+ [
+ 73.33824498844508,
+ 40.22437826424191
+ ],
+ [
+ 73.45308767192877,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 40.80832146902727
+ ],
+ [
+ 73.33824498844508,
+ 41.00296920395572
+ ],
+ [
+ 73.10855962147774,
+ 41.00296920395572
+ ],
+ [
+ 72.99371693799405,
+ 40.80832146902727
+ ],
+ [
+ 73.10855962147774,
+ 40.61367373409882
+ ],
+ [
+ 73.33824498844508,
+ 40.61367373409882
+ ],
+ [
+ 73.45308767192877,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 41.197616938884174
+ ],
+ [
+ 73.33824498844508,
+ 41.392264673812626
+ ],
+ [
+ 73.10855962147774,
+ 41.392264673812626
+ ],
+ [
+ 72.99371693799405,
+ 41.197616938884174
+ ],
+ [
+ 73.10855962147774,
+ 41.00296920395572
+ ],
+ [
+ 73.33824498844508,
+ 41.00296920395572
+ ],
+ [
+ 73.45308767192877,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 41.58691240874108
+ ],
+ [
+ 73.33824498844508,
+ 41.78156014366953
+ ],
+ [
+ 73.10855962147774,
+ 41.78156014366953
+ ],
+ [
+ 72.99371693799405,
+ 41.58691240874108
+ ],
+ [
+ 73.10855962147774,
+ 41.392264673812626
+ ],
+ [
+ 73.33824498844508,
+ 41.392264673812626
+ ],
+ [
+ 73.45308767192877,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 41.97620787859798
+ ],
+ [
+ 73.33824498844508,
+ 42.170855613526435
+ ],
+ [
+ 73.10855962147774,
+ 42.170855613526435
+ ],
+ [
+ 72.99371693799405,
+ 41.97620787859798
+ ],
+ [
+ 73.10855962147774,
+ 41.78156014366953
+ ],
+ [
+ 73.33824498844508,
+ 41.78156014366953
+ ],
+ [
+ 73.45308767192877,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 42.365503348454894
+ ],
+ [
+ 73.33824498844508,
+ 42.560151083383346
+ ],
+ [
+ 73.10855962147774,
+ 42.560151083383346
+ ],
+ [
+ 72.99371693799405,
+ 42.365503348454894
+ ],
+ [
+ 73.10855962147774,
+ 42.17085561352644
+ ],
+ [
+ 73.33824498844508,
+ 42.17085561352644
+ ],
+ [
+ 73.45308767192877,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 42.754798818311805
+ ],
+ [
+ 73.33824498844508,
+ 42.94944655324026
+ ],
+ [
+ 73.10855962147774,
+ 42.94944655324026
+ ],
+ [
+ 72.99371693799405,
+ 42.754798818311805
+ ],
+ [
+ 73.10855962147774,
+ 42.56015108338335
+ ],
+ [
+ 73.33824498844508,
+ 42.56015108338335
+ ],
+ [
+ 73.45308767192877,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 43.14409428816871
+ ],
+ [
+ 73.33824498844508,
+ 43.33874202309716
+ ],
+ [
+ 73.10855962147774,
+ 43.33874202309716
+ ],
+ [
+ 72.99371693799405,
+ 43.14409428816871
+ ],
+ [
+ 73.10855962147774,
+ 42.94944655324026
+ ],
+ [
+ 73.33824498844508,
+ 42.94944655324026
+ ],
+ [
+ 73.45308767192877,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 43.53338975802561
+ ],
+ [
+ 73.33824498844508,
+ 43.728037492954066
+ ],
+ [
+ 73.10855962147774,
+ 43.728037492954066
+ ],
+ [
+ 72.99371693799405,
+ 43.53338975802561
+ ],
+ [
+ 73.10855962147774,
+ 43.33874202309716
+ ],
+ [
+ 73.33824498844508,
+ 43.33874202309716
+ ],
+ [
+ 73.45308767192877,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 43.92268522788252
+ ],
+ [
+ 73.33824498844508,
+ 44.11733296281097
+ ],
+ [
+ 73.10855962147774,
+ 44.11733296281097
+ ],
+ [
+ 72.99371693799405,
+ 43.92268522788252
+ ],
+ [
+ 73.10855962147774,
+ 43.728037492954066
+ ],
+ [
+ 73.33824498844508,
+ 43.728037492954066
+ ],
+ [
+ 73.45308767192877,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 44.31198069773942
+ ],
+ [
+ 73.33824498844508,
+ 44.506628432667874
+ ],
+ [
+ 73.10855962147774,
+ 44.506628432667874
+ ],
+ [
+ 72.99371693799405,
+ 44.31198069773942
+ ],
+ [
+ 73.10855962147774,
+ 44.11733296281097
+ ],
+ [
+ 73.33824498844508,
+ 44.11733296281097
+ ],
+ [
+ 73.45308767192877,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 44.701276167596326
+ ],
+ [
+ 73.33824498844508,
+ 44.89592390252478
+ ],
+ [
+ 73.10855962147774,
+ 44.89592390252478
+ ],
+ [
+ 72.99371693799405,
+ 44.701276167596326
+ ],
+ [
+ 73.10855962147774,
+ 44.506628432667874
+ ],
+ [
+ 73.33824498844508,
+ 44.506628432667874
+ ],
+ [
+ 73.45308767192877,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 45.090571637453245
+ ],
+ [
+ 73.33824498844508,
+ 45.2852193723817
+ ],
+ [
+ 73.10855962147774,
+ 45.2852193723817
+ ],
+ [
+ 72.99371693799405,
+ 45.090571637453245
+ ],
+ [
+ 73.10855962147774,
+ 44.89592390252479
+ ],
+ [
+ 73.33824498844508,
+ 44.89592390252479
+ ],
+ [
+ 73.45308767192877,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 45.47986710731015
+ ],
+ [
+ 73.33824498844508,
+ 45.6745148422386
+ ],
+ [
+ 73.10855962147774,
+ 45.6745148422386
+ ],
+ [
+ 72.99371693799405,
+ 45.47986710731015
+ ],
+ [
+ 73.10855962147774,
+ 45.2852193723817
+ ],
+ [
+ 73.33824498844508,
+ 45.2852193723817
+ ],
+ [
+ 73.45308767192877,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 45.86916257716705
+ ],
+ [
+ 73.33824498844508,
+ 46.063810312095505
+ ],
+ [
+ 73.10855962147774,
+ 46.063810312095505
+ ],
+ [
+ 72.99371693799405,
+ 45.86916257716705
+ ],
+ [
+ 73.10855962147774,
+ 45.6745148422386
+ ],
+ [
+ 73.33824498844508,
+ 45.6745148422386
+ ],
+ [
+ 73.45308767192877,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 46.25845804702396
+ ],
+ [
+ 73.33824498844508,
+ 46.45310578195241
+ ],
+ [
+ 73.10855962147774,
+ 46.45310578195241
+ ],
+ [
+ 72.99371693799405,
+ 46.25845804702396
+ ],
+ [
+ 73.10855962147774,
+ 46.063810312095505
+ ],
+ [
+ 73.33824498844508,
+ 46.063810312095505
+ ],
+ [
+ 73.45308767192877,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 46.64775351688086
+ ],
+ [
+ 73.33824498844508,
+ 46.842401251809314
+ ],
+ [
+ 73.10855962147774,
+ 46.842401251809314
+ ],
+ [
+ 72.99371693799405,
+ 46.64775351688086
+ ],
+ [
+ 73.10855962147774,
+ 46.45310578195241
+ ],
+ [
+ 73.33824498844508,
+ 46.45310578195241
+ ],
+ [
+ 73.45308767192877,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 47.037048986737766
+ ],
+ [
+ 73.33824498844508,
+ 47.23169672166622
+ ],
+ [
+ 73.10855962147774,
+ 47.23169672166622
+ ],
+ [
+ 72.99371693799405,
+ 47.037048986737766
+ ],
+ [
+ 73.10855962147774,
+ 46.842401251809314
+ ],
+ [
+ 73.33824498844508,
+ 46.842401251809314
+ ],
+ [
+ 73.45308767192877,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 47.42634445659467
+ ],
+ [
+ 73.33824498844508,
+ 47.62099219152312
+ ],
+ [
+ 73.10855962147774,
+ 47.62099219152312
+ ],
+ [
+ 72.99371693799405,
+ 47.42634445659467
+ ],
+ [
+ 73.10855962147774,
+ 47.23169672166622
+ ],
+ [
+ 73.33824498844508,
+ 47.23169672166622
+ ],
+ [
+ 73.45308767192877,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.45308767192877,
+ 47.81563992645159
+ ],
+ [
+ 73.33824498844508,
+ 48.01028766138004
+ ],
+ [
+ 73.10855962147774,
+ 48.01028766138004
+ ],
+ [
+ 72.99371693799405,
+ 47.81563992645159
+ ],
+ [
+ 73.10855962147774,
+ 47.620992191523136
+ ],
+ [
+ 73.33824498844508,
+ 47.620992191523136
+ ],
+ [
+ 73.45308767192877,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 11.805808964687746
+ ],
+ [
+ 73.68277303889612,
+ 12.0004566996162
+ ],
+ [
+ 73.45308767192877,
+ 12.0004566996162
+ ],
+ [
+ 73.33824498844508,
+ 11.805808964687746
+ ],
+ [
+ 73.45308767192877,
+ 11.611161229759292
+ ],
+ [
+ 73.68277303889612,
+ 11.611161229759292
+ ],
+ [
+ 73.7976157223798,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 12.195104434544652
+ ],
+ [
+ 73.68277303889612,
+ 12.389752169473105
+ ],
+ [
+ 73.45308767192877,
+ 12.389752169473105
+ ],
+ [
+ 73.33824498844508,
+ 12.195104434544652
+ ],
+ [
+ 73.45308767192877,
+ 12.000456699616198
+ ],
+ [
+ 73.68277303889612,
+ 12.000456699616198
+ ],
+ [
+ 73.7976157223798,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 12.58439990440156
+ ],
+ [
+ 73.68277303889612,
+ 12.779047639330013
+ ],
+ [
+ 73.45308767192877,
+ 12.779047639330013
+ ],
+ [
+ 73.33824498844508,
+ 12.58439990440156
+ ],
+ [
+ 73.45308767192877,
+ 12.389752169473105
+ ],
+ [
+ 73.68277303889612,
+ 12.389752169473105
+ ],
+ [
+ 73.7976157223798,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 12.973695374258465
+ ],
+ [
+ 73.68277303889612,
+ 13.16834310918692
+ ],
+ [
+ 73.45308767192877,
+ 13.16834310918692
+ ],
+ [
+ 73.33824498844508,
+ 12.973695374258465
+ ],
+ [
+ 73.45308767192877,
+ 12.779047639330011
+ ],
+ [
+ 73.68277303889612,
+ 12.779047639330011
+ ],
+ [
+ 73.7976157223798,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 13.362990844115371
+ ],
+ [
+ 73.68277303889612,
+ 13.557638579043825
+ ],
+ [
+ 73.45308767192877,
+ 13.557638579043825
+ ],
+ [
+ 73.33824498844508,
+ 13.362990844115371
+ ],
+ [
+ 73.45308767192877,
+ 13.168343109186917
+ ],
+ [
+ 73.68277303889612,
+ 13.168343109186917
+ ],
+ [
+ 73.7976157223798,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 13.752286313972277
+ ],
+ [
+ 73.68277303889612,
+ 13.946934048900731
+ ],
+ [
+ 73.45308767192877,
+ 13.946934048900731
+ ],
+ [
+ 73.33824498844508,
+ 13.752286313972277
+ ],
+ [
+ 73.45308767192877,
+ 13.557638579043823
+ ],
+ [
+ 73.68277303889612,
+ 13.557638579043823
+ ],
+ [
+ 73.7976157223798,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 14.141581783829183
+ ],
+ [
+ 73.68277303889612,
+ 14.336229518757637
+ ],
+ [
+ 73.45308767192877,
+ 14.336229518757637
+ ],
+ [
+ 73.33824498844508,
+ 14.141581783829183
+ ],
+ [
+ 73.45308767192877,
+ 13.94693404890073
+ ],
+ [
+ 73.68277303889612,
+ 13.94693404890073
+ ],
+ [
+ 73.7976157223798,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 14.530877253686091
+ ],
+ [
+ 73.68277303889612,
+ 14.725524988614545
+ ],
+ [
+ 73.45308767192877,
+ 14.725524988614545
+ ],
+ [
+ 73.33824498844508,
+ 14.530877253686091
+ ],
+ [
+ 73.45308767192877,
+ 14.336229518757637
+ ],
+ [
+ 73.68277303889612,
+ 14.336229518757637
+ ],
+ [
+ 73.7976157223798,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 14.920172723542997
+ ],
+ [
+ 73.68277303889612,
+ 15.114820458471451
+ ],
+ [
+ 73.45308767192877,
+ 15.114820458471451
+ ],
+ [
+ 73.33824498844508,
+ 14.920172723542997
+ ],
+ [
+ 73.45308767192877,
+ 14.725524988614543
+ ],
+ [
+ 73.68277303889612,
+ 14.725524988614543
+ ],
+ [
+ 73.7976157223798,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 15.309468193399903
+ ],
+ [
+ 73.68277303889612,
+ 15.504115928328357
+ ],
+ [
+ 73.45308767192877,
+ 15.504115928328357
+ ],
+ [
+ 73.33824498844508,
+ 15.309468193399903
+ ],
+ [
+ 73.45308767192877,
+ 15.11482045847145
+ ],
+ [
+ 73.68277303889612,
+ 15.11482045847145
+ ],
+ [
+ 73.7976157223798,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 15.69876366325681
+ ],
+ [
+ 73.68277303889612,
+ 15.893411398185265
+ ],
+ [
+ 73.45308767192877,
+ 15.893411398185265
+ ],
+ [
+ 73.33824498844508,
+ 15.69876366325681
+ ],
+ [
+ 73.45308767192877,
+ 15.504115928328357
+ ],
+ [
+ 73.68277303889612,
+ 15.504115928328357
+ ],
+ [
+ 73.7976157223798,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 16.088059133113717
+ ],
+ [
+ 73.68277303889612,
+ 16.28270686804217
+ ],
+ [
+ 73.45308767192877,
+ 16.28270686804217
+ ],
+ [
+ 73.33824498844508,
+ 16.088059133113717
+ ],
+ [
+ 73.45308767192877,
+ 15.893411398185263
+ ],
+ [
+ 73.68277303889612,
+ 15.893411398185263
+ ],
+ [
+ 73.7976157223798,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 16.477354602970625
+ ],
+ [
+ 73.68277303889612,
+ 16.672002337899077
+ ],
+ [
+ 73.45308767192877,
+ 16.672002337899077
+ ],
+ [
+ 73.33824498844508,
+ 16.477354602970625
+ ],
+ [
+ 73.45308767192877,
+ 16.282706868042172
+ ],
+ [
+ 73.68277303889612,
+ 16.282706868042172
+ ],
+ [
+ 73.7976157223798,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 16.86665007282753
+ ],
+ [
+ 73.68277303889612,
+ 17.06129780775598
+ ],
+ [
+ 73.45308767192877,
+ 17.06129780775598
+ ],
+ [
+ 73.33824498844508,
+ 16.86665007282753
+ ],
+ [
+ 73.45308767192877,
+ 16.672002337899077
+ ],
+ [
+ 73.68277303889612,
+ 16.672002337899077
+ ],
+ [
+ 73.7976157223798,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 17.255945542684437
+ ],
+ [
+ 73.68277303889612,
+ 17.45059327761289
+ ],
+ [
+ 73.45308767192877,
+ 17.45059327761289
+ ],
+ [
+ 73.33824498844508,
+ 17.255945542684437
+ ],
+ [
+ 73.45308767192877,
+ 17.061297807755984
+ ],
+ [
+ 73.68277303889612,
+ 17.061297807755984
+ ],
+ [
+ 73.7976157223798,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 17.64524101254134
+ ],
+ [
+ 73.68277303889612,
+ 17.839888747469793
+ ],
+ [
+ 73.45308767192877,
+ 17.839888747469793
+ ],
+ [
+ 73.33824498844508,
+ 17.64524101254134
+ ],
+ [
+ 73.45308767192877,
+ 17.45059327761289
+ ],
+ [
+ 73.68277303889612,
+ 17.45059327761289
+ ],
+ [
+ 73.7976157223798,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 18.03453648239825
+ ],
+ [
+ 73.68277303889612,
+ 18.2291842173267
+ ],
+ [
+ 73.45308767192877,
+ 18.2291842173267
+ ],
+ [
+ 73.33824498844508,
+ 18.03453648239825
+ ],
+ [
+ 73.45308767192877,
+ 17.839888747469796
+ ],
+ [
+ 73.68277303889612,
+ 17.839888747469796
+ ],
+ [
+ 73.7976157223798,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 18.423831952255156
+ ],
+ [
+ 73.68277303889612,
+ 18.61847968718361
+ ],
+ [
+ 73.45308767192877,
+ 18.61847968718361
+ ],
+ [
+ 73.33824498844508,
+ 18.423831952255156
+ ],
+ [
+ 73.45308767192877,
+ 18.229184217326704
+ ],
+ [
+ 73.68277303889612,
+ 18.229184217326704
+ ],
+ [
+ 73.7976157223798,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 18.81312742211206
+ ],
+ [
+ 73.68277303889612,
+ 19.007775157040513
+ ],
+ [
+ 73.45308767192877,
+ 19.007775157040513
+ ],
+ [
+ 73.33824498844508,
+ 18.81312742211206
+ ],
+ [
+ 73.45308767192877,
+ 18.61847968718361
+ ],
+ [
+ 73.68277303889612,
+ 18.61847968718361
+ ],
+ [
+ 73.7976157223798,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 19.20242289196897
+ ],
+ [
+ 73.68277303889612,
+ 19.39707062689742
+ ],
+ [
+ 73.45308767192877,
+ 19.39707062689742
+ ],
+ [
+ 73.33824498844508,
+ 19.20242289196897
+ ],
+ [
+ 73.45308767192877,
+ 19.007775157040516
+ ],
+ [
+ 73.68277303889612,
+ 19.007775157040516
+ ],
+ [
+ 73.7976157223798,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 19.591718361825876
+ ],
+ [
+ 73.68277303889612,
+ 19.78636609675433
+ ],
+ [
+ 73.45308767192877,
+ 19.78636609675433
+ ],
+ [
+ 73.33824498844508,
+ 19.591718361825876
+ ],
+ [
+ 73.45308767192877,
+ 19.397070626897424
+ ],
+ [
+ 73.68277303889612,
+ 19.397070626897424
+ ],
+ [
+ 73.7976157223798,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 19.98101383168278
+ ],
+ [
+ 73.68277303889612,
+ 20.175661566611232
+ ],
+ [
+ 73.45308767192877,
+ 20.175661566611232
+ ],
+ [
+ 73.33824498844508,
+ 19.98101383168278
+ ],
+ [
+ 73.45308767192877,
+ 19.78636609675433
+ ],
+ [
+ 73.68277303889612,
+ 19.78636609675433
+ ],
+ [
+ 73.7976157223798,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 20.370309301539685
+ ],
+ [
+ 73.68277303889612,
+ 20.564957036468137
+ ],
+ [
+ 73.45308767192877,
+ 20.564957036468137
+ ],
+ [
+ 73.33824498844508,
+ 20.370309301539685
+ ],
+ [
+ 73.45308767192877,
+ 20.175661566611232
+ ],
+ [
+ 73.68277303889612,
+ 20.175661566611232
+ ],
+ [
+ 73.7976157223798,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 20.759604771396592
+ ],
+ [
+ 73.68277303889612,
+ 20.954252506325044
+ ],
+ [
+ 73.45308767192877,
+ 20.954252506325044
+ ],
+ [
+ 73.33824498844508,
+ 20.759604771396592
+ ],
+ [
+ 73.45308767192877,
+ 20.56495703646814
+ ],
+ [
+ 73.68277303889612,
+ 20.56495703646814
+ ],
+ [
+ 73.7976157223798,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 21.1489002412535
+ ],
+ [
+ 73.68277303889612,
+ 21.343547976181952
+ ],
+ [
+ 73.45308767192877,
+ 21.343547976181952
+ ],
+ [
+ 73.33824498844508,
+ 21.1489002412535
+ ],
+ [
+ 73.45308767192877,
+ 20.954252506325048
+ ],
+ [
+ 73.68277303889612,
+ 20.954252506325048
+ ],
+ [
+ 73.7976157223798,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 21.538195711110404
+ ],
+ [
+ 73.68277303889612,
+ 21.732843446038856
+ ],
+ [
+ 73.45308767192877,
+ 21.732843446038856
+ ],
+ [
+ 73.33824498844508,
+ 21.538195711110404
+ ],
+ [
+ 73.45308767192877,
+ 21.343547976181952
+ ],
+ [
+ 73.68277303889612,
+ 21.343547976181952
+ ],
+ [
+ 73.7976157223798,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 21.927491180967312
+ ],
+ [
+ 73.68277303889612,
+ 22.122138915895764
+ ],
+ [
+ 73.45308767192877,
+ 22.122138915895764
+ ],
+ [
+ 73.33824498844508,
+ 21.927491180967312
+ ],
+ [
+ 73.45308767192877,
+ 21.73284344603886
+ ],
+ [
+ 73.68277303889612,
+ 21.73284344603886
+ ],
+ [
+ 73.7976157223798,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 22.31678665082422
+ ],
+ [
+ 73.68277303889612,
+ 22.511434385752672
+ ],
+ [
+ 73.45308767192877,
+ 22.511434385752672
+ ],
+ [
+ 73.33824498844508,
+ 22.31678665082422
+ ],
+ [
+ 73.45308767192877,
+ 22.122138915895768
+ ],
+ [
+ 73.68277303889612,
+ 22.122138915895768
+ ],
+ [
+ 73.7976157223798,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 22.706082120681124
+ ],
+ [
+ 73.68277303889612,
+ 22.900729855609576
+ ],
+ [
+ 73.45308767192877,
+ 22.900729855609576
+ ],
+ [
+ 73.33824498844508,
+ 22.706082120681124
+ ],
+ [
+ 73.45308767192877,
+ 22.511434385752672
+ ],
+ [
+ 73.68277303889612,
+ 22.511434385752672
+ ],
+ [
+ 73.7976157223798,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 23.095377590538032
+ ],
+ [
+ 73.68277303889612,
+ 23.290025325466484
+ ],
+ [
+ 73.45308767192877,
+ 23.290025325466484
+ ],
+ [
+ 73.33824498844508,
+ 23.095377590538032
+ ],
+ [
+ 73.45308767192877,
+ 22.90072985560958
+ ],
+ [
+ 73.68277303889612,
+ 22.90072985560958
+ ],
+ [
+ 73.7976157223798,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 23.48467306039494
+ ],
+ [
+ 73.68277303889612,
+ 23.67932079532339
+ ],
+ [
+ 73.45308767192877,
+ 23.67932079532339
+ ],
+ [
+ 73.33824498844508,
+ 23.48467306039494
+ ],
+ [
+ 73.45308767192877,
+ 23.290025325466488
+ ],
+ [
+ 73.68277303889612,
+ 23.290025325466488
+ ],
+ [
+ 73.7976157223798,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 23.873968530251844
+ ],
+ [
+ 73.68277303889612,
+ 24.068616265180296
+ ],
+ [
+ 73.45308767192877,
+ 24.068616265180296
+ ],
+ [
+ 73.33824498844508,
+ 23.873968530251844
+ ],
+ [
+ 73.45308767192877,
+ 23.67932079532339
+ ],
+ [
+ 73.68277303889612,
+ 23.67932079532339
+ ],
+ [
+ 73.7976157223798,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 24.263264000108748
+ ],
+ [
+ 73.68277303889612,
+ 24.4579117350372
+ ],
+ [
+ 73.45308767192877,
+ 24.4579117350372
+ ],
+ [
+ 73.33824498844508,
+ 24.263264000108748
+ ],
+ [
+ 73.45308767192877,
+ 24.068616265180296
+ ],
+ [
+ 73.68277303889612,
+ 24.068616265180296
+ ],
+ [
+ 73.7976157223798,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 24.652559469965656
+ ],
+ [
+ 73.68277303889612,
+ 24.847207204894108
+ ],
+ [
+ 73.45308767192877,
+ 24.847207204894108
+ ],
+ [
+ 73.33824498844508,
+ 24.652559469965656
+ ],
+ [
+ 73.45308767192877,
+ 24.457911735037204
+ ],
+ [
+ 73.68277303889612,
+ 24.457911735037204
+ ],
+ [
+ 73.7976157223798,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 25.041854939822564
+ ],
+ [
+ 73.68277303889612,
+ 25.236502674751016
+ ],
+ [
+ 73.45308767192877,
+ 25.236502674751016
+ ],
+ [
+ 73.33824498844508,
+ 25.041854939822564
+ ],
+ [
+ 73.45308767192877,
+ 24.84720720489411
+ ],
+ [
+ 73.68277303889612,
+ 24.84720720489411
+ ],
+ [
+ 73.7976157223798,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 25.431150409679468
+ ],
+ [
+ 73.68277303889612,
+ 25.62579814460792
+ ],
+ [
+ 73.45308767192877,
+ 25.62579814460792
+ ],
+ [
+ 73.33824498844508,
+ 25.431150409679468
+ ],
+ [
+ 73.45308767192877,
+ 25.236502674751016
+ ],
+ [
+ 73.68277303889612,
+ 25.236502674751016
+ ],
+ [
+ 73.7976157223798,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 25.820445879536376
+ ],
+ [
+ 73.68277303889612,
+ 26.015093614464828
+ ],
+ [
+ 73.45308767192877,
+ 26.015093614464828
+ ],
+ [
+ 73.33824498844508,
+ 25.820445879536376
+ ],
+ [
+ 73.45308767192877,
+ 25.625798144607923
+ ],
+ [
+ 73.68277303889612,
+ 25.625798144607923
+ ],
+ [
+ 73.7976157223798,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 26.209741349393283
+ ],
+ [
+ 73.68277303889612,
+ 26.404389084321735
+ ],
+ [
+ 73.45308767192877,
+ 26.404389084321735
+ ],
+ [
+ 73.33824498844508,
+ 26.209741349393283
+ ],
+ [
+ 73.45308767192877,
+ 26.01509361446483
+ ],
+ [
+ 73.68277303889612,
+ 26.01509361446483
+ ],
+ [
+ 73.7976157223798,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 26.599036819250188
+ ],
+ [
+ 73.68277303889612,
+ 26.79368455417864
+ ],
+ [
+ 73.45308767192877,
+ 26.79368455417864
+ ],
+ [
+ 73.33824498844508,
+ 26.599036819250188
+ ],
+ [
+ 73.45308767192877,
+ 26.404389084321735
+ ],
+ [
+ 73.68277303889612,
+ 26.404389084321735
+ ],
+ [
+ 73.7976157223798,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 26.988332289107095
+ ],
+ [
+ 73.68277303889612,
+ 27.182980024035547
+ ],
+ [
+ 73.45308767192877,
+ 27.182980024035547
+ ],
+ [
+ 73.33824498844508,
+ 26.988332289107095
+ ],
+ [
+ 73.45308767192877,
+ 26.793684554178643
+ ],
+ [
+ 73.68277303889612,
+ 26.793684554178643
+ ],
+ [
+ 73.7976157223798,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 27.377627758964003
+ ],
+ [
+ 73.68277303889612,
+ 27.572275493892455
+ ],
+ [
+ 73.45308767192877,
+ 27.572275493892455
+ ],
+ [
+ 73.33824498844508,
+ 27.377627758964003
+ ],
+ [
+ 73.45308767192877,
+ 27.18298002403555
+ ],
+ [
+ 73.68277303889612,
+ 27.18298002403555
+ ],
+ [
+ 73.7976157223798,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 27.766923228820907
+ ],
+ [
+ 73.68277303889612,
+ 27.96157096374936
+ ],
+ [
+ 73.45308767192877,
+ 27.96157096374936
+ ],
+ [
+ 73.33824498844508,
+ 27.766923228820907
+ ],
+ [
+ 73.45308767192877,
+ 27.572275493892455
+ ],
+ [
+ 73.68277303889612,
+ 27.572275493892455
+ ],
+ [
+ 73.7976157223798,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 28.156218698677815
+ ],
+ [
+ 73.68277303889612,
+ 28.350866433606267
+ ],
+ [
+ 73.45308767192877,
+ 28.350866433606267
+ ],
+ [
+ 73.33824498844508,
+ 28.156218698677815
+ ],
+ [
+ 73.45308767192877,
+ 27.961570963749363
+ ],
+ [
+ 73.68277303889612,
+ 27.961570963749363
+ ],
+ [
+ 73.7976157223798,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 28.54551416853472
+ ],
+ [
+ 73.68277303889612,
+ 28.74016190346317
+ ],
+ [
+ 73.45308767192877,
+ 28.74016190346317
+ ],
+ [
+ 73.33824498844508,
+ 28.54551416853472
+ ],
+ [
+ 73.45308767192877,
+ 28.350866433606267
+ ],
+ [
+ 73.68277303889612,
+ 28.350866433606267
+ ],
+ [
+ 73.7976157223798,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 28.934809638391627
+ ],
+ [
+ 73.68277303889612,
+ 29.12945737332008
+ ],
+ [
+ 73.45308767192877,
+ 29.12945737332008
+ ],
+ [
+ 73.33824498844508,
+ 28.934809638391627
+ ],
+ [
+ 73.45308767192877,
+ 28.740161903463175
+ ],
+ [
+ 73.68277303889612,
+ 28.740161903463175
+ ],
+ [
+ 73.7976157223798,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 29.32410510824853
+ ],
+ [
+ 73.68277303889612,
+ 29.518752843176983
+ ],
+ [
+ 73.45308767192877,
+ 29.518752843176983
+ ],
+ [
+ 73.33824498844508,
+ 29.32410510824853
+ ],
+ [
+ 73.45308767192877,
+ 29.12945737332008
+ ],
+ [
+ 73.68277303889612,
+ 29.12945737332008
+ ],
+ [
+ 73.7976157223798,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 29.71340057810544
+ ],
+ [
+ 73.68277303889612,
+ 29.90804831303389
+ ],
+ [
+ 73.45308767192877,
+ 29.90804831303389
+ ],
+ [
+ 73.33824498844508,
+ 29.71340057810544
+ ],
+ [
+ 73.45308767192877,
+ 29.518752843176987
+ ],
+ [
+ 73.68277303889612,
+ 29.518752843176987
+ ],
+ [
+ 73.7976157223798,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 30.102696047962343
+ ],
+ [
+ 73.68277303889612,
+ 30.297343782890795
+ ],
+ [
+ 73.45308767192877,
+ 30.297343782890795
+ ],
+ [
+ 73.33824498844508,
+ 30.102696047962343
+ ],
+ [
+ 73.45308767192877,
+ 29.90804831303389
+ ],
+ [
+ 73.68277303889612,
+ 29.90804831303389
+ ],
+ [
+ 73.7976157223798,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 30.49199151781925
+ ],
+ [
+ 73.68277303889612,
+ 30.686639252747703
+ ],
+ [
+ 73.45308767192877,
+ 30.686639252747703
+ ],
+ [
+ 73.33824498844508,
+ 30.49199151781925
+ ],
+ [
+ 73.45308767192877,
+ 30.2973437828908
+ ],
+ [
+ 73.68277303889612,
+ 30.2973437828908
+ ],
+ [
+ 73.7976157223798,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 30.88128698767616
+ ],
+ [
+ 73.68277303889612,
+ 31.07593472260461
+ ],
+ [
+ 73.45308767192877,
+ 31.07593472260461
+ ],
+ [
+ 73.33824498844508,
+ 30.88128698767616
+ ],
+ [
+ 73.45308767192877,
+ 30.686639252747707
+ ],
+ [
+ 73.68277303889612,
+ 30.686639252747707
+ ],
+ [
+ 73.7976157223798,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 31.270582457533063
+ ],
+ [
+ 73.68277303889612,
+ 31.465230192461515
+ ],
+ [
+ 73.45308767192877,
+ 31.465230192461515
+ ],
+ [
+ 73.33824498844508,
+ 31.270582457533063
+ ],
+ [
+ 73.45308767192877,
+ 31.07593472260461
+ ],
+ [
+ 73.68277303889612,
+ 31.07593472260461
+ ],
+ [
+ 73.7976157223798,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 31.65987792738997
+ ],
+ [
+ 73.68277303889612,
+ 31.854525662318423
+ ],
+ [
+ 73.45308767192877,
+ 31.854525662318423
+ ],
+ [
+ 73.33824498844508,
+ 31.65987792738997
+ ],
+ [
+ 73.45308767192877,
+ 31.46523019246152
+ ],
+ [
+ 73.68277303889612,
+ 31.46523019246152
+ ],
+ [
+ 73.7976157223798,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 32.049173397246875
+ ],
+ [
+ 73.68277303889612,
+ 32.24382113217533
+ ],
+ [
+ 73.45308767192877,
+ 32.24382113217533
+ ],
+ [
+ 73.33824498844508,
+ 32.049173397246875
+ ],
+ [
+ 73.45308767192877,
+ 31.854525662318423
+ ],
+ [
+ 73.68277303889612,
+ 31.854525662318423
+ ],
+ [
+ 73.7976157223798,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 32.438468867103786
+ ],
+ [
+ 73.68277303889612,
+ 32.63311660203224
+ ],
+ [
+ 73.45308767192877,
+ 32.63311660203224
+ ],
+ [
+ 73.33824498844508,
+ 32.438468867103786
+ ],
+ [
+ 73.45308767192877,
+ 32.243821132175334
+ ],
+ [
+ 73.68277303889612,
+ 32.243821132175334
+ ],
+ [
+ 73.7976157223798,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 32.82776433696069
+ ],
+ [
+ 73.68277303889612,
+ 33.02241207188914
+ ],
+ [
+ 73.45308767192877,
+ 33.02241207188914
+ ],
+ [
+ 73.33824498844508,
+ 32.82776433696069
+ ],
+ [
+ 73.45308767192877,
+ 32.63311660203224
+ ],
+ [
+ 73.68277303889612,
+ 32.63311660203224
+ ],
+ [
+ 73.7976157223798,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 33.217059806817595
+ ],
+ [
+ 73.68277303889612,
+ 33.41170754174605
+ ],
+ [
+ 73.45308767192877,
+ 33.41170754174605
+ ],
+ [
+ 73.33824498844508,
+ 33.217059806817595
+ ],
+ [
+ 73.45308767192877,
+ 33.02241207188914
+ ],
+ [
+ 73.68277303889612,
+ 33.02241207188914
+ ],
+ [
+ 73.7976157223798,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 33.6063552766745
+ ],
+ [
+ 73.68277303889612,
+ 33.80100301160295
+ ],
+ [
+ 73.45308767192877,
+ 33.80100301160295
+ ],
+ [
+ 73.33824498844508,
+ 33.6063552766745
+ ],
+ [
+ 73.45308767192877,
+ 33.41170754174605
+ ],
+ [
+ 73.68277303889612,
+ 33.41170754174605
+ ],
+ [
+ 73.7976157223798,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 33.9956507465314
+ ],
+ [
+ 73.68277303889612,
+ 34.190298481459855
+ ],
+ [
+ 73.45308767192877,
+ 34.190298481459855
+ ],
+ [
+ 73.33824498844508,
+ 33.9956507465314
+ ],
+ [
+ 73.45308767192877,
+ 33.80100301160295
+ ],
+ [
+ 73.68277303889612,
+ 33.80100301160295
+ ],
+ [
+ 73.7976157223798,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 34.384946216388315
+ ],
+ [
+ 73.68277303889612,
+ 34.57959395131677
+ ],
+ [
+ 73.45308767192877,
+ 34.57959395131677
+ ],
+ [
+ 73.33824498844508,
+ 34.384946216388315
+ ],
+ [
+ 73.45308767192877,
+ 34.19029848145986
+ ],
+ [
+ 73.68277303889612,
+ 34.19029848145986
+ ],
+ [
+ 73.7976157223798,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 34.774241686245226
+ ],
+ [
+ 73.68277303889612,
+ 34.96888942117368
+ ],
+ [
+ 73.45308767192877,
+ 34.96888942117368
+ ],
+ [
+ 73.33824498844508,
+ 34.774241686245226
+ ],
+ [
+ 73.45308767192877,
+ 34.579593951316774
+ ],
+ [
+ 73.68277303889612,
+ 34.579593951316774
+ ],
+ [
+ 73.7976157223798,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 35.16353715610213
+ ],
+ [
+ 73.68277303889612,
+ 35.35818489103058
+ ],
+ [
+ 73.45308767192877,
+ 35.35818489103058
+ ],
+ [
+ 73.33824498844508,
+ 35.16353715610213
+ ],
+ [
+ 73.45308767192877,
+ 34.96888942117368
+ ],
+ [
+ 73.68277303889612,
+ 34.96888942117368
+ ],
+ [
+ 73.7976157223798,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 35.552832625959034
+ ],
+ [
+ 73.68277303889612,
+ 35.74748036088749
+ ],
+ [
+ 73.45308767192877,
+ 35.74748036088749
+ ],
+ [
+ 73.33824498844508,
+ 35.552832625959034
+ ],
+ [
+ 73.45308767192877,
+ 35.35818489103058
+ ],
+ [
+ 73.68277303889612,
+ 35.35818489103058
+ ],
+ [
+ 73.7976157223798,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 35.94212809581594
+ ],
+ [
+ 73.68277303889612,
+ 36.13677583074439
+ ],
+ [
+ 73.45308767192877,
+ 36.13677583074439
+ ],
+ [
+ 73.33824498844508,
+ 35.94212809581594
+ ],
+ [
+ 73.45308767192877,
+ 35.74748036088749
+ ],
+ [
+ 73.68277303889612,
+ 35.74748036088749
+ ],
+ [
+ 73.7976157223798,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 36.33142356567284
+ ],
+ [
+ 73.68277303889612,
+ 36.526071300601295
+ ],
+ [
+ 73.45308767192877,
+ 36.526071300601295
+ ],
+ [
+ 73.33824498844508,
+ 36.33142356567284
+ ],
+ [
+ 73.45308767192877,
+ 36.13677583074439
+ ],
+ [
+ 73.68277303889612,
+ 36.13677583074439
+ ],
+ [
+ 73.7976157223798,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 36.720719035529754
+ ],
+ [
+ 73.68277303889612,
+ 36.915366770458206
+ ],
+ [
+ 73.45308767192877,
+ 36.915366770458206
+ ],
+ [
+ 73.33824498844508,
+ 36.720719035529754
+ ],
+ [
+ 73.45308767192877,
+ 36.5260713006013
+ ],
+ [
+ 73.68277303889612,
+ 36.5260713006013
+ ],
+ [
+ 73.7976157223798,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 37.11001450538666
+ ],
+ [
+ 73.68277303889612,
+ 37.30466224031511
+ ],
+ [
+ 73.45308767192877,
+ 37.30466224031511
+ ],
+ [
+ 73.33824498844508,
+ 37.11001450538666
+ ],
+ [
+ 73.45308767192877,
+ 36.915366770458206
+ ],
+ [
+ 73.68277303889612,
+ 36.915366770458206
+ ],
+ [
+ 73.7976157223798,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 37.49930997524357
+ ],
+ [
+ 73.68277303889612,
+ 37.69395771017202
+ ],
+ [
+ 73.45308767192877,
+ 37.69395771017202
+ ],
+ [
+ 73.33824498844508,
+ 37.49930997524357
+ ],
+ [
+ 73.45308767192877,
+ 37.30466224031512
+ ],
+ [
+ 73.68277303889612,
+ 37.30466224031512
+ ],
+ [
+ 73.7976157223798,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 37.888605445100474
+ ],
+ [
+ 73.68277303889612,
+ 38.083253180028926
+ ],
+ [
+ 73.45308767192877,
+ 38.083253180028926
+ ],
+ [
+ 73.33824498844508,
+ 37.888605445100474
+ ],
+ [
+ 73.45308767192877,
+ 37.69395771017202
+ ],
+ [
+ 73.68277303889612,
+ 37.69395771017202
+ ],
+ [
+ 73.7976157223798,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 38.27790091495738
+ ],
+ [
+ 73.68277303889612,
+ 38.47254864988583
+ ],
+ [
+ 73.45308767192877,
+ 38.47254864988583
+ ],
+ [
+ 73.33824498844508,
+ 38.27790091495738
+ ],
+ [
+ 73.45308767192877,
+ 38.083253180028926
+ ],
+ [
+ 73.68277303889612,
+ 38.083253180028926
+ ],
+ [
+ 73.7976157223798,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 38.66719638481428
+ ],
+ [
+ 73.68277303889612,
+ 38.861844119742734
+ ],
+ [
+ 73.45308767192877,
+ 38.861844119742734
+ ],
+ [
+ 73.33824498844508,
+ 38.66719638481428
+ ],
+ [
+ 73.45308767192877,
+ 38.47254864988583
+ ],
+ [
+ 73.68277303889612,
+ 38.47254864988583
+ ],
+ [
+ 73.7976157223798,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 39.05649185467119
+ ],
+ [
+ 73.68277303889612,
+ 39.25113958959964
+ ],
+ [
+ 73.45308767192877,
+ 39.25113958959964
+ ],
+ [
+ 73.33824498844508,
+ 39.05649185467119
+ ],
+ [
+ 73.45308767192877,
+ 38.861844119742734
+ ],
+ [
+ 73.68277303889612,
+ 38.861844119742734
+ ],
+ [
+ 73.7976157223798,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 39.4457873245281
+ ],
+ [
+ 73.68277303889612,
+ 39.64043505945655
+ ],
+ [
+ 73.45308767192877,
+ 39.64043505945655
+ ],
+ [
+ 73.33824498844508,
+ 39.4457873245281
+ ],
+ [
+ 73.45308767192877,
+ 39.251139589599646
+ ],
+ [
+ 73.68277303889612,
+ 39.251139589599646
+ ],
+ [
+ 73.7976157223798,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 39.835082794385
+ ],
+ [
+ 73.68277303889612,
+ 40.029730529313454
+ ],
+ [
+ 73.45308767192877,
+ 40.029730529313454
+ ],
+ [
+ 73.33824498844508,
+ 39.835082794385
+ ],
+ [
+ 73.45308767192877,
+ 39.64043505945655
+ ],
+ [
+ 73.68277303889612,
+ 39.64043505945655
+ ],
+ [
+ 73.7976157223798,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 40.22437826424191
+ ],
+ [
+ 73.68277303889612,
+ 40.419025999170366
+ ],
+ [
+ 73.45308767192877,
+ 40.419025999170366
+ ],
+ [
+ 73.33824498844508,
+ 40.22437826424191
+ ],
+ [
+ 73.45308767192877,
+ 40.02973052931346
+ ],
+ [
+ 73.68277303889612,
+ 40.02973052931346
+ ],
+ [
+ 73.7976157223798,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 40.61367373409882
+ ],
+ [
+ 73.68277303889612,
+ 40.80832146902727
+ ],
+ [
+ 73.45308767192877,
+ 40.80832146902727
+ ],
+ [
+ 73.33824498844508,
+ 40.61367373409882
+ ],
+ [
+ 73.45308767192877,
+ 40.419025999170366
+ ],
+ [
+ 73.68277303889612,
+ 40.419025999170366
+ ],
+ [
+ 73.7976157223798,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 41.00296920395572
+ ],
+ [
+ 73.68277303889612,
+ 41.197616938884174
+ ],
+ [
+ 73.45308767192877,
+ 41.197616938884174
+ ],
+ [
+ 73.33824498844508,
+ 41.00296920395572
+ ],
+ [
+ 73.45308767192877,
+ 40.80832146902727
+ ],
+ [
+ 73.68277303889612,
+ 40.80832146902727
+ ],
+ [
+ 73.7976157223798,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 41.392264673812626
+ ],
+ [
+ 73.68277303889612,
+ 41.58691240874108
+ ],
+ [
+ 73.45308767192877,
+ 41.58691240874108
+ ],
+ [
+ 73.33824498844508,
+ 41.392264673812626
+ ],
+ [
+ 73.45308767192877,
+ 41.197616938884174
+ ],
+ [
+ 73.68277303889612,
+ 41.197616938884174
+ ],
+ [
+ 73.7976157223798,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 41.78156014366953
+ ],
+ [
+ 73.68277303889612,
+ 41.97620787859798
+ ],
+ [
+ 73.45308767192877,
+ 41.97620787859798
+ ],
+ [
+ 73.33824498844508,
+ 41.78156014366953
+ ],
+ [
+ 73.45308767192877,
+ 41.58691240874108
+ ],
+ [
+ 73.68277303889612,
+ 41.58691240874108
+ ],
+ [
+ 73.7976157223798,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 42.17085561352644
+ ],
+ [
+ 73.68277303889612,
+ 42.365503348454894
+ ],
+ [
+ 73.45308767192877,
+ 42.365503348454894
+ ],
+ [
+ 73.33824498844508,
+ 42.17085561352644
+ ],
+ [
+ 73.45308767192877,
+ 41.97620787859799
+ ],
+ [
+ 73.68277303889612,
+ 41.97620787859799
+ ],
+ [
+ 73.7976157223798,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 42.56015108338335
+ ],
+ [
+ 73.68277303889612,
+ 42.754798818311805
+ ],
+ [
+ 73.45308767192877,
+ 42.754798818311805
+ ],
+ [
+ 73.33824498844508,
+ 42.56015108338335
+ ],
+ [
+ 73.45308767192877,
+ 42.3655033484549
+ ],
+ [
+ 73.68277303889612,
+ 42.3655033484549
+ ],
+ [
+ 73.7976157223798,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 42.94944655324026
+ ],
+ [
+ 73.68277303889612,
+ 43.14409428816871
+ ],
+ [
+ 73.45308767192877,
+ 43.14409428816871
+ ],
+ [
+ 73.33824498844508,
+ 42.94944655324026
+ ],
+ [
+ 73.45308767192877,
+ 42.754798818311805
+ ],
+ [
+ 73.68277303889612,
+ 42.754798818311805
+ ],
+ [
+ 73.7976157223798,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 43.33874202309716
+ ],
+ [
+ 73.68277303889612,
+ 43.53338975802561
+ ],
+ [
+ 73.45308767192877,
+ 43.53338975802561
+ ],
+ [
+ 73.33824498844508,
+ 43.33874202309716
+ ],
+ [
+ 73.45308767192877,
+ 43.14409428816871
+ ],
+ [
+ 73.68277303889612,
+ 43.14409428816871
+ ],
+ [
+ 73.7976157223798,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 43.728037492954066
+ ],
+ [
+ 73.68277303889612,
+ 43.92268522788252
+ ],
+ [
+ 73.45308767192877,
+ 43.92268522788252
+ ],
+ [
+ 73.33824498844508,
+ 43.728037492954066
+ ],
+ [
+ 73.45308767192877,
+ 43.53338975802561
+ ],
+ [
+ 73.68277303889612,
+ 43.53338975802561
+ ],
+ [
+ 73.7976157223798,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 44.11733296281097
+ ],
+ [
+ 73.68277303889612,
+ 44.31198069773942
+ ],
+ [
+ 73.45308767192877,
+ 44.31198069773942
+ ],
+ [
+ 73.33824498844508,
+ 44.11733296281097
+ ],
+ [
+ 73.45308767192877,
+ 43.92268522788252
+ ],
+ [
+ 73.68277303889612,
+ 43.92268522788252
+ ],
+ [
+ 73.7976157223798,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 44.506628432667874
+ ],
+ [
+ 73.68277303889612,
+ 44.701276167596326
+ ],
+ [
+ 73.45308767192877,
+ 44.701276167596326
+ ],
+ [
+ 73.33824498844508,
+ 44.506628432667874
+ ],
+ [
+ 73.45308767192877,
+ 44.31198069773942
+ ],
+ [
+ 73.68277303889612,
+ 44.31198069773942
+ ],
+ [
+ 73.7976157223798,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 44.89592390252479
+ ],
+ [
+ 73.68277303889612,
+ 45.090571637453245
+ ],
+ [
+ 73.45308767192877,
+ 45.090571637453245
+ ],
+ [
+ 73.33824498844508,
+ 44.89592390252479
+ ],
+ [
+ 73.45308767192877,
+ 44.70127616759634
+ ],
+ [
+ 73.68277303889612,
+ 44.70127616759634
+ ],
+ [
+ 73.7976157223798,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 45.2852193723817
+ ],
+ [
+ 73.68277303889612,
+ 45.47986710731015
+ ],
+ [
+ 73.45308767192877,
+ 45.47986710731015
+ ],
+ [
+ 73.33824498844508,
+ 45.2852193723817
+ ],
+ [
+ 73.45308767192877,
+ 45.090571637453245
+ ],
+ [
+ 73.68277303889612,
+ 45.090571637453245
+ ],
+ [
+ 73.7976157223798,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 45.6745148422386
+ ],
+ [
+ 73.68277303889612,
+ 45.86916257716705
+ ],
+ [
+ 73.45308767192877,
+ 45.86916257716705
+ ],
+ [
+ 73.33824498844508,
+ 45.6745148422386
+ ],
+ [
+ 73.45308767192877,
+ 45.47986710731015
+ ],
+ [
+ 73.68277303889612,
+ 45.47986710731015
+ ],
+ [
+ 73.7976157223798,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 46.063810312095505
+ ],
+ [
+ 73.68277303889612,
+ 46.25845804702396
+ ],
+ [
+ 73.45308767192877,
+ 46.25845804702396
+ ],
+ [
+ 73.33824498844508,
+ 46.063810312095505
+ ],
+ [
+ 73.45308767192877,
+ 45.86916257716705
+ ],
+ [
+ 73.68277303889612,
+ 45.86916257716705
+ ],
+ [
+ 73.7976157223798,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 46.45310578195241
+ ],
+ [
+ 73.68277303889612,
+ 46.64775351688086
+ ],
+ [
+ 73.45308767192877,
+ 46.64775351688086
+ ],
+ [
+ 73.33824498844508,
+ 46.45310578195241
+ ],
+ [
+ 73.45308767192877,
+ 46.25845804702396
+ ],
+ [
+ 73.68277303889612,
+ 46.25845804702396
+ ],
+ [
+ 73.7976157223798,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 46.842401251809314
+ ],
+ [
+ 73.68277303889612,
+ 47.037048986737766
+ ],
+ [
+ 73.45308767192877,
+ 47.037048986737766
+ ],
+ [
+ 73.33824498844508,
+ 46.842401251809314
+ ],
+ [
+ 73.45308767192877,
+ 46.64775351688086
+ ],
+ [
+ 73.68277303889612,
+ 46.64775351688086
+ ],
+ [
+ 73.7976157223798,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 47.23169672166622
+ ],
+ [
+ 73.68277303889612,
+ 47.42634445659467
+ ],
+ [
+ 73.45308767192877,
+ 47.42634445659467
+ ],
+ [
+ 73.33824498844508,
+ 47.23169672166622
+ ],
+ [
+ 73.45308767192877,
+ 47.037048986737766
+ ],
+ [
+ 73.68277303889612,
+ 47.037048986737766
+ ],
+ [
+ 73.7976157223798,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 73.7976157223798,
+ 47.620992191523136
+ ],
+ [
+ 73.68277303889612,
+ 47.81563992645159
+ ],
+ [
+ 73.45308767192877,
+ 47.81563992645159
+ ],
+ [
+ 73.33824498844508,
+ 47.620992191523136
+ ],
+ [
+ 73.45308767192877,
+ 47.426344456594684
+ ],
+ [
+ 73.68277303889612,
+ 47.426344456594684
+ ],
+ [
+ 73.7976157223798,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 12.0004566996162
+ ],
+ [
+ 74.02730108934716,
+ 12.195104434544653
+ ],
+ [
+ 73.79761572237982,
+ 12.195104434544653
+ ],
+ [
+ 73.68277303889613,
+ 12.0004566996162
+ ],
+ [
+ 73.79761572237982,
+ 11.805808964687746
+ ],
+ [
+ 74.02730108934716,
+ 11.805808964687746
+ ],
+ [
+ 74.14214377283085,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 12.389752169473105
+ ],
+ [
+ 74.02730108934716,
+ 12.58439990440156
+ ],
+ [
+ 73.79761572237982,
+ 12.58439990440156
+ ],
+ [
+ 73.68277303889613,
+ 12.389752169473105
+ ],
+ [
+ 73.79761572237982,
+ 12.195104434544652
+ ],
+ [
+ 74.02730108934716,
+ 12.195104434544652
+ ],
+ [
+ 74.14214377283085,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 12.779047639330013
+ ],
+ [
+ 74.02730108934716,
+ 12.973695374258467
+ ],
+ [
+ 73.79761572237982,
+ 12.973695374258467
+ ],
+ [
+ 73.68277303889613,
+ 12.779047639330013
+ ],
+ [
+ 73.79761572237982,
+ 12.58439990440156
+ ],
+ [
+ 74.02730108934716,
+ 12.58439990440156
+ ],
+ [
+ 74.14214377283085,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 13.16834310918692
+ ],
+ [
+ 74.02730108934716,
+ 13.362990844115373
+ ],
+ [
+ 73.79761572237982,
+ 13.362990844115373
+ ],
+ [
+ 73.68277303889613,
+ 13.16834310918692
+ ],
+ [
+ 73.79761572237982,
+ 12.973695374258465
+ ],
+ [
+ 74.02730108934716,
+ 12.973695374258465
+ ],
+ [
+ 74.14214377283085,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 13.557638579043825
+ ],
+ [
+ 74.02730108934716,
+ 13.752286313972279
+ ],
+ [
+ 73.79761572237982,
+ 13.752286313972279
+ ],
+ [
+ 73.68277303889613,
+ 13.557638579043825
+ ],
+ [
+ 73.79761572237982,
+ 13.362990844115371
+ ],
+ [
+ 74.02730108934716,
+ 13.362990844115371
+ ],
+ [
+ 74.14214377283085,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 13.946934048900731
+ ],
+ [
+ 74.02730108934716,
+ 14.141581783829185
+ ],
+ [
+ 73.79761572237982,
+ 14.141581783829185
+ ],
+ [
+ 73.68277303889613,
+ 13.946934048900731
+ ],
+ [
+ 73.79761572237982,
+ 13.752286313972277
+ ],
+ [
+ 74.02730108934716,
+ 13.752286313972277
+ ],
+ [
+ 74.14214377283085,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 14.336229518757637
+ ],
+ [
+ 74.02730108934716,
+ 14.530877253686091
+ ],
+ [
+ 73.79761572237982,
+ 14.530877253686091
+ ],
+ [
+ 73.68277303889613,
+ 14.336229518757637
+ ],
+ [
+ 73.79761572237982,
+ 14.141581783829183
+ ],
+ [
+ 74.02730108934716,
+ 14.141581783829183
+ ],
+ [
+ 74.14214377283085,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 14.725524988614545
+ ],
+ [
+ 74.02730108934716,
+ 14.920172723542999
+ ],
+ [
+ 73.79761572237982,
+ 14.920172723542999
+ ],
+ [
+ 73.68277303889613,
+ 14.725524988614545
+ ],
+ [
+ 73.79761572237982,
+ 14.530877253686091
+ ],
+ [
+ 74.02730108934716,
+ 14.530877253686091
+ ],
+ [
+ 74.14214377283085,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 15.114820458471451
+ ],
+ [
+ 74.02730108934716,
+ 15.309468193399905
+ ],
+ [
+ 73.79761572237982,
+ 15.309468193399905
+ ],
+ [
+ 73.68277303889613,
+ 15.114820458471451
+ ],
+ [
+ 73.79761572237982,
+ 14.920172723542997
+ ],
+ [
+ 74.02730108934716,
+ 14.920172723542997
+ ],
+ [
+ 74.14214377283085,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 15.504115928328357
+ ],
+ [
+ 74.02730108934716,
+ 15.69876366325681
+ ],
+ [
+ 73.79761572237982,
+ 15.69876366325681
+ ],
+ [
+ 73.68277303889613,
+ 15.504115928328357
+ ],
+ [
+ 73.79761572237982,
+ 15.309468193399903
+ ],
+ [
+ 74.02730108934716,
+ 15.309468193399903
+ ],
+ [
+ 74.14214377283085,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 15.893411398185265
+ ],
+ [
+ 74.02730108934716,
+ 16.088059133113717
+ ],
+ [
+ 73.79761572237982,
+ 16.088059133113717
+ ],
+ [
+ 73.68277303889613,
+ 15.893411398185265
+ ],
+ [
+ 73.79761572237982,
+ 15.69876366325681
+ ],
+ [
+ 74.02730108934716,
+ 15.69876366325681
+ ],
+ [
+ 74.14214377283085,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 16.28270686804217
+ ],
+ [
+ 74.02730108934716,
+ 16.47735460297062
+ ],
+ [
+ 73.79761572237982,
+ 16.47735460297062
+ ],
+ [
+ 73.68277303889613,
+ 16.28270686804217
+ ],
+ [
+ 73.79761572237982,
+ 16.088059133113717
+ ],
+ [
+ 74.02730108934716,
+ 16.088059133113717
+ ],
+ [
+ 74.14214377283085,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 16.672002337899077
+ ],
+ [
+ 74.02730108934716,
+ 16.86665007282753
+ ],
+ [
+ 73.79761572237982,
+ 16.86665007282753
+ ],
+ [
+ 73.68277303889613,
+ 16.672002337899077
+ ],
+ [
+ 73.79761572237982,
+ 16.477354602970625
+ ],
+ [
+ 74.02730108934716,
+ 16.477354602970625
+ ],
+ [
+ 74.14214377283085,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 17.06129780775598
+ ],
+ [
+ 74.02730108934716,
+ 17.255945542684433
+ ],
+ [
+ 73.79761572237982,
+ 17.255945542684433
+ ],
+ [
+ 73.68277303889613,
+ 17.06129780775598
+ ],
+ [
+ 73.79761572237982,
+ 16.86665007282753
+ ],
+ [
+ 74.02730108934716,
+ 16.86665007282753
+ ],
+ [
+ 74.14214377283085,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 17.45059327761289
+ ],
+ [
+ 74.02730108934716,
+ 17.64524101254134
+ ],
+ [
+ 73.79761572237982,
+ 17.64524101254134
+ ],
+ [
+ 73.68277303889613,
+ 17.45059327761289
+ ],
+ [
+ 73.79761572237982,
+ 17.255945542684437
+ ],
+ [
+ 74.02730108934716,
+ 17.255945542684437
+ ],
+ [
+ 74.14214377283085,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 17.839888747469793
+ ],
+ [
+ 74.02730108934716,
+ 18.034536482398245
+ ],
+ [
+ 73.79761572237982,
+ 18.034536482398245
+ ],
+ [
+ 73.68277303889613,
+ 17.839888747469793
+ ],
+ [
+ 73.79761572237982,
+ 17.64524101254134
+ ],
+ [
+ 74.02730108934716,
+ 17.64524101254134
+ ],
+ [
+ 74.14214377283085,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 18.2291842173267
+ ],
+ [
+ 74.02730108934716,
+ 18.423831952255153
+ ],
+ [
+ 73.79761572237982,
+ 18.423831952255153
+ ],
+ [
+ 73.68277303889613,
+ 18.2291842173267
+ ],
+ [
+ 73.79761572237982,
+ 18.03453648239825
+ ],
+ [
+ 74.02730108934716,
+ 18.03453648239825
+ ],
+ [
+ 74.14214377283085,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 18.61847968718361
+ ],
+ [
+ 74.02730108934716,
+ 18.81312742211206
+ ],
+ [
+ 73.79761572237982,
+ 18.81312742211206
+ ],
+ [
+ 73.68277303889613,
+ 18.61847968718361
+ ],
+ [
+ 73.79761572237982,
+ 18.423831952255156
+ ],
+ [
+ 74.02730108934716,
+ 18.423831952255156
+ ],
+ [
+ 74.14214377283085,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 19.007775157040513
+ ],
+ [
+ 74.02730108934716,
+ 19.202422891968965
+ ],
+ [
+ 73.79761572237982,
+ 19.202422891968965
+ ],
+ [
+ 73.68277303889613,
+ 19.007775157040513
+ ],
+ [
+ 73.79761572237982,
+ 18.81312742211206
+ ],
+ [
+ 74.02730108934716,
+ 18.81312742211206
+ ],
+ [
+ 74.14214377283085,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 19.39707062689742
+ ],
+ [
+ 74.02730108934716,
+ 19.591718361825873
+ ],
+ [
+ 73.79761572237982,
+ 19.591718361825873
+ ],
+ [
+ 73.68277303889613,
+ 19.39707062689742
+ ],
+ [
+ 73.79761572237982,
+ 19.20242289196897
+ ],
+ [
+ 74.02730108934716,
+ 19.20242289196897
+ ],
+ [
+ 74.14214377283085,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 19.78636609675433
+ ],
+ [
+ 74.02730108934716,
+ 19.98101383168278
+ ],
+ [
+ 73.79761572237982,
+ 19.98101383168278
+ ],
+ [
+ 73.68277303889613,
+ 19.78636609675433
+ ],
+ [
+ 73.79761572237982,
+ 19.591718361825876
+ ],
+ [
+ 74.02730108934716,
+ 19.591718361825876
+ ],
+ [
+ 74.14214377283085,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 20.175661566611232
+ ],
+ [
+ 74.02730108934716,
+ 20.370309301539685
+ ],
+ [
+ 73.79761572237982,
+ 20.370309301539685
+ ],
+ [
+ 73.68277303889613,
+ 20.175661566611232
+ ],
+ [
+ 73.79761572237982,
+ 19.98101383168278
+ ],
+ [
+ 74.02730108934716,
+ 19.98101383168278
+ ],
+ [
+ 74.14214377283085,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 20.564957036468137
+ ],
+ [
+ 74.02730108934716,
+ 20.75960477139659
+ ],
+ [
+ 73.79761572237982,
+ 20.75960477139659
+ ],
+ [
+ 73.68277303889613,
+ 20.564957036468137
+ ],
+ [
+ 73.79761572237982,
+ 20.370309301539685
+ ],
+ [
+ 74.02730108934716,
+ 20.370309301539685
+ ],
+ [
+ 74.14214377283085,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 20.954252506325044
+ ],
+ [
+ 74.02730108934716,
+ 21.148900241253497
+ ],
+ [
+ 73.79761572237982,
+ 21.148900241253497
+ ],
+ [
+ 73.68277303889613,
+ 20.954252506325044
+ ],
+ [
+ 73.79761572237982,
+ 20.759604771396592
+ ],
+ [
+ 74.02730108934716,
+ 20.759604771396592
+ ],
+ [
+ 74.14214377283085,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 21.343547976181952
+ ],
+ [
+ 74.02730108934716,
+ 21.538195711110404
+ ],
+ [
+ 73.79761572237982,
+ 21.538195711110404
+ ],
+ [
+ 73.68277303889613,
+ 21.343547976181952
+ ],
+ [
+ 73.79761572237982,
+ 21.1489002412535
+ ],
+ [
+ 74.02730108934716,
+ 21.1489002412535
+ ],
+ [
+ 74.14214377283085,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 21.732843446038856
+ ],
+ [
+ 74.02730108934716,
+ 21.92749118096731
+ ],
+ [
+ 73.79761572237982,
+ 21.92749118096731
+ ],
+ [
+ 73.68277303889613,
+ 21.732843446038856
+ ],
+ [
+ 73.79761572237982,
+ 21.538195711110404
+ ],
+ [
+ 74.02730108934716,
+ 21.538195711110404
+ ],
+ [
+ 74.14214377283085,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 22.122138915895764
+ ],
+ [
+ 74.02730108934716,
+ 22.316786650824216
+ ],
+ [
+ 73.79761572237982,
+ 22.316786650824216
+ ],
+ [
+ 73.68277303889613,
+ 22.122138915895764
+ ],
+ [
+ 73.79761572237982,
+ 21.927491180967312
+ ],
+ [
+ 74.02730108934716,
+ 21.927491180967312
+ ],
+ [
+ 74.14214377283085,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 22.511434385752672
+ ],
+ [
+ 74.02730108934716,
+ 22.706082120681124
+ ],
+ [
+ 73.79761572237982,
+ 22.706082120681124
+ ],
+ [
+ 73.68277303889613,
+ 22.511434385752672
+ ],
+ [
+ 73.79761572237982,
+ 22.31678665082422
+ ],
+ [
+ 74.02730108934716,
+ 22.31678665082422
+ ],
+ [
+ 74.14214377283085,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 22.900729855609576
+ ],
+ [
+ 74.02730108934716,
+ 23.09537759053803
+ ],
+ [
+ 73.79761572237982,
+ 23.09537759053803
+ ],
+ [
+ 73.68277303889613,
+ 22.900729855609576
+ ],
+ [
+ 73.79761572237982,
+ 22.706082120681124
+ ],
+ [
+ 74.02730108934716,
+ 22.706082120681124
+ ],
+ [
+ 74.14214377283085,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 23.290025325466484
+ ],
+ [
+ 74.02730108934716,
+ 23.484673060394936
+ ],
+ [
+ 73.79761572237982,
+ 23.484673060394936
+ ],
+ [
+ 73.68277303889613,
+ 23.290025325466484
+ ],
+ [
+ 73.79761572237982,
+ 23.095377590538032
+ ],
+ [
+ 74.02730108934716,
+ 23.095377590538032
+ ],
+ [
+ 74.14214377283085,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 23.67932079532339
+ ],
+ [
+ 74.02730108934716,
+ 23.873968530251844
+ ],
+ [
+ 73.79761572237982,
+ 23.873968530251844
+ ],
+ [
+ 73.68277303889613,
+ 23.67932079532339
+ ],
+ [
+ 73.79761572237982,
+ 23.48467306039494
+ ],
+ [
+ 74.02730108934716,
+ 23.48467306039494
+ ],
+ [
+ 74.14214377283085,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 24.068616265180296
+ ],
+ [
+ 74.02730108934716,
+ 24.263264000108748
+ ],
+ [
+ 73.79761572237982,
+ 24.263264000108748
+ ],
+ [
+ 73.68277303889613,
+ 24.068616265180296
+ ],
+ [
+ 73.79761572237982,
+ 23.873968530251844
+ ],
+ [
+ 74.02730108934716,
+ 23.873968530251844
+ ],
+ [
+ 74.14214377283085,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 24.4579117350372
+ ],
+ [
+ 74.02730108934716,
+ 24.652559469965652
+ ],
+ [
+ 73.79761572237982,
+ 24.652559469965652
+ ],
+ [
+ 73.68277303889613,
+ 24.4579117350372
+ ],
+ [
+ 73.79761572237982,
+ 24.263264000108748
+ ],
+ [
+ 74.02730108934716,
+ 24.263264000108748
+ ],
+ [
+ 74.14214377283085,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 24.847207204894108
+ ],
+ [
+ 74.02730108934716,
+ 25.04185493982256
+ ],
+ [
+ 73.79761572237982,
+ 25.04185493982256
+ ],
+ [
+ 73.68277303889613,
+ 24.847207204894108
+ ],
+ [
+ 73.79761572237982,
+ 24.652559469965656
+ ],
+ [
+ 74.02730108934716,
+ 24.652559469965656
+ ],
+ [
+ 74.14214377283085,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 25.236502674751016
+ ],
+ [
+ 74.02730108934716,
+ 25.431150409679468
+ ],
+ [
+ 73.79761572237982,
+ 25.431150409679468
+ ],
+ [
+ 73.68277303889613,
+ 25.236502674751016
+ ],
+ [
+ 73.79761572237982,
+ 25.041854939822564
+ ],
+ [
+ 74.02730108934716,
+ 25.041854939822564
+ ],
+ [
+ 74.14214377283085,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 25.62579814460792
+ ],
+ [
+ 74.02730108934716,
+ 25.820445879536372
+ ],
+ [
+ 73.79761572237982,
+ 25.820445879536372
+ ],
+ [
+ 73.68277303889613,
+ 25.62579814460792
+ ],
+ [
+ 73.79761572237982,
+ 25.431150409679468
+ ],
+ [
+ 74.02730108934716,
+ 25.431150409679468
+ ],
+ [
+ 74.14214377283085,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 26.015093614464828
+ ],
+ [
+ 74.02730108934716,
+ 26.20974134939328
+ ],
+ [
+ 73.79761572237982,
+ 26.20974134939328
+ ],
+ [
+ 73.68277303889613,
+ 26.015093614464828
+ ],
+ [
+ 73.79761572237982,
+ 25.820445879536376
+ ],
+ [
+ 74.02730108934716,
+ 25.820445879536376
+ ],
+ [
+ 74.14214377283085,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 26.404389084321735
+ ],
+ [
+ 74.02730108934716,
+ 26.599036819250188
+ ],
+ [
+ 73.79761572237982,
+ 26.599036819250188
+ ],
+ [
+ 73.68277303889613,
+ 26.404389084321735
+ ],
+ [
+ 73.79761572237982,
+ 26.209741349393283
+ ],
+ [
+ 74.02730108934716,
+ 26.209741349393283
+ ],
+ [
+ 74.14214377283085,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 26.79368455417864
+ ],
+ [
+ 74.02730108934716,
+ 26.988332289107092
+ ],
+ [
+ 73.79761572237982,
+ 26.988332289107092
+ ],
+ [
+ 73.68277303889613,
+ 26.79368455417864
+ ],
+ [
+ 73.79761572237982,
+ 26.599036819250188
+ ],
+ [
+ 74.02730108934716,
+ 26.599036819250188
+ ],
+ [
+ 74.14214377283085,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 27.182980024035547
+ ],
+ [
+ 74.02730108934716,
+ 27.377627758964
+ ],
+ [
+ 73.79761572237982,
+ 27.377627758964
+ ],
+ [
+ 73.68277303889613,
+ 27.182980024035547
+ ],
+ [
+ 73.79761572237982,
+ 26.988332289107095
+ ],
+ [
+ 74.02730108934716,
+ 26.988332289107095
+ ],
+ [
+ 74.14214377283085,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 27.572275493892455
+ ],
+ [
+ 74.02730108934716,
+ 27.766923228820907
+ ],
+ [
+ 73.79761572237982,
+ 27.766923228820907
+ ],
+ [
+ 73.68277303889613,
+ 27.572275493892455
+ ],
+ [
+ 73.79761572237982,
+ 27.377627758964003
+ ],
+ [
+ 74.02730108934716,
+ 27.377627758964003
+ ],
+ [
+ 74.14214377283085,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 27.96157096374936
+ ],
+ [
+ 74.02730108934716,
+ 28.15621869867781
+ ],
+ [
+ 73.79761572237982,
+ 28.15621869867781
+ ],
+ [
+ 73.68277303889613,
+ 27.96157096374936
+ ],
+ [
+ 73.79761572237982,
+ 27.766923228820907
+ ],
+ [
+ 74.02730108934716,
+ 27.766923228820907
+ ],
+ [
+ 74.14214377283085,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 28.350866433606267
+ ],
+ [
+ 74.02730108934716,
+ 28.54551416853472
+ ],
+ [
+ 73.79761572237982,
+ 28.54551416853472
+ ],
+ [
+ 73.68277303889613,
+ 28.350866433606267
+ ],
+ [
+ 73.79761572237982,
+ 28.156218698677815
+ ],
+ [
+ 74.02730108934716,
+ 28.156218698677815
+ ],
+ [
+ 74.14214377283085,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 28.74016190346317
+ ],
+ [
+ 74.02730108934716,
+ 28.934809638391624
+ ],
+ [
+ 73.79761572237982,
+ 28.934809638391624
+ ],
+ [
+ 73.68277303889613,
+ 28.74016190346317
+ ],
+ [
+ 73.79761572237982,
+ 28.54551416853472
+ ],
+ [
+ 74.02730108934716,
+ 28.54551416853472
+ ],
+ [
+ 74.14214377283085,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 29.12945737332008
+ ],
+ [
+ 74.02730108934716,
+ 29.32410510824853
+ ],
+ [
+ 73.79761572237982,
+ 29.32410510824853
+ ],
+ [
+ 73.68277303889613,
+ 29.12945737332008
+ ],
+ [
+ 73.79761572237982,
+ 28.934809638391627
+ ],
+ [
+ 74.02730108934716,
+ 28.934809638391627
+ ],
+ [
+ 74.14214377283085,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 29.518752843176983
+ ],
+ [
+ 74.02730108934716,
+ 29.713400578105436
+ ],
+ [
+ 73.79761572237982,
+ 29.713400578105436
+ ],
+ [
+ 73.68277303889613,
+ 29.518752843176983
+ ],
+ [
+ 73.79761572237982,
+ 29.32410510824853
+ ],
+ [
+ 74.02730108934716,
+ 29.32410510824853
+ ],
+ [
+ 74.14214377283085,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 29.90804831303389
+ ],
+ [
+ 74.02730108934716,
+ 30.102696047962343
+ ],
+ [
+ 73.79761572237982,
+ 30.102696047962343
+ ],
+ [
+ 73.68277303889613,
+ 29.90804831303389
+ ],
+ [
+ 73.79761572237982,
+ 29.71340057810544
+ ],
+ [
+ 74.02730108934716,
+ 29.71340057810544
+ ],
+ [
+ 74.14214377283085,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 30.297343782890795
+ ],
+ [
+ 74.02730108934716,
+ 30.491991517819248
+ ],
+ [
+ 73.79761572237982,
+ 30.491991517819248
+ ],
+ [
+ 73.68277303889613,
+ 30.297343782890795
+ ],
+ [
+ 73.79761572237982,
+ 30.102696047962343
+ ],
+ [
+ 74.02730108934716,
+ 30.102696047962343
+ ],
+ [
+ 74.14214377283085,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 30.686639252747703
+ ],
+ [
+ 74.02730108934716,
+ 30.881286987676155
+ ],
+ [
+ 73.79761572237982,
+ 30.881286987676155
+ ],
+ [
+ 73.68277303889613,
+ 30.686639252747703
+ ],
+ [
+ 73.79761572237982,
+ 30.49199151781925
+ ],
+ [
+ 74.02730108934716,
+ 30.49199151781925
+ ],
+ [
+ 74.14214377283085,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 31.07593472260461
+ ],
+ [
+ 74.02730108934716,
+ 31.270582457533063
+ ],
+ [
+ 73.79761572237982,
+ 31.270582457533063
+ ],
+ [
+ 73.68277303889613,
+ 31.07593472260461
+ ],
+ [
+ 73.79761572237982,
+ 30.88128698767616
+ ],
+ [
+ 74.02730108934716,
+ 30.88128698767616
+ ],
+ [
+ 74.14214377283085,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 31.465230192461515
+ ],
+ [
+ 74.02730108934716,
+ 31.659877927389967
+ ],
+ [
+ 73.79761572237982,
+ 31.659877927389967
+ ],
+ [
+ 73.68277303889613,
+ 31.465230192461515
+ ],
+ [
+ 73.79761572237982,
+ 31.270582457533063
+ ],
+ [
+ 74.02730108934716,
+ 31.270582457533063
+ ],
+ [
+ 74.14214377283085,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 31.854525662318423
+ ],
+ [
+ 74.02730108934716,
+ 32.049173397246875
+ ],
+ [
+ 73.79761572237982,
+ 32.049173397246875
+ ],
+ [
+ 73.68277303889613,
+ 31.854525662318423
+ ],
+ [
+ 73.79761572237982,
+ 31.65987792738997
+ ],
+ [
+ 74.02730108934716,
+ 31.65987792738997
+ ],
+ [
+ 74.14214377283085,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 32.24382113217533
+ ],
+ [
+ 74.02730108934716,
+ 32.43846886710378
+ ],
+ [
+ 73.79761572237982,
+ 32.43846886710378
+ ],
+ [
+ 73.68277303889613,
+ 32.24382113217533
+ ],
+ [
+ 73.79761572237982,
+ 32.049173397246875
+ ],
+ [
+ 74.02730108934716,
+ 32.049173397246875
+ ],
+ [
+ 74.14214377283085,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 32.63311660203224
+ ],
+ [
+ 74.02730108934716,
+ 32.82776433696069
+ ],
+ [
+ 73.79761572237982,
+ 32.82776433696069
+ ],
+ [
+ 73.68277303889613,
+ 32.63311660203224
+ ],
+ [
+ 73.79761572237982,
+ 32.438468867103786
+ ],
+ [
+ 74.02730108934716,
+ 32.438468867103786
+ ],
+ [
+ 74.14214377283085,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 33.02241207188914
+ ],
+ [
+ 74.02730108934716,
+ 33.217059806817595
+ ],
+ [
+ 73.79761572237982,
+ 33.217059806817595
+ ],
+ [
+ 73.68277303889613,
+ 33.02241207188914
+ ],
+ [
+ 73.79761572237982,
+ 32.82776433696069
+ ],
+ [
+ 74.02730108934716,
+ 32.82776433696069
+ ],
+ [
+ 74.14214377283085,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 33.41170754174605
+ ],
+ [
+ 74.02730108934716,
+ 33.6063552766745
+ ],
+ [
+ 73.79761572237982,
+ 33.6063552766745
+ ],
+ [
+ 73.68277303889613,
+ 33.41170754174605
+ ],
+ [
+ 73.79761572237982,
+ 33.217059806817595
+ ],
+ [
+ 74.02730108934716,
+ 33.217059806817595
+ ],
+ [
+ 74.14214377283085,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 33.80100301160295
+ ],
+ [
+ 74.02730108934716,
+ 33.9956507465314
+ ],
+ [
+ 73.79761572237982,
+ 33.9956507465314
+ ],
+ [
+ 73.68277303889613,
+ 33.80100301160295
+ ],
+ [
+ 73.79761572237982,
+ 33.6063552766745
+ ],
+ [
+ 74.02730108934716,
+ 33.6063552766745
+ ],
+ [
+ 74.14214377283085,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 34.190298481459855
+ ],
+ [
+ 74.02730108934716,
+ 34.38494621638831
+ ],
+ [
+ 73.79761572237982,
+ 34.38494621638831
+ ],
+ [
+ 73.68277303889613,
+ 34.190298481459855
+ ],
+ [
+ 73.79761572237982,
+ 33.9956507465314
+ ],
+ [
+ 74.02730108934716,
+ 33.9956507465314
+ ],
+ [
+ 74.14214377283085,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 34.57959395131677
+ ],
+ [
+ 74.02730108934716,
+ 34.77424168624522
+ ],
+ [
+ 73.79761572237982,
+ 34.77424168624522
+ ],
+ [
+ 73.68277303889613,
+ 34.57959395131677
+ ],
+ [
+ 73.79761572237982,
+ 34.384946216388315
+ ],
+ [
+ 74.02730108934716,
+ 34.384946216388315
+ ],
+ [
+ 74.14214377283085,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 34.96888942117368
+ ],
+ [
+ 74.02730108934716,
+ 35.16353715610213
+ ],
+ [
+ 73.79761572237982,
+ 35.16353715610213
+ ],
+ [
+ 73.68277303889613,
+ 34.96888942117368
+ ],
+ [
+ 73.79761572237982,
+ 34.774241686245226
+ ],
+ [
+ 74.02730108934716,
+ 34.774241686245226
+ ],
+ [
+ 74.14214377283085,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 35.35818489103058
+ ],
+ [
+ 74.02730108934716,
+ 35.552832625959034
+ ],
+ [
+ 73.79761572237982,
+ 35.552832625959034
+ ],
+ [
+ 73.68277303889613,
+ 35.35818489103058
+ ],
+ [
+ 73.79761572237982,
+ 35.16353715610213
+ ],
+ [
+ 74.02730108934716,
+ 35.16353715610213
+ ],
+ [
+ 74.14214377283085,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 35.74748036088749
+ ],
+ [
+ 74.02730108934716,
+ 35.94212809581594
+ ],
+ [
+ 73.79761572237982,
+ 35.94212809581594
+ ],
+ [
+ 73.68277303889613,
+ 35.74748036088749
+ ],
+ [
+ 73.79761572237982,
+ 35.552832625959034
+ ],
+ [
+ 74.02730108934716,
+ 35.552832625959034
+ ],
+ [
+ 74.14214377283085,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 36.13677583074439
+ ],
+ [
+ 74.02730108934716,
+ 36.33142356567284
+ ],
+ [
+ 73.79761572237982,
+ 36.33142356567284
+ ],
+ [
+ 73.68277303889613,
+ 36.13677583074439
+ ],
+ [
+ 73.79761572237982,
+ 35.94212809581594
+ ],
+ [
+ 74.02730108934716,
+ 35.94212809581594
+ ],
+ [
+ 74.14214377283085,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 36.526071300601295
+ ],
+ [
+ 74.02730108934716,
+ 36.72071903552975
+ ],
+ [
+ 73.79761572237982,
+ 36.72071903552975
+ ],
+ [
+ 73.68277303889613,
+ 36.526071300601295
+ ],
+ [
+ 73.79761572237982,
+ 36.33142356567284
+ ],
+ [
+ 74.02730108934716,
+ 36.33142356567284
+ ],
+ [
+ 74.14214377283085,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 36.915366770458206
+ ],
+ [
+ 74.02730108934716,
+ 37.11001450538666
+ ],
+ [
+ 73.79761572237982,
+ 37.11001450538666
+ ],
+ [
+ 73.68277303889613,
+ 36.915366770458206
+ ],
+ [
+ 73.79761572237982,
+ 36.720719035529754
+ ],
+ [
+ 74.02730108934716,
+ 36.720719035529754
+ ],
+ [
+ 74.14214377283085,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 37.30466224031511
+ ],
+ [
+ 74.02730108934716,
+ 37.49930997524356
+ ],
+ [
+ 73.79761572237982,
+ 37.49930997524356
+ ],
+ [
+ 73.68277303889613,
+ 37.30466224031511
+ ],
+ [
+ 73.79761572237982,
+ 37.11001450538666
+ ],
+ [
+ 74.02730108934716,
+ 37.11001450538666
+ ],
+ [
+ 74.14214377283085,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 37.69395771017202
+ ],
+ [
+ 74.02730108934716,
+ 37.888605445100474
+ ],
+ [
+ 73.79761572237982,
+ 37.888605445100474
+ ],
+ [
+ 73.68277303889613,
+ 37.69395771017202
+ ],
+ [
+ 73.79761572237982,
+ 37.49930997524357
+ ],
+ [
+ 74.02730108934716,
+ 37.49930997524357
+ ],
+ [
+ 74.14214377283085,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 38.083253180028926
+ ],
+ [
+ 74.02730108934716,
+ 38.27790091495738
+ ],
+ [
+ 73.79761572237982,
+ 38.27790091495738
+ ],
+ [
+ 73.68277303889613,
+ 38.083253180028926
+ ],
+ [
+ 73.79761572237982,
+ 37.888605445100474
+ ],
+ [
+ 74.02730108934716,
+ 37.888605445100474
+ ],
+ [
+ 74.14214377283085,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 38.47254864988583
+ ],
+ [
+ 74.02730108934716,
+ 38.66719638481428
+ ],
+ [
+ 73.79761572237982,
+ 38.66719638481428
+ ],
+ [
+ 73.68277303889613,
+ 38.47254864988583
+ ],
+ [
+ 73.79761572237982,
+ 38.27790091495738
+ ],
+ [
+ 74.02730108934716,
+ 38.27790091495738
+ ],
+ [
+ 74.14214377283085,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 38.861844119742734
+ ],
+ [
+ 74.02730108934716,
+ 39.05649185467119
+ ],
+ [
+ 73.79761572237982,
+ 39.05649185467119
+ ],
+ [
+ 73.68277303889613,
+ 38.861844119742734
+ ],
+ [
+ 73.79761572237982,
+ 38.66719638481428
+ ],
+ [
+ 74.02730108934716,
+ 38.66719638481428
+ ],
+ [
+ 74.14214377283085,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 39.25113958959964
+ ],
+ [
+ 74.02730108934716,
+ 39.44578732452809
+ ],
+ [
+ 73.79761572237982,
+ 39.44578732452809
+ ],
+ [
+ 73.68277303889613,
+ 39.25113958959964
+ ],
+ [
+ 73.79761572237982,
+ 39.05649185467119
+ ],
+ [
+ 74.02730108934716,
+ 39.05649185467119
+ ],
+ [
+ 74.14214377283085,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 39.64043505945655
+ ],
+ [
+ 74.02730108934716,
+ 39.835082794385
+ ],
+ [
+ 73.79761572237982,
+ 39.835082794385
+ ],
+ [
+ 73.68277303889613,
+ 39.64043505945655
+ ],
+ [
+ 73.79761572237982,
+ 39.4457873245281
+ ],
+ [
+ 74.02730108934716,
+ 39.4457873245281
+ ],
+ [
+ 74.14214377283085,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 40.029730529313454
+ ],
+ [
+ 74.02730108934716,
+ 40.224378264241906
+ ],
+ [
+ 73.79761572237982,
+ 40.224378264241906
+ ],
+ [
+ 73.68277303889613,
+ 40.029730529313454
+ ],
+ [
+ 73.79761572237982,
+ 39.835082794385
+ ],
+ [
+ 74.02730108934716,
+ 39.835082794385
+ ],
+ [
+ 74.14214377283085,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 40.419025999170366
+ ],
+ [
+ 74.02730108934716,
+ 40.61367373409882
+ ],
+ [
+ 73.79761572237982,
+ 40.61367373409882
+ ],
+ [
+ 73.68277303889613,
+ 40.419025999170366
+ ],
+ [
+ 73.79761572237982,
+ 40.22437826424191
+ ],
+ [
+ 74.02730108934716,
+ 40.22437826424191
+ ],
+ [
+ 74.14214377283085,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 40.80832146902727
+ ],
+ [
+ 74.02730108934716,
+ 41.00296920395572
+ ],
+ [
+ 73.79761572237982,
+ 41.00296920395572
+ ],
+ [
+ 73.68277303889613,
+ 40.80832146902727
+ ],
+ [
+ 73.79761572237982,
+ 40.61367373409882
+ ],
+ [
+ 74.02730108934716,
+ 40.61367373409882
+ ],
+ [
+ 74.14214377283085,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 41.197616938884174
+ ],
+ [
+ 74.02730108934716,
+ 41.392264673812626
+ ],
+ [
+ 73.79761572237982,
+ 41.392264673812626
+ ],
+ [
+ 73.68277303889613,
+ 41.197616938884174
+ ],
+ [
+ 73.79761572237982,
+ 41.00296920395572
+ ],
+ [
+ 74.02730108934716,
+ 41.00296920395572
+ ],
+ [
+ 74.14214377283085,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 41.58691240874108
+ ],
+ [
+ 74.02730108934716,
+ 41.78156014366953
+ ],
+ [
+ 73.79761572237982,
+ 41.78156014366953
+ ],
+ [
+ 73.68277303889613,
+ 41.58691240874108
+ ],
+ [
+ 73.79761572237982,
+ 41.392264673812626
+ ],
+ [
+ 74.02730108934716,
+ 41.392264673812626
+ ],
+ [
+ 74.14214377283085,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 41.97620787859798
+ ],
+ [
+ 74.02730108934716,
+ 42.170855613526435
+ ],
+ [
+ 73.79761572237982,
+ 42.170855613526435
+ ],
+ [
+ 73.68277303889613,
+ 41.97620787859798
+ ],
+ [
+ 73.79761572237982,
+ 41.78156014366953
+ ],
+ [
+ 74.02730108934716,
+ 41.78156014366953
+ ],
+ [
+ 74.14214377283085,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 42.365503348454894
+ ],
+ [
+ 74.02730108934716,
+ 42.560151083383346
+ ],
+ [
+ 73.79761572237982,
+ 42.560151083383346
+ ],
+ [
+ 73.68277303889613,
+ 42.365503348454894
+ ],
+ [
+ 73.79761572237982,
+ 42.17085561352644
+ ],
+ [
+ 74.02730108934716,
+ 42.17085561352644
+ ],
+ [
+ 74.14214377283085,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 42.754798818311805
+ ],
+ [
+ 74.02730108934716,
+ 42.94944655324026
+ ],
+ [
+ 73.79761572237982,
+ 42.94944655324026
+ ],
+ [
+ 73.68277303889613,
+ 42.754798818311805
+ ],
+ [
+ 73.79761572237982,
+ 42.56015108338335
+ ],
+ [
+ 74.02730108934716,
+ 42.56015108338335
+ ],
+ [
+ 74.14214377283085,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 43.14409428816871
+ ],
+ [
+ 74.02730108934716,
+ 43.33874202309716
+ ],
+ [
+ 73.79761572237982,
+ 43.33874202309716
+ ],
+ [
+ 73.68277303889613,
+ 43.14409428816871
+ ],
+ [
+ 73.79761572237982,
+ 42.94944655324026
+ ],
+ [
+ 74.02730108934716,
+ 42.94944655324026
+ ],
+ [
+ 74.14214377283085,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 43.53338975802561
+ ],
+ [
+ 74.02730108934716,
+ 43.728037492954066
+ ],
+ [
+ 73.79761572237982,
+ 43.728037492954066
+ ],
+ [
+ 73.68277303889613,
+ 43.53338975802561
+ ],
+ [
+ 73.79761572237982,
+ 43.33874202309716
+ ],
+ [
+ 74.02730108934716,
+ 43.33874202309716
+ ],
+ [
+ 74.14214377283085,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 43.92268522788252
+ ],
+ [
+ 74.02730108934716,
+ 44.11733296281097
+ ],
+ [
+ 73.79761572237982,
+ 44.11733296281097
+ ],
+ [
+ 73.68277303889613,
+ 43.92268522788252
+ ],
+ [
+ 73.79761572237982,
+ 43.728037492954066
+ ],
+ [
+ 74.02730108934716,
+ 43.728037492954066
+ ],
+ [
+ 74.14214377283085,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 44.31198069773942
+ ],
+ [
+ 74.02730108934716,
+ 44.506628432667874
+ ],
+ [
+ 73.79761572237982,
+ 44.506628432667874
+ ],
+ [
+ 73.68277303889613,
+ 44.31198069773942
+ ],
+ [
+ 73.79761572237982,
+ 44.11733296281097
+ ],
+ [
+ 74.02730108934716,
+ 44.11733296281097
+ ],
+ [
+ 74.14214377283085,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 44.701276167596326
+ ],
+ [
+ 74.02730108934716,
+ 44.89592390252478
+ ],
+ [
+ 73.79761572237982,
+ 44.89592390252478
+ ],
+ [
+ 73.68277303889613,
+ 44.701276167596326
+ ],
+ [
+ 73.79761572237982,
+ 44.506628432667874
+ ],
+ [
+ 74.02730108934716,
+ 44.506628432667874
+ ],
+ [
+ 74.14214377283085,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 45.090571637453245
+ ],
+ [
+ 74.02730108934716,
+ 45.2852193723817
+ ],
+ [
+ 73.79761572237982,
+ 45.2852193723817
+ ],
+ [
+ 73.68277303889613,
+ 45.090571637453245
+ ],
+ [
+ 73.79761572237982,
+ 44.89592390252479
+ ],
+ [
+ 74.02730108934716,
+ 44.89592390252479
+ ],
+ [
+ 74.14214377283085,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 45.47986710731015
+ ],
+ [
+ 74.02730108934716,
+ 45.6745148422386
+ ],
+ [
+ 73.79761572237982,
+ 45.6745148422386
+ ],
+ [
+ 73.68277303889613,
+ 45.47986710731015
+ ],
+ [
+ 73.79761572237982,
+ 45.2852193723817
+ ],
+ [
+ 74.02730108934716,
+ 45.2852193723817
+ ],
+ [
+ 74.14214377283085,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 45.86916257716705
+ ],
+ [
+ 74.02730108934716,
+ 46.063810312095505
+ ],
+ [
+ 73.79761572237982,
+ 46.063810312095505
+ ],
+ [
+ 73.68277303889613,
+ 45.86916257716705
+ ],
+ [
+ 73.79761572237982,
+ 45.6745148422386
+ ],
+ [
+ 74.02730108934716,
+ 45.6745148422386
+ ],
+ [
+ 74.14214377283085,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 46.25845804702396
+ ],
+ [
+ 74.02730108934716,
+ 46.45310578195241
+ ],
+ [
+ 73.79761572237982,
+ 46.45310578195241
+ ],
+ [
+ 73.68277303889613,
+ 46.25845804702396
+ ],
+ [
+ 73.79761572237982,
+ 46.063810312095505
+ ],
+ [
+ 74.02730108934716,
+ 46.063810312095505
+ ],
+ [
+ 74.14214377283085,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 46.64775351688086
+ ],
+ [
+ 74.02730108934716,
+ 46.842401251809314
+ ],
+ [
+ 73.79761572237982,
+ 46.842401251809314
+ ],
+ [
+ 73.68277303889613,
+ 46.64775351688086
+ ],
+ [
+ 73.79761572237982,
+ 46.45310578195241
+ ],
+ [
+ 74.02730108934716,
+ 46.45310578195241
+ ],
+ [
+ 74.14214377283085,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 47.037048986737766
+ ],
+ [
+ 74.02730108934716,
+ 47.23169672166622
+ ],
+ [
+ 73.79761572237982,
+ 47.23169672166622
+ ],
+ [
+ 73.68277303889613,
+ 47.037048986737766
+ ],
+ [
+ 73.79761572237982,
+ 46.842401251809314
+ ],
+ [
+ 74.02730108934716,
+ 46.842401251809314
+ ],
+ [
+ 74.14214377283085,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 47.42634445659467
+ ],
+ [
+ 74.02730108934716,
+ 47.62099219152312
+ ],
+ [
+ 73.79761572237982,
+ 47.62099219152312
+ ],
+ [
+ 73.68277303889613,
+ 47.42634445659467
+ ],
+ [
+ 73.79761572237982,
+ 47.23169672166622
+ ],
+ [
+ 74.02730108934716,
+ 47.23169672166622
+ ],
+ [
+ 74.14214377283085,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.14214377283085,
+ 47.81563992645159
+ ],
+ [
+ 74.02730108934716,
+ 48.01028766138004
+ ],
+ [
+ 73.79761572237982,
+ 48.01028766138004
+ ],
+ [
+ 73.68277303889613,
+ 47.81563992645159
+ ],
+ [
+ 73.79761572237982,
+ 47.620992191523136
+ ],
+ [
+ 74.02730108934716,
+ 47.620992191523136
+ ],
+ [
+ 74.14214377283085,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 11.805808964687746
+ ],
+ [
+ 74.3718291397982,
+ 12.0004566996162
+ ],
+ [
+ 74.14214377283085,
+ 12.0004566996162
+ ],
+ [
+ 74.02730108934716,
+ 11.805808964687746
+ ],
+ [
+ 74.14214377283085,
+ 11.611161229759292
+ ],
+ [
+ 74.3718291397982,
+ 11.611161229759292
+ ],
+ [
+ 74.48667182328188,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 12.195104434544652
+ ],
+ [
+ 74.3718291397982,
+ 12.389752169473105
+ ],
+ [
+ 74.14214377283085,
+ 12.389752169473105
+ ],
+ [
+ 74.02730108934716,
+ 12.195104434544652
+ ],
+ [
+ 74.14214377283085,
+ 12.000456699616198
+ ],
+ [
+ 74.3718291397982,
+ 12.000456699616198
+ ],
+ [
+ 74.48667182328188,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 12.58439990440156
+ ],
+ [
+ 74.3718291397982,
+ 12.779047639330013
+ ],
+ [
+ 74.14214377283085,
+ 12.779047639330013
+ ],
+ [
+ 74.02730108934716,
+ 12.58439990440156
+ ],
+ [
+ 74.14214377283085,
+ 12.389752169473105
+ ],
+ [
+ 74.3718291397982,
+ 12.389752169473105
+ ],
+ [
+ 74.48667182328188,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 12.973695374258465
+ ],
+ [
+ 74.3718291397982,
+ 13.16834310918692
+ ],
+ [
+ 74.14214377283085,
+ 13.16834310918692
+ ],
+ [
+ 74.02730108934716,
+ 12.973695374258465
+ ],
+ [
+ 74.14214377283085,
+ 12.779047639330011
+ ],
+ [
+ 74.3718291397982,
+ 12.779047639330011
+ ],
+ [
+ 74.48667182328188,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 13.362990844115371
+ ],
+ [
+ 74.3718291397982,
+ 13.557638579043825
+ ],
+ [
+ 74.14214377283085,
+ 13.557638579043825
+ ],
+ [
+ 74.02730108934716,
+ 13.362990844115371
+ ],
+ [
+ 74.14214377283085,
+ 13.168343109186917
+ ],
+ [
+ 74.3718291397982,
+ 13.168343109186917
+ ],
+ [
+ 74.48667182328188,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 13.752286313972277
+ ],
+ [
+ 74.3718291397982,
+ 13.946934048900731
+ ],
+ [
+ 74.14214377283085,
+ 13.946934048900731
+ ],
+ [
+ 74.02730108934716,
+ 13.752286313972277
+ ],
+ [
+ 74.14214377283085,
+ 13.557638579043823
+ ],
+ [
+ 74.3718291397982,
+ 13.557638579043823
+ ],
+ [
+ 74.48667182328188,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 14.141581783829183
+ ],
+ [
+ 74.3718291397982,
+ 14.336229518757637
+ ],
+ [
+ 74.14214377283085,
+ 14.336229518757637
+ ],
+ [
+ 74.02730108934716,
+ 14.141581783829183
+ ],
+ [
+ 74.14214377283085,
+ 13.94693404890073
+ ],
+ [
+ 74.3718291397982,
+ 13.94693404890073
+ ],
+ [
+ 74.48667182328188,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 14.530877253686091
+ ],
+ [
+ 74.3718291397982,
+ 14.725524988614545
+ ],
+ [
+ 74.14214377283085,
+ 14.725524988614545
+ ],
+ [
+ 74.02730108934716,
+ 14.530877253686091
+ ],
+ [
+ 74.14214377283085,
+ 14.336229518757637
+ ],
+ [
+ 74.3718291397982,
+ 14.336229518757637
+ ],
+ [
+ 74.48667182328188,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 14.920172723542997
+ ],
+ [
+ 74.3718291397982,
+ 15.114820458471451
+ ],
+ [
+ 74.14214377283085,
+ 15.114820458471451
+ ],
+ [
+ 74.02730108934716,
+ 14.920172723542997
+ ],
+ [
+ 74.14214377283085,
+ 14.725524988614543
+ ],
+ [
+ 74.3718291397982,
+ 14.725524988614543
+ ],
+ [
+ 74.48667182328188,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 15.309468193399903
+ ],
+ [
+ 74.3718291397982,
+ 15.504115928328357
+ ],
+ [
+ 74.14214377283085,
+ 15.504115928328357
+ ],
+ [
+ 74.02730108934716,
+ 15.309468193399903
+ ],
+ [
+ 74.14214377283085,
+ 15.11482045847145
+ ],
+ [
+ 74.3718291397982,
+ 15.11482045847145
+ ],
+ [
+ 74.48667182328188,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 15.69876366325681
+ ],
+ [
+ 74.3718291397982,
+ 15.893411398185265
+ ],
+ [
+ 74.14214377283085,
+ 15.893411398185265
+ ],
+ [
+ 74.02730108934716,
+ 15.69876366325681
+ ],
+ [
+ 74.14214377283085,
+ 15.504115928328357
+ ],
+ [
+ 74.3718291397982,
+ 15.504115928328357
+ ],
+ [
+ 74.48667182328188,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 16.088059133113717
+ ],
+ [
+ 74.3718291397982,
+ 16.28270686804217
+ ],
+ [
+ 74.14214377283085,
+ 16.28270686804217
+ ],
+ [
+ 74.02730108934716,
+ 16.088059133113717
+ ],
+ [
+ 74.14214377283085,
+ 15.893411398185263
+ ],
+ [
+ 74.3718291397982,
+ 15.893411398185263
+ ],
+ [
+ 74.48667182328188,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 16.477354602970625
+ ],
+ [
+ 74.3718291397982,
+ 16.672002337899077
+ ],
+ [
+ 74.14214377283085,
+ 16.672002337899077
+ ],
+ [
+ 74.02730108934716,
+ 16.477354602970625
+ ],
+ [
+ 74.14214377283085,
+ 16.282706868042172
+ ],
+ [
+ 74.3718291397982,
+ 16.282706868042172
+ ],
+ [
+ 74.48667182328188,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 16.86665007282753
+ ],
+ [
+ 74.3718291397982,
+ 17.06129780775598
+ ],
+ [
+ 74.14214377283085,
+ 17.06129780775598
+ ],
+ [
+ 74.02730108934716,
+ 16.86665007282753
+ ],
+ [
+ 74.14214377283085,
+ 16.672002337899077
+ ],
+ [
+ 74.3718291397982,
+ 16.672002337899077
+ ],
+ [
+ 74.48667182328188,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 17.255945542684437
+ ],
+ [
+ 74.3718291397982,
+ 17.45059327761289
+ ],
+ [
+ 74.14214377283085,
+ 17.45059327761289
+ ],
+ [
+ 74.02730108934716,
+ 17.255945542684437
+ ],
+ [
+ 74.14214377283085,
+ 17.061297807755984
+ ],
+ [
+ 74.3718291397982,
+ 17.061297807755984
+ ],
+ [
+ 74.48667182328188,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 17.64524101254134
+ ],
+ [
+ 74.3718291397982,
+ 17.839888747469793
+ ],
+ [
+ 74.14214377283085,
+ 17.839888747469793
+ ],
+ [
+ 74.02730108934716,
+ 17.64524101254134
+ ],
+ [
+ 74.14214377283085,
+ 17.45059327761289
+ ],
+ [
+ 74.3718291397982,
+ 17.45059327761289
+ ],
+ [
+ 74.48667182328188,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 18.03453648239825
+ ],
+ [
+ 74.3718291397982,
+ 18.2291842173267
+ ],
+ [
+ 74.14214377283085,
+ 18.2291842173267
+ ],
+ [
+ 74.02730108934716,
+ 18.03453648239825
+ ],
+ [
+ 74.14214377283085,
+ 17.839888747469796
+ ],
+ [
+ 74.3718291397982,
+ 17.839888747469796
+ ],
+ [
+ 74.48667182328188,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 18.423831952255156
+ ],
+ [
+ 74.3718291397982,
+ 18.61847968718361
+ ],
+ [
+ 74.14214377283085,
+ 18.61847968718361
+ ],
+ [
+ 74.02730108934716,
+ 18.423831952255156
+ ],
+ [
+ 74.14214377283085,
+ 18.229184217326704
+ ],
+ [
+ 74.3718291397982,
+ 18.229184217326704
+ ],
+ [
+ 74.48667182328188,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 18.81312742211206
+ ],
+ [
+ 74.3718291397982,
+ 19.007775157040513
+ ],
+ [
+ 74.14214377283085,
+ 19.007775157040513
+ ],
+ [
+ 74.02730108934716,
+ 18.81312742211206
+ ],
+ [
+ 74.14214377283085,
+ 18.61847968718361
+ ],
+ [
+ 74.3718291397982,
+ 18.61847968718361
+ ],
+ [
+ 74.48667182328188,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 19.20242289196897
+ ],
+ [
+ 74.3718291397982,
+ 19.39707062689742
+ ],
+ [
+ 74.14214377283085,
+ 19.39707062689742
+ ],
+ [
+ 74.02730108934716,
+ 19.20242289196897
+ ],
+ [
+ 74.14214377283085,
+ 19.007775157040516
+ ],
+ [
+ 74.3718291397982,
+ 19.007775157040516
+ ],
+ [
+ 74.48667182328188,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 19.591718361825876
+ ],
+ [
+ 74.3718291397982,
+ 19.78636609675433
+ ],
+ [
+ 74.14214377283085,
+ 19.78636609675433
+ ],
+ [
+ 74.02730108934716,
+ 19.591718361825876
+ ],
+ [
+ 74.14214377283085,
+ 19.397070626897424
+ ],
+ [
+ 74.3718291397982,
+ 19.397070626897424
+ ],
+ [
+ 74.48667182328188,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 19.98101383168278
+ ],
+ [
+ 74.3718291397982,
+ 20.175661566611232
+ ],
+ [
+ 74.14214377283085,
+ 20.175661566611232
+ ],
+ [
+ 74.02730108934716,
+ 19.98101383168278
+ ],
+ [
+ 74.14214377283085,
+ 19.78636609675433
+ ],
+ [
+ 74.3718291397982,
+ 19.78636609675433
+ ],
+ [
+ 74.48667182328188,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 20.370309301539685
+ ],
+ [
+ 74.3718291397982,
+ 20.564957036468137
+ ],
+ [
+ 74.14214377283085,
+ 20.564957036468137
+ ],
+ [
+ 74.02730108934716,
+ 20.370309301539685
+ ],
+ [
+ 74.14214377283085,
+ 20.175661566611232
+ ],
+ [
+ 74.3718291397982,
+ 20.175661566611232
+ ],
+ [
+ 74.48667182328188,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 20.759604771396592
+ ],
+ [
+ 74.3718291397982,
+ 20.954252506325044
+ ],
+ [
+ 74.14214377283085,
+ 20.954252506325044
+ ],
+ [
+ 74.02730108934716,
+ 20.759604771396592
+ ],
+ [
+ 74.14214377283085,
+ 20.56495703646814
+ ],
+ [
+ 74.3718291397982,
+ 20.56495703646814
+ ],
+ [
+ 74.48667182328188,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 21.1489002412535
+ ],
+ [
+ 74.3718291397982,
+ 21.343547976181952
+ ],
+ [
+ 74.14214377283085,
+ 21.343547976181952
+ ],
+ [
+ 74.02730108934716,
+ 21.1489002412535
+ ],
+ [
+ 74.14214377283085,
+ 20.954252506325048
+ ],
+ [
+ 74.3718291397982,
+ 20.954252506325048
+ ],
+ [
+ 74.48667182328188,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 21.538195711110404
+ ],
+ [
+ 74.3718291397982,
+ 21.732843446038856
+ ],
+ [
+ 74.14214377283085,
+ 21.732843446038856
+ ],
+ [
+ 74.02730108934716,
+ 21.538195711110404
+ ],
+ [
+ 74.14214377283085,
+ 21.343547976181952
+ ],
+ [
+ 74.3718291397982,
+ 21.343547976181952
+ ],
+ [
+ 74.48667182328188,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 21.927491180967312
+ ],
+ [
+ 74.3718291397982,
+ 22.122138915895764
+ ],
+ [
+ 74.14214377283085,
+ 22.122138915895764
+ ],
+ [
+ 74.02730108934716,
+ 21.927491180967312
+ ],
+ [
+ 74.14214377283085,
+ 21.73284344603886
+ ],
+ [
+ 74.3718291397982,
+ 21.73284344603886
+ ],
+ [
+ 74.48667182328188,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 22.31678665082422
+ ],
+ [
+ 74.3718291397982,
+ 22.511434385752672
+ ],
+ [
+ 74.14214377283085,
+ 22.511434385752672
+ ],
+ [
+ 74.02730108934716,
+ 22.31678665082422
+ ],
+ [
+ 74.14214377283085,
+ 22.122138915895768
+ ],
+ [
+ 74.3718291397982,
+ 22.122138915895768
+ ],
+ [
+ 74.48667182328188,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 22.706082120681124
+ ],
+ [
+ 74.3718291397982,
+ 22.900729855609576
+ ],
+ [
+ 74.14214377283085,
+ 22.900729855609576
+ ],
+ [
+ 74.02730108934716,
+ 22.706082120681124
+ ],
+ [
+ 74.14214377283085,
+ 22.511434385752672
+ ],
+ [
+ 74.3718291397982,
+ 22.511434385752672
+ ],
+ [
+ 74.48667182328188,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 23.095377590538032
+ ],
+ [
+ 74.3718291397982,
+ 23.290025325466484
+ ],
+ [
+ 74.14214377283085,
+ 23.290025325466484
+ ],
+ [
+ 74.02730108934716,
+ 23.095377590538032
+ ],
+ [
+ 74.14214377283085,
+ 22.90072985560958
+ ],
+ [
+ 74.3718291397982,
+ 22.90072985560958
+ ],
+ [
+ 74.48667182328188,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 23.48467306039494
+ ],
+ [
+ 74.3718291397982,
+ 23.67932079532339
+ ],
+ [
+ 74.14214377283085,
+ 23.67932079532339
+ ],
+ [
+ 74.02730108934716,
+ 23.48467306039494
+ ],
+ [
+ 74.14214377283085,
+ 23.290025325466488
+ ],
+ [
+ 74.3718291397982,
+ 23.290025325466488
+ ],
+ [
+ 74.48667182328188,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 23.873968530251844
+ ],
+ [
+ 74.3718291397982,
+ 24.068616265180296
+ ],
+ [
+ 74.14214377283085,
+ 24.068616265180296
+ ],
+ [
+ 74.02730108934716,
+ 23.873968530251844
+ ],
+ [
+ 74.14214377283085,
+ 23.67932079532339
+ ],
+ [
+ 74.3718291397982,
+ 23.67932079532339
+ ],
+ [
+ 74.48667182328188,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 24.263264000108748
+ ],
+ [
+ 74.3718291397982,
+ 24.4579117350372
+ ],
+ [
+ 74.14214377283085,
+ 24.4579117350372
+ ],
+ [
+ 74.02730108934716,
+ 24.263264000108748
+ ],
+ [
+ 74.14214377283085,
+ 24.068616265180296
+ ],
+ [
+ 74.3718291397982,
+ 24.068616265180296
+ ],
+ [
+ 74.48667182328188,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 24.652559469965656
+ ],
+ [
+ 74.3718291397982,
+ 24.847207204894108
+ ],
+ [
+ 74.14214377283085,
+ 24.847207204894108
+ ],
+ [
+ 74.02730108934716,
+ 24.652559469965656
+ ],
+ [
+ 74.14214377283085,
+ 24.457911735037204
+ ],
+ [
+ 74.3718291397982,
+ 24.457911735037204
+ ],
+ [
+ 74.48667182328188,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 25.041854939822564
+ ],
+ [
+ 74.3718291397982,
+ 25.236502674751016
+ ],
+ [
+ 74.14214377283085,
+ 25.236502674751016
+ ],
+ [
+ 74.02730108934716,
+ 25.041854939822564
+ ],
+ [
+ 74.14214377283085,
+ 24.84720720489411
+ ],
+ [
+ 74.3718291397982,
+ 24.84720720489411
+ ],
+ [
+ 74.48667182328188,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 25.431150409679468
+ ],
+ [
+ 74.3718291397982,
+ 25.62579814460792
+ ],
+ [
+ 74.14214377283085,
+ 25.62579814460792
+ ],
+ [
+ 74.02730108934716,
+ 25.431150409679468
+ ],
+ [
+ 74.14214377283085,
+ 25.236502674751016
+ ],
+ [
+ 74.3718291397982,
+ 25.236502674751016
+ ],
+ [
+ 74.48667182328188,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 25.820445879536376
+ ],
+ [
+ 74.3718291397982,
+ 26.015093614464828
+ ],
+ [
+ 74.14214377283085,
+ 26.015093614464828
+ ],
+ [
+ 74.02730108934716,
+ 25.820445879536376
+ ],
+ [
+ 74.14214377283085,
+ 25.625798144607923
+ ],
+ [
+ 74.3718291397982,
+ 25.625798144607923
+ ],
+ [
+ 74.48667182328188,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 26.209741349393283
+ ],
+ [
+ 74.3718291397982,
+ 26.404389084321735
+ ],
+ [
+ 74.14214377283085,
+ 26.404389084321735
+ ],
+ [
+ 74.02730108934716,
+ 26.209741349393283
+ ],
+ [
+ 74.14214377283085,
+ 26.01509361446483
+ ],
+ [
+ 74.3718291397982,
+ 26.01509361446483
+ ],
+ [
+ 74.48667182328188,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 26.599036819250188
+ ],
+ [
+ 74.3718291397982,
+ 26.79368455417864
+ ],
+ [
+ 74.14214377283085,
+ 26.79368455417864
+ ],
+ [
+ 74.02730108934716,
+ 26.599036819250188
+ ],
+ [
+ 74.14214377283085,
+ 26.404389084321735
+ ],
+ [
+ 74.3718291397982,
+ 26.404389084321735
+ ],
+ [
+ 74.48667182328188,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 26.988332289107095
+ ],
+ [
+ 74.3718291397982,
+ 27.182980024035547
+ ],
+ [
+ 74.14214377283085,
+ 27.182980024035547
+ ],
+ [
+ 74.02730108934716,
+ 26.988332289107095
+ ],
+ [
+ 74.14214377283085,
+ 26.793684554178643
+ ],
+ [
+ 74.3718291397982,
+ 26.793684554178643
+ ],
+ [
+ 74.48667182328188,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 27.377627758964003
+ ],
+ [
+ 74.3718291397982,
+ 27.572275493892455
+ ],
+ [
+ 74.14214377283085,
+ 27.572275493892455
+ ],
+ [
+ 74.02730108934716,
+ 27.377627758964003
+ ],
+ [
+ 74.14214377283085,
+ 27.18298002403555
+ ],
+ [
+ 74.3718291397982,
+ 27.18298002403555
+ ],
+ [
+ 74.48667182328188,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 27.766923228820907
+ ],
+ [
+ 74.3718291397982,
+ 27.96157096374936
+ ],
+ [
+ 74.14214377283085,
+ 27.96157096374936
+ ],
+ [
+ 74.02730108934716,
+ 27.766923228820907
+ ],
+ [
+ 74.14214377283085,
+ 27.572275493892455
+ ],
+ [
+ 74.3718291397982,
+ 27.572275493892455
+ ],
+ [
+ 74.48667182328188,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 28.156218698677815
+ ],
+ [
+ 74.3718291397982,
+ 28.350866433606267
+ ],
+ [
+ 74.14214377283085,
+ 28.350866433606267
+ ],
+ [
+ 74.02730108934716,
+ 28.156218698677815
+ ],
+ [
+ 74.14214377283085,
+ 27.961570963749363
+ ],
+ [
+ 74.3718291397982,
+ 27.961570963749363
+ ],
+ [
+ 74.48667182328188,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 28.54551416853472
+ ],
+ [
+ 74.3718291397982,
+ 28.74016190346317
+ ],
+ [
+ 74.14214377283085,
+ 28.74016190346317
+ ],
+ [
+ 74.02730108934716,
+ 28.54551416853472
+ ],
+ [
+ 74.14214377283085,
+ 28.350866433606267
+ ],
+ [
+ 74.3718291397982,
+ 28.350866433606267
+ ],
+ [
+ 74.48667182328188,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 28.934809638391627
+ ],
+ [
+ 74.3718291397982,
+ 29.12945737332008
+ ],
+ [
+ 74.14214377283085,
+ 29.12945737332008
+ ],
+ [
+ 74.02730108934716,
+ 28.934809638391627
+ ],
+ [
+ 74.14214377283085,
+ 28.740161903463175
+ ],
+ [
+ 74.3718291397982,
+ 28.740161903463175
+ ],
+ [
+ 74.48667182328188,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 29.32410510824853
+ ],
+ [
+ 74.3718291397982,
+ 29.518752843176983
+ ],
+ [
+ 74.14214377283085,
+ 29.518752843176983
+ ],
+ [
+ 74.02730108934716,
+ 29.32410510824853
+ ],
+ [
+ 74.14214377283085,
+ 29.12945737332008
+ ],
+ [
+ 74.3718291397982,
+ 29.12945737332008
+ ],
+ [
+ 74.48667182328188,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 29.71340057810544
+ ],
+ [
+ 74.3718291397982,
+ 29.90804831303389
+ ],
+ [
+ 74.14214377283085,
+ 29.90804831303389
+ ],
+ [
+ 74.02730108934716,
+ 29.71340057810544
+ ],
+ [
+ 74.14214377283085,
+ 29.518752843176987
+ ],
+ [
+ 74.3718291397982,
+ 29.518752843176987
+ ],
+ [
+ 74.48667182328188,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 30.102696047962343
+ ],
+ [
+ 74.3718291397982,
+ 30.297343782890795
+ ],
+ [
+ 74.14214377283085,
+ 30.297343782890795
+ ],
+ [
+ 74.02730108934716,
+ 30.102696047962343
+ ],
+ [
+ 74.14214377283085,
+ 29.90804831303389
+ ],
+ [
+ 74.3718291397982,
+ 29.90804831303389
+ ],
+ [
+ 74.48667182328188,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 30.49199151781925
+ ],
+ [
+ 74.3718291397982,
+ 30.686639252747703
+ ],
+ [
+ 74.14214377283085,
+ 30.686639252747703
+ ],
+ [
+ 74.02730108934716,
+ 30.49199151781925
+ ],
+ [
+ 74.14214377283085,
+ 30.2973437828908
+ ],
+ [
+ 74.3718291397982,
+ 30.2973437828908
+ ],
+ [
+ 74.48667182328188,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 30.88128698767616
+ ],
+ [
+ 74.3718291397982,
+ 31.07593472260461
+ ],
+ [
+ 74.14214377283085,
+ 31.07593472260461
+ ],
+ [
+ 74.02730108934716,
+ 30.88128698767616
+ ],
+ [
+ 74.14214377283085,
+ 30.686639252747707
+ ],
+ [
+ 74.3718291397982,
+ 30.686639252747707
+ ],
+ [
+ 74.48667182328188,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 31.270582457533063
+ ],
+ [
+ 74.3718291397982,
+ 31.465230192461515
+ ],
+ [
+ 74.14214377283085,
+ 31.465230192461515
+ ],
+ [
+ 74.02730108934716,
+ 31.270582457533063
+ ],
+ [
+ 74.14214377283085,
+ 31.07593472260461
+ ],
+ [
+ 74.3718291397982,
+ 31.07593472260461
+ ],
+ [
+ 74.48667182328188,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 31.65987792738997
+ ],
+ [
+ 74.3718291397982,
+ 31.854525662318423
+ ],
+ [
+ 74.14214377283085,
+ 31.854525662318423
+ ],
+ [
+ 74.02730108934716,
+ 31.65987792738997
+ ],
+ [
+ 74.14214377283085,
+ 31.46523019246152
+ ],
+ [
+ 74.3718291397982,
+ 31.46523019246152
+ ],
+ [
+ 74.48667182328188,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 32.049173397246875
+ ],
+ [
+ 74.3718291397982,
+ 32.24382113217533
+ ],
+ [
+ 74.14214377283085,
+ 32.24382113217533
+ ],
+ [
+ 74.02730108934716,
+ 32.049173397246875
+ ],
+ [
+ 74.14214377283085,
+ 31.854525662318423
+ ],
+ [
+ 74.3718291397982,
+ 31.854525662318423
+ ],
+ [
+ 74.48667182328188,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 32.438468867103786
+ ],
+ [
+ 74.3718291397982,
+ 32.63311660203224
+ ],
+ [
+ 74.14214377283085,
+ 32.63311660203224
+ ],
+ [
+ 74.02730108934716,
+ 32.438468867103786
+ ],
+ [
+ 74.14214377283085,
+ 32.243821132175334
+ ],
+ [
+ 74.3718291397982,
+ 32.243821132175334
+ ],
+ [
+ 74.48667182328188,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 32.82776433696069
+ ],
+ [
+ 74.3718291397982,
+ 33.02241207188914
+ ],
+ [
+ 74.14214377283085,
+ 33.02241207188914
+ ],
+ [
+ 74.02730108934716,
+ 32.82776433696069
+ ],
+ [
+ 74.14214377283085,
+ 32.63311660203224
+ ],
+ [
+ 74.3718291397982,
+ 32.63311660203224
+ ],
+ [
+ 74.48667182328188,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 33.217059806817595
+ ],
+ [
+ 74.3718291397982,
+ 33.41170754174605
+ ],
+ [
+ 74.14214377283085,
+ 33.41170754174605
+ ],
+ [
+ 74.02730108934716,
+ 33.217059806817595
+ ],
+ [
+ 74.14214377283085,
+ 33.02241207188914
+ ],
+ [
+ 74.3718291397982,
+ 33.02241207188914
+ ],
+ [
+ 74.48667182328188,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 33.6063552766745
+ ],
+ [
+ 74.3718291397982,
+ 33.80100301160295
+ ],
+ [
+ 74.14214377283085,
+ 33.80100301160295
+ ],
+ [
+ 74.02730108934716,
+ 33.6063552766745
+ ],
+ [
+ 74.14214377283085,
+ 33.41170754174605
+ ],
+ [
+ 74.3718291397982,
+ 33.41170754174605
+ ],
+ [
+ 74.48667182328188,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 33.9956507465314
+ ],
+ [
+ 74.3718291397982,
+ 34.190298481459855
+ ],
+ [
+ 74.14214377283085,
+ 34.190298481459855
+ ],
+ [
+ 74.02730108934716,
+ 33.9956507465314
+ ],
+ [
+ 74.14214377283085,
+ 33.80100301160295
+ ],
+ [
+ 74.3718291397982,
+ 33.80100301160295
+ ],
+ [
+ 74.48667182328188,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 34.384946216388315
+ ],
+ [
+ 74.3718291397982,
+ 34.57959395131677
+ ],
+ [
+ 74.14214377283085,
+ 34.57959395131677
+ ],
+ [
+ 74.02730108934716,
+ 34.384946216388315
+ ],
+ [
+ 74.14214377283085,
+ 34.19029848145986
+ ],
+ [
+ 74.3718291397982,
+ 34.19029848145986
+ ],
+ [
+ 74.48667182328188,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 34.774241686245226
+ ],
+ [
+ 74.3718291397982,
+ 34.96888942117368
+ ],
+ [
+ 74.14214377283085,
+ 34.96888942117368
+ ],
+ [
+ 74.02730108934716,
+ 34.774241686245226
+ ],
+ [
+ 74.14214377283085,
+ 34.579593951316774
+ ],
+ [
+ 74.3718291397982,
+ 34.579593951316774
+ ],
+ [
+ 74.48667182328188,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 35.16353715610213
+ ],
+ [
+ 74.3718291397982,
+ 35.35818489103058
+ ],
+ [
+ 74.14214377283085,
+ 35.35818489103058
+ ],
+ [
+ 74.02730108934716,
+ 35.16353715610213
+ ],
+ [
+ 74.14214377283085,
+ 34.96888942117368
+ ],
+ [
+ 74.3718291397982,
+ 34.96888942117368
+ ],
+ [
+ 74.48667182328188,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 35.552832625959034
+ ],
+ [
+ 74.3718291397982,
+ 35.74748036088749
+ ],
+ [
+ 74.14214377283085,
+ 35.74748036088749
+ ],
+ [
+ 74.02730108934716,
+ 35.552832625959034
+ ],
+ [
+ 74.14214377283085,
+ 35.35818489103058
+ ],
+ [
+ 74.3718291397982,
+ 35.35818489103058
+ ],
+ [
+ 74.48667182328188,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 35.94212809581594
+ ],
+ [
+ 74.3718291397982,
+ 36.13677583074439
+ ],
+ [
+ 74.14214377283085,
+ 36.13677583074439
+ ],
+ [
+ 74.02730108934716,
+ 35.94212809581594
+ ],
+ [
+ 74.14214377283085,
+ 35.74748036088749
+ ],
+ [
+ 74.3718291397982,
+ 35.74748036088749
+ ],
+ [
+ 74.48667182328188,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 36.33142356567284
+ ],
+ [
+ 74.3718291397982,
+ 36.526071300601295
+ ],
+ [
+ 74.14214377283085,
+ 36.526071300601295
+ ],
+ [
+ 74.02730108934716,
+ 36.33142356567284
+ ],
+ [
+ 74.14214377283085,
+ 36.13677583074439
+ ],
+ [
+ 74.3718291397982,
+ 36.13677583074439
+ ],
+ [
+ 74.48667182328188,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 36.720719035529754
+ ],
+ [
+ 74.3718291397982,
+ 36.915366770458206
+ ],
+ [
+ 74.14214377283085,
+ 36.915366770458206
+ ],
+ [
+ 74.02730108934716,
+ 36.720719035529754
+ ],
+ [
+ 74.14214377283085,
+ 36.5260713006013
+ ],
+ [
+ 74.3718291397982,
+ 36.5260713006013
+ ],
+ [
+ 74.48667182328188,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 37.11001450538666
+ ],
+ [
+ 74.3718291397982,
+ 37.30466224031511
+ ],
+ [
+ 74.14214377283085,
+ 37.30466224031511
+ ],
+ [
+ 74.02730108934716,
+ 37.11001450538666
+ ],
+ [
+ 74.14214377283085,
+ 36.915366770458206
+ ],
+ [
+ 74.3718291397982,
+ 36.915366770458206
+ ],
+ [
+ 74.48667182328188,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 37.49930997524357
+ ],
+ [
+ 74.3718291397982,
+ 37.69395771017202
+ ],
+ [
+ 74.14214377283085,
+ 37.69395771017202
+ ],
+ [
+ 74.02730108934716,
+ 37.49930997524357
+ ],
+ [
+ 74.14214377283085,
+ 37.30466224031512
+ ],
+ [
+ 74.3718291397982,
+ 37.30466224031512
+ ],
+ [
+ 74.48667182328188,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 37.888605445100474
+ ],
+ [
+ 74.3718291397982,
+ 38.083253180028926
+ ],
+ [
+ 74.14214377283085,
+ 38.083253180028926
+ ],
+ [
+ 74.02730108934716,
+ 37.888605445100474
+ ],
+ [
+ 74.14214377283085,
+ 37.69395771017202
+ ],
+ [
+ 74.3718291397982,
+ 37.69395771017202
+ ],
+ [
+ 74.48667182328188,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 38.27790091495738
+ ],
+ [
+ 74.3718291397982,
+ 38.47254864988583
+ ],
+ [
+ 74.14214377283085,
+ 38.47254864988583
+ ],
+ [
+ 74.02730108934716,
+ 38.27790091495738
+ ],
+ [
+ 74.14214377283085,
+ 38.083253180028926
+ ],
+ [
+ 74.3718291397982,
+ 38.083253180028926
+ ],
+ [
+ 74.48667182328188,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 38.66719638481428
+ ],
+ [
+ 74.3718291397982,
+ 38.861844119742734
+ ],
+ [
+ 74.14214377283085,
+ 38.861844119742734
+ ],
+ [
+ 74.02730108934716,
+ 38.66719638481428
+ ],
+ [
+ 74.14214377283085,
+ 38.47254864988583
+ ],
+ [
+ 74.3718291397982,
+ 38.47254864988583
+ ],
+ [
+ 74.48667182328188,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 39.05649185467119
+ ],
+ [
+ 74.3718291397982,
+ 39.25113958959964
+ ],
+ [
+ 74.14214377283085,
+ 39.25113958959964
+ ],
+ [
+ 74.02730108934716,
+ 39.05649185467119
+ ],
+ [
+ 74.14214377283085,
+ 38.861844119742734
+ ],
+ [
+ 74.3718291397982,
+ 38.861844119742734
+ ],
+ [
+ 74.48667182328188,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 39.4457873245281
+ ],
+ [
+ 74.3718291397982,
+ 39.64043505945655
+ ],
+ [
+ 74.14214377283085,
+ 39.64043505945655
+ ],
+ [
+ 74.02730108934716,
+ 39.4457873245281
+ ],
+ [
+ 74.14214377283085,
+ 39.251139589599646
+ ],
+ [
+ 74.3718291397982,
+ 39.251139589599646
+ ],
+ [
+ 74.48667182328188,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 39.835082794385
+ ],
+ [
+ 74.3718291397982,
+ 40.029730529313454
+ ],
+ [
+ 74.14214377283085,
+ 40.029730529313454
+ ],
+ [
+ 74.02730108934716,
+ 39.835082794385
+ ],
+ [
+ 74.14214377283085,
+ 39.64043505945655
+ ],
+ [
+ 74.3718291397982,
+ 39.64043505945655
+ ],
+ [
+ 74.48667182328188,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 40.22437826424191
+ ],
+ [
+ 74.3718291397982,
+ 40.419025999170366
+ ],
+ [
+ 74.14214377283085,
+ 40.419025999170366
+ ],
+ [
+ 74.02730108934716,
+ 40.22437826424191
+ ],
+ [
+ 74.14214377283085,
+ 40.02973052931346
+ ],
+ [
+ 74.3718291397982,
+ 40.02973052931346
+ ],
+ [
+ 74.48667182328188,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 40.61367373409882
+ ],
+ [
+ 74.3718291397982,
+ 40.80832146902727
+ ],
+ [
+ 74.14214377283085,
+ 40.80832146902727
+ ],
+ [
+ 74.02730108934716,
+ 40.61367373409882
+ ],
+ [
+ 74.14214377283085,
+ 40.419025999170366
+ ],
+ [
+ 74.3718291397982,
+ 40.419025999170366
+ ],
+ [
+ 74.48667182328188,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 41.00296920395572
+ ],
+ [
+ 74.3718291397982,
+ 41.197616938884174
+ ],
+ [
+ 74.14214377283085,
+ 41.197616938884174
+ ],
+ [
+ 74.02730108934716,
+ 41.00296920395572
+ ],
+ [
+ 74.14214377283085,
+ 40.80832146902727
+ ],
+ [
+ 74.3718291397982,
+ 40.80832146902727
+ ],
+ [
+ 74.48667182328188,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 41.392264673812626
+ ],
+ [
+ 74.3718291397982,
+ 41.58691240874108
+ ],
+ [
+ 74.14214377283085,
+ 41.58691240874108
+ ],
+ [
+ 74.02730108934716,
+ 41.392264673812626
+ ],
+ [
+ 74.14214377283085,
+ 41.197616938884174
+ ],
+ [
+ 74.3718291397982,
+ 41.197616938884174
+ ],
+ [
+ 74.48667182328188,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 41.78156014366953
+ ],
+ [
+ 74.3718291397982,
+ 41.97620787859798
+ ],
+ [
+ 74.14214377283085,
+ 41.97620787859798
+ ],
+ [
+ 74.02730108934716,
+ 41.78156014366953
+ ],
+ [
+ 74.14214377283085,
+ 41.58691240874108
+ ],
+ [
+ 74.3718291397982,
+ 41.58691240874108
+ ],
+ [
+ 74.48667182328188,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 42.17085561352644
+ ],
+ [
+ 74.3718291397982,
+ 42.365503348454894
+ ],
+ [
+ 74.14214377283085,
+ 42.365503348454894
+ ],
+ [
+ 74.02730108934716,
+ 42.17085561352644
+ ],
+ [
+ 74.14214377283085,
+ 41.97620787859799
+ ],
+ [
+ 74.3718291397982,
+ 41.97620787859799
+ ],
+ [
+ 74.48667182328188,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 42.56015108338335
+ ],
+ [
+ 74.3718291397982,
+ 42.754798818311805
+ ],
+ [
+ 74.14214377283085,
+ 42.754798818311805
+ ],
+ [
+ 74.02730108934716,
+ 42.56015108338335
+ ],
+ [
+ 74.14214377283085,
+ 42.3655033484549
+ ],
+ [
+ 74.3718291397982,
+ 42.3655033484549
+ ],
+ [
+ 74.48667182328188,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 42.94944655324026
+ ],
+ [
+ 74.3718291397982,
+ 43.14409428816871
+ ],
+ [
+ 74.14214377283085,
+ 43.14409428816871
+ ],
+ [
+ 74.02730108934716,
+ 42.94944655324026
+ ],
+ [
+ 74.14214377283085,
+ 42.754798818311805
+ ],
+ [
+ 74.3718291397982,
+ 42.754798818311805
+ ],
+ [
+ 74.48667182328188,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 43.33874202309716
+ ],
+ [
+ 74.3718291397982,
+ 43.53338975802561
+ ],
+ [
+ 74.14214377283085,
+ 43.53338975802561
+ ],
+ [
+ 74.02730108934716,
+ 43.33874202309716
+ ],
+ [
+ 74.14214377283085,
+ 43.14409428816871
+ ],
+ [
+ 74.3718291397982,
+ 43.14409428816871
+ ],
+ [
+ 74.48667182328188,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 43.728037492954066
+ ],
+ [
+ 74.3718291397982,
+ 43.92268522788252
+ ],
+ [
+ 74.14214377283085,
+ 43.92268522788252
+ ],
+ [
+ 74.02730108934716,
+ 43.728037492954066
+ ],
+ [
+ 74.14214377283085,
+ 43.53338975802561
+ ],
+ [
+ 74.3718291397982,
+ 43.53338975802561
+ ],
+ [
+ 74.48667182328188,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 44.11733296281097
+ ],
+ [
+ 74.3718291397982,
+ 44.31198069773942
+ ],
+ [
+ 74.14214377283085,
+ 44.31198069773942
+ ],
+ [
+ 74.02730108934716,
+ 44.11733296281097
+ ],
+ [
+ 74.14214377283085,
+ 43.92268522788252
+ ],
+ [
+ 74.3718291397982,
+ 43.92268522788252
+ ],
+ [
+ 74.48667182328188,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 44.506628432667874
+ ],
+ [
+ 74.3718291397982,
+ 44.701276167596326
+ ],
+ [
+ 74.14214377283085,
+ 44.701276167596326
+ ],
+ [
+ 74.02730108934716,
+ 44.506628432667874
+ ],
+ [
+ 74.14214377283085,
+ 44.31198069773942
+ ],
+ [
+ 74.3718291397982,
+ 44.31198069773942
+ ],
+ [
+ 74.48667182328188,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 44.89592390252479
+ ],
+ [
+ 74.3718291397982,
+ 45.090571637453245
+ ],
+ [
+ 74.14214377283085,
+ 45.090571637453245
+ ],
+ [
+ 74.02730108934716,
+ 44.89592390252479
+ ],
+ [
+ 74.14214377283085,
+ 44.70127616759634
+ ],
+ [
+ 74.3718291397982,
+ 44.70127616759634
+ ],
+ [
+ 74.48667182328188,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 45.2852193723817
+ ],
+ [
+ 74.3718291397982,
+ 45.47986710731015
+ ],
+ [
+ 74.14214377283085,
+ 45.47986710731015
+ ],
+ [
+ 74.02730108934716,
+ 45.2852193723817
+ ],
+ [
+ 74.14214377283085,
+ 45.090571637453245
+ ],
+ [
+ 74.3718291397982,
+ 45.090571637453245
+ ],
+ [
+ 74.48667182328188,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 45.6745148422386
+ ],
+ [
+ 74.3718291397982,
+ 45.86916257716705
+ ],
+ [
+ 74.14214377283085,
+ 45.86916257716705
+ ],
+ [
+ 74.02730108934716,
+ 45.6745148422386
+ ],
+ [
+ 74.14214377283085,
+ 45.47986710731015
+ ],
+ [
+ 74.3718291397982,
+ 45.47986710731015
+ ],
+ [
+ 74.48667182328188,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 46.063810312095505
+ ],
+ [
+ 74.3718291397982,
+ 46.25845804702396
+ ],
+ [
+ 74.14214377283085,
+ 46.25845804702396
+ ],
+ [
+ 74.02730108934716,
+ 46.063810312095505
+ ],
+ [
+ 74.14214377283085,
+ 45.86916257716705
+ ],
+ [
+ 74.3718291397982,
+ 45.86916257716705
+ ],
+ [
+ 74.48667182328188,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 46.45310578195241
+ ],
+ [
+ 74.3718291397982,
+ 46.64775351688086
+ ],
+ [
+ 74.14214377283085,
+ 46.64775351688086
+ ],
+ [
+ 74.02730108934716,
+ 46.45310578195241
+ ],
+ [
+ 74.14214377283085,
+ 46.25845804702396
+ ],
+ [
+ 74.3718291397982,
+ 46.25845804702396
+ ],
+ [
+ 74.48667182328188,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 46.842401251809314
+ ],
+ [
+ 74.3718291397982,
+ 47.037048986737766
+ ],
+ [
+ 74.14214377283085,
+ 47.037048986737766
+ ],
+ [
+ 74.02730108934716,
+ 46.842401251809314
+ ],
+ [
+ 74.14214377283085,
+ 46.64775351688086
+ ],
+ [
+ 74.3718291397982,
+ 46.64775351688086
+ ],
+ [
+ 74.48667182328188,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 47.23169672166622
+ ],
+ [
+ 74.3718291397982,
+ 47.42634445659467
+ ],
+ [
+ 74.14214377283085,
+ 47.42634445659467
+ ],
+ [
+ 74.02730108934716,
+ 47.23169672166622
+ ],
+ [
+ 74.14214377283085,
+ 47.037048986737766
+ ],
+ [
+ 74.3718291397982,
+ 47.037048986737766
+ ],
+ [
+ 74.48667182328188,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.48667182328188,
+ 47.620992191523136
+ ],
+ [
+ 74.3718291397982,
+ 47.81563992645159
+ ],
+ [
+ 74.14214377283085,
+ 47.81563992645159
+ ],
+ [
+ 74.02730108934716,
+ 47.620992191523136
+ ],
+ [
+ 74.14214377283085,
+ 47.426344456594684
+ ],
+ [
+ 74.3718291397982,
+ 47.426344456594684
+ ],
+ [
+ 74.48667182328188,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 12.0004566996162
+ ],
+ [
+ 74.71635719024924,
+ 12.195104434544653
+ ],
+ [
+ 74.4866718232819,
+ 12.195104434544653
+ ],
+ [
+ 74.37182913979821,
+ 12.0004566996162
+ ],
+ [
+ 74.4866718232819,
+ 11.805808964687746
+ ],
+ [
+ 74.71635719024924,
+ 11.805808964687746
+ ],
+ [
+ 74.83119987373293,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 12.389752169473105
+ ],
+ [
+ 74.71635719024924,
+ 12.58439990440156
+ ],
+ [
+ 74.4866718232819,
+ 12.58439990440156
+ ],
+ [
+ 74.37182913979821,
+ 12.389752169473105
+ ],
+ [
+ 74.4866718232819,
+ 12.195104434544652
+ ],
+ [
+ 74.71635719024924,
+ 12.195104434544652
+ ],
+ [
+ 74.83119987373293,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 12.779047639330013
+ ],
+ [
+ 74.71635719024924,
+ 12.973695374258467
+ ],
+ [
+ 74.4866718232819,
+ 12.973695374258467
+ ],
+ [
+ 74.37182913979821,
+ 12.779047639330013
+ ],
+ [
+ 74.4866718232819,
+ 12.58439990440156
+ ],
+ [
+ 74.71635719024924,
+ 12.58439990440156
+ ],
+ [
+ 74.83119987373293,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 13.16834310918692
+ ],
+ [
+ 74.71635719024924,
+ 13.362990844115373
+ ],
+ [
+ 74.4866718232819,
+ 13.362990844115373
+ ],
+ [
+ 74.37182913979821,
+ 13.16834310918692
+ ],
+ [
+ 74.4866718232819,
+ 12.973695374258465
+ ],
+ [
+ 74.71635719024924,
+ 12.973695374258465
+ ],
+ [
+ 74.83119987373293,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 13.557638579043825
+ ],
+ [
+ 74.71635719024924,
+ 13.752286313972279
+ ],
+ [
+ 74.4866718232819,
+ 13.752286313972279
+ ],
+ [
+ 74.37182913979821,
+ 13.557638579043825
+ ],
+ [
+ 74.4866718232819,
+ 13.362990844115371
+ ],
+ [
+ 74.71635719024924,
+ 13.362990844115371
+ ],
+ [
+ 74.83119987373293,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 13.946934048900731
+ ],
+ [
+ 74.71635719024924,
+ 14.141581783829185
+ ],
+ [
+ 74.4866718232819,
+ 14.141581783829185
+ ],
+ [
+ 74.37182913979821,
+ 13.946934048900731
+ ],
+ [
+ 74.4866718232819,
+ 13.752286313972277
+ ],
+ [
+ 74.71635719024924,
+ 13.752286313972277
+ ],
+ [
+ 74.83119987373293,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 14.336229518757637
+ ],
+ [
+ 74.71635719024924,
+ 14.530877253686091
+ ],
+ [
+ 74.4866718232819,
+ 14.530877253686091
+ ],
+ [
+ 74.37182913979821,
+ 14.336229518757637
+ ],
+ [
+ 74.4866718232819,
+ 14.141581783829183
+ ],
+ [
+ 74.71635719024924,
+ 14.141581783829183
+ ],
+ [
+ 74.83119987373293,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 14.725524988614545
+ ],
+ [
+ 74.71635719024924,
+ 14.920172723542999
+ ],
+ [
+ 74.4866718232819,
+ 14.920172723542999
+ ],
+ [
+ 74.37182913979821,
+ 14.725524988614545
+ ],
+ [
+ 74.4866718232819,
+ 14.530877253686091
+ ],
+ [
+ 74.71635719024924,
+ 14.530877253686091
+ ],
+ [
+ 74.83119987373293,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 15.114820458471451
+ ],
+ [
+ 74.71635719024924,
+ 15.309468193399905
+ ],
+ [
+ 74.4866718232819,
+ 15.309468193399905
+ ],
+ [
+ 74.37182913979821,
+ 15.114820458471451
+ ],
+ [
+ 74.4866718232819,
+ 14.920172723542997
+ ],
+ [
+ 74.71635719024924,
+ 14.920172723542997
+ ],
+ [
+ 74.83119987373293,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 15.504115928328357
+ ],
+ [
+ 74.71635719024924,
+ 15.69876366325681
+ ],
+ [
+ 74.4866718232819,
+ 15.69876366325681
+ ],
+ [
+ 74.37182913979821,
+ 15.504115928328357
+ ],
+ [
+ 74.4866718232819,
+ 15.309468193399903
+ ],
+ [
+ 74.71635719024924,
+ 15.309468193399903
+ ],
+ [
+ 74.83119987373293,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 15.893411398185265
+ ],
+ [
+ 74.71635719024924,
+ 16.088059133113717
+ ],
+ [
+ 74.4866718232819,
+ 16.088059133113717
+ ],
+ [
+ 74.37182913979821,
+ 15.893411398185265
+ ],
+ [
+ 74.4866718232819,
+ 15.69876366325681
+ ],
+ [
+ 74.71635719024924,
+ 15.69876366325681
+ ],
+ [
+ 74.83119987373293,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 16.28270686804217
+ ],
+ [
+ 74.71635719024924,
+ 16.47735460297062
+ ],
+ [
+ 74.4866718232819,
+ 16.47735460297062
+ ],
+ [
+ 74.37182913979821,
+ 16.28270686804217
+ ],
+ [
+ 74.4866718232819,
+ 16.088059133113717
+ ],
+ [
+ 74.71635719024924,
+ 16.088059133113717
+ ],
+ [
+ 74.83119987373293,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 16.672002337899077
+ ],
+ [
+ 74.71635719024924,
+ 16.86665007282753
+ ],
+ [
+ 74.4866718232819,
+ 16.86665007282753
+ ],
+ [
+ 74.37182913979821,
+ 16.672002337899077
+ ],
+ [
+ 74.4866718232819,
+ 16.477354602970625
+ ],
+ [
+ 74.71635719024924,
+ 16.477354602970625
+ ],
+ [
+ 74.83119987373293,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 17.06129780775598
+ ],
+ [
+ 74.71635719024924,
+ 17.255945542684433
+ ],
+ [
+ 74.4866718232819,
+ 17.255945542684433
+ ],
+ [
+ 74.37182913979821,
+ 17.06129780775598
+ ],
+ [
+ 74.4866718232819,
+ 16.86665007282753
+ ],
+ [
+ 74.71635719024924,
+ 16.86665007282753
+ ],
+ [
+ 74.83119987373293,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 17.45059327761289
+ ],
+ [
+ 74.71635719024924,
+ 17.64524101254134
+ ],
+ [
+ 74.4866718232819,
+ 17.64524101254134
+ ],
+ [
+ 74.37182913979821,
+ 17.45059327761289
+ ],
+ [
+ 74.4866718232819,
+ 17.255945542684437
+ ],
+ [
+ 74.71635719024924,
+ 17.255945542684437
+ ],
+ [
+ 74.83119987373293,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 17.839888747469793
+ ],
+ [
+ 74.71635719024924,
+ 18.034536482398245
+ ],
+ [
+ 74.4866718232819,
+ 18.034536482398245
+ ],
+ [
+ 74.37182913979821,
+ 17.839888747469793
+ ],
+ [
+ 74.4866718232819,
+ 17.64524101254134
+ ],
+ [
+ 74.71635719024924,
+ 17.64524101254134
+ ],
+ [
+ 74.83119987373293,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 18.2291842173267
+ ],
+ [
+ 74.71635719024924,
+ 18.423831952255153
+ ],
+ [
+ 74.4866718232819,
+ 18.423831952255153
+ ],
+ [
+ 74.37182913979821,
+ 18.2291842173267
+ ],
+ [
+ 74.4866718232819,
+ 18.03453648239825
+ ],
+ [
+ 74.71635719024924,
+ 18.03453648239825
+ ],
+ [
+ 74.83119987373293,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 18.61847968718361
+ ],
+ [
+ 74.71635719024924,
+ 18.81312742211206
+ ],
+ [
+ 74.4866718232819,
+ 18.81312742211206
+ ],
+ [
+ 74.37182913979821,
+ 18.61847968718361
+ ],
+ [
+ 74.4866718232819,
+ 18.423831952255156
+ ],
+ [
+ 74.71635719024924,
+ 18.423831952255156
+ ],
+ [
+ 74.83119987373293,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 19.007775157040513
+ ],
+ [
+ 74.71635719024924,
+ 19.202422891968965
+ ],
+ [
+ 74.4866718232819,
+ 19.202422891968965
+ ],
+ [
+ 74.37182913979821,
+ 19.007775157040513
+ ],
+ [
+ 74.4866718232819,
+ 18.81312742211206
+ ],
+ [
+ 74.71635719024924,
+ 18.81312742211206
+ ],
+ [
+ 74.83119987373293,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 19.39707062689742
+ ],
+ [
+ 74.71635719024924,
+ 19.591718361825873
+ ],
+ [
+ 74.4866718232819,
+ 19.591718361825873
+ ],
+ [
+ 74.37182913979821,
+ 19.39707062689742
+ ],
+ [
+ 74.4866718232819,
+ 19.20242289196897
+ ],
+ [
+ 74.71635719024924,
+ 19.20242289196897
+ ],
+ [
+ 74.83119987373293,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 19.78636609675433
+ ],
+ [
+ 74.71635719024924,
+ 19.98101383168278
+ ],
+ [
+ 74.4866718232819,
+ 19.98101383168278
+ ],
+ [
+ 74.37182913979821,
+ 19.78636609675433
+ ],
+ [
+ 74.4866718232819,
+ 19.591718361825876
+ ],
+ [
+ 74.71635719024924,
+ 19.591718361825876
+ ],
+ [
+ 74.83119987373293,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 20.175661566611232
+ ],
+ [
+ 74.71635719024924,
+ 20.370309301539685
+ ],
+ [
+ 74.4866718232819,
+ 20.370309301539685
+ ],
+ [
+ 74.37182913979821,
+ 20.175661566611232
+ ],
+ [
+ 74.4866718232819,
+ 19.98101383168278
+ ],
+ [
+ 74.71635719024924,
+ 19.98101383168278
+ ],
+ [
+ 74.83119987373293,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 20.564957036468137
+ ],
+ [
+ 74.71635719024924,
+ 20.75960477139659
+ ],
+ [
+ 74.4866718232819,
+ 20.75960477139659
+ ],
+ [
+ 74.37182913979821,
+ 20.564957036468137
+ ],
+ [
+ 74.4866718232819,
+ 20.370309301539685
+ ],
+ [
+ 74.71635719024924,
+ 20.370309301539685
+ ],
+ [
+ 74.83119987373293,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 20.954252506325044
+ ],
+ [
+ 74.71635719024924,
+ 21.148900241253497
+ ],
+ [
+ 74.4866718232819,
+ 21.148900241253497
+ ],
+ [
+ 74.37182913979821,
+ 20.954252506325044
+ ],
+ [
+ 74.4866718232819,
+ 20.759604771396592
+ ],
+ [
+ 74.71635719024924,
+ 20.759604771396592
+ ],
+ [
+ 74.83119987373293,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 21.343547976181952
+ ],
+ [
+ 74.71635719024924,
+ 21.538195711110404
+ ],
+ [
+ 74.4866718232819,
+ 21.538195711110404
+ ],
+ [
+ 74.37182913979821,
+ 21.343547976181952
+ ],
+ [
+ 74.4866718232819,
+ 21.1489002412535
+ ],
+ [
+ 74.71635719024924,
+ 21.1489002412535
+ ],
+ [
+ 74.83119987373293,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 21.732843446038856
+ ],
+ [
+ 74.71635719024924,
+ 21.92749118096731
+ ],
+ [
+ 74.4866718232819,
+ 21.92749118096731
+ ],
+ [
+ 74.37182913979821,
+ 21.732843446038856
+ ],
+ [
+ 74.4866718232819,
+ 21.538195711110404
+ ],
+ [
+ 74.71635719024924,
+ 21.538195711110404
+ ],
+ [
+ 74.83119987373293,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 22.122138915895764
+ ],
+ [
+ 74.71635719024924,
+ 22.316786650824216
+ ],
+ [
+ 74.4866718232819,
+ 22.316786650824216
+ ],
+ [
+ 74.37182913979821,
+ 22.122138915895764
+ ],
+ [
+ 74.4866718232819,
+ 21.927491180967312
+ ],
+ [
+ 74.71635719024924,
+ 21.927491180967312
+ ],
+ [
+ 74.83119987373293,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 22.511434385752672
+ ],
+ [
+ 74.71635719024924,
+ 22.706082120681124
+ ],
+ [
+ 74.4866718232819,
+ 22.706082120681124
+ ],
+ [
+ 74.37182913979821,
+ 22.511434385752672
+ ],
+ [
+ 74.4866718232819,
+ 22.31678665082422
+ ],
+ [
+ 74.71635719024924,
+ 22.31678665082422
+ ],
+ [
+ 74.83119987373293,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 22.900729855609576
+ ],
+ [
+ 74.71635719024924,
+ 23.09537759053803
+ ],
+ [
+ 74.4866718232819,
+ 23.09537759053803
+ ],
+ [
+ 74.37182913979821,
+ 22.900729855609576
+ ],
+ [
+ 74.4866718232819,
+ 22.706082120681124
+ ],
+ [
+ 74.71635719024924,
+ 22.706082120681124
+ ],
+ [
+ 74.83119987373293,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 23.290025325466484
+ ],
+ [
+ 74.71635719024924,
+ 23.484673060394936
+ ],
+ [
+ 74.4866718232819,
+ 23.484673060394936
+ ],
+ [
+ 74.37182913979821,
+ 23.290025325466484
+ ],
+ [
+ 74.4866718232819,
+ 23.095377590538032
+ ],
+ [
+ 74.71635719024924,
+ 23.095377590538032
+ ],
+ [
+ 74.83119987373293,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 23.67932079532339
+ ],
+ [
+ 74.71635719024924,
+ 23.873968530251844
+ ],
+ [
+ 74.4866718232819,
+ 23.873968530251844
+ ],
+ [
+ 74.37182913979821,
+ 23.67932079532339
+ ],
+ [
+ 74.4866718232819,
+ 23.48467306039494
+ ],
+ [
+ 74.71635719024924,
+ 23.48467306039494
+ ],
+ [
+ 74.83119987373293,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 24.068616265180296
+ ],
+ [
+ 74.71635719024924,
+ 24.263264000108748
+ ],
+ [
+ 74.4866718232819,
+ 24.263264000108748
+ ],
+ [
+ 74.37182913979821,
+ 24.068616265180296
+ ],
+ [
+ 74.4866718232819,
+ 23.873968530251844
+ ],
+ [
+ 74.71635719024924,
+ 23.873968530251844
+ ],
+ [
+ 74.83119987373293,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 24.4579117350372
+ ],
+ [
+ 74.71635719024924,
+ 24.652559469965652
+ ],
+ [
+ 74.4866718232819,
+ 24.652559469965652
+ ],
+ [
+ 74.37182913979821,
+ 24.4579117350372
+ ],
+ [
+ 74.4866718232819,
+ 24.263264000108748
+ ],
+ [
+ 74.71635719024924,
+ 24.263264000108748
+ ],
+ [
+ 74.83119987373293,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 24.847207204894108
+ ],
+ [
+ 74.71635719024924,
+ 25.04185493982256
+ ],
+ [
+ 74.4866718232819,
+ 25.04185493982256
+ ],
+ [
+ 74.37182913979821,
+ 24.847207204894108
+ ],
+ [
+ 74.4866718232819,
+ 24.652559469965656
+ ],
+ [
+ 74.71635719024924,
+ 24.652559469965656
+ ],
+ [
+ 74.83119987373293,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 25.236502674751016
+ ],
+ [
+ 74.71635719024924,
+ 25.431150409679468
+ ],
+ [
+ 74.4866718232819,
+ 25.431150409679468
+ ],
+ [
+ 74.37182913979821,
+ 25.236502674751016
+ ],
+ [
+ 74.4866718232819,
+ 25.041854939822564
+ ],
+ [
+ 74.71635719024924,
+ 25.041854939822564
+ ],
+ [
+ 74.83119987373293,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 25.62579814460792
+ ],
+ [
+ 74.71635719024924,
+ 25.820445879536372
+ ],
+ [
+ 74.4866718232819,
+ 25.820445879536372
+ ],
+ [
+ 74.37182913979821,
+ 25.62579814460792
+ ],
+ [
+ 74.4866718232819,
+ 25.431150409679468
+ ],
+ [
+ 74.71635719024924,
+ 25.431150409679468
+ ],
+ [
+ 74.83119987373293,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 26.015093614464828
+ ],
+ [
+ 74.71635719024924,
+ 26.20974134939328
+ ],
+ [
+ 74.4866718232819,
+ 26.20974134939328
+ ],
+ [
+ 74.37182913979821,
+ 26.015093614464828
+ ],
+ [
+ 74.4866718232819,
+ 25.820445879536376
+ ],
+ [
+ 74.71635719024924,
+ 25.820445879536376
+ ],
+ [
+ 74.83119987373293,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 26.404389084321735
+ ],
+ [
+ 74.71635719024924,
+ 26.599036819250188
+ ],
+ [
+ 74.4866718232819,
+ 26.599036819250188
+ ],
+ [
+ 74.37182913979821,
+ 26.404389084321735
+ ],
+ [
+ 74.4866718232819,
+ 26.209741349393283
+ ],
+ [
+ 74.71635719024924,
+ 26.209741349393283
+ ],
+ [
+ 74.83119987373293,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 26.79368455417864
+ ],
+ [
+ 74.71635719024924,
+ 26.988332289107092
+ ],
+ [
+ 74.4866718232819,
+ 26.988332289107092
+ ],
+ [
+ 74.37182913979821,
+ 26.79368455417864
+ ],
+ [
+ 74.4866718232819,
+ 26.599036819250188
+ ],
+ [
+ 74.71635719024924,
+ 26.599036819250188
+ ],
+ [
+ 74.83119987373293,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 27.182980024035547
+ ],
+ [
+ 74.71635719024924,
+ 27.377627758964
+ ],
+ [
+ 74.4866718232819,
+ 27.377627758964
+ ],
+ [
+ 74.37182913979821,
+ 27.182980024035547
+ ],
+ [
+ 74.4866718232819,
+ 26.988332289107095
+ ],
+ [
+ 74.71635719024924,
+ 26.988332289107095
+ ],
+ [
+ 74.83119987373293,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 27.572275493892455
+ ],
+ [
+ 74.71635719024924,
+ 27.766923228820907
+ ],
+ [
+ 74.4866718232819,
+ 27.766923228820907
+ ],
+ [
+ 74.37182913979821,
+ 27.572275493892455
+ ],
+ [
+ 74.4866718232819,
+ 27.377627758964003
+ ],
+ [
+ 74.71635719024924,
+ 27.377627758964003
+ ],
+ [
+ 74.83119987373293,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 27.96157096374936
+ ],
+ [
+ 74.71635719024924,
+ 28.15621869867781
+ ],
+ [
+ 74.4866718232819,
+ 28.15621869867781
+ ],
+ [
+ 74.37182913979821,
+ 27.96157096374936
+ ],
+ [
+ 74.4866718232819,
+ 27.766923228820907
+ ],
+ [
+ 74.71635719024924,
+ 27.766923228820907
+ ],
+ [
+ 74.83119987373293,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 28.350866433606267
+ ],
+ [
+ 74.71635719024924,
+ 28.54551416853472
+ ],
+ [
+ 74.4866718232819,
+ 28.54551416853472
+ ],
+ [
+ 74.37182913979821,
+ 28.350866433606267
+ ],
+ [
+ 74.4866718232819,
+ 28.156218698677815
+ ],
+ [
+ 74.71635719024924,
+ 28.156218698677815
+ ],
+ [
+ 74.83119987373293,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 28.74016190346317
+ ],
+ [
+ 74.71635719024924,
+ 28.934809638391624
+ ],
+ [
+ 74.4866718232819,
+ 28.934809638391624
+ ],
+ [
+ 74.37182913979821,
+ 28.74016190346317
+ ],
+ [
+ 74.4866718232819,
+ 28.54551416853472
+ ],
+ [
+ 74.71635719024924,
+ 28.54551416853472
+ ],
+ [
+ 74.83119987373293,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 29.12945737332008
+ ],
+ [
+ 74.71635719024924,
+ 29.32410510824853
+ ],
+ [
+ 74.4866718232819,
+ 29.32410510824853
+ ],
+ [
+ 74.37182913979821,
+ 29.12945737332008
+ ],
+ [
+ 74.4866718232819,
+ 28.934809638391627
+ ],
+ [
+ 74.71635719024924,
+ 28.934809638391627
+ ],
+ [
+ 74.83119987373293,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 29.518752843176983
+ ],
+ [
+ 74.71635719024924,
+ 29.713400578105436
+ ],
+ [
+ 74.4866718232819,
+ 29.713400578105436
+ ],
+ [
+ 74.37182913979821,
+ 29.518752843176983
+ ],
+ [
+ 74.4866718232819,
+ 29.32410510824853
+ ],
+ [
+ 74.71635719024924,
+ 29.32410510824853
+ ],
+ [
+ 74.83119987373293,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 29.90804831303389
+ ],
+ [
+ 74.71635719024924,
+ 30.102696047962343
+ ],
+ [
+ 74.4866718232819,
+ 30.102696047962343
+ ],
+ [
+ 74.37182913979821,
+ 29.90804831303389
+ ],
+ [
+ 74.4866718232819,
+ 29.71340057810544
+ ],
+ [
+ 74.71635719024924,
+ 29.71340057810544
+ ],
+ [
+ 74.83119987373293,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 30.297343782890795
+ ],
+ [
+ 74.71635719024924,
+ 30.491991517819248
+ ],
+ [
+ 74.4866718232819,
+ 30.491991517819248
+ ],
+ [
+ 74.37182913979821,
+ 30.297343782890795
+ ],
+ [
+ 74.4866718232819,
+ 30.102696047962343
+ ],
+ [
+ 74.71635719024924,
+ 30.102696047962343
+ ],
+ [
+ 74.83119987373293,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 30.686639252747703
+ ],
+ [
+ 74.71635719024924,
+ 30.881286987676155
+ ],
+ [
+ 74.4866718232819,
+ 30.881286987676155
+ ],
+ [
+ 74.37182913979821,
+ 30.686639252747703
+ ],
+ [
+ 74.4866718232819,
+ 30.49199151781925
+ ],
+ [
+ 74.71635719024924,
+ 30.49199151781925
+ ],
+ [
+ 74.83119987373293,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 31.07593472260461
+ ],
+ [
+ 74.71635719024924,
+ 31.270582457533063
+ ],
+ [
+ 74.4866718232819,
+ 31.270582457533063
+ ],
+ [
+ 74.37182913979821,
+ 31.07593472260461
+ ],
+ [
+ 74.4866718232819,
+ 30.88128698767616
+ ],
+ [
+ 74.71635719024924,
+ 30.88128698767616
+ ],
+ [
+ 74.83119987373293,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 31.465230192461515
+ ],
+ [
+ 74.71635719024924,
+ 31.659877927389967
+ ],
+ [
+ 74.4866718232819,
+ 31.659877927389967
+ ],
+ [
+ 74.37182913979821,
+ 31.465230192461515
+ ],
+ [
+ 74.4866718232819,
+ 31.270582457533063
+ ],
+ [
+ 74.71635719024924,
+ 31.270582457533063
+ ],
+ [
+ 74.83119987373293,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 31.854525662318423
+ ],
+ [
+ 74.71635719024924,
+ 32.049173397246875
+ ],
+ [
+ 74.4866718232819,
+ 32.049173397246875
+ ],
+ [
+ 74.37182913979821,
+ 31.854525662318423
+ ],
+ [
+ 74.4866718232819,
+ 31.65987792738997
+ ],
+ [
+ 74.71635719024924,
+ 31.65987792738997
+ ],
+ [
+ 74.83119987373293,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 32.24382113217533
+ ],
+ [
+ 74.71635719024924,
+ 32.43846886710378
+ ],
+ [
+ 74.4866718232819,
+ 32.43846886710378
+ ],
+ [
+ 74.37182913979821,
+ 32.24382113217533
+ ],
+ [
+ 74.4866718232819,
+ 32.049173397246875
+ ],
+ [
+ 74.71635719024924,
+ 32.049173397246875
+ ],
+ [
+ 74.83119987373293,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 32.63311660203224
+ ],
+ [
+ 74.71635719024924,
+ 32.82776433696069
+ ],
+ [
+ 74.4866718232819,
+ 32.82776433696069
+ ],
+ [
+ 74.37182913979821,
+ 32.63311660203224
+ ],
+ [
+ 74.4866718232819,
+ 32.438468867103786
+ ],
+ [
+ 74.71635719024924,
+ 32.438468867103786
+ ],
+ [
+ 74.83119987373293,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 33.02241207188914
+ ],
+ [
+ 74.71635719024924,
+ 33.217059806817595
+ ],
+ [
+ 74.4866718232819,
+ 33.217059806817595
+ ],
+ [
+ 74.37182913979821,
+ 33.02241207188914
+ ],
+ [
+ 74.4866718232819,
+ 32.82776433696069
+ ],
+ [
+ 74.71635719024924,
+ 32.82776433696069
+ ],
+ [
+ 74.83119987373293,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 33.41170754174605
+ ],
+ [
+ 74.71635719024924,
+ 33.6063552766745
+ ],
+ [
+ 74.4866718232819,
+ 33.6063552766745
+ ],
+ [
+ 74.37182913979821,
+ 33.41170754174605
+ ],
+ [
+ 74.4866718232819,
+ 33.217059806817595
+ ],
+ [
+ 74.71635719024924,
+ 33.217059806817595
+ ],
+ [
+ 74.83119987373293,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 33.80100301160295
+ ],
+ [
+ 74.71635719024924,
+ 33.9956507465314
+ ],
+ [
+ 74.4866718232819,
+ 33.9956507465314
+ ],
+ [
+ 74.37182913979821,
+ 33.80100301160295
+ ],
+ [
+ 74.4866718232819,
+ 33.6063552766745
+ ],
+ [
+ 74.71635719024924,
+ 33.6063552766745
+ ],
+ [
+ 74.83119987373293,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 34.190298481459855
+ ],
+ [
+ 74.71635719024924,
+ 34.38494621638831
+ ],
+ [
+ 74.4866718232819,
+ 34.38494621638831
+ ],
+ [
+ 74.37182913979821,
+ 34.190298481459855
+ ],
+ [
+ 74.4866718232819,
+ 33.9956507465314
+ ],
+ [
+ 74.71635719024924,
+ 33.9956507465314
+ ],
+ [
+ 74.83119987373293,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 34.57959395131677
+ ],
+ [
+ 74.71635719024924,
+ 34.77424168624522
+ ],
+ [
+ 74.4866718232819,
+ 34.77424168624522
+ ],
+ [
+ 74.37182913979821,
+ 34.57959395131677
+ ],
+ [
+ 74.4866718232819,
+ 34.384946216388315
+ ],
+ [
+ 74.71635719024924,
+ 34.384946216388315
+ ],
+ [
+ 74.83119987373293,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 34.96888942117368
+ ],
+ [
+ 74.71635719024924,
+ 35.16353715610213
+ ],
+ [
+ 74.4866718232819,
+ 35.16353715610213
+ ],
+ [
+ 74.37182913979821,
+ 34.96888942117368
+ ],
+ [
+ 74.4866718232819,
+ 34.774241686245226
+ ],
+ [
+ 74.71635719024924,
+ 34.774241686245226
+ ],
+ [
+ 74.83119987373293,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 35.35818489103058
+ ],
+ [
+ 74.71635719024924,
+ 35.552832625959034
+ ],
+ [
+ 74.4866718232819,
+ 35.552832625959034
+ ],
+ [
+ 74.37182913979821,
+ 35.35818489103058
+ ],
+ [
+ 74.4866718232819,
+ 35.16353715610213
+ ],
+ [
+ 74.71635719024924,
+ 35.16353715610213
+ ],
+ [
+ 74.83119987373293,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 35.74748036088749
+ ],
+ [
+ 74.71635719024924,
+ 35.94212809581594
+ ],
+ [
+ 74.4866718232819,
+ 35.94212809581594
+ ],
+ [
+ 74.37182913979821,
+ 35.74748036088749
+ ],
+ [
+ 74.4866718232819,
+ 35.552832625959034
+ ],
+ [
+ 74.71635719024924,
+ 35.552832625959034
+ ],
+ [
+ 74.83119987373293,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 36.13677583074439
+ ],
+ [
+ 74.71635719024924,
+ 36.33142356567284
+ ],
+ [
+ 74.4866718232819,
+ 36.33142356567284
+ ],
+ [
+ 74.37182913979821,
+ 36.13677583074439
+ ],
+ [
+ 74.4866718232819,
+ 35.94212809581594
+ ],
+ [
+ 74.71635719024924,
+ 35.94212809581594
+ ],
+ [
+ 74.83119987373293,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 36.526071300601295
+ ],
+ [
+ 74.71635719024924,
+ 36.72071903552975
+ ],
+ [
+ 74.4866718232819,
+ 36.72071903552975
+ ],
+ [
+ 74.37182913979821,
+ 36.526071300601295
+ ],
+ [
+ 74.4866718232819,
+ 36.33142356567284
+ ],
+ [
+ 74.71635719024924,
+ 36.33142356567284
+ ],
+ [
+ 74.83119987373293,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 36.915366770458206
+ ],
+ [
+ 74.71635719024924,
+ 37.11001450538666
+ ],
+ [
+ 74.4866718232819,
+ 37.11001450538666
+ ],
+ [
+ 74.37182913979821,
+ 36.915366770458206
+ ],
+ [
+ 74.4866718232819,
+ 36.720719035529754
+ ],
+ [
+ 74.71635719024924,
+ 36.720719035529754
+ ],
+ [
+ 74.83119987373293,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 37.30466224031511
+ ],
+ [
+ 74.71635719024924,
+ 37.49930997524356
+ ],
+ [
+ 74.4866718232819,
+ 37.49930997524356
+ ],
+ [
+ 74.37182913979821,
+ 37.30466224031511
+ ],
+ [
+ 74.4866718232819,
+ 37.11001450538666
+ ],
+ [
+ 74.71635719024924,
+ 37.11001450538666
+ ],
+ [
+ 74.83119987373293,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 37.69395771017202
+ ],
+ [
+ 74.71635719024924,
+ 37.888605445100474
+ ],
+ [
+ 74.4866718232819,
+ 37.888605445100474
+ ],
+ [
+ 74.37182913979821,
+ 37.69395771017202
+ ],
+ [
+ 74.4866718232819,
+ 37.49930997524357
+ ],
+ [
+ 74.71635719024924,
+ 37.49930997524357
+ ],
+ [
+ 74.83119987373293,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 38.083253180028926
+ ],
+ [
+ 74.71635719024924,
+ 38.27790091495738
+ ],
+ [
+ 74.4866718232819,
+ 38.27790091495738
+ ],
+ [
+ 74.37182913979821,
+ 38.083253180028926
+ ],
+ [
+ 74.4866718232819,
+ 37.888605445100474
+ ],
+ [
+ 74.71635719024924,
+ 37.888605445100474
+ ],
+ [
+ 74.83119987373293,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 38.47254864988583
+ ],
+ [
+ 74.71635719024924,
+ 38.66719638481428
+ ],
+ [
+ 74.4866718232819,
+ 38.66719638481428
+ ],
+ [
+ 74.37182913979821,
+ 38.47254864988583
+ ],
+ [
+ 74.4866718232819,
+ 38.27790091495738
+ ],
+ [
+ 74.71635719024924,
+ 38.27790091495738
+ ],
+ [
+ 74.83119987373293,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 38.861844119742734
+ ],
+ [
+ 74.71635719024924,
+ 39.05649185467119
+ ],
+ [
+ 74.4866718232819,
+ 39.05649185467119
+ ],
+ [
+ 74.37182913979821,
+ 38.861844119742734
+ ],
+ [
+ 74.4866718232819,
+ 38.66719638481428
+ ],
+ [
+ 74.71635719024924,
+ 38.66719638481428
+ ],
+ [
+ 74.83119987373293,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 39.25113958959964
+ ],
+ [
+ 74.71635719024924,
+ 39.44578732452809
+ ],
+ [
+ 74.4866718232819,
+ 39.44578732452809
+ ],
+ [
+ 74.37182913979821,
+ 39.25113958959964
+ ],
+ [
+ 74.4866718232819,
+ 39.05649185467119
+ ],
+ [
+ 74.71635719024924,
+ 39.05649185467119
+ ],
+ [
+ 74.83119987373293,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 39.64043505945655
+ ],
+ [
+ 74.71635719024924,
+ 39.835082794385
+ ],
+ [
+ 74.4866718232819,
+ 39.835082794385
+ ],
+ [
+ 74.37182913979821,
+ 39.64043505945655
+ ],
+ [
+ 74.4866718232819,
+ 39.4457873245281
+ ],
+ [
+ 74.71635719024924,
+ 39.4457873245281
+ ],
+ [
+ 74.83119987373293,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 40.029730529313454
+ ],
+ [
+ 74.71635719024924,
+ 40.224378264241906
+ ],
+ [
+ 74.4866718232819,
+ 40.224378264241906
+ ],
+ [
+ 74.37182913979821,
+ 40.029730529313454
+ ],
+ [
+ 74.4866718232819,
+ 39.835082794385
+ ],
+ [
+ 74.71635719024924,
+ 39.835082794385
+ ],
+ [
+ 74.83119987373293,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 40.419025999170366
+ ],
+ [
+ 74.71635719024924,
+ 40.61367373409882
+ ],
+ [
+ 74.4866718232819,
+ 40.61367373409882
+ ],
+ [
+ 74.37182913979821,
+ 40.419025999170366
+ ],
+ [
+ 74.4866718232819,
+ 40.22437826424191
+ ],
+ [
+ 74.71635719024924,
+ 40.22437826424191
+ ],
+ [
+ 74.83119987373293,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 40.80832146902727
+ ],
+ [
+ 74.71635719024924,
+ 41.00296920395572
+ ],
+ [
+ 74.4866718232819,
+ 41.00296920395572
+ ],
+ [
+ 74.37182913979821,
+ 40.80832146902727
+ ],
+ [
+ 74.4866718232819,
+ 40.61367373409882
+ ],
+ [
+ 74.71635719024924,
+ 40.61367373409882
+ ],
+ [
+ 74.83119987373293,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 41.197616938884174
+ ],
+ [
+ 74.71635719024924,
+ 41.392264673812626
+ ],
+ [
+ 74.4866718232819,
+ 41.392264673812626
+ ],
+ [
+ 74.37182913979821,
+ 41.197616938884174
+ ],
+ [
+ 74.4866718232819,
+ 41.00296920395572
+ ],
+ [
+ 74.71635719024924,
+ 41.00296920395572
+ ],
+ [
+ 74.83119987373293,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 41.58691240874108
+ ],
+ [
+ 74.71635719024924,
+ 41.78156014366953
+ ],
+ [
+ 74.4866718232819,
+ 41.78156014366953
+ ],
+ [
+ 74.37182913979821,
+ 41.58691240874108
+ ],
+ [
+ 74.4866718232819,
+ 41.392264673812626
+ ],
+ [
+ 74.71635719024924,
+ 41.392264673812626
+ ],
+ [
+ 74.83119987373293,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 41.97620787859798
+ ],
+ [
+ 74.71635719024924,
+ 42.170855613526435
+ ],
+ [
+ 74.4866718232819,
+ 42.170855613526435
+ ],
+ [
+ 74.37182913979821,
+ 41.97620787859798
+ ],
+ [
+ 74.4866718232819,
+ 41.78156014366953
+ ],
+ [
+ 74.71635719024924,
+ 41.78156014366953
+ ],
+ [
+ 74.83119987373293,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 42.365503348454894
+ ],
+ [
+ 74.71635719024924,
+ 42.560151083383346
+ ],
+ [
+ 74.4866718232819,
+ 42.560151083383346
+ ],
+ [
+ 74.37182913979821,
+ 42.365503348454894
+ ],
+ [
+ 74.4866718232819,
+ 42.17085561352644
+ ],
+ [
+ 74.71635719024924,
+ 42.17085561352644
+ ],
+ [
+ 74.83119987373293,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 42.754798818311805
+ ],
+ [
+ 74.71635719024924,
+ 42.94944655324026
+ ],
+ [
+ 74.4866718232819,
+ 42.94944655324026
+ ],
+ [
+ 74.37182913979821,
+ 42.754798818311805
+ ],
+ [
+ 74.4866718232819,
+ 42.56015108338335
+ ],
+ [
+ 74.71635719024924,
+ 42.56015108338335
+ ],
+ [
+ 74.83119987373293,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 43.14409428816871
+ ],
+ [
+ 74.71635719024924,
+ 43.33874202309716
+ ],
+ [
+ 74.4866718232819,
+ 43.33874202309716
+ ],
+ [
+ 74.37182913979821,
+ 43.14409428816871
+ ],
+ [
+ 74.4866718232819,
+ 42.94944655324026
+ ],
+ [
+ 74.71635719024924,
+ 42.94944655324026
+ ],
+ [
+ 74.83119987373293,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 43.53338975802561
+ ],
+ [
+ 74.71635719024924,
+ 43.728037492954066
+ ],
+ [
+ 74.4866718232819,
+ 43.728037492954066
+ ],
+ [
+ 74.37182913979821,
+ 43.53338975802561
+ ],
+ [
+ 74.4866718232819,
+ 43.33874202309716
+ ],
+ [
+ 74.71635719024924,
+ 43.33874202309716
+ ],
+ [
+ 74.83119987373293,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 43.92268522788252
+ ],
+ [
+ 74.71635719024924,
+ 44.11733296281097
+ ],
+ [
+ 74.4866718232819,
+ 44.11733296281097
+ ],
+ [
+ 74.37182913979821,
+ 43.92268522788252
+ ],
+ [
+ 74.4866718232819,
+ 43.728037492954066
+ ],
+ [
+ 74.71635719024924,
+ 43.728037492954066
+ ],
+ [
+ 74.83119987373293,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 44.31198069773942
+ ],
+ [
+ 74.71635719024924,
+ 44.506628432667874
+ ],
+ [
+ 74.4866718232819,
+ 44.506628432667874
+ ],
+ [
+ 74.37182913979821,
+ 44.31198069773942
+ ],
+ [
+ 74.4866718232819,
+ 44.11733296281097
+ ],
+ [
+ 74.71635719024924,
+ 44.11733296281097
+ ],
+ [
+ 74.83119987373293,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 44.701276167596326
+ ],
+ [
+ 74.71635719024924,
+ 44.89592390252478
+ ],
+ [
+ 74.4866718232819,
+ 44.89592390252478
+ ],
+ [
+ 74.37182913979821,
+ 44.701276167596326
+ ],
+ [
+ 74.4866718232819,
+ 44.506628432667874
+ ],
+ [
+ 74.71635719024924,
+ 44.506628432667874
+ ],
+ [
+ 74.83119987373293,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 45.090571637453245
+ ],
+ [
+ 74.71635719024924,
+ 45.2852193723817
+ ],
+ [
+ 74.4866718232819,
+ 45.2852193723817
+ ],
+ [
+ 74.37182913979821,
+ 45.090571637453245
+ ],
+ [
+ 74.4866718232819,
+ 44.89592390252479
+ ],
+ [
+ 74.71635719024924,
+ 44.89592390252479
+ ],
+ [
+ 74.83119987373293,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 45.47986710731015
+ ],
+ [
+ 74.71635719024924,
+ 45.6745148422386
+ ],
+ [
+ 74.4866718232819,
+ 45.6745148422386
+ ],
+ [
+ 74.37182913979821,
+ 45.47986710731015
+ ],
+ [
+ 74.4866718232819,
+ 45.2852193723817
+ ],
+ [
+ 74.71635719024924,
+ 45.2852193723817
+ ],
+ [
+ 74.83119987373293,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 45.86916257716705
+ ],
+ [
+ 74.71635719024924,
+ 46.063810312095505
+ ],
+ [
+ 74.4866718232819,
+ 46.063810312095505
+ ],
+ [
+ 74.37182913979821,
+ 45.86916257716705
+ ],
+ [
+ 74.4866718232819,
+ 45.6745148422386
+ ],
+ [
+ 74.71635719024924,
+ 45.6745148422386
+ ],
+ [
+ 74.83119987373293,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 46.25845804702396
+ ],
+ [
+ 74.71635719024924,
+ 46.45310578195241
+ ],
+ [
+ 74.4866718232819,
+ 46.45310578195241
+ ],
+ [
+ 74.37182913979821,
+ 46.25845804702396
+ ],
+ [
+ 74.4866718232819,
+ 46.063810312095505
+ ],
+ [
+ 74.71635719024924,
+ 46.063810312095505
+ ],
+ [
+ 74.83119987373293,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 46.64775351688086
+ ],
+ [
+ 74.71635719024924,
+ 46.842401251809314
+ ],
+ [
+ 74.4866718232819,
+ 46.842401251809314
+ ],
+ [
+ 74.37182913979821,
+ 46.64775351688086
+ ],
+ [
+ 74.4866718232819,
+ 46.45310578195241
+ ],
+ [
+ 74.71635719024924,
+ 46.45310578195241
+ ],
+ [
+ 74.83119987373293,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 47.037048986737766
+ ],
+ [
+ 74.71635719024924,
+ 47.23169672166622
+ ],
+ [
+ 74.4866718232819,
+ 47.23169672166622
+ ],
+ [
+ 74.37182913979821,
+ 47.037048986737766
+ ],
+ [
+ 74.4866718232819,
+ 46.842401251809314
+ ],
+ [
+ 74.71635719024924,
+ 46.842401251809314
+ ],
+ [
+ 74.83119987373293,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 47.42634445659467
+ ],
+ [
+ 74.71635719024924,
+ 47.62099219152312
+ ],
+ [
+ 74.4866718232819,
+ 47.62099219152312
+ ],
+ [
+ 74.37182913979821,
+ 47.42634445659467
+ ],
+ [
+ 74.4866718232819,
+ 47.23169672166622
+ ],
+ [
+ 74.71635719024924,
+ 47.23169672166622
+ ],
+ [
+ 74.83119987373293,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 74.83119987373293,
+ 47.81563992645159
+ ],
+ [
+ 74.71635719024924,
+ 48.01028766138004
+ ],
+ [
+ 74.4866718232819,
+ 48.01028766138004
+ ],
+ [
+ 74.37182913979821,
+ 47.81563992645159
+ ],
+ [
+ 74.4866718232819,
+ 47.620992191523136
+ ],
+ [
+ 74.71635719024924,
+ 47.620992191523136
+ ],
+ [
+ 74.83119987373293,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 11.805808964687746
+ ],
+ [
+ 75.06088524070027,
+ 12.0004566996162
+ ],
+ [
+ 74.83119987373293,
+ 12.0004566996162
+ ],
+ [
+ 74.71635719024924,
+ 11.805808964687746
+ ],
+ [
+ 74.83119987373293,
+ 11.611161229759292
+ ],
+ [
+ 75.06088524070027,
+ 11.611161229759292
+ ],
+ [
+ 75.17572792418396,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 12.195104434544652
+ ],
+ [
+ 75.06088524070027,
+ 12.389752169473105
+ ],
+ [
+ 74.83119987373293,
+ 12.389752169473105
+ ],
+ [
+ 74.71635719024924,
+ 12.195104434544652
+ ],
+ [
+ 74.83119987373293,
+ 12.000456699616198
+ ],
+ [
+ 75.06088524070027,
+ 12.000456699616198
+ ],
+ [
+ 75.17572792418396,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 12.58439990440156
+ ],
+ [
+ 75.06088524070027,
+ 12.779047639330013
+ ],
+ [
+ 74.83119987373293,
+ 12.779047639330013
+ ],
+ [
+ 74.71635719024924,
+ 12.58439990440156
+ ],
+ [
+ 74.83119987373293,
+ 12.389752169473105
+ ],
+ [
+ 75.06088524070027,
+ 12.389752169473105
+ ],
+ [
+ 75.17572792418396,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 12.973695374258465
+ ],
+ [
+ 75.06088524070027,
+ 13.16834310918692
+ ],
+ [
+ 74.83119987373293,
+ 13.16834310918692
+ ],
+ [
+ 74.71635719024924,
+ 12.973695374258465
+ ],
+ [
+ 74.83119987373293,
+ 12.779047639330011
+ ],
+ [
+ 75.06088524070027,
+ 12.779047639330011
+ ],
+ [
+ 75.17572792418396,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 13.362990844115371
+ ],
+ [
+ 75.06088524070027,
+ 13.557638579043825
+ ],
+ [
+ 74.83119987373293,
+ 13.557638579043825
+ ],
+ [
+ 74.71635719024924,
+ 13.362990844115371
+ ],
+ [
+ 74.83119987373293,
+ 13.168343109186917
+ ],
+ [
+ 75.06088524070027,
+ 13.168343109186917
+ ],
+ [
+ 75.17572792418396,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 13.752286313972277
+ ],
+ [
+ 75.06088524070027,
+ 13.946934048900731
+ ],
+ [
+ 74.83119987373293,
+ 13.946934048900731
+ ],
+ [
+ 74.71635719024924,
+ 13.752286313972277
+ ],
+ [
+ 74.83119987373293,
+ 13.557638579043823
+ ],
+ [
+ 75.06088524070027,
+ 13.557638579043823
+ ],
+ [
+ 75.17572792418396,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 14.141581783829183
+ ],
+ [
+ 75.06088524070027,
+ 14.336229518757637
+ ],
+ [
+ 74.83119987373293,
+ 14.336229518757637
+ ],
+ [
+ 74.71635719024924,
+ 14.141581783829183
+ ],
+ [
+ 74.83119987373293,
+ 13.94693404890073
+ ],
+ [
+ 75.06088524070027,
+ 13.94693404890073
+ ],
+ [
+ 75.17572792418396,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 14.530877253686091
+ ],
+ [
+ 75.06088524070027,
+ 14.725524988614545
+ ],
+ [
+ 74.83119987373293,
+ 14.725524988614545
+ ],
+ [
+ 74.71635719024924,
+ 14.530877253686091
+ ],
+ [
+ 74.83119987373293,
+ 14.336229518757637
+ ],
+ [
+ 75.06088524070027,
+ 14.336229518757637
+ ],
+ [
+ 75.17572792418396,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 14.920172723542997
+ ],
+ [
+ 75.06088524070027,
+ 15.114820458471451
+ ],
+ [
+ 74.83119987373293,
+ 15.114820458471451
+ ],
+ [
+ 74.71635719024924,
+ 14.920172723542997
+ ],
+ [
+ 74.83119987373293,
+ 14.725524988614543
+ ],
+ [
+ 75.06088524070027,
+ 14.725524988614543
+ ],
+ [
+ 75.17572792418396,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 15.309468193399903
+ ],
+ [
+ 75.06088524070027,
+ 15.504115928328357
+ ],
+ [
+ 74.83119987373293,
+ 15.504115928328357
+ ],
+ [
+ 74.71635719024924,
+ 15.309468193399903
+ ],
+ [
+ 74.83119987373293,
+ 15.11482045847145
+ ],
+ [
+ 75.06088524070027,
+ 15.11482045847145
+ ],
+ [
+ 75.17572792418396,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 15.69876366325681
+ ],
+ [
+ 75.06088524070027,
+ 15.893411398185265
+ ],
+ [
+ 74.83119987373293,
+ 15.893411398185265
+ ],
+ [
+ 74.71635719024924,
+ 15.69876366325681
+ ],
+ [
+ 74.83119987373293,
+ 15.504115928328357
+ ],
+ [
+ 75.06088524070027,
+ 15.504115928328357
+ ],
+ [
+ 75.17572792418396,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 16.088059133113717
+ ],
+ [
+ 75.06088524070027,
+ 16.28270686804217
+ ],
+ [
+ 74.83119987373293,
+ 16.28270686804217
+ ],
+ [
+ 74.71635719024924,
+ 16.088059133113717
+ ],
+ [
+ 74.83119987373293,
+ 15.893411398185263
+ ],
+ [
+ 75.06088524070027,
+ 15.893411398185263
+ ],
+ [
+ 75.17572792418396,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 16.477354602970625
+ ],
+ [
+ 75.06088524070027,
+ 16.672002337899077
+ ],
+ [
+ 74.83119987373293,
+ 16.672002337899077
+ ],
+ [
+ 74.71635719024924,
+ 16.477354602970625
+ ],
+ [
+ 74.83119987373293,
+ 16.282706868042172
+ ],
+ [
+ 75.06088524070027,
+ 16.282706868042172
+ ],
+ [
+ 75.17572792418396,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 16.86665007282753
+ ],
+ [
+ 75.06088524070027,
+ 17.06129780775598
+ ],
+ [
+ 74.83119987373293,
+ 17.06129780775598
+ ],
+ [
+ 74.71635719024924,
+ 16.86665007282753
+ ],
+ [
+ 74.83119987373293,
+ 16.672002337899077
+ ],
+ [
+ 75.06088524070027,
+ 16.672002337899077
+ ],
+ [
+ 75.17572792418396,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 17.255945542684437
+ ],
+ [
+ 75.06088524070027,
+ 17.45059327761289
+ ],
+ [
+ 74.83119987373293,
+ 17.45059327761289
+ ],
+ [
+ 74.71635719024924,
+ 17.255945542684437
+ ],
+ [
+ 74.83119987373293,
+ 17.061297807755984
+ ],
+ [
+ 75.06088524070027,
+ 17.061297807755984
+ ],
+ [
+ 75.17572792418396,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 17.64524101254134
+ ],
+ [
+ 75.06088524070027,
+ 17.839888747469793
+ ],
+ [
+ 74.83119987373293,
+ 17.839888747469793
+ ],
+ [
+ 74.71635719024924,
+ 17.64524101254134
+ ],
+ [
+ 74.83119987373293,
+ 17.45059327761289
+ ],
+ [
+ 75.06088524070027,
+ 17.45059327761289
+ ],
+ [
+ 75.17572792418396,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 18.03453648239825
+ ],
+ [
+ 75.06088524070027,
+ 18.2291842173267
+ ],
+ [
+ 74.83119987373293,
+ 18.2291842173267
+ ],
+ [
+ 74.71635719024924,
+ 18.03453648239825
+ ],
+ [
+ 74.83119987373293,
+ 17.839888747469796
+ ],
+ [
+ 75.06088524070027,
+ 17.839888747469796
+ ],
+ [
+ 75.17572792418396,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 18.423831952255156
+ ],
+ [
+ 75.06088524070027,
+ 18.61847968718361
+ ],
+ [
+ 74.83119987373293,
+ 18.61847968718361
+ ],
+ [
+ 74.71635719024924,
+ 18.423831952255156
+ ],
+ [
+ 74.83119987373293,
+ 18.229184217326704
+ ],
+ [
+ 75.06088524070027,
+ 18.229184217326704
+ ],
+ [
+ 75.17572792418396,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 18.81312742211206
+ ],
+ [
+ 75.06088524070027,
+ 19.007775157040513
+ ],
+ [
+ 74.83119987373293,
+ 19.007775157040513
+ ],
+ [
+ 74.71635719024924,
+ 18.81312742211206
+ ],
+ [
+ 74.83119987373293,
+ 18.61847968718361
+ ],
+ [
+ 75.06088524070027,
+ 18.61847968718361
+ ],
+ [
+ 75.17572792418396,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 19.20242289196897
+ ],
+ [
+ 75.06088524070027,
+ 19.39707062689742
+ ],
+ [
+ 74.83119987373293,
+ 19.39707062689742
+ ],
+ [
+ 74.71635719024924,
+ 19.20242289196897
+ ],
+ [
+ 74.83119987373293,
+ 19.007775157040516
+ ],
+ [
+ 75.06088524070027,
+ 19.007775157040516
+ ],
+ [
+ 75.17572792418396,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 19.591718361825876
+ ],
+ [
+ 75.06088524070027,
+ 19.78636609675433
+ ],
+ [
+ 74.83119987373293,
+ 19.78636609675433
+ ],
+ [
+ 74.71635719024924,
+ 19.591718361825876
+ ],
+ [
+ 74.83119987373293,
+ 19.397070626897424
+ ],
+ [
+ 75.06088524070027,
+ 19.397070626897424
+ ],
+ [
+ 75.17572792418396,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 19.98101383168278
+ ],
+ [
+ 75.06088524070027,
+ 20.175661566611232
+ ],
+ [
+ 74.83119987373293,
+ 20.175661566611232
+ ],
+ [
+ 74.71635719024924,
+ 19.98101383168278
+ ],
+ [
+ 74.83119987373293,
+ 19.78636609675433
+ ],
+ [
+ 75.06088524070027,
+ 19.78636609675433
+ ],
+ [
+ 75.17572792418396,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 20.370309301539685
+ ],
+ [
+ 75.06088524070027,
+ 20.564957036468137
+ ],
+ [
+ 74.83119987373293,
+ 20.564957036468137
+ ],
+ [
+ 74.71635719024924,
+ 20.370309301539685
+ ],
+ [
+ 74.83119987373293,
+ 20.175661566611232
+ ],
+ [
+ 75.06088524070027,
+ 20.175661566611232
+ ],
+ [
+ 75.17572792418396,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 20.759604771396592
+ ],
+ [
+ 75.06088524070027,
+ 20.954252506325044
+ ],
+ [
+ 74.83119987373293,
+ 20.954252506325044
+ ],
+ [
+ 74.71635719024924,
+ 20.759604771396592
+ ],
+ [
+ 74.83119987373293,
+ 20.56495703646814
+ ],
+ [
+ 75.06088524070027,
+ 20.56495703646814
+ ],
+ [
+ 75.17572792418396,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 21.1489002412535
+ ],
+ [
+ 75.06088524070027,
+ 21.343547976181952
+ ],
+ [
+ 74.83119987373293,
+ 21.343547976181952
+ ],
+ [
+ 74.71635719024924,
+ 21.1489002412535
+ ],
+ [
+ 74.83119987373293,
+ 20.954252506325048
+ ],
+ [
+ 75.06088524070027,
+ 20.954252506325048
+ ],
+ [
+ 75.17572792418396,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 21.538195711110404
+ ],
+ [
+ 75.06088524070027,
+ 21.732843446038856
+ ],
+ [
+ 74.83119987373293,
+ 21.732843446038856
+ ],
+ [
+ 74.71635719024924,
+ 21.538195711110404
+ ],
+ [
+ 74.83119987373293,
+ 21.343547976181952
+ ],
+ [
+ 75.06088524070027,
+ 21.343547976181952
+ ],
+ [
+ 75.17572792418396,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 21.927491180967312
+ ],
+ [
+ 75.06088524070027,
+ 22.122138915895764
+ ],
+ [
+ 74.83119987373293,
+ 22.122138915895764
+ ],
+ [
+ 74.71635719024924,
+ 21.927491180967312
+ ],
+ [
+ 74.83119987373293,
+ 21.73284344603886
+ ],
+ [
+ 75.06088524070027,
+ 21.73284344603886
+ ],
+ [
+ 75.17572792418396,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 22.31678665082422
+ ],
+ [
+ 75.06088524070027,
+ 22.511434385752672
+ ],
+ [
+ 74.83119987373293,
+ 22.511434385752672
+ ],
+ [
+ 74.71635719024924,
+ 22.31678665082422
+ ],
+ [
+ 74.83119987373293,
+ 22.122138915895768
+ ],
+ [
+ 75.06088524070027,
+ 22.122138915895768
+ ],
+ [
+ 75.17572792418396,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 22.706082120681124
+ ],
+ [
+ 75.06088524070027,
+ 22.900729855609576
+ ],
+ [
+ 74.83119987373293,
+ 22.900729855609576
+ ],
+ [
+ 74.71635719024924,
+ 22.706082120681124
+ ],
+ [
+ 74.83119987373293,
+ 22.511434385752672
+ ],
+ [
+ 75.06088524070027,
+ 22.511434385752672
+ ],
+ [
+ 75.17572792418396,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 23.095377590538032
+ ],
+ [
+ 75.06088524070027,
+ 23.290025325466484
+ ],
+ [
+ 74.83119987373293,
+ 23.290025325466484
+ ],
+ [
+ 74.71635719024924,
+ 23.095377590538032
+ ],
+ [
+ 74.83119987373293,
+ 22.90072985560958
+ ],
+ [
+ 75.06088524070027,
+ 22.90072985560958
+ ],
+ [
+ 75.17572792418396,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 23.48467306039494
+ ],
+ [
+ 75.06088524070027,
+ 23.67932079532339
+ ],
+ [
+ 74.83119987373293,
+ 23.67932079532339
+ ],
+ [
+ 74.71635719024924,
+ 23.48467306039494
+ ],
+ [
+ 74.83119987373293,
+ 23.290025325466488
+ ],
+ [
+ 75.06088524070027,
+ 23.290025325466488
+ ],
+ [
+ 75.17572792418396,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 23.873968530251844
+ ],
+ [
+ 75.06088524070027,
+ 24.068616265180296
+ ],
+ [
+ 74.83119987373293,
+ 24.068616265180296
+ ],
+ [
+ 74.71635719024924,
+ 23.873968530251844
+ ],
+ [
+ 74.83119987373293,
+ 23.67932079532339
+ ],
+ [
+ 75.06088524070027,
+ 23.67932079532339
+ ],
+ [
+ 75.17572792418396,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 24.263264000108748
+ ],
+ [
+ 75.06088524070027,
+ 24.4579117350372
+ ],
+ [
+ 74.83119987373293,
+ 24.4579117350372
+ ],
+ [
+ 74.71635719024924,
+ 24.263264000108748
+ ],
+ [
+ 74.83119987373293,
+ 24.068616265180296
+ ],
+ [
+ 75.06088524070027,
+ 24.068616265180296
+ ],
+ [
+ 75.17572792418396,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 24.652559469965656
+ ],
+ [
+ 75.06088524070027,
+ 24.847207204894108
+ ],
+ [
+ 74.83119987373293,
+ 24.847207204894108
+ ],
+ [
+ 74.71635719024924,
+ 24.652559469965656
+ ],
+ [
+ 74.83119987373293,
+ 24.457911735037204
+ ],
+ [
+ 75.06088524070027,
+ 24.457911735037204
+ ],
+ [
+ 75.17572792418396,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 25.041854939822564
+ ],
+ [
+ 75.06088524070027,
+ 25.236502674751016
+ ],
+ [
+ 74.83119987373293,
+ 25.236502674751016
+ ],
+ [
+ 74.71635719024924,
+ 25.041854939822564
+ ],
+ [
+ 74.83119987373293,
+ 24.84720720489411
+ ],
+ [
+ 75.06088524070027,
+ 24.84720720489411
+ ],
+ [
+ 75.17572792418396,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 25.431150409679468
+ ],
+ [
+ 75.06088524070027,
+ 25.62579814460792
+ ],
+ [
+ 74.83119987373293,
+ 25.62579814460792
+ ],
+ [
+ 74.71635719024924,
+ 25.431150409679468
+ ],
+ [
+ 74.83119987373293,
+ 25.236502674751016
+ ],
+ [
+ 75.06088524070027,
+ 25.236502674751016
+ ],
+ [
+ 75.17572792418396,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 25.820445879536376
+ ],
+ [
+ 75.06088524070027,
+ 26.015093614464828
+ ],
+ [
+ 74.83119987373293,
+ 26.015093614464828
+ ],
+ [
+ 74.71635719024924,
+ 25.820445879536376
+ ],
+ [
+ 74.83119987373293,
+ 25.625798144607923
+ ],
+ [
+ 75.06088524070027,
+ 25.625798144607923
+ ],
+ [
+ 75.17572792418396,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 26.209741349393283
+ ],
+ [
+ 75.06088524070027,
+ 26.404389084321735
+ ],
+ [
+ 74.83119987373293,
+ 26.404389084321735
+ ],
+ [
+ 74.71635719024924,
+ 26.209741349393283
+ ],
+ [
+ 74.83119987373293,
+ 26.01509361446483
+ ],
+ [
+ 75.06088524070027,
+ 26.01509361446483
+ ],
+ [
+ 75.17572792418396,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 26.599036819250188
+ ],
+ [
+ 75.06088524070027,
+ 26.79368455417864
+ ],
+ [
+ 74.83119987373293,
+ 26.79368455417864
+ ],
+ [
+ 74.71635719024924,
+ 26.599036819250188
+ ],
+ [
+ 74.83119987373293,
+ 26.404389084321735
+ ],
+ [
+ 75.06088524070027,
+ 26.404389084321735
+ ],
+ [
+ 75.17572792418396,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 26.988332289107095
+ ],
+ [
+ 75.06088524070027,
+ 27.182980024035547
+ ],
+ [
+ 74.83119987373293,
+ 27.182980024035547
+ ],
+ [
+ 74.71635719024924,
+ 26.988332289107095
+ ],
+ [
+ 74.83119987373293,
+ 26.793684554178643
+ ],
+ [
+ 75.06088524070027,
+ 26.793684554178643
+ ],
+ [
+ 75.17572792418396,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 27.377627758964003
+ ],
+ [
+ 75.06088524070027,
+ 27.572275493892455
+ ],
+ [
+ 74.83119987373293,
+ 27.572275493892455
+ ],
+ [
+ 74.71635719024924,
+ 27.377627758964003
+ ],
+ [
+ 74.83119987373293,
+ 27.18298002403555
+ ],
+ [
+ 75.06088524070027,
+ 27.18298002403555
+ ],
+ [
+ 75.17572792418396,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 27.766923228820907
+ ],
+ [
+ 75.06088524070027,
+ 27.96157096374936
+ ],
+ [
+ 74.83119987373293,
+ 27.96157096374936
+ ],
+ [
+ 74.71635719024924,
+ 27.766923228820907
+ ],
+ [
+ 74.83119987373293,
+ 27.572275493892455
+ ],
+ [
+ 75.06088524070027,
+ 27.572275493892455
+ ],
+ [
+ 75.17572792418396,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 28.156218698677815
+ ],
+ [
+ 75.06088524070027,
+ 28.350866433606267
+ ],
+ [
+ 74.83119987373293,
+ 28.350866433606267
+ ],
+ [
+ 74.71635719024924,
+ 28.156218698677815
+ ],
+ [
+ 74.83119987373293,
+ 27.961570963749363
+ ],
+ [
+ 75.06088524070027,
+ 27.961570963749363
+ ],
+ [
+ 75.17572792418396,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 28.54551416853472
+ ],
+ [
+ 75.06088524070027,
+ 28.74016190346317
+ ],
+ [
+ 74.83119987373293,
+ 28.74016190346317
+ ],
+ [
+ 74.71635719024924,
+ 28.54551416853472
+ ],
+ [
+ 74.83119987373293,
+ 28.350866433606267
+ ],
+ [
+ 75.06088524070027,
+ 28.350866433606267
+ ],
+ [
+ 75.17572792418396,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 28.934809638391627
+ ],
+ [
+ 75.06088524070027,
+ 29.12945737332008
+ ],
+ [
+ 74.83119987373293,
+ 29.12945737332008
+ ],
+ [
+ 74.71635719024924,
+ 28.934809638391627
+ ],
+ [
+ 74.83119987373293,
+ 28.740161903463175
+ ],
+ [
+ 75.06088524070027,
+ 28.740161903463175
+ ],
+ [
+ 75.17572792418396,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 29.32410510824853
+ ],
+ [
+ 75.06088524070027,
+ 29.518752843176983
+ ],
+ [
+ 74.83119987373293,
+ 29.518752843176983
+ ],
+ [
+ 74.71635719024924,
+ 29.32410510824853
+ ],
+ [
+ 74.83119987373293,
+ 29.12945737332008
+ ],
+ [
+ 75.06088524070027,
+ 29.12945737332008
+ ],
+ [
+ 75.17572792418396,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 29.71340057810544
+ ],
+ [
+ 75.06088524070027,
+ 29.90804831303389
+ ],
+ [
+ 74.83119987373293,
+ 29.90804831303389
+ ],
+ [
+ 74.71635719024924,
+ 29.71340057810544
+ ],
+ [
+ 74.83119987373293,
+ 29.518752843176987
+ ],
+ [
+ 75.06088524070027,
+ 29.518752843176987
+ ],
+ [
+ 75.17572792418396,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 30.102696047962343
+ ],
+ [
+ 75.06088524070027,
+ 30.297343782890795
+ ],
+ [
+ 74.83119987373293,
+ 30.297343782890795
+ ],
+ [
+ 74.71635719024924,
+ 30.102696047962343
+ ],
+ [
+ 74.83119987373293,
+ 29.90804831303389
+ ],
+ [
+ 75.06088524070027,
+ 29.90804831303389
+ ],
+ [
+ 75.17572792418396,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 30.49199151781925
+ ],
+ [
+ 75.06088524070027,
+ 30.686639252747703
+ ],
+ [
+ 74.83119987373293,
+ 30.686639252747703
+ ],
+ [
+ 74.71635719024924,
+ 30.49199151781925
+ ],
+ [
+ 74.83119987373293,
+ 30.2973437828908
+ ],
+ [
+ 75.06088524070027,
+ 30.2973437828908
+ ],
+ [
+ 75.17572792418396,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 30.88128698767616
+ ],
+ [
+ 75.06088524070027,
+ 31.07593472260461
+ ],
+ [
+ 74.83119987373293,
+ 31.07593472260461
+ ],
+ [
+ 74.71635719024924,
+ 30.88128698767616
+ ],
+ [
+ 74.83119987373293,
+ 30.686639252747707
+ ],
+ [
+ 75.06088524070027,
+ 30.686639252747707
+ ],
+ [
+ 75.17572792418396,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 31.270582457533063
+ ],
+ [
+ 75.06088524070027,
+ 31.465230192461515
+ ],
+ [
+ 74.83119987373293,
+ 31.465230192461515
+ ],
+ [
+ 74.71635719024924,
+ 31.270582457533063
+ ],
+ [
+ 74.83119987373293,
+ 31.07593472260461
+ ],
+ [
+ 75.06088524070027,
+ 31.07593472260461
+ ],
+ [
+ 75.17572792418396,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 31.65987792738997
+ ],
+ [
+ 75.06088524070027,
+ 31.854525662318423
+ ],
+ [
+ 74.83119987373293,
+ 31.854525662318423
+ ],
+ [
+ 74.71635719024924,
+ 31.65987792738997
+ ],
+ [
+ 74.83119987373293,
+ 31.46523019246152
+ ],
+ [
+ 75.06088524070027,
+ 31.46523019246152
+ ],
+ [
+ 75.17572792418396,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 32.049173397246875
+ ],
+ [
+ 75.06088524070027,
+ 32.24382113217533
+ ],
+ [
+ 74.83119987373293,
+ 32.24382113217533
+ ],
+ [
+ 74.71635719024924,
+ 32.049173397246875
+ ],
+ [
+ 74.83119987373293,
+ 31.854525662318423
+ ],
+ [
+ 75.06088524070027,
+ 31.854525662318423
+ ],
+ [
+ 75.17572792418396,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 32.438468867103786
+ ],
+ [
+ 75.06088524070027,
+ 32.63311660203224
+ ],
+ [
+ 74.83119987373293,
+ 32.63311660203224
+ ],
+ [
+ 74.71635719024924,
+ 32.438468867103786
+ ],
+ [
+ 74.83119987373293,
+ 32.243821132175334
+ ],
+ [
+ 75.06088524070027,
+ 32.243821132175334
+ ],
+ [
+ 75.17572792418396,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 32.82776433696069
+ ],
+ [
+ 75.06088524070027,
+ 33.02241207188914
+ ],
+ [
+ 74.83119987373293,
+ 33.02241207188914
+ ],
+ [
+ 74.71635719024924,
+ 32.82776433696069
+ ],
+ [
+ 74.83119987373293,
+ 32.63311660203224
+ ],
+ [
+ 75.06088524070027,
+ 32.63311660203224
+ ],
+ [
+ 75.17572792418396,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 33.217059806817595
+ ],
+ [
+ 75.06088524070027,
+ 33.41170754174605
+ ],
+ [
+ 74.83119987373293,
+ 33.41170754174605
+ ],
+ [
+ 74.71635719024924,
+ 33.217059806817595
+ ],
+ [
+ 74.83119987373293,
+ 33.02241207188914
+ ],
+ [
+ 75.06088524070027,
+ 33.02241207188914
+ ],
+ [
+ 75.17572792418396,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 33.6063552766745
+ ],
+ [
+ 75.06088524070027,
+ 33.80100301160295
+ ],
+ [
+ 74.83119987373293,
+ 33.80100301160295
+ ],
+ [
+ 74.71635719024924,
+ 33.6063552766745
+ ],
+ [
+ 74.83119987373293,
+ 33.41170754174605
+ ],
+ [
+ 75.06088524070027,
+ 33.41170754174605
+ ],
+ [
+ 75.17572792418396,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 33.9956507465314
+ ],
+ [
+ 75.06088524070027,
+ 34.190298481459855
+ ],
+ [
+ 74.83119987373293,
+ 34.190298481459855
+ ],
+ [
+ 74.71635719024924,
+ 33.9956507465314
+ ],
+ [
+ 74.83119987373293,
+ 33.80100301160295
+ ],
+ [
+ 75.06088524070027,
+ 33.80100301160295
+ ],
+ [
+ 75.17572792418396,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 34.384946216388315
+ ],
+ [
+ 75.06088524070027,
+ 34.57959395131677
+ ],
+ [
+ 74.83119987373293,
+ 34.57959395131677
+ ],
+ [
+ 74.71635719024924,
+ 34.384946216388315
+ ],
+ [
+ 74.83119987373293,
+ 34.19029848145986
+ ],
+ [
+ 75.06088524070027,
+ 34.19029848145986
+ ],
+ [
+ 75.17572792418396,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 34.774241686245226
+ ],
+ [
+ 75.06088524070027,
+ 34.96888942117368
+ ],
+ [
+ 74.83119987373293,
+ 34.96888942117368
+ ],
+ [
+ 74.71635719024924,
+ 34.774241686245226
+ ],
+ [
+ 74.83119987373293,
+ 34.579593951316774
+ ],
+ [
+ 75.06088524070027,
+ 34.579593951316774
+ ],
+ [
+ 75.17572792418396,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 35.16353715610213
+ ],
+ [
+ 75.06088524070027,
+ 35.35818489103058
+ ],
+ [
+ 74.83119987373293,
+ 35.35818489103058
+ ],
+ [
+ 74.71635719024924,
+ 35.16353715610213
+ ],
+ [
+ 74.83119987373293,
+ 34.96888942117368
+ ],
+ [
+ 75.06088524070027,
+ 34.96888942117368
+ ],
+ [
+ 75.17572792418396,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 35.552832625959034
+ ],
+ [
+ 75.06088524070027,
+ 35.74748036088749
+ ],
+ [
+ 74.83119987373293,
+ 35.74748036088749
+ ],
+ [
+ 74.71635719024924,
+ 35.552832625959034
+ ],
+ [
+ 74.83119987373293,
+ 35.35818489103058
+ ],
+ [
+ 75.06088524070027,
+ 35.35818489103058
+ ],
+ [
+ 75.17572792418396,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 35.94212809581594
+ ],
+ [
+ 75.06088524070027,
+ 36.13677583074439
+ ],
+ [
+ 74.83119987373293,
+ 36.13677583074439
+ ],
+ [
+ 74.71635719024924,
+ 35.94212809581594
+ ],
+ [
+ 74.83119987373293,
+ 35.74748036088749
+ ],
+ [
+ 75.06088524070027,
+ 35.74748036088749
+ ],
+ [
+ 75.17572792418396,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 36.33142356567284
+ ],
+ [
+ 75.06088524070027,
+ 36.526071300601295
+ ],
+ [
+ 74.83119987373293,
+ 36.526071300601295
+ ],
+ [
+ 74.71635719024924,
+ 36.33142356567284
+ ],
+ [
+ 74.83119987373293,
+ 36.13677583074439
+ ],
+ [
+ 75.06088524070027,
+ 36.13677583074439
+ ],
+ [
+ 75.17572792418396,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 36.720719035529754
+ ],
+ [
+ 75.06088524070027,
+ 36.915366770458206
+ ],
+ [
+ 74.83119987373293,
+ 36.915366770458206
+ ],
+ [
+ 74.71635719024924,
+ 36.720719035529754
+ ],
+ [
+ 74.83119987373293,
+ 36.5260713006013
+ ],
+ [
+ 75.06088524070027,
+ 36.5260713006013
+ ],
+ [
+ 75.17572792418396,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 37.11001450538666
+ ],
+ [
+ 75.06088524070027,
+ 37.30466224031511
+ ],
+ [
+ 74.83119987373293,
+ 37.30466224031511
+ ],
+ [
+ 74.71635719024924,
+ 37.11001450538666
+ ],
+ [
+ 74.83119987373293,
+ 36.915366770458206
+ ],
+ [
+ 75.06088524070027,
+ 36.915366770458206
+ ],
+ [
+ 75.17572792418396,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 37.49930997524357
+ ],
+ [
+ 75.06088524070027,
+ 37.69395771017202
+ ],
+ [
+ 74.83119987373293,
+ 37.69395771017202
+ ],
+ [
+ 74.71635719024924,
+ 37.49930997524357
+ ],
+ [
+ 74.83119987373293,
+ 37.30466224031512
+ ],
+ [
+ 75.06088524070027,
+ 37.30466224031512
+ ],
+ [
+ 75.17572792418396,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 37.888605445100474
+ ],
+ [
+ 75.06088524070027,
+ 38.083253180028926
+ ],
+ [
+ 74.83119987373293,
+ 38.083253180028926
+ ],
+ [
+ 74.71635719024924,
+ 37.888605445100474
+ ],
+ [
+ 74.83119987373293,
+ 37.69395771017202
+ ],
+ [
+ 75.06088524070027,
+ 37.69395771017202
+ ],
+ [
+ 75.17572792418396,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 38.27790091495738
+ ],
+ [
+ 75.06088524070027,
+ 38.47254864988583
+ ],
+ [
+ 74.83119987373293,
+ 38.47254864988583
+ ],
+ [
+ 74.71635719024924,
+ 38.27790091495738
+ ],
+ [
+ 74.83119987373293,
+ 38.083253180028926
+ ],
+ [
+ 75.06088524070027,
+ 38.083253180028926
+ ],
+ [
+ 75.17572792418396,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 38.66719638481428
+ ],
+ [
+ 75.06088524070027,
+ 38.861844119742734
+ ],
+ [
+ 74.83119987373293,
+ 38.861844119742734
+ ],
+ [
+ 74.71635719024924,
+ 38.66719638481428
+ ],
+ [
+ 74.83119987373293,
+ 38.47254864988583
+ ],
+ [
+ 75.06088524070027,
+ 38.47254864988583
+ ],
+ [
+ 75.17572792418396,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 39.05649185467119
+ ],
+ [
+ 75.06088524070027,
+ 39.25113958959964
+ ],
+ [
+ 74.83119987373293,
+ 39.25113958959964
+ ],
+ [
+ 74.71635719024924,
+ 39.05649185467119
+ ],
+ [
+ 74.83119987373293,
+ 38.861844119742734
+ ],
+ [
+ 75.06088524070027,
+ 38.861844119742734
+ ],
+ [
+ 75.17572792418396,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 39.4457873245281
+ ],
+ [
+ 75.06088524070027,
+ 39.64043505945655
+ ],
+ [
+ 74.83119987373293,
+ 39.64043505945655
+ ],
+ [
+ 74.71635719024924,
+ 39.4457873245281
+ ],
+ [
+ 74.83119987373293,
+ 39.251139589599646
+ ],
+ [
+ 75.06088524070027,
+ 39.251139589599646
+ ],
+ [
+ 75.17572792418396,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 39.835082794385
+ ],
+ [
+ 75.06088524070027,
+ 40.029730529313454
+ ],
+ [
+ 74.83119987373293,
+ 40.029730529313454
+ ],
+ [
+ 74.71635719024924,
+ 39.835082794385
+ ],
+ [
+ 74.83119987373293,
+ 39.64043505945655
+ ],
+ [
+ 75.06088524070027,
+ 39.64043505945655
+ ],
+ [
+ 75.17572792418396,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 40.22437826424191
+ ],
+ [
+ 75.06088524070027,
+ 40.419025999170366
+ ],
+ [
+ 74.83119987373293,
+ 40.419025999170366
+ ],
+ [
+ 74.71635719024924,
+ 40.22437826424191
+ ],
+ [
+ 74.83119987373293,
+ 40.02973052931346
+ ],
+ [
+ 75.06088524070027,
+ 40.02973052931346
+ ],
+ [
+ 75.17572792418396,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 40.61367373409882
+ ],
+ [
+ 75.06088524070027,
+ 40.80832146902727
+ ],
+ [
+ 74.83119987373293,
+ 40.80832146902727
+ ],
+ [
+ 74.71635719024924,
+ 40.61367373409882
+ ],
+ [
+ 74.83119987373293,
+ 40.419025999170366
+ ],
+ [
+ 75.06088524070027,
+ 40.419025999170366
+ ],
+ [
+ 75.17572792418396,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 41.00296920395572
+ ],
+ [
+ 75.06088524070027,
+ 41.197616938884174
+ ],
+ [
+ 74.83119987373293,
+ 41.197616938884174
+ ],
+ [
+ 74.71635719024924,
+ 41.00296920395572
+ ],
+ [
+ 74.83119987373293,
+ 40.80832146902727
+ ],
+ [
+ 75.06088524070027,
+ 40.80832146902727
+ ],
+ [
+ 75.17572792418396,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 41.392264673812626
+ ],
+ [
+ 75.06088524070027,
+ 41.58691240874108
+ ],
+ [
+ 74.83119987373293,
+ 41.58691240874108
+ ],
+ [
+ 74.71635719024924,
+ 41.392264673812626
+ ],
+ [
+ 74.83119987373293,
+ 41.197616938884174
+ ],
+ [
+ 75.06088524070027,
+ 41.197616938884174
+ ],
+ [
+ 75.17572792418396,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 41.78156014366953
+ ],
+ [
+ 75.06088524070027,
+ 41.97620787859798
+ ],
+ [
+ 74.83119987373293,
+ 41.97620787859798
+ ],
+ [
+ 74.71635719024924,
+ 41.78156014366953
+ ],
+ [
+ 74.83119987373293,
+ 41.58691240874108
+ ],
+ [
+ 75.06088524070027,
+ 41.58691240874108
+ ],
+ [
+ 75.17572792418396,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 42.17085561352644
+ ],
+ [
+ 75.06088524070027,
+ 42.365503348454894
+ ],
+ [
+ 74.83119987373293,
+ 42.365503348454894
+ ],
+ [
+ 74.71635719024924,
+ 42.17085561352644
+ ],
+ [
+ 74.83119987373293,
+ 41.97620787859799
+ ],
+ [
+ 75.06088524070027,
+ 41.97620787859799
+ ],
+ [
+ 75.17572792418396,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 42.56015108338335
+ ],
+ [
+ 75.06088524070027,
+ 42.754798818311805
+ ],
+ [
+ 74.83119987373293,
+ 42.754798818311805
+ ],
+ [
+ 74.71635719024924,
+ 42.56015108338335
+ ],
+ [
+ 74.83119987373293,
+ 42.3655033484549
+ ],
+ [
+ 75.06088524070027,
+ 42.3655033484549
+ ],
+ [
+ 75.17572792418396,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 42.94944655324026
+ ],
+ [
+ 75.06088524070027,
+ 43.14409428816871
+ ],
+ [
+ 74.83119987373293,
+ 43.14409428816871
+ ],
+ [
+ 74.71635719024924,
+ 42.94944655324026
+ ],
+ [
+ 74.83119987373293,
+ 42.754798818311805
+ ],
+ [
+ 75.06088524070027,
+ 42.754798818311805
+ ],
+ [
+ 75.17572792418396,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 43.33874202309716
+ ],
+ [
+ 75.06088524070027,
+ 43.53338975802561
+ ],
+ [
+ 74.83119987373293,
+ 43.53338975802561
+ ],
+ [
+ 74.71635719024924,
+ 43.33874202309716
+ ],
+ [
+ 74.83119987373293,
+ 43.14409428816871
+ ],
+ [
+ 75.06088524070027,
+ 43.14409428816871
+ ],
+ [
+ 75.17572792418396,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 43.728037492954066
+ ],
+ [
+ 75.06088524070027,
+ 43.92268522788252
+ ],
+ [
+ 74.83119987373293,
+ 43.92268522788252
+ ],
+ [
+ 74.71635719024924,
+ 43.728037492954066
+ ],
+ [
+ 74.83119987373293,
+ 43.53338975802561
+ ],
+ [
+ 75.06088524070027,
+ 43.53338975802561
+ ],
+ [
+ 75.17572792418396,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 44.11733296281097
+ ],
+ [
+ 75.06088524070027,
+ 44.31198069773942
+ ],
+ [
+ 74.83119987373293,
+ 44.31198069773942
+ ],
+ [
+ 74.71635719024924,
+ 44.11733296281097
+ ],
+ [
+ 74.83119987373293,
+ 43.92268522788252
+ ],
+ [
+ 75.06088524070027,
+ 43.92268522788252
+ ],
+ [
+ 75.17572792418396,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 44.506628432667874
+ ],
+ [
+ 75.06088524070027,
+ 44.701276167596326
+ ],
+ [
+ 74.83119987373293,
+ 44.701276167596326
+ ],
+ [
+ 74.71635719024924,
+ 44.506628432667874
+ ],
+ [
+ 74.83119987373293,
+ 44.31198069773942
+ ],
+ [
+ 75.06088524070027,
+ 44.31198069773942
+ ],
+ [
+ 75.17572792418396,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 44.89592390252479
+ ],
+ [
+ 75.06088524070027,
+ 45.090571637453245
+ ],
+ [
+ 74.83119987373293,
+ 45.090571637453245
+ ],
+ [
+ 74.71635719024924,
+ 44.89592390252479
+ ],
+ [
+ 74.83119987373293,
+ 44.70127616759634
+ ],
+ [
+ 75.06088524070027,
+ 44.70127616759634
+ ],
+ [
+ 75.17572792418396,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 45.2852193723817
+ ],
+ [
+ 75.06088524070027,
+ 45.47986710731015
+ ],
+ [
+ 74.83119987373293,
+ 45.47986710731015
+ ],
+ [
+ 74.71635719024924,
+ 45.2852193723817
+ ],
+ [
+ 74.83119987373293,
+ 45.090571637453245
+ ],
+ [
+ 75.06088524070027,
+ 45.090571637453245
+ ],
+ [
+ 75.17572792418396,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 45.6745148422386
+ ],
+ [
+ 75.06088524070027,
+ 45.86916257716705
+ ],
+ [
+ 74.83119987373293,
+ 45.86916257716705
+ ],
+ [
+ 74.71635719024924,
+ 45.6745148422386
+ ],
+ [
+ 74.83119987373293,
+ 45.47986710731015
+ ],
+ [
+ 75.06088524070027,
+ 45.47986710731015
+ ],
+ [
+ 75.17572792418396,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 46.063810312095505
+ ],
+ [
+ 75.06088524070027,
+ 46.25845804702396
+ ],
+ [
+ 74.83119987373293,
+ 46.25845804702396
+ ],
+ [
+ 74.71635719024924,
+ 46.063810312095505
+ ],
+ [
+ 74.83119987373293,
+ 45.86916257716705
+ ],
+ [
+ 75.06088524070027,
+ 45.86916257716705
+ ],
+ [
+ 75.17572792418396,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 46.45310578195241
+ ],
+ [
+ 75.06088524070027,
+ 46.64775351688086
+ ],
+ [
+ 74.83119987373293,
+ 46.64775351688086
+ ],
+ [
+ 74.71635719024924,
+ 46.45310578195241
+ ],
+ [
+ 74.83119987373293,
+ 46.25845804702396
+ ],
+ [
+ 75.06088524070027,
+ 46.25845804702396
+ ],
+ [
+ 75.17572792418396,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 46.842401251809314
+ ],
+ [
+ 75.06088524070027,
+ 47.037048986737766
+ ],
+ [
+ 74.83119987373293,
+ 47.037048986737766
+ ],
+ [
+ 74.71635719024924,
+ 46.842401251809314
+ ],
+ [
+ 74.83119987373293,
+ 46.64775351688086
+ ],
+ [
+ 75.06088524070027,
+ 46.64775351688086
+ ],
+ [
+ 75.17572792418396,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 47.23169672166622
+ ],
+ [
+ 75.06088524070027,
+ 47.42634445659467
+ ],
+ [
+ 74.83119987373293,
+ 47.42634445659467
+ ],
+ [
+ 74.71635719024924,
+ 47.23169672166622
+ ],
+ [
+ 74.83119987373293,
+ 47.037048986737766
+ ],
+ [
+ 75.06088524070027,
+ 47.037048986737766
+ ],
+ [
+ 75.17572792418396,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.17572792418396,
+ 47.620992191523136
+ ],
+ [
+ 75.06088524070027,
+ 47.81563992645159
+ ],
+ [
+ 74.83119987373293,
+ 47.81563992645159
+ ],
+ [
+ 74.71635719024924,
+ 47.620992191523136
+ ],
+ [
+ 74.83119987373293,
+ 47.426344456594684
+ ],
+ [
+ 75.06088524070027,
+ 47.426344456594684
+ ],
+ [
+ 75.17572792418396,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 12.0004566996162
+ ],
+ [
+ 75.4054132911513,
+ 12.195104434544653
+ ],
+ [
+ 75.17572792418396,
+ 12.195104434544653
+ ],
+ [
+ 75.06088524070027,
+ 12.0004566996162
+ ],
+ [
+ 75.17572792418396,
+ 11.805808964687746
+ ],
+ [
+ 75.4054132911513,
+ 11.805808964687746
+ ],
+ [
+ 75.52025597463499,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 12.389752169473105
+ ],
+ [
+ 75.4054132911513,
+ 12.58439990440156
+ ],
+ [
+ 75.17572792418396,
+ 12.58439990440156
+ ],
+ [
+ 75.06088524070027,
+ 12.389752169473105
+ ],
+ [
+ 75.17572792418396,
+ 12.195104434544652
+ ],
+ [
+ 75.4054132911513,
+ 12.195104434544652
+ ],
+ [
+ 75.52025597463499,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 12.779047639330013
+ ],
+ [
+ 75.4054132911513,
+ 12.973695374258467
+ ],
+ [
+ 75.17572792418396,
+ 12.973695374258467
+ ],
+ [
+ 75.06088524070027,
+ 12.779047639330013
+ ],
+ [
+ 75.17572792418396,
+ 12.58439990440156
+ ],
+ [
+ 75.4054132911513,
+ 12.58439990440156
+ ],
+ [
+ 75.52025597463499,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 13.16834310918692
+ ],
+ [
+ 75.4054132911513,
+ 13.362990844115373
+ ],
+ [
+ 75.17572792418396,
+ 13.362990844115373
+ ],
+ [
+ 75.06088524070027,
+ 13.16834310918692
+ ],
+ [
+ 75.17572792418396,
+ 12.973695374258465
+ ],
+ [
+ 75.4054132911513,
+ 12.973695374258465
+ ],
+ [
+ 75.52025597463499,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 13.557638579043825
+ ],
+ [
+ 75.4054132911513,
+ 13.752286313972279
+ ],
+ [
+ 75.17572792418396,
+ 13.752286313972279
+ ],
+ [
+ 75.06088524070027,
+ 13.557638579043825
+ ],
+ [
+ 75.17572792418396,
+ 13.362990844115371
+ ],
+ [
+ 75.4054132911513,
+ 13.362990844115371
+ ],
+ [
+ 75.52025597463499,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 13.946934048900731
+ ],
+ [
+ 75.4054132911513,
+ 14.141581783829185
+ ],
+ [
+ 75.17572792418396,
+ 14.141581783829185
+ ],
+ [
+ 75.06088524070027,
+ 13.946934048900731
+ ],
+ [
+ 75.17572792418396,
+ 13.752286313972277
+ ],
+ [
+ 75.4054132911513,
+ 13.752286313972277
+ ],
+ [
+ 75.52025597463499,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 14.336229518757637
+ ],
+ [
+ 75.4054132911513,
+ 14.530877253686091
+ ],
+ [
+ 75.17572792418396,
+ 14.530877253686091
+ ],
+ [
+ 75.06088524070027,
+ 14.336229518757637
+ ],
+ [
+ 75.17572792418396,
+ 14.141581783829183
+ ],
+ [
+ 75.4054132911513,
+ 14.141581783829183
+ ],
+ [
+ 75.52025597463499,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 14.725524988614545
+ ],
+ [
+ 75.4054132911513,
+ 14.920172723542999
+ ],
+ [
+ 75.17572792418396,
+ 14.920172723542999
+ ],
+ [
+ 75.06088524070027,
+ 14.725524988614545
+ ],
+ [
+ 75.17572792418396,
+ 14.530877253686091
+ ],
+ [
+ 75.4054132911513,
+ 14.530877253686091
+ ],
+ [
+ 75.52025597463499,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 15.114820458471451
+ ],
+ [
+ 75.4054132911513,
+ 15.309468193399905
+ ],
+ [
+ 75.17572792418396,
+ 15.309468193399905
+ ],
+ [
+ 75.06088524070027,
+ 15.114820458471451
+ ],
+ [
+ 75.17572792418396,
+ 14.920172723542997
+ ],
+ [
+ 75.4054132911513,
+ 14.920172723542997
+ ],
+ [
+ 75.52025597463499,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 15.504115928328357
+ ],
+ [
+ 75.4054132911513,
+ 15.69876366325681
+ ],
+ [
+ 75.17572792418396,
+ 15.69876366325681
+ ],
+ [
+ 75.06088524070027,
+ 15.504115928328357
+ ],
+ [
+ 75.17572792418396,
+ 15.309468193399903
+ ],
+ [
+ 75.4054132911513,
+ 15.309468193399903
+ ],
+ [
+ 75.52025597463499,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 15.893411398185265
+ ],
+ [
+ 75.4054132911513,
+ 16.088059133113717
+ ],
+ [
+ 75.17572792418396,
+ 16.088059133113717
+ ],
+ [
+ 75.06088524070027,
+ 15.893411398185265
+ ],
+ [
+ 75.17572792418396,
+ 15.69876366325681
+ ],
+ [
+ 75.4054132911513,
+ 15.69876366325681
+ ],
+ [
+ 75.52025597463499,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 16.28270686804217
+ ],
+ [
+ 75.4054132911513,
+ 16.47735460297062
+ ],
+ [
+ 75.17572792418396,
+ 16.47735460297062
+ ],
+ [
+ 75.06088524070027,
+ 16.28270686804217
+ ],
+ [
+ 75.17572792418396,
+ 16.088059133113717
+ ],
+ [
+ 75.4054132911513,
+ 16.088059133113717
+ ],
+ [
+ 75.52025597463499,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 16.672002337899077
+ ],
+ [
+ 75.4054132911513,
+ 16.86665007282753
+ ],
+ [
+ 75.17572792418396,
+ 16.86665007282753
+ ],
+ [
+ 75.06088524070027,
+ 16.672002337899077
+ ],
+ [
+ 75.17572792418396,
+ 16.477354602970625
+ ],
+ [
+ 75.4054132911513,
+ 16.477354602970625
+ ],
+ [
+ 75.52025597463499,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 17.06129780775598
+ ],
+ [
+ 75.4054132911513,
+ 17.255945542684433
+ ],
+ [
+ 75.17572792418396,
+ 17.255945542684433
+ ],
+ [
+ 75.06088524070027,
+ 17.06129780775598
+ ],
+ [
+ 75.17572792418396,
+ 16.86665007282753
+ ],
+ [
+ 75.4054132911513,
+ 16.86665007282753
+ ],
+ [
+ 75.52025597463499,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 17.45059327761289
+ ],
+ [
+ 75.4054132911513,
+ 17.64524101254134
+ ],
+ [
+ 75.17572792418396,
+ 17.64524101254134
+ ],
+ [
+ 75.06088524070027,
+ 17.45059327761289
+ ],
+ [
+ 75.17572792418396,
+ 17.255945542684437
+ ],
+ [
+ 75.4054132911513,
+ 17.255945542684437
+ ],
+ [
+ 75.52025597463499,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 17.839888747469793
+ ],
+ [
+ 75.4054132911513,
+ 18.034536482398245
+ ],
+ [
+ 75.17572792418396,
+ 18.034536482398245
+ ],
+ [
+ 75.06088524070027,
+ 17.839888747469793
+ ],
+ [
+ 75.17572792418396,
+ 17.64524101254134
+ ],
+ [
+ 75.4054132911513,
+ 17.64524101254134
+ ],
+ [
+ 75.52025597463499,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 18.2291842173267
+ ],
+ [
+ 75.4054132911513,
+ 18.423831952255153
+ ],
+ [
+ 75.17572792418396,
+ 18.423831952255153
+ ],
+ [
+ 75.06088524070027,
+ 18.2291842173267
+ ],
+ [
+ 75.17572792418396,
+ 18.03453648239825
+ ],
+ [
+ 75.4054132911513,
+ 18.03453648239825
+ ],
+ [
+ 75.52025597463499,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 18.61847968718361
+ ],
+ [
+ 75.4054132911513,
+ 18.81312742211206
+ ],
+ [
+ 75.17572792418396,
+ 18.81312742211206
+ ],
+ [
+ 75.06088524070027,
+ 18.61847968718361
+ ],
+ [
+ 75.17572792418396,
+ 18.423831952255156
+ ],
+ [
+ 75.4054132911513,
+ 18.423831952255156
+ ],
+ [
+ 75.52025597463499,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 19.007775157040513
+ ],
+ [
+ 75.4054132911513,
+ 19.202422891968965
+ ],
+ [
+ 75.17572792418396,
+ 19.202422891968965
+ ],
+ [
+ 75.06088524070027,
+ 19.007775157040513
+ ],
+ [
+ 75.17572792418396,
+ 18.81312742211206
+ ],
+ [
+ 75.4054132911513,
+ 18.81312742211206
+ ],
+ [
+ 75.52025597463499,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 19.39707062689742
+ ],
+ [
+ 75.4054132911513,
+ 19.591718361825873
+ ],
+ [
+ 75.17572792418396,
+ 19.591718361825873
+ ],
+ [
+ 75.06088524070027,
+ 19.39707062689742
+ ],
+ [
+ 75.17572792418396,
+ 19.20242289196897
+ ],
+ [
+ 75.4054132911513,
+ 19.20242289196897
+ ],
+ [
+ 75.52025597463499,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 19.78636609675433
+ ],
+ [
+ 75.4054132911513,
+ 19.98101383168278
+ ],
+ [
+ 75.17572792418396,
+ 19.98101383168278
+ ],
+ [
+ 75.06088524070027,
+ 19.78636609675433
+ ],
+ [
+ 75.17572792418396,
+ 19.591718361825876
+ ],
+ [
+ 75.4054132911513,
+ 19.591718361825876
+ ],
+ [
+ 75.52025597463499,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 20.175661566611232
+ ],
+ [
+ 75.4054132911513,
+ 20.370309301539685
+ ],
+ [
+ 75.17572792418396,
+ 20.370309301539685
+ ],
+ [
+ 75.06088524070027,
+ 20.175661566611232
+ ],
+ [
+ 75.17572792418396,
+ 19.98101383168278
+ ],
+ [
+ 75.4054132911513,
+ 19.98101383168278
+ ],
+ [
+ 75.52025597463499,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 20.564957036468137
+ ],
+ [
+ 75.4054132911513,
+ 20.75960477139659
+ ],
+ [
+ 75.17572792418396,
+ 20.75960477139659
+ ],
+ [
+ 75.06088524070027,
+ 20.564957036468137
+ ],
+ [
+ 75.17572792418396,
+ 20.370309301539685
+ ],
+ [
+ 75.4054132911513,
+ 20.370309301539685
+ ],
+ [
+ 75.52025597463499,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 20.954252506325044
+ ],
+ [
+ 75.4054132911513,
+ 21.148900241253497
+ ],
+ [
+ 75.17572792418396,
+ 21.148900241253497
+ ],
+ [
+ 75.06088524070027,
+ 20.954252506325044
+ ],
+ [
+ 75.17572792418396,
+ 20.759604771396592
+ ],
+ [
+ 75.4054132911513,
+ 20.759604771396592
+ ],
+ [
+ 75.52025597463499,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 21.343547976181952
+ ],
+ [
+ 75.4054132911513,
+ 21.538195711110404
+ ],
+ [
+ 75.17572792418396,
+ 21.538195711110404
+ ],
+ [
+ 75.06088524070027,
+ 21.343547976181952
+ ],
+ [
+ 75.17572792418396,
+ 21.1489002412535
+ ],
+ [
+ 75.4054132911513,
+ 21.1489002412535
+ ],
+ [
+ 75.52025597463499,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 21.732843446038856
+ ],
+ [
+ 75.4054132911513,
+ 21.92749118096731
+ ],
+ [
+ 75.17572792418396,
+ 21.92749118096731
+ ],
+ [
+ 75.06088524070027,
+ 21.732843446038856
+ ],
+ [
+ 75.17572792418396,
+ 21.538195711110404
+ ],
+ [
+ 75.4054132911513,
+ 21.538195711110404
+ ],
+ [
+ 75.52025597463499,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 22.122138915895764
+ ],
+ [
+ 75.4054132911513,
+ 22.316786650824216
+ ],
+ [
+ 75.17572792418396,
+ 22.316786650824216
+ ],
+ [
+ 75.06088524070027,
+ 22.122138915895764
+ ],
+ [
+ 75.17572792418396,
+ 21.927491180967312
+ ],
+ [
+ 75.4054132911513,
+ 21.927491180967312
+ ],
+ [
+ 75.52025597463499,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 22.511434385752672
+ ],
+ [
+ 75.4054132911513,
+ 22.706082120681124
+ ],
+ [
+ 75.17572792418396,
+ 22.706082120681124
+ ],
+ [
+ 75.06088524070027,
+ 22.511434385752672
+ ],
+ [
+ 75.17572792418396,
+ 22.31678665082422
+ ],
+ [
+ 75.4054132911513,
+ 22.31678665082422
+ ],
+ [
+ 75.52025597463499,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 22.900729855609576
+ ],
+ [
+ 75.4054132911513,
+ 23.09537759053803
+ ],
+ [
+ 75.17572792418396,
+ 23.09537759053803
+ ],
+ [
+ 75.06088524070027,
+ 22.900729855609576
+ ],
+ [
+ 75.17572792418396,
+ 22.706082120681124
+ ],
+ [
+ 75.4054132911513,
+ 22.706082120681124
+ ],
+ [
+ 75.52025597463499,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 23.290025325466484
+ ],
+ [
+ 75.4054132911513,
+ 23.484673060394936
+ ],
+ [
+ 75.17572792418396,
+ 23.484673060394936
+ ],
+ [
+ 75.06088524070027,
+ 23.290025325466484
+ ],
+ [
+ 75.17572792418396,
+ 23.095377590538032
+ ],
+ [
+ 75.4054132911513,
+ 23.095377590538032
+ ],
+ [
+ 75.52025597463499,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 23.67932079532339
+ ],
+ [
+ 75.4054132911513,
+ 23.873968530251844
+ ],
+ [
+ 75.17572792418396,
+ 23.873968530251844
+ ],
+ [
+ 75.06088524070027,
+ 23.67932079532339
+ ],
+ [
+ 75.17572792418396,
+ 23.48467306039494
+ ],
+ [
+ 75.4054132911513,
+ 23.48467306039494
+ ],
+ [
+ 75.52025597463499,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 24.068616265180296
+ ],
+ [
+ 75.4054132911513,
+ 24.263264000108748
+ ],
+ [
+ 75.17572792418396,
+ 24.263264000108748
+ ],
+ [
+ 75.06088524070027,
+ 24.068616265180296
+ ],
+ [
+ 75.17572792418396,
+ 23.873968530251844
+ ],
+ [
+ 75.4054132911513,
+ 23.873968530251844
+ ],
+ [
+ 75.52025597463499,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 24.4579117350372
+ ],
+ [
+ 75.4054132911513,
+ 24.652559469965652
+ ],
+ [
+ 75.17572792418396,
+ 24.652559469965652
+ ],
+ [
+ 75.06088524070027,
+ 24.4579117350372
+ ],
+ [
+ 75.17572792418396,
+ 24.263264000108748
+ ],
+ [
+ 75.4054132911513,
+ 24.263264000108748
+ ],
+ [
+ 75.52025597463499,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 24.847207204894108
+ ],
+ [
+ 75.4054132911513,
+ 25.04185493982256
+ ],
+ [
+ 75.17572792418396,
+ 25.04185493982256
+ ],
+ [
+ 75.06088524070027,
+ 24.847207204894108
+ ],
+ [
+ 75.17572792418396,
+ 24.652559469965656
+ ],
+ [
+ 75.4054132911513,
+ 24.652559469965656
+ ],
+ [
+ 75.52025597463499,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 25.236502674751016
+ ],
+ [
+ 75.4054132911513,
+ 25.431150409679468
+ ],
+ [
+ 75.17572792418396,
+ 25.431150409679468
+ ],
+ [
+ 75.06088524070027,
+ 25.236502674751016
+ ],
+ [
+ 75.17572792418396,
+ 25.041854939822564
+ ],
+ [
+ 75.4054132911513,
+ 25.041854939822564
+ ],
+ [
+ 75.52025597463499,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 25.62579814460792
+ ],
+ [
+ 75.4054132911513,
+ 25.820445879536372
+ ],
+ [
+ 75.17572792418396,
+ 25.820445879536372
+ ],
+ [
+ 75.06088524070027,
+ 25.62579814460792
+ ],
+ [
+ 75.17572792418396,
+ 25.431150409679468
+ ],
+ [
+ 75.4054132911513,
+ 25.431150409679468
+ ],
+ [
+ 75.52025597463499,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 26.015093614464828
+ ],
+ [
+ 75.4054132911513,
+ 26.20974134939328
+ ],
+ [
+ 75.17572792418396,
+ 26.20974134939328
+ ],
+ [
+ 75.06088524070027,
+ 26.015093614464828
+ ],
+ [
+ 75.17572792418396,
+ 25.820445879536376
+ ],
+ [
+ 75.4054132911513,
+ 25.820445879536376
+ ],
+ [
+ 75.52025597463499,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 26.404389084321735
+ ],
+ [
+ 75.4054132911513,
+ 26.599036819250188
+ ],
+ [
+ 75.17572792418396,
+ 26.599036819250188
+ ],
+ [
+ 75.06088524070027,
+ 26.404389084321735
+ ],
+ [
+ 75.17572792418396,
+ 26.209741349393283
+ ],
+ [
+ 75.4054132911513,
+ 26.209741349393283
+ ],
+ [
+ 75.52025597463499,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 26.79368455417864
+ ],
+ [
+ 75.4054132911513,
+ 26.988332289107092
+ ],
+ [
+ 75.17572792418396,
+ 26.988332289107092
+ ],
+ [
+ 75.06088524070027,
+ 26.79368455417864
+ ],
+ [
+ 75.17572792418396,
+ 26.599036819250188
+ ],
+ [
+ 75.4054132911513,
+ 26.599036819250188
+ ],
+ [
+ 75.52025597463499,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 27.182980024035547
+ ],
+ [
+ 75.4054132911513,
+ 27.377627758964
+ ],
+ [
+ 75.17572792418396,
+ 27.377627758964
+ ],
+ [
+ 75.06088524070027,
+ 27.182980024035547
+ ],
+ [
+ 75.17572792418396,
+ 26.988332289107095
+ ],
+ [
+ 75.4054132911513,
+ 26.988332289107095
+ ],
+ [
+ 75.52025597463499,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 27.572275493892455
+ ],
+ [
+ 75.4054132911513,
+ 27.766923228820907
+ ],
+ [
+ 75.17572792418396,
+ 27.766923228820907
+ ],
+ [
+ 75.06088524070027,
+ 27.572275493892455
+ ],
+ [
+ 75.17572792418396,
+ 27.377627758964003
+ ],
+ [
+ 75.4054132911513,
+ 27.377627758964003
+ ],
+ [
+ 75.52025597463499,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 27.96157096374936
+ ],
+ [
+ 75.4054132911513,
+ 28.15621869867781
+ ],
+ [
+ 75.17572792418396,
+ 28.15621869867781
+ ],
+ [
+ 75.06088524070027,
+ 27.96157096374936
+ ],
+ [
+ 75.17572792418396,
+ 27.766923228820907
+ ],
+ [
+ 75.4054132911513,
+ 27.766923228820907
+ ],
+ [
+ 75.52025597463499,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 28.350866433606267
+ ],
+ [
+ 75.4054132911513,
+ 28.54551416853472
+ ],
+ [
+ 75.17572792418396,
+ 28.54551416853472
+ ],
+ [
+ 75.06088524070027,
+ 28.350866433606267
+ ],
+ [
+ 75.17572792418396,
+ 28.156218698677815
+ ],
+ [
+ 75.4054132911513,
+ 28.156218698677815
+ ],
+ [
+ 75.52025597463499,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 28.74016190346317
+ ],
+ [
+ 75.4054132911513,
+ 28.934809638391624
+ ],
+ [
+ 75.17572792418396,
+ 28.934809638391624
+ ],
+ [
+ 75.06088524070027,
+ 28.74016190346317
+ ],
+ [
+ 75.17572792418396,
+ 28.54551416853472
+ ],
+ [
+ 75.4054132911513,
+ 28.54551416853472
+ ],
+ [
+ 75.52025597463499,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 29.12945737332008
+ ],
+ [
+ 75.4054132911513,
+ 29.32410510824853
+ ],
+ [
+ 75.17572792418396,
+ 29.32410510824853
+ ],
+ [
+ 75.06088524070027,
+ 29.12945737332008
+ ],
+ [
+ 75.17572792418396,
+ 28.934809638391627
+ ],
+ [
+ 75.4054132911513,
+ 28.934809638391627
+ ],
+ [
+ 75.52025597463499,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 29.518752843176983
+ ],
+ [
+ 75.4054132911513,
+ 29.713400578105436
+ ],
+ [
+ 75.17572792418396,
+ 29.713400578105436
+ ],
+ [
+ 75.06088524070027,
+ 29.518752843176983
+ ],
+ [
+ 75.17572792418396,
+ 29.32410510824853
+ ],
+ [
+ 75.4054132911513,
+ 29.32410510824853
+ ],
+ [
+ 75.52025597463499,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 29.90804831303389
+ ],
+ [
+ 75.4054132911513,
+ 30.102696047962343
+ ],
+ [
+ 75.17572792418396,
+ 30.102696047962343
+ ],
+ [
+ 75.06088524070027,
+ 29.90804831303389
+ ],
+ [
+ 75.17572792418396,
+ 29.71340057810544
+ ],
+ [
+ 75.4054132911513,
+ 29.71340057810544
+ ],
+ [
+ 75.52025597463499,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 30.297343782890795
+ ],
+ [
+ 75.4054132911513,
+ 30.491991517819248
+ ],
+ [
+ 75.17572792418396,
+ 30.491991517819248
+ ],
+ [
+ 75.06088524070027,
+ 30.297343782890795
+ ],
+ [
+ 75.17572792418396,
+ 30.102696047962343
+ ],
+ [
+ 75.4054132911513,
+ 30.102696047962343
+ ],
+ [
+ 75.52025597463499,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 30.686639252747703
+ ],
+ [
+ 75.4054132911513,
+ 30.881286987676155
+ ],
+ [
+ 75.17572792418396,
+ 30.881286987676155
+ ],
+ [
+ 75.06088524070027,
+ 30.686639252747703
+ ],
+ [
+ 75.17572792418396,
+ 30.49199151781925
+ ],
+ [
+ 75.4054132911513,
+ 30.49199151781925
+ ],
+ [
+ 75.52025597463499,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 31.07593472260461
+ ],
+ [
+ 75.4054132911513,
+ 31.270582457533063
+ ],
+ [
+ 75.17572792418396,
+ 31.270582457533063
+ ],
+ [
+ 75.06088524070027,
+ 31.07593472260461
+ ],
+ [
+ 75.17572792418396,
+ 30.88128698767616
+ ],
+ [
+ 75.4054132911513,
+ 30.88128698767616
+ ],
+ [
+ 75.52025597463499,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 31.465230192461515
+ ],
+ [
+ 75.4054132911513,
+ 31.659877927389967
+ ],
+ [
+ 75.17572792418396,
+ 31.659877927389967
+ ],
+ [
+ 75.06088524070027,
+ 31.465230192461515
+ ],
+ [
+ 75.17572792418396,
+ 31.270582457533063
+ ],
+ [
+ 75.4054132911513,
+ 31.270582457533063
+ ],
+ [
+ 75.52025597463499,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 31.854525662318423
+ ],
+ [
+ 75.4054132911513,
+ 32.049173397246875
+ ],
+ [
+ 75.17572792418396,
+ 32.049173397246875
+ ],
+ [
+ 75.06088524070027,
+ 31.854525662318423
+ ],
+ [
+ 75.17572792418396,
+ 31.65987792738997
+ ],
+ [
+ 75.4054132911513,
+ 31.65987792738997
+ ],
+ [
+ 75.52025597463499,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 32.24382113217533
+ ],
+ [
+ 75.4054132911513,
+ 32.43846886710378
+ ],
+ [
+ 75.17572792418396,
+ 32.43846886710378
+ ],
+ [
+ 75.06088524070027,
+ 32.24382113217533
+ ],
+ [
+ 75.17572792418396,
+ 32.049173397246875
+ ],
+ [
+ 75.4054132911513,
+ 32.049173397246875
+ ],
+ [
+ 75.52025597463499,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 32.63311660203224
+ ],
+ [
+ 75.4054132911513,
+ 32.82776433696069
+ ],
+ [
+ 75.17572792418396,
+ 32.82776433696069
+ ],
+ [
+ 75.06088524070027,
+ 32.63311660203224
+ ],
+ [
+ 75.17572792418396,
+ 32.438468867103786
+ ],
+ [
+ 75.4054132911513,
+ 32.438468867103786
+ ],
+ [
+ 75.52025597463499,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 33.02241207188914
+ ],
+ [
+ 75.4054132911513,
+ 33.217059806817595
+ ],
+ [
+ 75.17572792418396,
+ 33.217059806817595
+ ],
+ [
+ 75.06088524070027,
+ 33.02241207188914
+ ],
+ [
+ 75.17572792418396,
+ 32.82776433696069
+ ],
+ [
+ 75.4054132911513,
+ 32.82776433696069
+ ],
+ [
+ 75.52025597463499,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 33.41170754174605
+ ],
+ [
+ 75.4054132911513,
+ 33.6063552766745
+ ],
+ [
+ 75.17572792418396,
+ 33.6063552766745
+ ],
+ [
+ 75.06088524070027,
+ 33.41170754174605
+ ],
+ [
+ 75.17572792418396,
+ 33.217059806817595
+ ],
+ [
+ 75.4054132911513,
+ 33.217059806817595
+ ],
+ [
+ 75.52025597463499,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 33.80100301160295
+ ],
+ [
+ 75.4054132911513,
+ 33.9956507465314
+ ],
+ [
+ 75.17572792418396,
+ 33.9956507465314
+ ],
+ [
+ 75.06088524070027,
+ 33.80100301160295
+ ],
+ [
+ 75.17572792418396,
+ 33.6063552766745
+ ],
+ [
+ 75.4054132911513,
+ 33.6063552766745
+ ],
+ [
+ 75.52025597463499,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 34.190298481459855
+ ],
+ [
+ 75.4054132911513,
+ 34.38494621638831
+ ],
+ [
+ 75.17572792418396,
+ 34.38494621638831
+ ],
+ [
+ 75.06088524070027,
+ 34.190298481459855
+ ],
+ [
+ 75.17572792418396,
+ 33.9956507465314
+ ],
+ [
+ 75.4054132911513,
+ 33.9956507465314
+ ],
+ [
+ 75.52025597463499,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 34.57959395131677
+ ],
+ [
+ 75.4054132911513,
+ 34.77424168624522
+ ],
+ [
+ 75.17572792418396,
+ 34.77424168624522
+ ],
+ [
+ 75.06088524070027,
+ 34.57959395131677
+ ],
+ [
+ 75.17572792418396,
+ 34.384946216388315
+ ],
+ [
+ 75.4054132911513,
+ 34.384946216388315
+ ],
+ [
+ 75.52025597463499,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 34.96888942117368
+ ],
+ [
+ 75.4054132911513,
+ 35.16353715610213
+ ],
+ [
+ 75.17572792418396,
+ 35.16353715610213
+ ],
+ [
+ 75.06088524070027,
+ 34.96888942117368
+ ],
+ [
+ 75.17572792418396,
+ 34.774241686245226
+ ],
+ [
+ 75.4054132911513,
+ 34.774241686245226
+ ],
+ [
+ 75.52025597463499,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 35.35818489103058
+ ],
+ [
+ 75.4054132911513,
+ 35.552832625959034
+ ],
+ [
+ 75.17572792418396,
+ 35.552832625959034
+ ],
+ [
+ 75.06088524070027,
+ 35.35818489103058
+ ],
+ [
+ 75.17572792418396,
+ 35.16353715610213
+ ],
+ [
+ 75.4054132911513,
+ 35.16353715610213
+ ],
+ [
+ 75.52025597463499,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 35.74748036088749
+ ],
+ [
+ 75.4054132911513,
+ 35.94212809581594
+ ],
+ [
+ 75.17572792418396,
+ 35.94212809581594
+ ],
+ [
+ 75.06088524070027,
+ 35.74748036088749
+ ],
+ [
+ 75.17572792418396,
+ 35.552832625959034
+ ],
+ [
+ 75.4054132911513,
+ 35.552832625959034
+ ],
+ [
+ 75.52025597463499,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 36.13677583074439
+ ],
+ [
+ 75.4054132911513,
+ 36.33142356567284
+ ],
+ [
+ 75.17572792418396,
+ 36.33142356567284
+ ],
+ [
+ 75.06088524070027,
+ 36.13677583074439
+ ],
+ [
+ 75.17572792418396,
+ 35.94212809581594
+ ],
+ [
+ 75.4054132911513,
+ 35.94212809581594
+ ],
+ [
+ 75.52025597463499,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 36.526071300601295
+ ],
+ [
+ 75.4054132911513,
+ 36.72071903552975
+ ],
+ [
+ 75.17572792418396,
+ 36.72071903552975
+ ],
+ [
+ 75.06088524070027,
+ 36.526071300601295
+ ],
+ [
+ 75.17572792418396,
+ 36.33142356567284
+ ],
+ [
+ 75.4054132911513,
+ 36.33142356567284
+ ],
+ [
+ 75.52025597463499,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 36.915366770458206
+ ],
+ [
+ 75.4054132911513,
+ 37.11001450538666
+ ],
+ [
+ 75.17572792418396,
+ 37.11001450538666
+ ],
+ [
+ 75.06088524070027,
+ 36.915366770458206
+ ],
+ [
+ 75.17572792418396,
+ 36.720719035529754
+ ],
+ [
+ 75.4054132911513,
+ 36.720719035529754
+ ],
+ [
+ 75.52025597463499,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 37.30466224031511
+ ],
+ [
+ 75.4054132911513,
+ 37.49930997524356
+ ],
+ [
+ 75.17572792418396,
+ 37.49930997524356
+ ],
+ [
+ 75.06088524070027,
+ 37.30466224031511
+ ],
+ [
+ 75.17572792418396,
+ 37.11001450538666
+ ],
+ [
+ 75.4054132911513,
+ 37.11001450538666
+ ],
+ [
+ 75.52025597463499,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 37.69395771017202
+ ],
+ [
+ 75.4054132911513,
+ 37.888605445100474
+ ],
+ [
+ 75.17572792418396,
+ 37.888605445100474
+ ],
+ [
+ 75.06088524070027,
+ 37.69395771017202
+ ],
+ [
+ 75.17572792418396,
+ 37.49930997524357
+ ],
+ [
+ 75.4054132911513,
+ 37.49930997524357
+ ],
+ [
+ 75.52025597463499,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 38.083253180028926
+ ],
+ [
+ 75.4054132911513,
+ 38.27790091495738
+ ],
+ [
+ 75.17572792418396,
+ 38.27790091495738
+ ],
+ [
+ 75.06088524070027,
+ 38.083253180028926
+ ],
+ [
+ 75.17572792418396,
+ 37.888605445100474
+ ],
+ [
+ 75.4054132911513,
+ 37.888605445100474
+ ],
+ [
+ 75.52025597463499,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 38.47254864988583
+ ],
+ [
+ 75.4054132911513,
+ 38.66719638481428
+ ],
+ [
+ 75.17572792418396,
+ 38.66719638481428
+ ],
+ [
+ 75.06088524070027,
+ 38.47254864988583
+ ],
+ [
+ 75.17572792418396,
+ 38.27790091495738
+ ],
+ [
+ 75.4054132911513,
+ 38.27790091495738
+ ],
+ [
+ 75.52025597463499,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 38.861844119742734
+ ],
+ [
+ 75.4054132911513,
+ 39.05649185467119
+ ],
+ [
+ 75.17572792418396,
+ 39.05649185467119
+ ],
+ [
+ 75.06088524070027,
+ 38.861844119742734
+ ],
+ [
+ 75.17572792418396,
+ 38.66719638481428
+ ],
+ [
+ 75.4054132911513,
+ 38.66719638481428
+ ],
+ [
+ 75.52025597463499,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 39.25113958959964
+ ],
+ [
+ 75.4054132911513,
+ 39.44578732452809
+ ],
+ [
+ 75.17572792418396,
+ 39.44578732452809
+ ],
+ [
+ 75.06088524070027,
+ 39.25113958959964
+ ],
+ [
+ 75.17572792418396,
+ 39.05649185467119
+ ],
+ [
+ 75.4054132911513,
+ 39.05649185467119
+ ],
+ [
+ 75.52025597463499,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 39.64043505945655
+ ],
+ [
+ 75.4054132911513,
+ 39.835082794385
+ ],
+ [
+ 75.17572792418396,
+ 39.835082794385
+ ],
+ [
+ 75.06088524070027,
+ 39.64043505945655
+ ],
+ [
+ 75.17572792418396,
+ 39.4457873245281
+ ],
+ [
+ 75.4054132911513,
+ 39.4457873245281
+ ],
+ [
+ 75.52025597463499,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 40.029730529313454
+ ],
+ [
+ 75.4054132911513,
+ 40.224378264241906
+ ],
+ [
+ 75.17572792418396,
+ 40.224378264241906
+ ],
+ [
+ 75.06088524070027,
+ 40.029730529313454
+ ],
+ [
+ 75.17572792418396,
+ 39.835082794385
+ ],
+ [
+ 75.4054132911513,
+ 39.835082794385
+ ],
+ [
+ 75.52025597463499,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 40.419025999170366
+ ],
+ [
+ 75.4054132911513,
+ 40.61367373409882
+ ],
+ [
+ 75.17572792418396,
+ 40.61367373409882
+ ],
+ [
+ 75.06088524070027,
+ 40.419025999170366
+ ],
+ [
+ 75.17572792418396,
+ 40.22437826424191
+ ],
+ [
+ 75.4054132911513,
+ 40.22437826424191
+ ],
+ [
+ 75.52025597463499,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 40.80832146902727
+ ],
+ [
+ 75.4054132911513,
+ 41.00296920395572
+ ],
+ [
+ 75.17572792418396,
+ 41.00296920395572
+ ],
+ [
+ 75.06088524070027,
+ 40.80832146902727
+ ],
+ [
+ 75.17572792418396,
+ 40.61367373409882
+ ],
+ [
+ 75.4054132911513,
+ 40.61367373409882
+ ],
+ [
+ 75.52025597463499,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 41.197616938884174
+ ],
+ [
+ 75.4054132911513,
+ 41.392264673812626
+ ],
+ [
+ 75.17572792418396,
+ 41.392264673812626
+ ],
+ [
+ 75.06088524070027,
+ 41.197616938884174
+ ],
+ [
+ 75.17572792418396,
+ 41.00296920395572
+ ],
+ [
+ 75.4054132911513,
+ 41.00296920395572
+ ],
+ [
+ 75.52025597463499,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 41.58691240874108
+ ],
+ [
+ 75.4054132911513,
+ 41.78156014366953
+ ],
+ [
+ 75.17572792418396,
+ 41.78156014366953
+ ],
+ [
+ 75.06088524070027,
+ 41.58691240874108
+ ],
+ [
+ 75.17572792418396,
+ 41.392264673812626
+ ],
+ [
+ 75.4054132911513,
+ 41.392264673812626
+ ],
+ [
+ 75.52025597463499,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 41.97620787859798
+ ],
+ [
+ 75.4054132911513,
+ 42.170855613526435
+ ],
+ [
+ 75.17572792418396,
+ 42.170855613526435
+ ],
+ [
+ 75.06088524070027,
+ 41.97620787859798
+ ],
+ [
+ 75.17572792418396,
+ 41.78156014366953
+ ],
+ [
+ 75.4054132911513,
+ 41.78156014366953
+ ],
+ [
+ 75.52025597463499,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 42.365503348454894
+ ],
+ [
+ 75.4054132911513,
+ 42.560151083383346
+ ],
+ [
+ 75.17572792418396,
+ 42.560151083383346
+ ],
+ [
+ 75.06088524070027,
+ 42.365503348454894
+ ],
+ [
+ 75.17572792418396,
+ 42.17085561352644
+ ],
+ [
+ 75.4054132911513,
+ 42.17085561352644
+ ],
+ [
+ 75.52025597463499,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 42.754798818311805
+ ],
+ [
+ 75.4054132911513,
+ 42.94944655324026
+ ],
+ [
+ 75.17572792418396,
+ 42.94944655324026
+ ],
+ [
+ 75.06088524070027,
+ 42.754798818311805
+ ],
+ [
+ 75.17572792418396,
+ 42.56015108338335
+ ],
+ [
+ 75.4054132911513,
+ 42.56015108338335
+ ],
+ [
+ 75.52025597463499,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 43.14409428816871
+ ],
+ [
+ 75.4054132911513,
+ 43.33874202309716
+ ],
+ [
+ 75.17572792418396,
+ 43.33874202309716
+ ],
+ [
+ 75.06088524070027,
+ 43.14409428816871
+ ],
+ [
+ 75.17572792418396,
+ 42.94944655324026
+ ],
+ [
+ 75.4054132911513,
+ 42.94944655324026
+ ],
+ [
+ 75.52025597463499,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 43.53338975802561
+ ],
+ [
+ 75.4054132911513,
+ 43.728037492954066
+ ],
+ [
+ 75.17572792418396,
+ 43.728037492954066
+ ],
+ [
+ 75.06088524070027,
+ 43.53338975802561
+ ],
+ [
+ 75.17572792418396,
+ 43.33874202309716
+ ],
+ [
+ 75.4054132911513,
+ 43.33874202309716
+ ],
+ [
+ 75.52025597463499,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 43.92268522788252
+ ],
+ [
+ 75.4054132911513,
+ 44.11733296281097
+ ],
+ [
+ 75.17572792418396,
+ 44.11733296281097
+ ],
+ [
+ 75.06088524070027,
+ 43.92268522788252
+ ],
+ [
+ 75.17572792418396,
+ 43.728037492954066
+ ],
+ [
+ 75.4054132911513,
+ 43.728037492954066
+ ],
+ [
+ 75.52025597463499,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 44.31198069773942
+ ],
+ [
+ 75.4054132911513,
+ 44.506628432667874
+ ],
+ [
+ 75.17572792418396,
+ 44.506628432667874
+ ],
+ [
+ 75.06088524070027,
+ 44.31198069773942
+ ],
+ [
+ 75.17572792418396,
+ 44.11733296281097
+ ],
+ [
+ 75.4054132911513,
+ 44.11733296281097
+ ],
+ [
+ 75.52025597463499,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 44.701276167596326
+ ],
+ [
+ 75.4054132911513,
+ 44.89592390252478
+ ],
+ [
+ 75.17572792418396,
+ 44.89592390252478
+ ],
+ [
+ 75.06088524070027,
+ 44.701276167596326
+ ],
+ [
+ 75.17572792418396,
+ 44.506628432667874
+ ],
+ [
+ 75.4054132911513,
+ 44.506628432667874
+ ],
+ [
+ 75.52025597463499,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 45.090571637453245
+ ],
+ [
+ 75.4054132911513,
+ 45.2852193723817
+ ],
+ [
+ 75.17572792418396,
+ 45.2852193723817
+ ],
+ [
+ 75.06088524070027,
+ 45.090571637453245
+ ],
+ [
+ 75.17572792418396,
+ 44.89592390252479
+ ],
+ [
+ 75.4054132911513,
+ 44.89592390252479
+ ],
+ [
+ 75.52025597463499,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 45.47986710731015
+ ],
+ [
+ 75.4054132911513,
+ 45.6745148422386
+ ],
+ [
+ 75.17572792418396,
+ 45.6745148422386
+ ],
+ [
+ 75.06088524070027,
+ 45.47986710731015
+ ],
+ [
+ 75.17572792418396,
+ 45.2852193723817
+ ],
+ [
+ 75.4054132911513,
+ 45.2852193723817
+ ],
+ [
+ 75.52025597463499,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 45.86916257716705
+ ],
+ [
+ 75.4054132911513,
+ 46.063810312095505
+ ],
+ [
+ 75.17572792418396,
+ 46.063810312095505
+ ],
+ [
+ 75.06088524070027,
+ 45.86916257716705
+ ],
+ [
+ 75.17572792418396,
+ 45.6745148422386
+ ],
+ [
+ 75.4054132911513,
+ 45.6745148422386
+ ],
+ [
+ 75.52025597463499,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 46.25845804702396
+ ],
+ [
+ 75.4054132911513,
+ 46.45310578195241
+ ],
+ [
+ 75.17572792418396,
+ 46.45310578195241
+ ],
+ [
+ 75.06088524070027,
+ 46.25845804702396
+ ],
+ [
+ 75.17572792418396,
+ 46.063810312095505
+ ],
+ [
+ 75.4054132911513,
+ 46.063810312095505
+ ],
+ [
+ 75.52025597463499,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 46.64775351688086
+ ],
+ [
+ 75.4054132911513,
+ 46.842401251809314
+ ],
+ [
+ 75.17572792418396,
+ 46.842401251809314
+ ],
+ [
+ 75.06088524070027,
+ 46.64775351688086
+ ],
+ [
+ 75.17572792418396,
+ 46.45310578195241
+ ],
+ [
+ 75.4054132911513,
+ 46.45310578195241
+ ],
+ [
+ 75.52025597463499,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 47.037048986737766
+ ],
+ [
+ 75.4054132911513,
+ 47.23169672166622
+ ],
+ [
+ 75.17572792418396,
+ 47.23169672166622
+ ],
+ [
+ 75.06088524070027,
+ 47.037048986737766
+ ],
+ [
+ 75.17572792418396,
+ 46.842401251809314
+ ],
+ [
+ 75.4054132911513,
+ 46.842401251809314
+ ],
+ [
+ 75.52025597463499,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 47.42634445659467
+ ],
+ [
+ 75.4054132911513,
+ 47.62099219152312
+ ],
+ [
+ 75.17572792418396,
+ 47.62099219152312
+ ],
+ [
+ 75.06088524070027,
+ 47.42634445659467
+ ],
+ [
+ 75.17572792418396,
+ 47.23169672166622
+ ],
+ [
+ 75.4054132911513,
+ 47.23169672166622
+ ],
+ [
+ 75.52025597463499,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 75.52025597463499,
+ 47.81563992645159
+ ],
+ [
+ 75.4054132911513,
+ 48.01028766138004
+ ],
+ [
+ 75.17572792418396,
+ 48.01028766138004
+ ],
+ [
+ 75.06088524070027,
+ 47.81563992645159
+ ],
+ [
+ 75.17572792418396,
+ 47.620992191523136
+ ],
+ [
+ 75.4054132911513,
+ 47.620992191523136
+ ],
+ [
+ 75.52025597463499,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "fill-opacity": 0,
+ "stroke": "#0ff"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.6328125,
+ 11.867350911459308
+ ],
+ [
+ 75.234375,
+ 11.867350911459308
+ ],
+ [
+ 75.234375,
+ 47.754097979680026
+ ],
+ [
+ 63.6328125,
+ 47.754097979680026
+ ],
+ [
+ 63.6328125,
+ 11.867350911459308
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-hex-grid/test/out/trigrid1.geojson b/packages/turf-hex-grid/test/out/trigrid1.geojson
new file mode 100644
index 0000000000..ef2c6f46c2
--- /dev/null
+++ b/packages/turf-hex-grid/test/out/trigrid1.geojson
@@ -0,0 +1,49287 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ],
+ [
+ -96.07545785340386,
+ 31.312193695474356
+ ],
+ [
+ -96.28683554254002,
+ 31.625448749691284
+ ],
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ],
+ [
+ -96.28683554254002,
+ 31.625448749691284
+ ],
+ [
+ -96.70959092081233,
+ 31.625448749691284
+ ],
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ],
+ [
+ -96.70959092081233,
+ 31.625448749691284
+ ],
+ [
+ -96.92096860994849,
+ 31.312193695474356
+ ],
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ],
+ [
+ -96.92096860994849,
+ 31.312193695474356
+ ],
+ [
+ -96.70959092081233,
+ 30.99893864125743
+ ],
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ],
+ [
+ -96.70959092081233,
+ 30.99893864125743
+ ],
+ [
+ -96.28683554254002,
+ 30.99893864125743
+ ],
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ],
+ [
+ -96.28683554254002,
+ 30.99893864125743
+ ],
+ [
+ -96.07545785340386,
+ 31.312193695474356
+ ],
+ [
+ -96.49821323167617,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ],
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ],
+ [
+ -96.28683554254002,
+ 32.251958858125136
+ ],
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ],
+ [
+ -96.28683554254002,
+ 32.251958858125136
+ ],
+ [
+ -96.70959092081233,
+ 32.251958858125136
+ ],
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ],
+ [
+ -96.70959092081233,
+ 32.251958858125136
+ ],
+ [
+ -96.92096860994849,
+ 31.938703803908208
+ ],
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ],
+ [
+ -96.92096860994849,
+ 31.938703803908208
+ ],
+ [
+ -96.70959092081233,
+ 31.62544874969128
+ ],
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ],
+ [
+ -96.70959092081233,
+ 31.62544874969128
+ ],
+ [
+ -96.28683554254002,
+ 31.62544874969128
+ ],
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ],
+ [
+ -96.28683554254002,
+ 31.62544874969128
+ ],
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ],
+ [
+ -96.49821323167617,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ],
+ [
+ -96.07545785340386,
+ 32.56521391234206
+ ],
+ [
+ -96.28683554254002,
+ 32.878468966558984
+ ],
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ],
+ [
+ -96.28683554254002,
+ 32.878468966558984
+ ],
+ [
+ -96.70959092081233,
+ 32.878468966558984
+ ],
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ],
+ [
+ -96.70959092081233,
+ 32.878468966558984
+ ],
+ [
+ -96.92096860994849,
+ 32.56521391234206
+ ],
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ],
+ [
+ -96.92096860994849,
+ 32.56521391234206
+ ],
+ [
+ -96.70959092081233,
+ 32.251958858125136
+ ],
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ],
+ [
+ -96.70959092081233,
+ 32.251958858125136
+ ],
+ [
+ -96.28683554254002,
+ 32.251958858125136
+ ],
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ],
+ [
+ -96.28683554254002,
+ 32.251958858125136
+ ],
+ [
+ -96.07545785340386,
+ 32.56521391234206
+ ],
+ [
+ -96.49821323167617,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ],
+ [
+ -96.07545785340386,
+ 33.191724020775915
+ ],
+ [
+ -96.28683554254002,
+ 33.50497907499284
+ ],
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ],
+ [
+ -96.28683554254002,
+ 33.50497907499284
+ ],
+ [
+ -96.70959092081233,
+ 33.50497907499284
+ ],
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ],
+ [
+ -96.70959092081233,
+ 33.50497907499284
+ ],
+ [
+ -96.92096860994849,
+ 33.191724020775915
+ ],
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ],
+ [
+ -96.92096860994849,
+ 33.191724020775915
+ ],
+ [
+ -96.70959092081233,
+ 32.87846896655899
+ ],
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ],
+ [
+ -96.70959092081233,
+ 32.87846896655899
+ ],
+ [
+ -96.28683554254002,
+ 32.87846896655899
+ ],
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ],
+ [
+ -96.28683554254002,
+ 32.87846896655899
+ ],
+ [
+ -96.07545785340386,
+ 33.191724020775915
+ ],
+ [
+ -96.49821323167617,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ],
+ [
+ -96.07545785340386,
+ 33.81823412920977
+ ],
+ [
+ -96.28683554254002,
+ 34.131489183426694
+ ],
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ],
+ [
+ -96.28683554254002,
+ 34.131489183426694
+ ],
+ [
+ -96.70959092081233,
+ 34.131489183426694
+ ],
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ],
+ [
+ -96.70959092081233,
+ 34.131489183426694
+ ],
+ [
+ -96.92096860994849,
+ 33.81823412920977
+ ],
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ],
+ [
+ -96.92096860994849,
+ 33.81823412920977
+ ],
+ [
+ -96.70959092081233,
+ 33.504979074992846
+ ],
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ],
+ [
+ -96.70959092081233,
+ 33.504979074992846
+ ],
+ [
+ -96.28683554254002,
+ 33.504979074992846
+ ],
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ],
+ [
+ -96.28683554254002,
+ 33.504979074992846
+ ],
+ [
+ -96.07545785340386,
+ 33.81823412920977
+ ],
+ [
+ -96.49821323167617,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ],
+ [
+ -96.07545785340386,
+ 34.444744237643626
+ ],
+ [
+ -96.28683554254002,
+ 34.75799929186055
+ ],
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ],
+ [
+ -96.28683554254002,
+ 34.75799929186055
+ ],
+ [
+ -96.70959092081233,
+ 34.75799929186055
+ ],
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ],
+ [
+ -96.70959092081233,
+ 34.75799929186055
+ ],
+ [
+ -96.92096860994849,
+ 34.444744237643626
+ ],
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ],
+ [
+ -96.92096860994849,
+ 34.444744237643626
+ ],
+ [
+ -96.70959092081233,
+ 34.1314891834267
+ ],
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ],
+ [
+ -96.70959092081233,
+ 34.1314891834267
+ ],
+ [
+ -96.28683554254002,
+ 34.1314891834267
+ ],
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ],
+ [
+ -96.28683554254002,
+ 34.1314891834267
+ ],
+ [
+ -96.07545785340386,
+ 34.444744237643626
+ ],
+ [
+ -96.49821323167617,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ],
+ [
+ -96.07545785340386,
+ 35.07125434607748
+ ],
+ [
+ -96.28683554254002,
+ 35.384509400294405
+ ],
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ],
+ [
+ -96.28683554254002,
+ 35.384509400294405
+ ],
+ [
+ -96.70959092081233,
+ 35.384509400294405
+ ],
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ],
+ [
+ -96.70959092081233,
+ 35.384509400294405
+ ],
+ [
+ -96.92096860994849,
+ 35.07125434607748
+ ],
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ],
+ [
+ -96.92096860994849,
+ 35.07125434607748
+ ],
+ [
+ -96.70959092081233,
+ 34.75799929186056
+ ],
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ],
+ [
+ -96.70959092081233,
+ 34.75799929186056
+ ],
+ [
+ -96.28683554254002,
+ 34.75799929186056
+ ],
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ],
+ [
+ -96.28683554254002,
+ 34.75799929186056
+ ],
+ [
+ -96.07545785340386,
+ 35.07125434607748
+ ],
+ [
+ -96.49821323167617,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ],
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ],
+ [
+ -96.28683554254002,
+ 36.01101950872826
+ ],
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ],
+ [
+ -96.28683554254002,
+ 36.01101950872826
+ ],
+ [
+ -96.70959092081233,
+ 36.01101950872826
+ ],
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ],
+ [
+ -96.70959092081233,
+ 36.01101950872826
+ ],
+ [
+ -96.92096860994849,
+ 35.697764454511336
+ ],
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ],
+ [
+ -96.92096860994849,
+ 35.697764454511336
+ ],
+ [
+ -96.70959092081233,
+ 35.38450940029441
+ ],
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ],
+ [
+ -96.70959092081233,
+ 35.38450940029441
+ ],
+ [
+ -96.28683554254002,
+ 35.38450940029441
+ ],
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ],
+ [
+ -96.28683554254002,
+ 35.38450940029441
+ ],
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ],
+ [
+ -96.49821323167617,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ],
+ [
+ -96.07545785340386,
+ 36.324274562945185
+ ],
+ [
+ -96.28683554254002,
+ 36.63752961716211
+ ],
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ],
+ [
+ -96.28683554254002,
+ 36.63752961716211
+ ],
+ [
+ -96.70959092081233,
+ 36.63752961716211
+ ],
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ],
+ [
+ -96.70959092081233,
+ 36.63752961716211
+ ],
+ [
+ -96.92096860994849,
+ 36.324274562945185
+ ],
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ],
+ [
+ -96.92096860994849,
+ 36.324274562945185
+ ],
+ [
+ -96.70959092081233,
+ 36.01101950872826
+ ],
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ],
+ [
+ -96.70959092081233,
+ 36.01101950872826
+ ],
+ [
+ -96.28683554254002,
+ 36.01101950872826
+ ],
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ],
+ [
+ -96.28683554254002,
+ 36.01101950872826
+ ],
+ [
+ -96.07545785340386,
+ 36.324274562945185
+ ],
+ [
+ -96.49821323167617,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ],
+ [
+ -96.07545785340386,
+ 36.95078467137904
+ ],
+ [
+ -96.28683554254002,
+ 37.264039725595964
+ ],
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ],
+ [
+ -96.28683554254002,
+ 37.264039725595964
+ ],
+ [
+ -96.70959092081233,
+ 37.264039725595964
+ ],
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ],
+ [
+ -96.70959092081233,
+ 37.264039725595964
+ ],
+ [
+ -96.92096860994849,
+ 36.95078467137904
+ ],
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ],
+ [
+ -96.92096860994849,
+ 36.95078467137904
+ ],
+ [
+ -96.70959092081233,
+ 36.637529617162116
+ ],
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ],
+ [
+ -96.70959092081233,
+ 36.637529617162116
+ ],
+ [
+ -96.28683554254002,
+ 36.637529617162116
+ ],
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ],
+ [
+ -96.28683554254002,
+ 36.637529617162116
+ ],
+ [
+ -96.07545785340386,
+ 36.95078467137904
+ ],
+ [
+ -96.49821323167617,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ],
+ [
+ -96.07545785340386,
+ 37.577294779812895
+ ],
+ [
+ -96.28683554254002,
+ 37.89054983402982
+ ],
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ],
+ [
+ -96.28683554254002,
+ 37.89054983402982
+ ],
+ [
+ -96.70959092081233,
+ 37.89054983402982
+ ],
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ],
+ [
+ -96.70959092081233,
+ 37.89054983402982
+ ],
+ [
+ -96.92096860994849,
+ 37.577294779812895
+ ],
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ],
+ [
+ -96.92096860994849,
+ 37.577294779812895
+ ],
+ [
+ -96.70959092081233,
+ 37.26403972559597
+ ],
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ],
+ [
+ -96.70959092081233,
+ 37.26403972559597
+ ],
+ [
+ -96.28683554254002,
+ 37.26403972559597
+ ],
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ],
+ [
+ -96.28683554254002,
+ 37.26403972559597
+ ],
+ [
+ -96.07545785340386,
+ 37.577294779812895
+ ],
+ [
+ -96.49821323167617,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ],
+ [
+ -96.07545785340386,
+ 38.20380488824675
+ ],
+ [
+ -96.28683554254002,
+ 38.517059942463675
+ ],
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ],
+ [
+ -96.28683554254002,
+ 38.517059942463675
+ ],
+ [
+ -96.70959092081233,
+ 38.517059942463675
+ ],
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ],
+ [
+ -96.70959092081233,
+ 38.517059942463675
+ ],
+ [
+ -96.92096860994849,
+ 38.20380488824675
+ ],
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ],
+ [
+ -96.92096860994849,
+ 38.20380488824675
+ ],
+ [
+ -96.70959092081233,
+ 37.89054983402983
+ ],
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ],
+ [
+ -96.70959092081233,
+ 37.89054983402983
+ ],
+ [
+ -96.28683554254002,
+ 37.89054983402983
+ ],
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ],
+ [
+ -96.28683554254002,
+ 37.89054983402983
+ ],
+ [
+ -96.07545785340386,
+ 38.20380488824675
+ ],
+ [
+ -96.49821323167617,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ],
+ [
+ -96.07545785340386,
+ 38.830314996680606
+ ],
+ [
+ -96.28683554254002,
+ 39.14357005089753
+ ],
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ],
+ [
+ -96.28683554254002,
+ 39.14357005089753
+ ],
+ [
+ -96.70959092081233,
+ 39.14357005089753
+ ],
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ],
+ [
+ -96.70959092081233,
+ 39.14357005089753
+ ],
+ [
+ -96.92096860994849,
+ 38.830314996680606
+ ],
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ],
+ [
+ -96.92096860994849,
+ 38.830314996680606
+ ],
+ [
+ -96.70959092081233,
+ 38.51705994246368
+ ],
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ],
+ [
+ -96.70959092081233,
+ 38.51705994246368
+ ],
+ [
+ -96.28683554254002,
+ 38.51705994246368
+ ],
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ],
+ [
+ -96.28683554254002,
+ 38.51705994246368
+ ],
+ [
+ -96.07545785340386,
+ 38.830314996680606
+ ],
+ [
+ -96.49821323167617,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ],
+ [
+ -96.07545785340386,
+ 39.45682510511446
+ ],
+ [
+ -96.28683554254002,
+ 39.770080159331386
+ ],
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ],
+ [
+ -96.28683554254002,
+ 39.770080159331386
+ ],
+ [
+ -96.70959092081233,
+ 39.770080159331386
+ ],
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ],
+ [
+ -96.70959092081233,
+ 39.770080159331386
+ ],
+ [
+ -96.92096860994849,
+ 39.45682510511446
+ ],
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ],
+ [
+ -96.92096860994849,
+ 39.45682510511446
+ ],
+ [
+ -96.70959092081233,
+ 39.14357005089754
+ ],
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ],
+ [
+ -96.70959092081233,
+ 39.14357005089754
+ ],
+ [
+ -96.28683554254002,
+ 39.14357005089754
+ ],
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ],
+ [
+ -96.28683554254002,
+ 39.14357005089754
+ ],
+ [
+ -96.07545785340386,
+ 39.45682510511446
+ ],
+ [
+ -96.49821323167617,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ],
+ [
+ -96.07545785340386,
+ 40.08333521354832
+ ],
+ [
+ -96.28683554254002,
+ 40.39659026776524
+ ],
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ],
+ [
+ -96.28683554254002,
+ 40.39659026776524
+ ],
+ [
+ -96.70959092081233,
+ 40.39659026776524
+ ],
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ],
+ [
+ -96.70959092081233,
+ 40.39659026776524
+ ],
+ [
+ -96.92096860994849,
+ 40.08333521354832
+ ],
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ],
+ [
+ -96.92096860994849,
+ 40.08333521354832
+ ],
+ [
+ -96.70959092081233,
+ 39.77008015933139
+ ],
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ],
+ [
+ -96.70959092081233,
+ 39.77008015933139
+ ],
+ [
+ -96.28683554254002,
+ 39.77008015933139
+ ],
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ],
+ [
+ -96.28683554254002,
+ 39.77008015933139
+ ],
+ [
+ -96.07545785340386,
+ 40.08333521354832
+ ],
+ [
+ -96.49821323167617,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ],
+ [
+ -96.07545785340386,
+ 40.70984532198217
+ ],
+ [
+ -96.28683554254002,
+ 41.023100376199096
+ ],
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ],
+ [
+ -96.28683554254002,
+ 41.023100376199096
+ ],
+ [
+ -96.70959092081233,
+ 41.023100376199096
+ ],
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ],
+ [
+ -96.70959092081233,
+ 41.023100376199096
+ ],
+ [
+ -96.92096860994849,
+ 40.70984532198217
+ ],
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ],
+ [
+ -96.92096860994849,
+ 40.70984532198217
+ ],
+ [
+ -96.70959092081233,
+ 40.39659026776525
+ ],
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ],
+ [
+ -96.70959092081233,
+ 40.39659026776525
+ ],
+ [
+ -96.28683554254002,
+ 40.39659026776525
+ ],
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ],
+ [
+ -96.28683554254002,
+ 40.39659026776525
+ ],
+ [
+ -96.07545785340386,
+ 40.70984532198217
+ ],
+ [
+ -96.49821323167617,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ],
+ [
+ -95.44132478599539,
+ 30.99893864125743
+ ],
+ [
+ -95.65270247513155,
+ 31.312193695474356
+ ],
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ],
+ [
+ -95.65270247513155,
+ 31.312193695474356
+ ],
+ [
+ -96.07545785340386,
+ 31.312193695474356
+ ],
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ],
+ [
+ -96.07545785340386,
+ 31.312193695474356
+ ],
+ [
+ -96.28683554254002,
+ 30.99893864125743
+ ],
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ],
+ [
+ -96.28683554254002,
+ 30.99893864125743
+ ],
+ [
+ -96.07545785340386,
+ 30.6856835870405
+ ],
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ],
+ [
+ -96.07545785340386,
+ 30.6856835870405
+ ],
+ [
+ -95.65270247513155,
+ 30.6856835870405
+ ],
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ],
+ [
+ -95.65270247513155,
+ 30.6856835870405
+ ],
+ [
+ -95.44132478599539,
+ 30.99893864125743
+ ],
+ [
+ -95.8640801642677,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ],
+ [
+ -95.44132478599539,
+ 31.62544874969128
+ ],
+ [
+ -95.65270247513155,
+ 31.938703803908208
+ ],
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ],
+ [
+ -95.65270247513155,
+ 31.938703803908208
+ ],
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ],
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ],
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ],
+ [
+ -96.28683554254002,
+ 31.62544874969128
+ ],
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ],
+ [
+ -96.28683554254002,
+ 31.62544874969128
+ ],
+ [
+ -96.07545785340386,
+ 31.312193695474352
+ ],
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ],
+ [
+ -96.07545785340386,
+ 31.312193695474352
+ ],
+ [
+ -95.65270247513155,
+ 31.312193695474352
+ ],
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ],
+ [
+ -95.65270247513155,
+ 31.312193695474352
+ ],
+ [
+ -95.44132478599539,
+ 31.62544874969128
+ ],
+ [
+ -95.8640801642677,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ],
+ [
+ -95.44132478599539,
+ 32.251958858125136
+ ],
+ [
+ -95.65270247513155,
+ 32.56521391234206
+ ],
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ],
+ [
+ -95.65270247513155,
+ 32.56521391234206
+ ],
+ [
+ -96.07545785340386,
+ 32.56521391234206
+ ],
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ],
+ [
+ -96.07545785340386,
+ 32.56521391234206
+ ],
+ [
+ -96.28683554254002,
+ 32.251958858125136
+ ],
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ],
+ [
+ -96.28683554254002,
+ 32.251958858125136
+ ],
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ],
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ],
+ [
+ -96.07545785340386,
+ 31.938703803908208
+ ],
+ [
+ -95.65270247513155,
+ 31.938703803908208
+ ],
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ],
+ [
+ -95.65270247513155,
+ 31.938703803908208
+ ],
+ [
+ -95.44132478599539,
+ 32.251958858125136
+ ],
+ [
+ -95.8640801642677,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ],
+ [
+ -95.44132478599539,
+ 32.87846896655899
+ ],
+ [
+ -95.65270247513155,
+ 33.191724020775915
+ ],
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ],
+ [
+ -95.65270247513155,
+ 33.191724020775915
+ ],
+ [
+ -96.07545785340386,
+ 33.191724020775915
+ ],
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ],
+ [
+ -96.07545785340386,
+ 33.191724020775915
+ ],
+ [
+ -96.28683554254002,
+ 32.87846896655899
+ ],
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ],
+ [
+ -96.28683554254002,
+ 32.87846896655899
+ ],
+ [
+ -96.07545785340386,
+ 32.56521391234207
+ ],
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ],
+ [
+ -96.07545785340386,
+ 32.56521391234207
+ ],
+ [
+ -95.65270247513155,
+ 32.56521391234207
+ ],
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ],
+ [
+ -95.65270247513155,
+ 32.56521391234207
+ ],
+ [
+ -95.44132478599539,
+ 32.87846896655899
+ ],
+ [
+ -95.8640801642677,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ],
+ [
+ -95.44132478599539,
+ 33.504979074992846
+ ],
+ [
+ -95.65270247513155,
+ 33.81823412920977
+ ],
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ],
+ [
+ -95.65270247513155,
+ 33.81823412920977
+ ],
+ [
+ -96.07545785340386,
+ 33.81823412920977
+ ],
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ],
+ [
+ -96.07545785340386,
+ 33.81823412920977
+ ],
+ [
+ -96.28683554254002,
+ 33.504979074992846
+ ],
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ],
+ [
+ -96.28683554254002,
+ 33.504979074992846
+ ],
+ [
+ -96.07545785340386,
+ 33.19172402077592
+ ],
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ],
+ [
+ -96.07545785340386,
+ 33.19172402077592
+ ],
+ [
+ -95.65270247513155,
+ 33.19172402077592
+ ],
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ],
+ [
+ -95.65270247513155,
+ 33.19172402077592
+ ],
+ [
+ -95.44132478599539,
+ 33.504979074992846
+ ],
+ [
+ -95.8640801642677,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ],
+ [
+ -95.44132478599539,
+ 34.1314891834267
+ ],
+ [
+ -95.65270247513155,
+ 34.444744237643626
+ ],
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ],
+ [
+ -95.65270247513155,
+ 34.444744237643626
+ ],
+ [
+ -96.07545785340386,
+ 34.444744237643626
+ ],
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ],
+ [
+ -96.07545785340386,
+ 34.444744237643626
+ ],
+ [
+ -96.28683554254002,
+ 34.1314891834267
+ ],
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ],
+ [
+ -96.28683554254002,
+ 34.1314891834267
+ ],
+ [
+ -96.07545785340386,
+ 33.81823412920978
+ ],
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ],
+ [
+ -96.07545785340386,
+ 33.81823412920978
+ ],
+ [
+ -95.65270247513155,
+ 33.81823412920978
+ ],
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ],
+ [
+ -95.65270247513155,
+ 33.81823412920978
+ ],
+ [
+ -95.44132478599539,
+ 34.1314891834267
+ ],
+ [
+ -95.8640801642677,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ],
+ [
+ -95.44132478599539,
+ 34.75799929186056
+ ],
+ [
+ -95.65270247513155,
+ 35.07125434607748
+ ],
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ],
+ [
+ -95.65270247513155,
+ 35.07125434607748
+ ],
+ [
+ -96.07545785340386,
+ 35.07125434607748
+ ],
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ],
+ [
+ -96.07545785340386,
+ 35.07125434607748
+ ],
+ [
+ -96.28683554254002,
+ 34.75799929186056
+ ],
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ],
+ [
+ -96.28683554254002,
+ 34.75799929186056
+ ],
+ [
+ -96.07545785340386,
+ 34.44474423764363
+ ],
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ],
+ [
+ -96.07545785340386,
+ 34.44474423764363
+ ],
+ [
+ -95.65270247513155,
+ 34.44474423764363
+ ],
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ],
+ [
+ -95.65270247513155,
+ 34.44474423764363
+ ],
+ [
+ -95.44132478599539,
+ 34.75799929186056
+ ],
+ [
+ -95.8640801642677,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ],
+ [
+ -95.44132478599539,
+ 35.38450940029441
+ ],
+ [
+ -95.65270247513155,
+ 35.697764454511336
+ ],
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ],
+ [
+ -95.65270247513155,
+ 35.697764454511336
+ ],
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ],
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ],
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ],
+ [
+ -96.28683554254002,
+ 35.38450940029441
+ ],
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ],
+ [
+ -96.28683554254002,
+ 35.38450940029441
+ ],
+ [
+ -96.07545785340386,
+ 35.07125434607749
+ ],
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ],
+ [
+ -96.07545785340386,
+ 35.07125434607749
+ ],
+ [
+ -95.65270247513155,
+ 35.07125434607749
+ ],
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ],
+ [
+ -95.65270247513155,
+ 35.07125434607749
+ ],
+ [
+ -95.44132478599539,
+ 35.38450940029441
+ ],
+ [
+ -95.8640801642677,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ],
+ [
+ -95.44132478599539,
+ 36.01101950872826
+ ],
+ [
+ -95.65270247513155,
+ 36.324274562945185
+ ],
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ],
+ [
+ -95.65270247513155,
+ 36.324274562945185
+ ],
+ [
+ -96.07545785340386,
+ 36.324274562945185
+ ],
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ],
+ [
+ -96.07545785340386,
+ 36.324274562945185
+ ],
+ [
+ -96.28683554254002,
+ 36.01101950872826
+ ],
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ],
+ [
+ -96.28683554254002,
+ 36.01101950872826
+ ],
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ],
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ],
+ [
+ -96.07545785340386,
+ 35.697764454511336
+ ],
+ [
+ -95.65270247513155,
+ 35.697764454511336
+ ],
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ],
+ [
+ -95.65270247513155,
+ 35.697764454511336
+ ],
+ [
+ -95.44132478599539,
+ 36.01101950872826
+ ],
+ [
+ -95.8640801642677,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ],
+ [
+ -95.44132478599539,
+ 36.637529617162116
+ ],
+ [
+ -95.65270247513155,
+ 36.95078467137904
+ ],
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ],
+ [
+ -95.65270247513155,
+ 36.95078467137904
+ ],
+ [
+ -96.07545785340386,
+ 36.95078467137904
+ ],
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ],
+ [
+ -96.07545785340386,
+ 36.95078467137904
+ ],
+ [
+ -96.28683554254002,
+ 36.637529617162116
+ ],
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ],
+ [
+ -96.28683554254002,
+ 36.637529617162116
+ ],
+ [
+ -96.07545785340386,
+ 36.32427456294519
+ ],
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ],
+ [
+ -96.07545785340386,
+ 36.32427456294519
+ ],
+ [
+ -95.65270247513155,
+ 36.32427456294519
+ ],
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ],
+ [
+ -95.65270247513155,
+ 36.32427456294519
+ ],
+ [
+ -95.44132478599539,
+ 36.637529617162116
+ ],
+ [
+ -95.8640801642677,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ],
+ [
+ -95.44132478599539,
+ 37.26403972559597
+ ],
+ [
+ -95.65270247513155,
+ 37.577294779812895
+ ],
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ],
+ [
+ -95.65270247513155,
+ 37.577294779812895
+ ],
+ [
+ -96.07545785340386,
+ 37.577294779812895
+ ],
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ],
+ [
+ -96.07545785340386,
+ 37.577294779812895
+ ],
+ [
+ -96.28683554254002,
+ 37.26403972559597
+ ],
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ],
+ [
+ -96.28683554254002,
+ 37.26403972559597
+ ],
+ [
+ -96.07545785340386,
+ 36.95078467137905
+ ],
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ],
+ [
+ -96.07545785340386,
+ 36.95078467137905
+ ],
+ [
+ -95.65270247513155,
+ 36.95078467137905
+ ],
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ],
+ [
+ -95.65270247513155,
+ 36.95078467137905
+ ],
+ [
+ -95.44132478599539,
+ 37.26403972559597
+ ],
+ [
+ -95.8640801642677,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ],
+ [
+ -95.44132478599539,
+ 37.89054983402983
+ ],
+ [
+ -95.65270247513155,
+ 38.20380488824675
+ ],
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ],
+ [
+ -95.65270247513155,
+ 38.20380488824675
+ ],
+ [
+ -96.07545785340386,
+ 38.20380488824675
+ ],
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ],
+ [
+ -96.07545785340386,
+ 38.20380488824675
+ ],
+ [
+ -96.28683554254002,
+ 37.89054983402983
+ ],
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ],
+ [
+ -96.28683554254002,
+ 37.89054983402983
+ ],
+ [
+ -96.07545785340386,
+ 37.5772947798129
+ ],
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ],
+ [
+ -96.07545785340386,
+ 37.5772947798129
+ ],
+ [
+ -95.65270247513155,
+ 37.5772947798129
+ ],
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ],
+ [
+ -95.65270247513155,
+ 37.5772947798129
+ ],
+ [
+ -95.44132478599539,
+ 37.89054983402983
+ ],
+ [
+ -95.8640801642677,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ],
+ [
+ -95.44132478599539,
+ 38.51705994246368
+ ],
+ [
+ -95.65270247513155,
+ 38.830314996680606
+ ],
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ],
+ [
+ -95.65270247513155,
+ 38.830314996680606
+ ],
+ [
+ -96.07545785340386,
+ 38.830314996680606
+ ],
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ],
+ [
+ -96.07545785340386,
+ 38.830314996680606
+ ],
+ [
+ -96.28683554254002,
+ 38.51705994246368
+ ],
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ],
+ [
+ -96.28683554254002,
+ 38.51705994246368
+ ],
+ [
+ -96.07545785340386,
+ 38.20380488824676
+ ],
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ],
+ [
+ -96.07545785340386,
+ 38.20380488824676
+ ],
+ [
+ -95.65270247513155,
+ 38.20380488824676
+ ],
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ],
+ [
+ -95.65270247513155,
+ 38.20380488824676
+ ],
+ [
+ -95.44132478599539,
+ 38.51705994246368
+ ],
+ [
+ -95.8640801642677,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ],
+ [
+ -95.44132478599539,
+ 39.14357005089754
+ ],
+ [
+ -95.65270247513155,
+ 39.45682510511446
+ ],
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ],
+ [
+ -95.65270247513155,
+ 39.45682510511446
+ ],
+ [
+ -96.07545785340386,
+ 39.45682510511446
+ ],
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ],
+ [
+ -96.07545785340386,
+ 39.45682510511446
+ ],
+ [
+ -96.28683554254002,
+ 39.14357005089754
+ ],
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ],
+ [
+ -96.28683554254002,
+ 39.14357005089754
+ ],
+ [
+ -96.07545785340386,
+ 38.83031499668061
+ ],
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ],
+ [
+ -96.07545785340386,
+ 38.83031499668061
+ ],
+ [
+ -95.65270247513155,
+ 38.83031499668061
+ ],
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ],
+ [
+ -95.65270247513155,
+ 38.83031499668061
+ ],
+ [
+ -95.44132478599539,
+ 39.14357005089754
+ ],
+ [
+ -95.8640801642677,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ],
+ [
+ -95.44132478599539,
+ 39.77008015933139
+ ],
+ [
+ -95.65270247513155,
+ 40.08333521354832
+ ],
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ],
+ [
+ -95.65270247513155,
+ 40.08333521354832
+ ],
+ [
+ -96.07545785340386,
+ 40.08333521354832
+ ],
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ],
+ [
+ -96.07545785340386,
+ 40.08333521354832
+ ],
+ [
+ -96.28683554254002,
+ 39.77008015933139
+ ],
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ],
+ [
+ -96.28683554254002,
+ 39.77008015933139
+ ],
+ [
+ -96.07545785340386,
+ 39.45682510511447
+ ],
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ],
+ [
+ -96.07545785340386,
+ 39.45682510511447
+ ],
+ [
+ -95.65270247513155,
+ 39.45682510511447
+ ],
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ],
+ [
+ -95.65270247513155,
+ 39.45682510511447
+ ],
+ [
+ -95.44132478599539,
+ 39.77008015933139
+ ],
+ [
+ -95.8640801642677,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ],
+ [
+ -95.44132478599539,
+ 40.39659026776525
+ ],
+ [
+ -95.65270247513155,
+ 40.70984532198217
+ ],
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ],
+ [
+ -95.65270247513155,
+ 40.70984532198217
+ ],
+ [
+ -96.07545785340386,
+ 40.70984532198217
+ ],
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ],
+ [
+ -96.07545785340386,
+ 40.70984532198217
+ ],
+ [
+ -96.28683554254002,
+ 40.39659026776525
+ ],
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ],
+ [
+ -96.28683554254002,
+ 40.39659026776525
+ ],
+ [
+ -96.07545785340386,
+ 40.083335213548324
+ ],
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ],
+ [
+ -96.07545785340386,
+ 40.083335213548324
+ ],
+ [
+ -95.65270247513155,
+ 40.083335213548324
+ ],
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ],
+ [
+ -95.65270247513155,
+ 40.083335213548324
+ ],
+ [
+ -95.44132478599539,
+ 40.39659026776525
+ ],
+ [
+ -95.8640801642677,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ],
+ [
+ -94.80719171858694,
+ 31.312193695474356
+ ],
+ [
+ -95.01856940772309,
+ 31.625448749691284
+ ],
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ],
+ [
+ -95.01856940772309,
+ 31.625448749691284
+ ],
+ [
+ -95.4413247859954,
+ 31.625448749691284
+ ],
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ],
+ [
+ -95.4413247859954,
+ 31.625448749691284
+ ],
+ [
+ -95.65270247513156,
+ 31.312193695474356
+ ],
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ],
+ [
+ -95.65270247513156,
+ 31.312193695474356
+ ],
+ [
+ -95.4413247859954,
+ 30.99893864125743
+ ],
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ],
+ [
+ -95.4413247859954,
+ 30.99893864125743
+ ],
+ [
+ -95.01856940772309,
+ 30.99893864125743
+ ],
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ],
+ [
+ -95.01856940772309,
+ 30.99893864125743
+ ],
+ [
+ -94.80719171858694,
+ 31.312193695474356
+ ],
+ [
+ -95.22994709685925,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ],
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ],
+ [
+ -95.01856940772309,
+ 32.251958858125136
+ ],
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ],
+ [
+ -95.01856940772309,
+ 32.251958858125136
+ ],
+ [
+ -95.4413247859954,
+ 32.251958858125136
+ ],
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ],
+ [
+ -95.4413247859954,
+ 32.251958858125136
+ ],
+ [
+ -95.65270247513156,
+ 31.938703803908208
+ ],
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ],
+ [
+ -95.65270247513156,
+ 31.938703803908208
+ ],
+ [
+ -95.4413247859954,
+ 31.62544874969128
+ ],
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ],
+ [
+ -95.4413247859954,
+ 31.62544874969128
+ ],
+ [
+ -95.01856940772309,
+ 31.62544874969128
+ ],
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ],
+ [
+ -95.01856940772309,
+ 31.62544874969128
+ ],
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ],
+ [
+ -95.22994709685925,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ],
+ [
+ -94.80719171858694,
+ 32.56521391234206
+ ],
+ [
+ -95.01856940772309,
+ 32.878468966558984
+ ],
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ],
+ [
+ -95.01856940772309,
+ 32.878468966558984
+ ],
+ [
+ -95.4413247859954,
+ 32.878468966558984
+ ],
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ],
+ [
+ -95.4413247859954,
+ 32.878468966558984
+ ],
+ [
+ -95.65270247513156,
+ 32.56521391234206
+ ],
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ],
+ [
+ -95.65270247513156,
+ 32.56521391234206
+ ],
+ [
+ -95.4413247859954,
+ 32.251958858125136
+ ],
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ],
+ [
+ -95.4413247859954,
+ 32.251958858125136
+ ],
+ [
+ -95.01856940772309,
+ 32.251958858125136
+ ],
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ],
+ [
+ -95.01856940772309,
+ 32.251958858125136
+ ],
+ [
+ -94.80719171858694,
+ 32.56521391234206
+ ],
+ [
+ -95.22994709685925,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ],
+ [
+ -94.80719171858694,
+ 33.191724020775915
+ ],
+ [
+ -95.01856940772309,
+ 33.50497907499284
+ ],
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ],
+ [
+ -95.01856940772309,
+ 33.50497907499284
+ ],
+ [
+ -95.4413247859954,
+ 33.50497907499284
+ ],
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ],
+ [
+ -95.4413247859954,
+ 33.50497907499284
+ ],
+ [
+ -95.65270247513156,
+ 33.191724020775915
+ ],
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ],
+ [
+ -95.65270247513156,
+ 33.191724020775915
+ ],
+ [
+ -95.4413247859954,
+ 32.87846896655899
+ ],
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ],
+ [
+ -95.4413247859954,
+ 32.87846896655899
+ ],
+ [
+ -95.01856940772309,
+ 32.87846896655899
+ ],
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ],
+ [
+ -95.01856940772309,
+ 32.87846896655899
+ ],
+ [
+ -94.80719171858694,
+ 33.191724020775915
+ ],
+ [
+ -95.22994709685925,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ],
+ [
+ -94.80719171858694,
+ 33.81823412920977
+ ],
+ [
+ -95.01856940772309,
+ 34.131489183426694
+ ],
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ],
+ [
+ -95.01856940772309,
+ 34.131489183426694
+ ],
+ [
+ -95.4413247859954,
+ 34.131489183426694
+ ],
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ],
+ [
+ -95.4413247859954,
+ 34.131489183426694
+ ],
+ [
+ -95.65270247513156,
+ 33.81823412920977
+ ],
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ],
+ [
+ -95.65270247513156,
+ 33.81823412920977
+ ],
+ [
+ -95.4413247859954,
+ 33.504979074992846
+ ],
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ],
+ [
+ -95.4413247859954,
+ 33.504979074992846
+ ],
+ [
+ -95.01856940772309,
+ 33.504979074992846
+ ],
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ],
+ [
+ -95.01856940772309,
+ 33.504979074992846
+ ],
+ [
+ -94.80719171858694,
+ 33.81823412920977
+ ],
+ [
+ -95.22994709685925,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ],
+ [
+ -94.80719171858694,
+ 34.444744237643626
+ ],
+ [
+ -95.01856940772309,
+ 34.75799929186055
+ ],
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ],
+ [
+ -95.01856940772309,
+ 34.75799929186055
+ ],
+ [
+ -95.4413247859954,
+ 34.75799929186055
+ ],
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ],
+ [
+ -95.4413247859954,
+ 34.75799929186055
+ ],
+ [
+ -95.65270247513156,
+ 34.444744237643626
+ ],
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ],
+ [
+ -95.65270247513156,
+ 34.444744237643626
+ ],
+ [
+ -95.4413247859954,
+ 34.1314891834267
+ ],
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ],
+ [
+ -95.4413247859954,
+ 34.1314891834267
+ ],
+ [
+ -95.01856940772309,
+ 34.1314891834267
+ ],
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ],
+ [
+ -95.01856940772309,
+ 34.1314891834267
+ ],
+ [
+ -94.80719171858694,
+ 34.444744237643626
+ ],
+ [
+ -95.22994709685925,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ],
+ [
+ -94.80719171858694,
+ 35.07125434607748
+ ],
+ [
+ -95.01856940772309,
+ 35.384509400294405
+ ],
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ],
+ [
+ -95.01856940772309,
+ 35.384509400294405
+ ],
+ [
+ -95.4413247859954,
+ 35.384509400294405
+ ],
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ],
+ [
+ -95.4413247859954,
+ 35.384509400294405
+ ],
+ [
+ -95.65270247513156,
+ 35.07125434607748
+ ],
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ],
+ [
+ -95.65270247513156,
+ 35.07125434607748
+ ],
+ [
+ -95.4413247859954,
+ 34.75799929186056
+ ],
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ],
+ [
+ -95.4413247859954,
+ 34.75799929186056
+ ],
+ [
+ -95.01856940772309,
+ 34.75799929186056
+ ],
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ],
+ [
+ -95.01856940772309,
+ 34.75799929186056
+ ],
+ [
+ -94.80719171858694,
+ 35.07125434607748
+ ],
+ [
+ -95.22994709685925,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ],
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ],
+ [
+ -95.01856940772309,
+ 36.01101950872826
+ ],
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ],
+ [
+ -95.01856940772309,
+ 36.01101950872826
+ ],
+ [
+ -95.4413247859954,
+ 36.01101950872826
+ ],
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ],
+ [
+ -95.4413247859954,
+ 36.01101950872826
+ ],
+ [
+ -95.65270247513156,
+ 35.697764454511336
+ ],
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ],
+ [
+ -95.65270247513156,
+ 35.697764454511336
+ ],
+ [
+ -95.4413247859954,
+ 35.38450940029441
+ ],
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ],
+ [
+ -95.4413247859954,
+ 35.38450940029441
+ ],
+ [
+ -95.01856940772309,
+ 35.38450940029441
+ ],
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ],
+ [
+ -95.01856940772309,
+ 35.38450940029441
+ ],
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ],
+ [
+ -95.22994709685925,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ],
+ [
+ -94.80719171858694,
+ 36.324274562945185
+ ],
+ [
+ -95.01856940772309,
+ 36.63752961716211
+ ],
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ],
+ [
+ -95.01856940772309,
+ 36.63752961716211
+ ],
+ [
+ -95.4413247859954,
+ 36.63752961716211
+ ],
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ],
+ [
+ -95.4413247859954,
+ 36.63752961716211
+ ],
+ [
+ -95.65270247513156,
+ 36.324274562945185
+ ],
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ],
+ [
+ -95.65270247513156,
+ 36.324274562945185
+ ],
+ [
+ -95.4413247859954,
+ 36.01101950872826
+ ],
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ],
+ [
+ -95.4413247859954,
+ 36.01101950872826
+ ],
+ [
+ -95.01856940772309,
+ 36.01101950872826
+ ],
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ],
+ [
+ -95.01856940772309,
+ 36.01101950872826
+ ],
+ [
+ -94.80719171858694,
+ 36.324274562945185
+ ],
+ [
+ -95.22994709685925,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ],
+ [
+ -94.80719171858694,
+ 36.95078467137904
+ ],
+ [
+ -95.01856940772309,
+ 37.264039725595964
+ ],
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ],
+ [
+ -95.01856940772309,
+ 37.264039725595964
+ ],
+ [
+ -95.4413247859954,
+ 37.264039725595964
+ ],
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ],
+ [
+ -95.4413247859954,
+ 37.264039725595964
+ ],
+ [
+ -95.65270247513156,
+ 36.95078467137904
+ ],
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ],
+ [
+ -95.65270247513156,
+ 36.95078467137904
+ ],
+ [
+ -95.4413247859954,
+ 36.637529617162116
+ ],
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ],
+ [
+ -95.4413247859954,
+ 36.637529617162116
+ ],
+ [
+ -95.01856940772309,
+ 36.637529617162116
+ ],
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ],
+ [
+ -95.01856940772309,
+ 36.637529617162116
+ ],
+ [
+ -94.80719171858694,
+ 36.95078467137904
+ ],
+ [
+ -95.22994709685925,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ],
+ [
+ -94.80719171858694,
+ 37.577294779812895
+ ],
+ [
+ -95.01856940772309,
+ 37.89054983402982
+ ],
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ],
+ [
+ -95.01856940772309,
+ 37.89054983402982
+ ],
+ [
+ -95.4413247859954,
+ 37.89054983402982
+ ],
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ],
+ [
+ -95.4413247859954,
+ 37.89054983402982
+ ],
+ [
+ -95.65270247513156,
+ 37.577294779812895
+ ],
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ],
+ [
+ -95.65270247513156,
+ 37.577294779812895
+ ],
+ [
+ -95.4413247859954,
+ 37.26403972559597
+ ],
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ],
+ [
+ -95.4413247859954,
+ 37.26403972559597
+ ],
+ [
+ -95.01856940772309,
+ 37.26403972559597
+ ],
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ],
+ [
+ -95.01856940772309,
+ 37.26403972559597
+ ],
+ [
+ -94.80719171858694,
+ 37.577294779812895
+ ],
+ [
+ -95.22994709685925,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ],
+ [
+ -94.80719171858694,
+ 38.20380488824675
+ ],
+ [
+ -95.01856940772309,
+ 38.517059942463675
+ ],
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ],
+ [
+ -95.01856940772309,
+ 38.517059942463675
+ ],
+ [
+ -95.4413247859954,
+ 38.517059942463675
+ ],
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ],
+ [
+ -95.4413247859954,
+ 38.517059942463675
+ ],
+ [
+ -95.65270247513156,
+ 38.20380488824675
+ ],
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ],
+ [
+ -95.65270247513156,
+ 38.20380488824675
+ ],
+ [
+ -95.4413247859954,
+ 37.89054983402983
+ ],
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ],
+ [
+ -95.4413247859954,
+ 37.89054983402983
+ ],
+ [
+ -95.01856940772309,
+ 37.89054983402983
+ ],
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ],
+ [
+ -95.01856940772309,
+ 37.89054983402983
+ ],
+ [
+ -94.80719171858694,
+ 38.20380488824675
+ ],
+ [
+ -95.22994709685925,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ],
+ [
+ -94.80719171858694,
+ 38.830314996680606
+ ],
+ [
+ -95.01856940772309,
+ 39.14357005089753
+ ],
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ],
+ [
+ -95.01856940772309,
+ 39.14357005089753
+ ],
+ [
+ -95.4413247859954,
+ 39.14357005089753
+ ],
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ],
+ [
+ -95.4413247859954,
+ 39.14357005089753
+ ],
+ [
+ -95.65270247513156,
+ 38.830314996680606
+ ],
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ],
+ [
+ -95.65270247513156,
+ 38.830314996680606
+ ],
+ [
+ -95.4413247859954,
+ 38.51705994246368
+ ],
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ],
+ [
+ -95.4413247859954,
+ 38.51705994246368
+ ],
+ [
+ -95.01856940772309,
+ 38.51705994246368
+ ],
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ],
+ [
+ -95.01856940772309,
+ 38.51705994246368
+ ],
+ [
+ -94.80719171858694,
+ 38.830314996680606
+ ],
+ [
+ -95.22994709685925,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ],
+ [
+ -94.80719171858694,
+ 39.45682510511446
+ ],
+ [
+ -95.01856940772309,
+ 39.770080159331386
+ ],
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ],
+ [
+ -95.01856940772309,
+ 39.770080159331386
+ ],
+ [
+ -95.4413247859954,
+ 39.770080159331386
+ ],
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ],
+ [
+ -95.4413247859954,
+ 39.770080159331386
+ ],
+ [
+ -95.65270247513156,
+ 39.45682510511446
+ ],
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ],
+ [
+ -95.65270247513156,
+ 39.45682510511446
+ ],
+ [
+ -95.4413247859954,
+ 39.14357005089754
+ ],
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ],
+ [
+ -95.4413247859954,
+ 39.14357005089754
+ ],
+ [
+ -95.01856940772309,
+ 39.14357005089754
+ ],
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ],
+ [
+ -95.01856940772309,
+ 39.14357005089754
+ ],
+ [
+ -94.80719171858694,
+ 39.45682510511446
+ ],
+ [
+ -95.22994709685925,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ],
+ [
+ -94.80719171858694,
+ 40.08333521354832
+ ],
+ [
+ -95.01856940772309,
+ 40.39659026776524
+ ],
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ],
+ [
+ -95.01856940772309,
+ 40.39659026776524
+ ],
+ [
+ -95.4413247859954,
+ 40.39659026776524
+ ],
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ],
+ [
+ -95.4413247859954,
+ 40.39659026776524
+ ],
+ [
+ -95.65270247513156,
+ 40.08333521354832
+ ],
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ],
+ [
+ -95.65270247513156,
+ 40.08333521354832
+ ],
+ [
+ -95.4413247859954,
+ 39.77008015933139
+ ],
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ],
+ [
+ -95.4413247859954,
+ 39.77008015933139
+ ],
+ [
+ -95.01856940772309,
+ 39.77008015933139
+ ],
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ],
+ [
+ -95.01856940772309,
+ 39.77008015933139
+ ],
+ [
+ -94.80719171858694,
+ 40.08333521354832
+ ],
+ [
+ -95.22994709685925,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ],
+ [
+ -94.80719171858694,
+ 40.70984532198217
+ ],
+ [
+ -95.01856940772309,
+ 41.023100376199096
+ ],
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ],
+ [
+ -95.01856940772309,
+ 41.023100376199096
+ ],
+ [
+ -95.4413247859954,
+ 41.023100376199096
+ ],
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ],
+ [
+ -95.4413247859954,
+ 41.023100376199096
+ ],
+ [
+ -95.65270247513156,
+ 40.70984532198217
+ ],
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ],
+ [
+ -95.65270247513156,
+ 40.70984532198217
+ ],
+ [
+ -95.4413247859954,
+ 40.39659026776525
+ ],
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ],
+ [
+ -95.4413247859954,
+ 40.39659026776525
+ ],
+ [
+ -95.01856940772309,
+ 40.39659026776525
+ ],
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ],
+ [
+ -95.01856940772309,
+ 40.39659026776525
+ ],
+ [
+ -94.80719171858694,
+ 40.70984532198217
+ ],
+ [
+ -95.22994709685925,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ],
+ [
+ -94.17305865117847,
+ 30.99893864125743
+ ],
+ [
+ -94.38443634031462,
+ 31.312193695474356
+ ],
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ],
+ [
+ -94.38443634031462,
+ 31.312193695474356
+ ],
+ [
+ -94.80719171858694,
+ 31.312193695474356
+ ],
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ],
+ [
+ -94.80719171858694,
+ 31.312193695474356
+ ],
+ [
+ -95.01856940772309,
+ 30.99893864125743
+ ],
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ],
+ [
+ -95.01856940772309,
+ 30.99893864125743
+ ],
+ [
+ -94.80719171858694,
+ 30.6856835870405
+ ],
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ],
+ [
+ -94.80719171858694,
+ 30.6856835870405
+ ],
+ [
+ -94.38443634031462,
+ 30.6856835870405
+ ],
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ],
+ [
+ -94.38443634031462,
+ 30.6856835870405
+ ],
+ [
+ -94.17305865117847,
+ 30.99893864125743
+ ],
+ [
+ -94.59581402945078,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ],
+ [
+ -94.17305865117847,
+ 31.62544874969128
+ ],
+ [
+ -94.38443634031462,
+ 31.938703803908208
+ ],
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ],
+ [
+ -94.38443634031462,
+ 31.938703803908208
+ ],
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ],
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ],
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ],
+ [
+ -95.01856940772309,
+ 31.62544874969128
+ ],
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ],
+ [
+ -95.01856940772309,
+ 31.62544874969128
+ ],
+ [
+ -94.80719171858694,
+ 31.312193695474352
+ ],
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ],
+ [
+ -94.80719171858694,
+ 31.312193695474352
+ ],
+ [
+ -94.38443634031462,
+ 31.312193695474352
+ ],
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ],
+ [
+ -94.38443634031462,
+ 31.312193695474352
+ ],
+ [
+ -94.17305865117847,
+ 31.62544874969128
+ ],
+ [
+ -94.59581402945078,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ],
+ [
+ -94.17305865117847,
+ 32.251958858125136
+ ],
+ [
+ -94.38443634031462,
+ 32.56521391234206
+ ],
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ],
+ [
+ -94.38443634031462,
+ 32.56521391234206
+ ],
+ [
+ -94.80719171858694,
+ 32.56521391234206
+ ],
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ],
+ [
+ -94.80719171858694,
+ 32.56521391234206
+ ],
+ [
+ -95.01856940772309,
+ 32.251958858125136
+ ],
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ],
+ [
+ -95.01856940772309,
+ 32.251958858125136
+ ],
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ],
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ],
+ [
+ -94.80719171858694,
+ 31.938703803908208
+ ],
+ [
+ -94.38443634031462,
+ 31.938703803908208
+ ],
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ],
+ [
+ -94.38443634031462,
+ 31.938703803908208
+ ],
+ [
+ -94.17305865117847,
+ 32.251958858125136
+ ],
+ [
+ -94.59581402945078,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ],
+ [
+ -94.17305865117847,
+ 32.87846896655899
+ ],
+ [
+ -94.38443634031462,
+ 33.191724020775915
+ ],
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ],
+ [
+ -94.38443634031462,
+ 33.191724020775915
+ ],
+ [
+ -94.80719171858694,
+ 33.191724020775915
+ ],
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ],
+ [
+ -94.80719171858694,
+ 33.191724020775915
+ ],
+ [
+ -95.01856940772309,
+ 32.87846896655899
+ ],
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ],
+ [
+ -95.01856940772309,
+ 32.87846896655899
+ ],
+ [
+ -94.80719171858694,
+ 32.56521391234207
+ ],
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ],
+ [
+ -94.80719171858694,
+ 32.56521391234207
+ ],
+ [
+ -94.38443634031462,
+ 32.56521391234207
+ ],
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ],
+ [
+ -94.38443634031462,
+ 32.56521391234207
+ ],
+ [
+ -94.17305865117847,
+ 32.87846896655899
+ ],
+ [
+ -94.59581402945078,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ],
+ [
+ -94.17305865117847,
+ 33.504979074992846
+ ],
+ [
+ -94.38443634031462,
+ 33.81823412920977
+ ],
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ],
+ [
+ -94.38443634031462,
+ 33.81823412920977
+ ],
+ [
+ -94.80719171858694,
+ 33.81823412920977
+ ],
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ],
+ [
+ -94.80719171858694,
+ 33.81823412920977
+ ],
+ [
+ -95.01856940772309,
+ 33.504979074992846
+ ],
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ],
+ [
+ -95.01856940772309,
+ 33.504979074992846
+ ],
+ [
+ -94.80719171858694,
+ 33.19172402077592
+ ],
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ],
+ [
+ -94.80719171858694,
+ 33.19172402077592
+ ],
+ [
+ -94.38443634031462,
+ 33.19172402077592
+ ],
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ],
+ [
+ -94.38443634031462,
+ 33.19172402077592
+ ],
+ [
+ -94.17305865117847,
+ 33.504979074992846
+ ],
+ [
+ -94.59581402945078,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ],
+ [
+ -94.17305865117847,
+ 34.1314891834267
+ ],
+ [
+ -94.38443634031462,
+ 34.444744237643626
+ ],
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ],
+ [
+ -94.38443634031462,
+ 34.444744237643626
+ ],
+ [
+ -94.80719171858694,
+ 34.444744237643626
+ ],
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ],
+ [
+ -94.80719171858694,
+ 34.444744237643626
+ ],
+ [
+ -95.01856940772309,
+ 34.1314891834267
+ ],
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ],
+ [
+ -95.01856940772309,
+ 34.1314891834267
+ ],
+ [
+ -94.80719171858694,
+ 33.81823412920978
+ ],
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ],
+ [
+ -94.80719171858694,
+ 33.81823412920978
+ ],
+ [
+ -94.38443634031462,
+ 33.81823412920978
+ ],
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ],
+ [
+ -94.38443634031462,
+ 33.81823412920978
+ ],
+ [
+ -94.17305865117847,
+ 34.1314891834267
+ ],
+ [
+ -94.59581402945078,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ],
+ [
+ -94.17305865117847,
+ 34.75799929186056
+ ],
+ [
+ -94.38443634031462,
+ 35.07125434607748
+ ],
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ],
+ [
+ -94.38443634031462,
+ 35.07125434607748
+ ],
+ [
+ -94.80719171858694,
+ 35.07125434607748
+ ],
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ],
+ [
+ -94.80719171858694,
+ 35.07125434607748
+ ],
+ [
+ -95.01856940772309,
+ 34.75799929186056
+ ],
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ],
+ [
+ -95.01856940772309,
+ 34.75799929186056
+ ],
+ [
+ -94.80719171858694,
+ 34.44474423764363
+ ],
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ],
+ [
+ -94.80719171858694,
+ 34.44474423764363
+ ],
+ [
+ -94.38443634031462,
+ 34.44474423764363
+ ],
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ],
+ [
+ -94.38443634031462,
+ 34.44474423764363
+ ],
+ [
+ -94.17305865117847,
+ 34.75799929186056
+ ],
+ [
+ -94.59581402945078,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ],
+ [
+ -94.17305865117847,
+ 35.38450940029441
+ ],
+ [
+ -94.38443634031462,
+ 35.697764454511336
+ ],
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ],
+ [
+ -94.38443634031462,
+ 35.697764454511336
+ ],
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ],
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ],
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ],
+ [
+ -95.01856940772309,
+ 35.38450940029441
+ ],
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ],
+ [
+ -95.01856940772309,
+ 35.38450940029441
+ ],
+ [
+ -94.80719171858694,
+ 35.07125434607749
+ ],
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ],
+ [
+ -94.80719171858694,
+ 35.07125434607749
+ ],
+ [
+ -94.38443634031462,
+ 35.07125434607749
+ ],
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ],
+ [
+ -94.38443634031462,
+ 35.07125434607749
+ ],
+ [
+ -94.17305865117847,
+ 35.38450940029441
+ ],
+ [
+ -94.59581402945078,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ],
+ [
+ -94.17305865117847,
+ 36.01101950872826
+ ],
+ [
+ -94.38443634031462,
+ 36.324274562945185
+ ],
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ],
+ [
+ -94.38443634031462,
+ 36.324274562945185
+ ],
+ [
+ -94.80719171858694,
+ 36.324274562945185
+ ],
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ],
+ [
+ -94.80719171858694,
+ 36.324274562945185
+ ],
+ [
+ -95.01856940772309,
+ 36.01101950872826
+ ],
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ],
+ [
+ -95.01856940772309,
+ 36.01101950872826
+ ],
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ],
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ],
+ [
+ -94.80719171858694,
+ 35.697764454511336
+ ],
+ [
+ -94.38443634031462,
+ 35.697764454511336
+ ],
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ],
+ [
+ -94.38443634031462,
+ 35.697764454511336
+ ],
+ [
+ -94.17305865117847,
+ 36.01101950872826
+ ],
+ [
+ -94.59581402945078,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ],
+ [
+ -94.17305865117847,
+ 36.637529617162116
+ ],
+ [
+ -94.38443634031462,
+ 36.95078467137904
+ ],
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ],
+ [
+ -94.38443634031462,
+ 36.95078467137904
+ ],
+ [
+ -94.80719171858694,
+ 36.95078467137904
+ ],
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ],
+ [
+ -94.80719171858694,
+ 36.95078467137904
+ ],
+ [
+ -95.01856940772309,
+ 36.637529617162116
+ ],
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ],
+ [
+ -95.01856940772309,
+ 36.637529617162116
+ ],
+ [
+ -94.80719171858694,
+ 36.32427456294519
+ ],
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ],
+ [
+ -94.80719171858694,
+ 36.32427456294519
+ ],
+ [
+ -94.38443634031462,
+ 36.32427456294519
+ ],
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ],
+ [
+ -94.38443634031462,
+ 36.32427456294519
+ ],
+ [
+ -94.17305865117847,
+ 36.637529617162116
+ ],
+ [
+ -94.59581402945078,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ],
+ [
+ -94.17305865117847,
+ 37.26403972559597
+ ],
+ [
+ -94.38443634031462,
+ 37.577294779812895
+ ],
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ],
+ [
+ -94.38443634031462,
+ 37.577294779812895
+ ],
+ [
+ -94.80719171858694,
+ 37.577294779812895
+ ],
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ],
+ [
+ -94.80719171858694,
+ 37.577294779812895
+ ],
+ [
+ -95.01856940772309,
+ 37.26403972559597
+ ],
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ],
+ [
+ -95.01856940772309,
+ 37.26403972559597
+ ],
+ [
+ -94.80719171858694,
+ 36.95078467137905
+ ],
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ],
+ [
+ -94.80719171858694,
+ 36.95078467137905
+ ],
+ [
+ -94.38443634031462,
+ 36.95078467137905
+ ],
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ],
+ [
+ -94.38443634031462,
+ 36.95078467137905
+ ],
+ [
+ -94.17305865117847,
+ 37.26403972559597
+ ],
+ [
+ -94.59581402945078,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ],
+ [
+ -94.17305865117847,
+ 37.89054983402983
+ ],
+ [
+ -94.38443634031462,
+ 38.20380488824675
+ ],
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ],
+ [
+ -94.38443634031462,
+ 38.20380488824675
+ ],
+ [
+ -94.80719171858694,
+ 38.20380488824675
+ ],
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ],
+ [
+ -94.80719171858694,
+ 38.20380488824675
+ ],
+ [
+ -95.01856940772309,
+ 37.89054983402983
+ ],
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ],
+ [
+ -95.01856940772309,
+ 37.89054983402983
+ ],
+ [
+ -94.80719171858694,
+ 37.5772947798129
+ ],
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ],
+ [
+ -94.80719171858694,
+ 37.5772947798129
+ ],
+ [
+ -94.38443634031462,
+ 37.5772947798129
+ ],
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ],
+ [
+ -94.38443634031462,
+ 37.5772947798129
+ ],
+ [
+ -94.17305865117847,
+ 37.89054983402983
+ ],
+ [
+ -94.59581402945078,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ],
+ [
+ -94.17305865117847,
+ 38.51705994246368
+ ],
+ [
+ -94.38443634031462,
+ 38.830314996680606
+ ],
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ],
+ [
+ -94.38443634031462,
+ 38.830314996680606
+ ],
+ [
+ -94.80719171858694,
+ 38.830314996680606
+ ],
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ],
+ [
+ -94.80719171858694,
+ 38.830314996680606
+ ],
+ [
+ -95.01856940772309,
+ 38.51705994246368
+ ],
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ],
+ [
+ -95.01856940772309,
+ 38.51705994246368
+ ],
+ [
+ -94.80719171858694,
+ 38.20380488824676
+ ],
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ],
+ [
+ -94.80719171858694,
+ 38.20380488824676
+ ],
+ [
+ -94.38443634031462,
+ 38.20380488824676
+ ],
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ],
+ [
+ -94.38443634031462,
+ 38.20380488824676
+ ],
+ [
+ -94.17305865117847,
+ 38.51705994246368
+ ],
+ [
+ -94.59581402945078,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ],
+ [
+ -94.17305865117847,
+ 39.14357005089754
+ ],
+ [
+ -94.38443634031462,
+ 39.45682510511446
+ ],
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ],
+ [
+ -94.38443634031462,
+ 39.45682510511446
+ ],
+ [
+ -94.80719171858694,
+ 39.45682510511446
+ ],
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ],
+ [
+ -94.80719171858694,
+ 39.45682510511446
+ ],
+ [
+ -95.01856940772309,
+ 39.14357005089754
+ ],
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ],
+ [
+ -95.01856940772309,
+ 39.14357005089754
+ ],
+ [
+ -94.80719171858694,
+ 38.83031499668061
+ ],
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ],
+ [
+ -94.80719171858694,
+ 38.83031499668061
+ ],
+ [
+ -94.38443634031462,
+ 38.83031499668061
+ ],
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ],
+ [
+ -94.38443634031462,
+ 38.83031499668061
+ ],
+ [
+ -94.17305865117847,
+ 39.14357005089754
+ ],
+ [
+ -94.59581402945078,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ],
+ [
+ -94.17305865117847,
+ 39.77008015933139
+ ],
+ [
+ -94.38443634031462,
+ 40.08333521354832
+ ],
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ],
+ [
+ -94.38443634031462,
+ 40.08333521354832
+ ],
+ [
+ -94.80719171858694,
+ 40.08333521354832
+ ],
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ],
+ [
+ -94.80719171858694,
+ 40.08333521354832
+ ],
+ [
+ -95.01856940772309,
+ 39.77008015933139
+ ],
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ],
+ [
+ -95.01856940772309,
+ 39.77008015933139
+ ],
+ [
+ -94.80719171858694,
+ 39.45682510511447
+ ],
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ],
+ [
+ -94.80719171858694,
+ 39.45682510511447
+ ],
+ [
+ -94.38443634031462,
+ 39.45682510511447
+ ],
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ],
+ [
+ -94.38443634031462,
+ 39.45682510511447
+ ],
+ [
+ -94.17305865117847,
+ 39.77008015933139
+ ],
+ [
+ -94.59581402945078,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ],
+ [
+ -94.17305865117847,
+ 40.39659026776525
+ ],
+ [
+ -94.38443634031462,
+ 40.70984532198217
+ ],
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ],
+ [
+ -94.38443634031462,
+ 40.70984532198217
+ ],
+ [
+ -94.80719171858694,
+ 40.70984532198217
+ ],
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ],
+ [
+ -94.80719171858694,
+ 40.70984532198217
+ ],
+ [
+ -95.01856940772309,
+ 40.39659026776525
+ ],
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ],
+ [
+ -95.01856940772309,
+ 40.39659026776525
+ ],
+ [
+ -94.80719171858694,
+ 40.083335213548324
+ ],
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ],
+ [
+ -94.80719171858694,
+ 40.083335213548324
+ ],
+ [
+ -94.38443634031462,
+ 40.083335213548324
+ ],
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ],
+ [
+ -94.38443634031462,
+ 40.083335213548324
+ ],
+ [
+ -94.17305865117847,
+ 40.39659026776525
+ ],
+ [
+ -94.59581402945078,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ],
+ [
+ -93.53892558377001,
+ 31.312193695474356
+ ],
+ [
+ -93.75030327290617,
+ 31.625448749691284
+ ],
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ],
+ [
+ -93.75030327290617,
+ 31.625448749691284
+ ],
+ [
+ -94.17305865117848,
+ 31.625448749691284
+ ],
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ],
+ [
+ -94.17305865117848,
+ 31.625448749691284
+ ],
+ [
+ -94.38443634031464,
+ 31.312193695474356
+ ],
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ],
+ [
+ -94.38443634031464,
+ 31.312193695474356
+ ],
+ [
+ -94.17305865117848,
+ 30.99893864125743
+ ],
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ],
+ [
+ -94.17305865117848,
+ 30.99893864125743
+ ],
+ [
+ -93.75030327290617,
+ 30.99893864125743
+ ],
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ],
+ [
+ -93.75030327290617,
+ 30.99893864125743
+ ],
+ [
+ -93.53892558377001,
+ 31.312193695474356
+ ],
+ [
+ -93.96168096204232,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ],
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ],
+ [
+ -93.75030327290617,
+ 32.251958858125136
+ ],
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ],
+ [
+ -93.75030327290617,
+ 32.251958858125136
+ ],
+ [
+ -94.17305865117848,
+ 32.251958858125136
+ ],
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ],
+ [
+ -94.17305865117848,
+ 32.251958858125136
+ ],
+ [
+ -94.38443634031464,
+ 31.938703803908208
+ ],
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ],
+ [
+ -94.38443634031464,
+ 31.938703803908208
+ ],
+ [
+ -94.17305865117848,
+ 31.62544874969128
+ ],
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ],
+ [
+ -94.17305865117848,
+ 31.62544874969128
+ ],
+ [
+ -93.75030327290617,
+ 31.62544874969128
+ ],
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ],
+ [
+ -93.75030327290617,
+ 31.62544874969128
+ ],
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ],
+ [
+ -93.96168096204232,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ],
+ [
+ -93.53892558377001,
+ 32.56521391234206
+ ],
+ [
+ -93.75030327290617,
+ 32.878468966558984
+ ],
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ],
+ [
+ -93.75030327290617,
+ 32.878468966558984
+ ],
+ [
+ -94.17305865117848,
+ 32.878468966558984
+ ],
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ],
+ [
+ -94.17305865117848,
+ 32.878468966558984
+ ],
+ [
+ -94.38443634031464,
+ 32.56521391234206
+ ],
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ],
+ [
+ -94.38443634031464,
+ 32.56521391234206
+ ],
+ [
+ -94.17305865117848,
+ 32.251958858125136
+ ],
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ],
+ [
+ -94.17305865117848,
+ 32.251958858125136
+ ],
+ [
+ -93.75030327290617,
+ 32.251958858125136
+ ],
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ],
+ [
+ -93.75030327290617,
+ 32.251958858125136
+ ],
+ [
+ -93.53892558377001,
+ 32.56521391234206
+ ],
+ [
+ -93.96168096204232,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ],
+ [
+ -93.53892558377001,
+ 33.191724020775915
+ ],
+ [
+ -93.75030327290617,
+ 33.50497907499284
+ ],
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ],
+ [
+ -93.75030327290617,
+ 33.50497907499284
+ ],
+ [
+ -94.17305865117848,
+ 33.50497907499284
+ ],
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ],
+ [
+ -94.17305865117848,
+ 33.50497907499284
+ ],
+ [
+ -94.38443634031464,
+ 33.191724020775915
+ ],
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ],
+ [
+ -94.38443634031464,
+ 33.191724020775915
+ ],
+ [
+ -94.17305865117848,
+ 32.87846896655899
+ ],
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ],
+ [
+ -94.17305865117848,
+ 32.87846896655899
+ ],
+ [
+ -93.75030327290617,
+ 32.87846896655899
+ ],
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ],
+ [
+ -93.75030327290617,
+ 32.87846896655899
+ ],
+ [
+ -93.53892558377001,
+ 33.191724020775915
+ ],
+ [
+ -93.96168096204232,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ],
+ [
+ -93.53892558377001,
+ 33.81823412920977
+ ],
+ [
+ -93.75030327290617,
+ 34.131489183426694
+ ],
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ],
+ [
+ -93.75030327290617,
+ 34.131489183426694
+ ],
+ [
+ -94.17305865117848,
+ 34.131489183426694
+ ],
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ],
+ [
+ -94.17305865117848,
+ 34.131489183426694
+ ],
+ [
+ -94.38443634031464,
+ 33.81823412920977
+ ],
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ],
+ [
+ -94.38443634031464,
+ 33.81823412920977
+ ],
+ [
+ -94.17305865117848,
+ 33.504979074992846
+ ],
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ],
+ [
+ -94.17305865117848,
+ 33.504979074992846
+ ],
+ [
+ -93.75030327290617,
+ 33.504979074992846
+ ],
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ],
+ [
+ -93.75030327290617,
+ 33.504979074992846
+ ],
+ [
+ -93.53892558377001,
+ 33.81823412920977
+ ],
+ [
+ -93.96168096204232,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ],
+ [
+ -93.53892558377001,
+ 34.444744237643626
+ ],
+ [
+ -93.75030327290617,
+ 34.75799929186055
+ ],
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ],
+ [
+ -93.75030327290617,
+ 34.75799929186055
+ ],
+ [
+ -94.17305865117848,
+ 34.75799929186055
+ ],
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ],
+ [
+ -94.17305865117848,
+ 34.75799929186055
+ ],
+ [
+ -94.38443634031464,
+ 34.444744237643626
+ ],
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ],
+ [
+ -94.38443634031464,
+ 34.444744237643626
+ ],
+ [
+ -94.17305865117848,
+ 34.1314891834267
+ ],
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ],
+ [
+ -94.17305865117848,
+ 34.1314891834267
+ ],
+ [
+ -93.75030327290617,
+ 34.1314891834267
+ ],
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ],
+ [
+ -93.75030327290617,
+ 34.1314891834267
+ ],
+ [
+ -93.53892558377001,
+ 34.444744237643626
+ ],
+ [
+ -93.96168096204232,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ],
+ [
+ -93.53892558377001,
+ 35.07125434607748
+ ],
+ [
+ -93.75030327290617,
+ 35.384509400294405
+ ],
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ],
+ [
+ -93.75030327290617,
+ 35.384509400294405
+ ],
+ [
+ -94.17305865117848,
+ 35.384509400294405
+ ],
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ],
+ [
+ -94.17305865117848,
+ 35.384509400294405
+ ],
+ [
+ -94.38443634031464,
+ 35.07125434607748
+ ],
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ],
+ [
+ -94.38443634031464,
+ 35.07125434607748
+ ],
+ [
+ -94.17305865117848,
+ 34.75799929186056
+ ],
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ],
+ [
+ -94.17305865117848,
+ 34.75799929186056
+ ],
+ [
+ -93.75030327290617,
+ 34.75799929186056
+ ],
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ],
+ [
+ -93.75030327290617,
+ 34.75799929186056
+ ],
+ [
+ -93.53892558377001,
+ 35.07125434607748
+ ],
+ [
+ -93.96168096204232,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ],
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ],
+ [
+ -93.75030327290617,
+ 36.01101950872826
+ ],
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ],
+ [
+ -93.75030327290617,
+ 36.01101950872826
+ ],
+ [
+ -94.17305865117848,
+ 36.01101950872826
+ ],
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ],
+ [
+ -94.17305865117848,
+ 36.01101950872826
+ ],
+ [
+ -94.38443634031464,
+ 35.697764454511336
+ ],
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ],
+ [
+ -94.38443634031464,
+ 35.697764454511336
+ ],
+ [
+ -94.17305865117848,
+ 35.38450940029441
+ ],
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ],
+ [
+ -94.17305865117848,
+ 35.38450940029441
+ ],
+ [
+ -93.75030327290617,
+ 35.38450940029441
+ ],
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ],
+ [
+ -93.75030327290617,
+ 35.38450940029441
+ ],
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ],
+ [
+ -93.96168096204232,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ],
+ [
+ -93.53892558377001,
+ 36.324274562945185
+ ],
+ [
+ -93.75030327290617,
+ 36.63752961716211
+ ],
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ],
+ [
+ -93.75030327290617,
+ 36.63752961716211
+ ],
+ [
+ -94.17305865117848,
+ 36.63752961716211
+ ],
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ],
+ [
+ -94.17305865117848,
+ 36.63752961716211
+ ],
+ [
+ -94.38443634031464,
+ 36.324274562945185
+ ],
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ],
+ [
+ -94.38443634031464,
+ 36.324274562945185
+ ],
+ [
+ -94.17305865117848,
+ 36.01101950872826
+ ],
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ],
+ [
+ -94.17305865117848,
+ 36.01101950872826
+ ],
+ [
+ -93.75030327290617,
+ 36.01101950872826
+ ],
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ],
+ [
+ -93.75030327290617,
+ 36.01101950872826
+ ],
+ [
+ -93.53892558377001,
+ 36.324274562945185
+ ],
+ [
+ -93.96168096204232,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ],
+ [
+ -93.53892558377001,
+ 36.95078467137904
+ ],
+ [
+ -93.75030327290617,
+ 37.264039725595964
+ ],
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ],
+ [
+ -93.75030327290617,
+ 37.264039725595964
+ ],
+ [
+ -94.17305865117848,
+ 37.264039725595964
+ ],
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ],
+ [
+ -94.17305865117848,
+ 37.264039725595964
+ ],
+ [
+ -94.38443634031464,
+ 36.95078467137904
+ ],
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ],
+ [
+ -94.38443634031464,
+ 36.95078467137904
+ ],
+ [
+ -94.17305865117848,
+ 36.637529617162116
+ ],
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ],
+ [
+ -94.17305865117848,
+ 36.637529617162116
+ ],
+ [
+ -93.75030327290617,
+ 36.637529617162116
+ ],
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ],
+ [
+ -93.75030327290617,
+ 36.637529617162116
+ ],
+ [
+ -93.53892558377001,
+ 36.95078467137904
+ ],
+ [
+ -93.96168096204232,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ],
+ [
+ -93.53892558377001,
+ 37.577294779812895
+ ],
+ [
+ -93.75030327290617,
+ 37.89054983402982
+ ],
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ],
+ [
+ -93.75030327290617,
+ 37.89054983402982
+ ],
+ [
+ -94.17305865117848,
+ 37.89054983402982
+ ],
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ],
+ [
+ -94.17305865117848,
+ 37.89054983402982
+ ],
+ [
+ -94.38443634031464,
+ 37.577294779812895
+ ],
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ],
+ [
+ -94.38443634031464,
+ 37.577294779812895
+ ],
+ [
+ -94.17305865117848,
+ 37.26403972559597
+ ],
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ],
+ [
+ -94.17305865117848,
+ 37.26403972559597
+ ],
+ [
+ -93.75030327290617,
+ 37.26403972559597
+ ],
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ],
+ [
+ -93.75030327290617,
+ 37.26403972559597
+ ],
+ [
+ -93.53892558377001,
+ 37.577294779812895
+ ],
+ [
+ -93.96168096204232,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ],
+ [
+ -93.53892558377001,
+ 38.20380488824675
+ ],
+ [
+ -93.75030327290617,
+ 38.517059942463675
+ ],
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ],
+ [
+ -93.75030327290617,
+ 38.517059942463675
+ ],
+ [
+ -94.17305865117848,
+ 38.517059942463675
+ ],
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ],
+ [
+ -94.17305865117848,
+ 38.517059942463675
+ ],
+ [
+ -94.38443634031464,
+ 38.20380488824675
+ ],
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ],
+ [
+ -94.38443634031464,
+ 38.20380488824675
+ ],
+ [
+ -94.17305865117848,
+ 37.89054983402983
+ ],
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ],
+ [
+ -94.17305865117848,
+ 37.89054983402983
+ ],
+ [
+ -93.75030327290617,
+ 37.89054983402983
+ ],
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ],
+ [
+ -93.75030327290617,
+ 37.89054983402983
+ ],
+ [
+ -93.53892558377001,
+ 38.20380488824675
+ ],
+ [
+ -93.96168096204232,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ],
+ [
+ -93.53892558377001,
+ 38.830314996680606
+ ],
+ [
+ -93.75030327290617,
+ 39.14357005089753
+ ],
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ],
+ [
+ -93.75030327290617,
+ 39.14357005089753
+ ],
+ [
+ -94.17305865117848,
+ 39.14357005089753
+ ],
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ],
+ [
+ -94.17305865117848,
+ 39.14357005089753
+ ],
+ [
+ -94.38443634031464,
+ 38.830314996680606
+ ],
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ],
+ [
+ -94.38443634031464,
+ 38.830314996680606
+ ],
+ [
+ -94.17305865117848,
+ 38.51705994246368
+ ],
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ],
+ [
+ -94.17305865117848,
+ 38.51705994246368
+ ],
+ [
+ -93.75030327290617,
+ 38.51705994246368
+ ],
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ],
+ [
+ -93.75030327290617,
+ 38.51705994246368
+ ],
+ [
+ -93.53892558377001,
+ 38.830314996680606
+ ],
+ [
+ -93.96168096204232,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ],
+ [
+ -93.53892558377001,
+ 39.45682510511446
+ ],
+ [
+ -93.75030327290617,
+ 39.770080159331386
+ ],
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ],
+ [
+ -93.75030327290617,
+ 39.770080159331386
+ ],
+ [
+ -94.17305865117848,
+ 39.770080159331386
+ ],
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ],
+ [
+ -94.17305865117848,
+ 39.770080159331386
+ ],
+ [
+ -94.38443634031464,
+ 39.45682510511446
+ ],
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ],
+ [
+ -94.38443634031464,
+ 39.45682510511446
+ ],
+ [
+ -94.17305865117848,
+ 39.14357005089754
+ ],
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ],
+ [
+ -94.17305865117848,
+ 39.14357005089754
+ ],
+ [
+ -93.75030327290617,
+ 39.14357005089754
+ ],
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ],
+ [
+ -93.75030327290617,
+ 39.14357005089754
+ ],
+ [
+ -93.53892558377001,
+ 39.45682510511446
+ ],
+ [
+ -93.96168096204232,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ],
+ [
+ -93.53892558377001,
+ 40.08333521354832
+ ],
+ [
+ -93.75030327290617,
+ 40.39659026776524
+ ],
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ],
+ [
+ -93.75030327290617,
+ 40.39659026776524
+ ],
+ [
+ -94.17305865117848,
+ 40.39659026776524
+ ],
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ],
+ [
+ -94.17305865117848,
+ 40.39659026776524
+ ],
+ [
+ -94.38443634031464,
+ 40.08333521354832
+ ],
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ],
+ [
+ -94.38443634031464,
+ 40.08333521354832
+ ],
+ [
+ -94.17305865117848,
+ 39.77008015933139
+ ],
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ],
+ [
+ -94.17305865117848,
+ 39.77008015933139
+ ],
+ [
+ -93.75030327290617,
+ 39.77008015933139
+ ],
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ],
+ [
+ -93.75030327290617,
+ 39.77008015933139
+ ],
+ [
+ -93.53892558377001,
+ 40.08333521354832
+ ],
+ [
+ -93.96168096204232,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ],
+ [
+ -93.53892558377001,
+ 40.70984532198217
+ ],
+ [
+ -93.75030327290617,
+ 41.023100376199096
+ ],
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ],
+ [
+ -93.75030327290617,
+ 41.023100376199096
+ ],
+ [
+ -94.17305865117848,
+ 41.023100376199096
+ ],
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ],
+ [
+ -94.17305865117848,
+ 41.023100376199096
+ ],
+ [
+ -94.38443634031464,
+ 40.70984532198217
+ ],
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ],
+ [
+ -94.38443634031464,
+ 40.70984532198217
+ ],
+ [
+ -94.17305865117848,
+ 40.39659026776525
+ ],
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ],
+ [
+ -94.17305865117848,
+ 40.39659026776525
+ ],
+ [
+ -93.75030327290617,
+ 40.39659026776525
+ ],
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ],
+ [
+ -93.75030327290617,
+ 40.39659026776525
+ ],
+ [
+ -93.53892558377001,
+ 40.70984532198217
+ ],
+ [
+ -93.96168096204232,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ],
+ [
+ -92.90479251636154,
+ 30.99893864125743
+ ],
+ [
+ -93.1161702054977,
+ 31.312193695474356
+ ],
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ],
+ [
+ -93.1161702054977,
+ 31.312193695474356
+ ],
+ [
+ -93.53892558377001,
+ 31.312193695474356
+ ],
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ],
+ [
+ -93.53892558377001,
+ 31.312193695474356
+ ],
+ [
+ -93.75030327290617,
+ 30.99893864125743
+ ],
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ],
+ [
+ -93.75030327290617,
+ 30.99893864125743
+ ],
+ [
+ -93.53892558377001,
+ 30.6856835870405
+ ],
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ],
+ [
+ -93.53892558377001,
+ 30.6856835870405
+ ],
+ [
+ -93.1161702054977,
+ 30.6856835870405
+ ],
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ],
+ [
+ -93.1161702054977,
+ 30.6856835870405
+ ],
+ [
+ -92.90479251636154,
+ 30.99893864125743
+ ],
+ [
+ -93.32754789463385,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ],
+ [
+ -92.90479251636154,
+ 31.62544874969128
+ ],
+ [
+ -93.1161702054977,
+ 31.938703803908208
+ ],
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ],
+ [
+ -93.1161702054977,
+ 31.938703803908208
+ ],
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ],
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ],
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ],
+ [
+ -93.75030327290617,
+ 31.62544874969128
+ ],
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ],
+ [
+ -93.75030327290617,
+ 31.62544874969128
+ ],
+ [
+ -93.53892558377001,
+ 31.312193695474352
+ ],
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ],
+ [
+ -93.53892558377001,
+ 31.312193695474352
+ ],
+ [
+ -93.1161702054977,
+ 31.312193695474352
+ ],
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ],
+ [
+ -93.1161702054977,
+ 31.312193695474352
+ ],
+ [
+ -92.90479251636154,
+ 31.62544874969128
+ ],
+ [
+ -93.32754789463385,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ],
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ],
+ [
+ -93.1161702054977,
+ 32.56521391234206
+ ],
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ],
+ [
+ -93.1161702054977,
+ 32.56521391234206
+ ],
+ [
+ -93.53892558377001,
+ 32.56521391234206
+ ],
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ],
+ [
+ -93.53892558377001,
+ 32.56521391234206
+ ],
+ [
+ -93.75030327290617,
+ 32.251958858125136
+ ],
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ],
+ [
+ -93.75030327290617,
+ 32.251958858125136
+ ],
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ],
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ],
+ [
+ -93.53892558377001,
+ 31.938703803908208
+ ],
+ [
+ -93.1161702054977,
+ 31.938703803908208
+ ],
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ],
+ [
+ -93.1161702054977,
+ 31.938703803908208
+ ],
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ],
+ [
+ -93.32754789463385,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ],
+ [
+ -92.90479251636154,
+ 32.87846896655899
+ ],
+ [
+ -93.1161702054977,
+ 33.191724020775915
+ ],
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ],
+ [
+ -93.1161702054977,
+ 33.191724020775915
+ ],
+ [
+ -93.53892558377001,
+ 33.191724020775915
+ ],
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ],
+ [
+ -93.53892558377001,
+ 33.191724020775915
+ ],
+ [
+ -93.75030327290617,
+ 32.87846896655899
+ ],
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ],
+ [
+ -93.75030327290617,
+ 32.87846896655899
+ ],
+ [
+ -93.53892558377001,
+ 32.56521391234207
+ ],
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ],
+ [
+ -93.53892558377001,
+ 32.56521391234207
+ ],
+ [
+ -93.1161702054977,
+ 32.56521391234207
+ ],
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ],
+ [
+ -93.1161702054977,
+ 32.56521391234207
+ ],
+ [
+ -92.90479251636154,
+ 32.87846896655899
+ ],
+ [
+ -93.32754789463385,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ],
+ [
+ -92.90479251636154,
+ 33.504979074992846
+ ],
+ [
+ -93.1161702054977,
+ 33.81823412920977
+ ],
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ],
+ [
+ -93.1161702054977,
+ 33.81823412920977
+ ],
+ [
+ -93.53892558377001,
+ 33.81823412920977
+ ],
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ],
+ [
+ -93.53892558377001,
+ 33.81823412920977
+ ],
+ [
+ -93.75030327290617,
+ 33.504979074992846
+ ],
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ],
+ [
+ -93.75030327290617,
+ 33.504979074992846
+ ],
+ [
+ -93.53892558377001,
+ 33.19172402077592
+ ],
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ],
+ [
+ -93.53892558377001,
+ 33.19172402077592
+ ],
+ [
+ -93.1161702054977,
+ 33.19172402077592
+ ],
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ],
+ [
+ -93.1161702054977,
+ 33.19172402077592
+ ],
+ [
+ -92.90479251636154,
+ 33.504979074992846
+ ],
+ [
+ -93.32754789463385,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ],
+ [
+ -92.90479251636154,
+ 34.1314891834267
+ ],
+ [
+ -93.1161702054977,
+ 34.444744237643626
+ ],
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ],
+ [
+ -93.1161702054977,
+ 34.444744237643626
+ ],
+ [
+ -93.53892558377001,
+ 34.444744237643626
+ ],
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ],
+ [
+ -93.53892558377001,
+ 34.444744237643626
+ ],
+ [
+ -93.75030327290617,
+ 34.1314891834267
+ ],
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ],
+ [
+ -93.75030327290617,
+ 34.1314891834267
+ ],
+ [
+ -93.53892558377001,
+ 33.81823412920978
+ ],
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ],
+ [
+ -93.53892558377001,
+ 33.81823412920978
+ ],
+ [
+ -93.1161702054977,
+ 33.81823412920978
+ ],
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ],
+ [
+ -93.1161702054977,
+ 33.81823412920978
+ ],
+ [
+ -92.90479251636154,
+ 34.1314891834267
+ ],
+ [
+ -93.32754789463385,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ],
+ [
+ -92.90479251636154,
+ 34.75799929186056
+ ],
+ [
+ -93.1161702054977,
+ 35.07125434607748
+ ],
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ],
+ [
+ -93.1161702054977,
+ 35.07125434607748
+ ],
+ [
+ -93.53892558377001,
+ 35.07125434607748
+ ],
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ],
+ [
+ -93.53892558377001,
+ 35.07125434607748
+ ],
+ [
+ -93.75030327290617,
+ 34.75799929186056
+ ],
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ],
+ [
+ -93.75030327290617,
+ 34.75799929186056
+ ],
+ [
+ -93.53892558377001,
+ 34.44474423764363
+ ],
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ],
+ [
+ -93.53892558377001,
+ 34.44474423764363
+ ],
+ [
+ -93.1161702054977,
+ 34.44474423764363
+ ],
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ],
+ [
+ -93.1161702054977,
+ 34.44474423764363
+ ],
+ [
+ -92.90479251636154,
+ 34.75799929186056
+ ],
+ [
+ -93.32754789463385,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ],
+ [
+ -92.90479251636154,
+ 35.38450940029441
+ ],
+ [
+ -93.1161702054977,
+ 35.697764454511336
+ ],
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ],
+ [
+ -93.1161702054977,
+ 35.697764454511336
+ ],
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ],
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ],
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ],
+ [
+ -93.75030327290617,
+ 35.38450940029441
+ ],
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ],
+ [
+ -93.75030327290617,
+ 35.38450940029441
+ ],
+ [
+ -93.53892558377001,
+ 35.07125434607749
+ ],
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ],
+ [
+ -93.53892558377001,
+ 35.07125434607749
+ ],
+ [
+ -93.1161702054977,
+ 35.07125434607749
+ ],
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ],
+ [
+ -93.1161702054977,
+ 35.07125434607749
+ ],
+ [
+ -92.90479251636154,
+ 35.38450940029441
+ ],
+ [
+ -93.32754789463385,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ],
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ],
+ [
+ -93.1161702054977,
+ 36.324274562945185
+ ],
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ],
+ [
+ -93.1161702054977,
+ 36.324274562945185
+ ],
+ [
+ -93.53892558377001,
+ 36.324274562945185
+ ],
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ],
+ [
+ -93.53892558377001,
+ 36.324274562945185
+ ],
+ [
+ -93.75030327290617,
+ 36.01101950872826
+ ],
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ],
+ [
+ -93.75030327290617,
+ 36.01101950872826
+ ],
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ],
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ],
+ [
+ -93.53892558377001,
+ 35.697764454511336
+ ],
+ [
+ -93.1161702054977,
+ 35.697764454511336
+ ],
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ],
+ [
+ -93.1161702054977,
+ 35.697764454511336
+ ],
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ],
+ [
+ -93.32754789463385,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ],
+ [
+ -92.90479251636154,
+ 36.637529617162116
+ ],
+ [
+ -93.1161702054977,
+ 36.95078467137904
+ ],
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ],
+ [
+ -93.1161702054977,
+ 36.95078467137904
+ ],
+ [
+ -93.53892558377001,
+ 36.95078467137904
+ ],
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ],
+ [
+ -93.53892558377001,
+ 36.95078467137904
+ ],
+ [
+ -93.75030327290617,
+ 36.637529617162116
+ ],
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ],
+ [
+ -93.75030327290617,
+ 36.637529617162116
+ ],
+ [
+ -93.53892558377001,
+ 36.32427456294519
+ ],
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ],
+ [
+ -93.53892558377001,
+ 36.32427456294519
+ ],
+ [
+ -93.1161702054977,
+ 36.32427456294519
+ ],
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ],
+ [
+ -93.1161702054977,
+ 36.32427456294519
+ ],
+ [
+ -92.90479251636154,
+ 36.637529617162116
+ ],
+ [
+ -93.32754789463385,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ],
+ [
+ -92.90479251636154,
+ 37.26403972559597
+ ],
+ [
+ -93.1161702054977,
+ 37.577294779812895
+ ],
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ],
+ [
+ -93.1161702054977,
+ 37.577294779812895
+ ],
+ [
+ -93.53892558377001,
+ 37.577294779812895
+ ],
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ],
+ [
+ -93.53892558377001,
+ 37.577294779812895
+ ],
+ [
+ -93.75030327290617,
+ 37.26403972559597
+ ],
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ],
+ [
+ -93.75030327290617,
+ 37.26403972559597
+ ],
+ [
+ -93.53892558377001,
+ 36.95078467137905
+ ],
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ],
+ [
+ -93.53892558377001,
+ 36.95078467137905
+ ],
+ [
+ -93.1161702054977,
+ 36.95078467137905
+ ],
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ],
+ [
+ -93.1161702054977,
+ 36.95078467137905
+ ],
+ [
+ -92.90479251636154,
+ 37.26403972559597
+ ],
+ [
+ -93.32754789463385,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ],
+ [
+ -92.90479251636154,
+ 37.89054983402983
+ ],
+ [
+ -93.1161702054977,
+ 38.20380488824675
+ ],
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ],
+ [
+ -93.1161702054977,
+ 38.20380488824675
+ ],
+ [
+ -93.53892558377001,
+ 38.20380488824675
+ ],
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ],
+ [
+ -93.53892558377001,
+ 38.20380488824675
+ ],
+ [
+ -93.75030327290617,
+ 37.89054983402983
+ ],
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ],
+ [
+ -93.75030327290617,
+ 37.89054983402983
+ ],
+ [
+ -93.53892558377001,
+ 37.5772947798129
+ ],
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ],
+ [
+ -93.53892558377001,
+ 37.5772947798129
+ ],
+ [
+ -93.1161702054977,
+ 37.5772947798129
+ ],
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ],
+ [
+ -93.1161702054977,
+ 37.5772947798129
+ ],
+ [
+ -92.90479251636154,
+ 37.89054983402983
+ ],
+ [
+ -93.32754789463385,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ],
+ [
+ -92.90479251636154,
+ 38.51705994246368
+ ],
+ [
+ -93.1161702054977,
+ 38.830314996680606
+ ],
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ],
+ [
+ -93.1161702054977,
+ 38.830314996680606
+ ],
+ [
+ -93.53892558377001,
+ 38.830314996680606
+ ],
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ],
+ [
+ -93.53892558377001,
+ 38.830314996680606
+ ],
+ [
+ -93.75030327290617,
+ 38.51705994246368
+ ],
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ],
+ [
+ -93.75030327290617,
+ 38.51705994246368
+ ],
+ [
+ -93.53892558377001,
+ 38.20380488824676
+ ],
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ],
+ [
+ -93.53892558377001,
+ 38.20380488824676
+ ],
+ [
+ -93.1161702054977,
+ 38.20380488824676
+ ],
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ],
+ [
+ -93.1161702054977,
+ 38.20380488824676
+ ],
+ [
+ -92.90479251636154,
+ 38.51705994246368
+ ],
+ [
+ -93.32754789463385,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ],
+ [
+ -92.90479251636154,
+ 39.14357005089754
+ ],
+ [
+ -93.1161702054977,
+ 39.45682510511446
+ ],
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ],
+ [
+ -93.1161702054977,
+ 39.45682510511446
+ ],
+ [
+ -93.53892558377001,
+ 39.45682510511446
+ ],
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ],
+ [
+ -93.53892558377001,
+ 39.45682510511446
+ ],
+ [
+ -93.75030327290617,
+ 39.14357005089754
+ ],
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ],
+ [
+ -93.75030327290617,
+ 39.14357005089754
+ ],
+ [
+ -93.53892558377001,
+ 38.83031499668061
+ ],
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ],
+ [
+ -93.53892558377001,
+ 38.83031499668061
+ ],
+ [
+ -93.1161702054977,
+ 38.83031499668061
+ ],
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ],
+ [
+ -93.1161702054977,
+ 38.83031499668061
+ ],
+ [
+ -92.90479251636154,
+ 39.14357005089754
+ ],
+ [
+ -93.32754789463385,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ],
+ [
+ -92.90479251636154,
+ 39.77008015933139
+ ],
+ [
+ -93.1161702054977,
+ 40.08333521354832
+ ],
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ],
+ [
+ -93.1161702054977,
+ 40.08333521354832
+ ],
+ [
+ -93.53892558377001,
+ 40.08333521354832
+ ],
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ],
+ [
+ -93.53892558377001,
+ 40.08333521354832
+ ],
+ [
+ -93.75030327290617,
+ 39.77008015933139
+ ],
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ],
+ [
+ -93.75030327290617,
+ 39.77008015933139
+ ],
+ [
+ -93.53892558377001,
+ 39.45682510511447
+ ],
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ],
+ [
+ -93.53892558377001,
+ 39.45682510511447
+ ],
+ [
+ -93.1161702054977,
+ 39.45682510511447
+ ],
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ],
+ [
+ -93.1161702054977,
+ 39.45682510511447
+ ],
+ [
+ -92.90479251636154,
+ 39.77008015933139
+ ],
+ [
+ -93.32754789463385,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ],
+ [
+ -92.90479251636154,
+ 40.39659026776525
+ ],
+ [
+ -93.1161702054977,
+ 40.70984532198217
+ ],
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ],
+ [
+ -93.1161702054977,
+ 40.70984532198217
+ ],
+ [
+ -93.53892558377001,
+ 40.70984532198217
+ ],
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ],
+ [
+ -93.53892558377001,
+ 40.70984532198217
+ ],
+ [
+ -93.75030327290617,
+ 40.39659026776525
+ ],
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ],
+ [
+ -93.75030327290617,
+ 40.39659026776525
+ ],
+ [
+ -93.53892558377001,
+ 40.083335213548324
+ ],
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ],
+ [
+ -93.53892558377001,
+ 40.083335213548324
+ ],
+ [
+ -93.1161702054977,
+ 40.083335213548324
+ ],
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ],
+ [
+ -93.1161702054977,
+ 40.083335213548324
+ ],
+ [
+ -92.90479251636154,
+ 40.39659026776525
+ ],
+ [
+ -93.32754789463385,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ],
+ [
+ -92.27065944895307,
+ 31.312193695474356
+ ],
+ [
+ -92.48203713808923,
+ 31.625448749691284
+ ],
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ],
+ [
+ -92.48203713808923,
+ 31.625448749691284
+ ],
+ [
+ -92.90479251636154,
+ 31.625448749691284
+ ],
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ],
+ [
+ -92.90479251636154,
+ 31.625448749691284
+ ],
+ [
+ -93.1161702054977,
+ 31.312193695474356
+ ],
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ],
+ [
+ -93.1161702054977,
+ 31.312193695474356
+ ],
+ [
+ -92.90479251636154,
+ 30.99893864125743
+ ],
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ],
+ [
+ -92.90479251636154,
+ 30.99893864125743
+ ],
+ [
+ -92.48203713808923,
+ 30.99893864125743
+ ],
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ],
+ [
+ -92.48203713808923,
+ 30.99893864125743
+ ],
+ [
+ -92.27065944895307,
+ 31.312193695474356
+ ],
+ [
+ -92.69341482722538,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ],
+ [
+ -92.27065944895307,
+ 31.938703803908208
+ ],
+ [
+ -92.48203713808923,
+ 32.251958858125136
+ ],
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ],
+ [
+ -92.48203713808923,
+ 32.251958858125136
+ ],
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ],
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ],
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ],
+ [
+ -93.1161702054977,
+ 31.938703803908208
+ ],
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ],
+ [
+ -93.1161702054977,
+ 31.938703803908208
+ ],
+ [
+ -92.90479251636154,
+ 31.62544874969128
+ ],
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ],
+ [
+ -92.90479251636154,
+ 31.62544874969128
+ ],
+ [
+ -92.48203713808923,
+ 31.62544874969128
+ ],
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ],
+ [
+ -92.48203713808923,
+ 31.62544874969128
+ ],
+ [
+ -92.27065944895307,
+ 31.938703803908208
+ ],
+ [
+ -92.69341482722538,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ],
+ [
+ -92.27065944895307,
+ 32.56521391234206
+ ],
+ [
+ -92.48203713808923,
+ 32.878468966558984
+ ],
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ],
+ [
+ -92.48203713808923,
+ 32.878468966558984
+ ],
+ [
+ -92.90479251636154,
+ 32.878468966558984
+ ],
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ],
+ [
+ -92.90479251636154,
+ 32.878468966558984
+ ],
+ [
+ -93.1161702054977,
+ 32.56521391234206
+ ],
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ],
+ [
+ -93.1161702054977,
+ 32.56521391234206
+ ],
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ],
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ],
+ [
+ -92.90479251636154,
+ 32.251958858125136
+ ],
+ [
+ -92.48203713808923,
+ 32.251958858125136
+ ],
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ],
+ [
+ -92.48203713808923,
+ 32.251958858125136
+ ],
+ [
+ -92.27065944895307,
+ 32.56521391234206
+ ],
+ [
+ -92.69341482722538,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ],
+ [
+ -92.27065944895307,
+ 33.191724020775915
+ ],
+ [
+ -92.48203713808923,
+ 33.50497907499284
+ ],
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ],
+ [
+ -92.48203713808923,
+ 33.50497907499284
+ ],
+ [
+ -92.90479251636154,
+ 33.50497907499284
+ ],
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ],
+ [
+ -92.90479251636154,
+ 33.50497907499284
+ ],
+ [
+ -93.1161702054977,
+ 33.191724020775915
+ ],
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ],
+ [
+ -93.1161702054977,
+ 33.191724020775915
+ ],
+ [
+ -92.90479251636154,
+ 32.87846896655899
+ ],
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ],
+ [
+ -92.90479251636154,
+ 32.87846896655899
+ ],
+ [
+ -92.48203713808923,
+ 32.87846896655899
+ ],
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ],
+ [
+ -92.48203713808923,
+ 32.87846896655899
+ ],
+ [
+ -92.27065944895307,
+ 33.191724020775915
+ ],
+ [
+ -92.69341482722538,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ],
+ [
+ -92.27065944895307,
+ 33.81823412920977
+ ],
+ [
+ -92.48203713808923,
+ 34.131489183426694
+ ],
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ],
+ [
+ -92.48203713808923,
+ 34.131489183426694
+ ],
+ [
+ -92.90479251636154,
+ 34.131489183426694
+ ],
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ],
+ [
+ -92.90479251636154,
+ 34.131489183426694
+ ],
+ [
+ -93.1161702054977,
+ 33.81823412920977
+ ],
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ],
+ [
+ -93.1161702054977,
+ 33.81823412920977
+ ],
+ [
+ -92.90479251636154,
+ 33.504979074992846
+ ],
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ],
+ [
+ -92.90479251636154,
+ 33.504979074992846
+ ],
+ [
+ -92.48203713808923,
+ 33.504979074992846
+ ],
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ],
+ [
+ -92.48203713808923,
+ 33.504979074992846
+ ],
+ [
+ -92.27065944895307,
+ 33.81823412920977
+ ],
+ [
+ -92.69341482722538,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ],
+ [
+ -92.27065944895307,
+ 34.444744237643626
+ ],
+ [
+ -92.48203713808923,
+ 34.75799929186055
+ ],
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ],
+ [
+ -92.48203713808923,
+ 34.75799929186055
+ ],
+ [
+ -92.90479251636154,
+ 34.75799929186055
+ ],
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ],
+ [
+ -92.90479251636154,
+ 34.75799929186055
+ ],
+ [
+ -93.1161702054977,
+ 34.444744237643626
+ ],
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ],
+ [
+ -93.1161702054977,
+ 34.444744237643626
+ ],
+ [
+ -92.90479251636154,
+ 34.1314891834267
+ ],
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ],
+ [
+ -92.90479251636154,
+ 34.1314891834267
+ ],
+ [
+ -92.48203713808923,
+ 34.1314891834267
+ ],
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ],
+ [
+ -92.48203713808923,
+ 34.1314891834267
+ ],
+ [
+ -92.27065944895307,
+ 34.444744237643626
+ ],
+ [
+ -92.69341482722538,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ],
+ [
+ -92.27065944895307,
+ 35.07125434607748
+ ],
+ [
+ -92.48203713808923,
+ 35.384509400294405
+ ],
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ],
+ [
+ -92.48203713808923,
+ 35.384509400294405
+ ],
+ [
+ -92.90479251636154,
+ 35.384509400294405
+ ],
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ],
+ [
+ -92.90479251636154,
+ 35.384509400294405
+ ],
+ [
+ -93.1161702054977,
+ 35.07125434607748
+ ],
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ],
+ [
+ -93.1161702054977,
+ 35.07125434607748
+ ],
+ [
+ -92.90479251636154,
+ 34.75799929186056
+ ],
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ],
+ [
+ -92.90479251636154,
+ 34.75799929186056
+ ],
+ [
+ -92.48203713808923,
+ 34.75799929186056
+ ],
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ],
+ [
+ -92.48203713808923,
+ 34.75799929186056
+ ],
+ [
+ -92.27065944895307,
+ 35.07125434607748
+ ],
+ [
+ -92.69341482722538,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ],
+ [
+ -92.27065944895307,
+ 35.697764454511336
+ ],
+ [
+ -92.48203713808923,
+ 36.01101950872826
+ ],
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ],
+ [
+ -92.48203713808923,
+ 36.01101950872826
+ ],
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ],
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ],
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ],
+ [
+ -93.1161702054977,
+ 35.697764454511336
+ ],
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ],
+ [
+ -93.1161702054977,
+ 35.697764454511336
+ ],
+ [
+ -92.90479251636154,
+ 35.38450940029441
+ ],
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ],
+ [
+ -92.90479251636154,
+ 35.38450940029441
+ ],
+ [
+ -92.48203713808923,
+ 35.38450940029441
+ ],
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ],
+ [
+ -92.48203713808923,
+ 35.38450940029441
+ ],
+ [
+ -92.27065944895307,
+ 35.697764454511336
+ ],
+ [
+ -92.69341482722538,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ],
+ [
+ -92.27065944895307,
+ 36.324274562945185
+ ],
+ [
+ -92.48203713808923,
+ 36.63752961716211
+ ],
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ],
+ [
+ -92.48203713808923,
+ 36.63752961716211
+ ],
+ [
+ -92.90479251636154,
+ 36.63752961716211
+ ],
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ],
+ [
+ -92.90479251636154,
+ 36.63752961716211
+ ],
+ [
+ -93.1161702054977,
+ 36.324274562945185
+ ],
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ],
+ [
+ -93.1161702054977,
+ 36.324274562945185
+ ],
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ],
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ],
+ [
+ -92.90479251636154,
+ 36.01101950872826
+ ],
+ [
+ -92.48203713808923,
+ 36.01101950872826
+ ],
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ],
+ [
+ -92.48203713808923,
+ 36.01101950872826
+ ],
+ [
+ -92.27065944895307,
+ 36.324274562945185
+ ],
+ [
+ -92.69341482722538,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ],
+ [
+ -92.27065944895307,
+ 36.95078467137904
+ ],
+ [
+ -92.48203713808923,
+ 37.264039725595964
+ ],
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ],
+ [
+ -92.48203713808923,
+ 37.264039725595964
+ ],
+ [
+ -92.90479251636154,
+ 37.264039725595964
+ ],
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ],
+ [
+ -92.90479251636154,
+ 37.264039725595964
+ ],
+ [
+ -93.1161702054977,
+ 36.95078467137904
+ ],
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ],
+ [
+ -93.1161702054977,
+ 36.95078467137904
+ ],
+ [
+ -92.90479251636154,
+ 36.637529617162116
+ ],
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ],
+ [
+ -92.90479251636154,
+ 36.637529617162116
+ ],
+ [
+ -92.48203713808923,
+ 36.637529617162116
+ ],
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ],
+ [
+ -92.48203713808923,
+ 36.637529617162116
+ ],
+ [
+ -92.27065944895307,
+ 36.95078467137904
+ ],
+ [
+ -92.69341482722538,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ],
+ [
+ -92.27065944895307,
+ 37.577294779812895
+ ],
+ [
+ -92.48203713808923,
+ 37.89054983402982
+ ],
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ],
+ [
+ -92.48203713808923,
+ 37.89054983402982
+ ],
+ [
+ -92.90479251636154,
+ 37.89054983402982
+ ],
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ],
+ [
+ -92.90479251636154,
+ 37.89054983402982
+ ],
+ [
+ -93.1161702054977,
+ 37.577294779812895
+ ],
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ],
+ [
+ -93.1161702054977,
+ 37.577294779812895
+ ],
+ [
+ -92.90479251636154,
+ 37.26403972559597
+ ],
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ],
+ [
+ -92.90479251636154,
+ 37.26403972559597
+ ],
+ [
+ -92.48203713808923,
+ 37.26403972559597
+ ],
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ],
+ [
+ -92.48203713808923,
+ 37.26403972559597
+ ],
+ [
+ -92.27065944895307,
+ 37.577294779812895
+ ],
+ [
+ -92.69341482722538,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ],
+ [
+ -92.27065944895307,
+ 38.20380488824675
+ ],
+ [
+ -92.48203713808923,
+ 38.517059942463675
+ ],
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ],
+ [
+ -92.48203713808923,
+ 38.517059942463675
+ ],
+ [
+ -92.90479251636154,
+ 38.517059942463675
+ ],
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ],
+ [
+ -92.90479251636154,
+ 38.517059942463675
+ ],
+ [
+ -93.1161702054977,
+ 38.20380488824675
+ ],
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ],
+ [
+ -93.1161702054977,
+ 38.20380488824675
+ ],
+ [
+ -92.90479251636154,
+ 37.89054983402983
+ ],
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ],
+ [
+ -92.90479251636154,
+ 37.89054983402983
+ ],
+ [
+ -92.48203713808923,
+ 37.89054983402983
+ ],
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ],
+ [
+ -92.48203713808923,
+ 37.89054983402983
+ ],
+ [
+ -92.27065944895307,
+ 38.20380488824675
+ ],
+ [
+ -92.69341482722538,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ],
+ [
+ -92.27065944895307,
+ 38.830314996680606
+ ],
+ [
+ -92.48203713808923,
+ 39.14357005089753
+ ],
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ],
+ [
+ -92.48203713808923,
+ 39.14357005089753
+ ],
+ [
+ -92.90479251636154,
+ 39.14357005089753
+ ],
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ],
+ [
+ -92.90479251636154,
+ 39.14357005089753
+ ],
+ [
+ -93.1161702054977,
+ 38.830314996680606
+ ],
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ],
+ [
+ -93.1161702054977,
+ 38.830314996680606
+ ],
+ [
+ -92.90479251636154,
+ 38.51705994246368
+ ],
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ],
+ [
+ -92.90479251636154,
+ 38.51705994246368
+ ],
+ [
+ -92.48203713808923,
+ 38.51705994246368
+ ],
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ],
+ [
+ -92.48203713808923,
+ 38.51705994246368
+ ],
+ [
+ -92.27065944895307,
+ 38.830314996680606
+ ],
+ [
+ -92.69341482722538,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ],
+ [
+ -92.27065944895307,
+ 39.45682510511446
+ ],
+ [
+ -92.48203713808923,
+ 39.770080159331386
+ ],
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ],
+ [
+ -92.48203713808923,
+ 39.770080159331386
+ ],
+ [
+ -92.90479251636154,
+ 39.770080159331386
+ ],
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ],
+ [
+ -92.90479251636154,
+ 39.770080159331386
+ ],
+ [
+ -93.1161702054977,
+ 39.45682510511446
+ ],
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ],
+ [
+ -93.1161702054977,
+ 39.45682510511446
+ ],
+ [
+ -92.90479251636154,
+ 39.14357005089754
+ ],
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ],
+ [
+ -92.90479251636154,
+ 39.14357005089754
+ ],
+ [
+ -92.48203713808923,
+ 39.14357005089754
+ ],
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ],
+ [
+ -92.48203713808923,
+ 39.14357005089754
+ ],
+ [
+ -92.27065944895307,
+ 39.45682510511446
+ ],
+ [
+ -92.69341482722538,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ],
+ [
+ -92.27065944895307,
+ 40.08333521354832
+ ],
+ [
+ -92.48203713808923,
+ 40.39659026776524
+ ],
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ],
+ [
+ -92.48203713808923,
+ 40.39659026776524
+ ],
+ [
+ -92.90479251636154,
+ 40.39659026776524
+ ],
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ],
+ [
+ -92.90479251636154,
+ 40.39659026776524
+ ],
+ [
+ -93.1161702054977,
+ 40.08333521354832
+ ],
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ],
+ [
+ -93.1161702054977,
+ 40.08333521354832
+ ],
+ [
+ -92.90479251636154,
+ 39.77008015933139
+ ],
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ],
+ [
+ -92.90479251636154,
+ 39.77008015933139
+ ],
+ [
+ -92.48203713808923,
+ 39.77008015933139
+ ],
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ],
+ [
+ -92.48203713808923,
+ 39.77008015933139
+ ],
+ [
+ -92.27065944895307,
+ 40.08333521354832
+ ],
+ [
+ -92.69341482722538,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ],
+ [
+ -92.27065944895307,
+ 40.70984532198217
+ ],
+ [
+ -92.48203713808923,
+ 41.023100376199096
+ ],
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ],
+ [
+ -92.48203713808923,
+ 41.023100376199096
+ ],
+ [
+ -92.90479251636154,
+ 41.023100376199096
+ ],
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ],
+ [
+ -92.90479251636154,
+ 41.023100376199096
+ ],
+ [
+ -93.1161702054977,
+ 40.70984532198217
+ ],
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ],
+ [
+ -93.1161702054977,
+ 40.70984532198217
+ ],
+ [
+ -92.90479251636154,
+ 40.39659026776525
+ ],
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ],
+ [
+ -92.90479251636154,
+ 40.39659026776525
+ ],
+ [
+ -92.48203713808923,
+ 40.39659026776525
+ ],
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ],
+ [
+ -92.48203713808923,
+ 40.39659026776525
+ ],
+ [
+ -92.27065944895307,
+ 40.70984532198217
+ ],
+ [
+ -92.69341482722538,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ],
+ [
+ -91.63652638154461,
+ 30.99893864125743
+ ],
+ [
+ -91.84790407068077,
+ 31.312193695474356
+ ],
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ],
+ [
+ -91.84790407068077,
+ 31.312193695474356
+ ],
+ [
+ -92.27065944895308,
+ 31.312193695474356
+ ],
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ],
+ [
+ -92.27065944895308,
+ 31.312193695474356
+ ],
+ [
+ -92.48203713808924,
+ 30.99893864125743
+ ],
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ],
+ [
+ -92.48203713808924,
+ 30.99893864125743
+ ],
+ [
+ -92.27065944895308,
+ 30.6856835870405
+ ],
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ],
+ [
+ -92.27065944895308,
+ 30.6856835870405
+ ],
+ [
+ -91.84790407068077,
+ 30.6856835870405
+ ],
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ],
+ [
+ -91.84790407068077,
+ 30.6856835870405
+ ],
+ [
+ -91.63652638154461,
+ 30.99893864125743
+ ],
+ [
+ -92.05928175981693,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ],
+ [
+ -91.63652638154461,
+ 31.62544874969128
+ ],
+ [
+ -91.84790407068077,
+ 31.938703803908208
+ ],
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ],
+ [
+ -91.84790407068077,
+ 31.938703803908208
+ ],
+ [
+ -92.27065944895308,
+ 31.938703803908208
+ ],
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ],
+ [
+ -92.27065944895308,
+ 31.938703803908208
+ ],
+ [
+ -92.48203713808924,
+ 31.62544874969128
+ ],
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ],
+ [
+ -92.48203713808924,
+ 31.62544874969128
+ ],
+ [
+ -92.27065944895308,
+ 31.312193695474352
+ ],
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ],
+ [
+ -92.27065944895308,
+ 31.312193695474352
+ ],
+ [
+ -91.84790407068077,
+ 31.312193695474352
+ ],
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ],
+ [
+ -91.84790407068077,
+ 31.312193695474352
+ ],
+ [
+ -91.63652638154461,
+ 31.62544874969128
+ ],
+ [
+ -92.05928175981693,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ],
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ],
+ [
+ -91.84790407068077,
+ 32.56521391234206
+ ],
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ],
+ [
+ -91.84790407068077,
+ 32.56521391234206
+ ],
+ [
+ -92.27065944895308,
+ 32.56521391234206
+ ],
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ],
+ [
+ -92.27065944895308,
+ 32.56521391234206
+ ],
+ [
+ -92.48203713808924,
+ 32.251958858125136
+ ],
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ],
+ [
+ -92.48203713808924,
+ 32.251958858125136
+ ],
+ [
+ -92.27065944895308,
+ 31.938703803908208
+ ],
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ],
+ [
+ -92.27065944895308,
+ 31.938703803908208
+ ],
+ [
+ -91.84790407068077,
+ 31.938703803908208
+ ],
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ],
+ [
+ -91.84790407068077,
+ 31.938703803908208
+ ],
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ],
+ [
+ -92.05928175981693,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ],
+ [
+ -91.63652638154461,
+ 32.87846896655899
+ ],
+ [
+ -91.84790407068077,
+ 33.191724020775915
+ ],
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ],
+ [
+ -91.84790407068077,
+ 33.191724020775915
+ ],
+ [
+ -92.27065944895308,
+ 33.191724020775915
+ ],
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ],
+ [
+ -92.27065944895308,
+ 33.191724020775915
+ ],
+ [
+ -92.48203713808924,
+ 32.87846896655899
+ ],
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ],
+ [
+ -92.48203713808924,
+ 32.87846896655899
+ ],
+ [
+ -92.27065944895308,
+ 32.56521391234207
+ ],
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ],
+ [
+ -92.27065944895308,
+ 32.56521391234207
+ ],
+ [
+ -91.84790407068077,
+ 32.56521391234207
+ ],
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ],
+ [
+ -91.84790407068077,
+ 32.56521391234207
+ ],
+ [
+ -91.63652638154461,
+ 32.87846896655899
+ ],
+ [
+ -92.05928175981693,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ],
+ [
+ -91.63652638154461,
+ 33.504979074992846
+ ],
+ [
+ -91.84790407068077,
+ 33.81823412920977
+ ],
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ],
+ [
+ -91.84790407068077,
+ 33.81823412920977
+ ],
+ [
+ -92.27065944895308,
+ 33.81823412920977
+ ],
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ],
+ [
+ -92.27065944895308,
+ 33.81823412920977
+ ],
+ [
+ -92.48203713808924,
+ 33.504979074992846
+ ],
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ],
+ [
+ -92.48203713808924,
+ 33.504979074992846
+ ],
+ [
+ -92.27065944895308,
+ 33.19172402077592
+ ],
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ],
+ [
+ -92.27065944895308,
+ 33.19172402077592
+ ],
+ [
+ -91.84790407068077,
+ 33.19172402077592
+ ],
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ],
+ [
+ -91.84790407068077,
+ 33.19172402077592
+ ],
+ [
+ -91.63652638154461,
+ 33.504979074992846
+ ],
+ [
+ -92.05928175981693,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ],
+ [
+ -91.63652638154461,
+ 34.1314891834267
+ ],
+ [
+ -91.84790407068077,
+ 34.444744237643626
+ ],
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ],
+ [
+ -91.84790407068077,
+ 34.444744237643626
+ ],
+ [
+ -92.27065944895308,
+ 34.444744237643626
+ ],
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ],
+ [
+ -92.27065944895308,
+ 34.444744237643626
+ ],
+ [
+ -92.48203713808924,
+ 34.1314891834267
+ ],
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ],
+ [
+ -92.48203713808924,
+ 34.1314891834267
+ ],
+ [
+ -92.27065944895308,
+ 33.81823412920978
+ ],
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ],
+ [
+ -92.27065944895308,
+ 33.81823412920978
+ ],
+ [
+ -91.84790407068077,
+ 33.81823412920978
+ ],
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ],
+ [
+ -91.84790407068077,
+ 33.81823412920978
+ ],
+ [
+ -91.63652638154461,
+ 34.1314891834267
+ ],
+ [
+ -92.05928175981693,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ],
+ [
+ -91.63652638154461,
+ 34.75799929186056
+ ],
+ [
+ -91.84790407068077,
+ 35.07125434607748
+ ],
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ],
+ [
+ -91.84790407068077,
+ 35.07125434607748
+ ],
+ [
+ -92.27065944895308,
+ 35.07125434607748
+ ],
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ],
+ [
+ -92.27065944895308,
+ 35.07125434607748
+ ],
+ [
+ -92.48203713808924,
+ 34.75799929186056
+ ],
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ],
+ [
+ -92.48203713808924,
+ 34.75799929186056
+ ],
+ [
+ -92.27065944895308,
+ 34.44474423764363
+ ],
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ],
+ [
+ -92.27065944895308,
+ 34.44474423764363
+ ],
+ [
+ -91.84790407068077,
+ 34.44474423764363
+ ],
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ],
+ [
+ -91.84790407068077,
+ 34.44474423764363
+ ],
+ [
+ -91.63652638154461,
+ 34.75799929186056
+ ],
+ [
+ -92.05928175981693,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ],
+ [
+ -91.63652638154461,
+ 35.38450940029441
+ ],
+ [
+ -91.84790407068077,
+ 35.697764454511336
+ ],
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ],
+ [
+ -91.84790407068077,
+ 35.697764454511336
+ ],
+ [
+ -92.27065944895308,
+ 35.697764454511336
+ ],
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ],
+ [
+ -92.27065944895308,
+ 35.697764454511336
+ ],
+ [
+ -92.48203713808924,
+ 35.38450940029441
+ ],
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ],
+ [
+ -92.48203713808924,
+ 35.38450940029441
+ ],
+ [
+ -92.27065944895308,
+ 35.07125434607749
+ ],
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ],
+ [
+ -92.27065944895308,
+ 35.07125434607749
+ ],
+ [
+ -91.84790407068077,
+ 35.07125434607749
+ ],
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ],
+ [
+ -91.84790407068077,
+ 35.07125434607749
+ ],
+ [
+ -91.63652638154461,
+ 35.38450940029441
+ ],
+ [
+ -92.05928175981693,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ],
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ],
+ [
+ -91.84790407068077,
+ 36.324274562945185
+ ],
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ],
+ [
+ -91.84790407068077,
+ 36.324274562945185
+ ],
+ [
+ -92.27065944895308,
+ 36.324274562945185
+ ],
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ],
+ [
+ -92.27065944895308,
+ 36.324274562945185
+ ],
+ [
+ -92.48203713808924,
+ 36.01101950872826
+ ],
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ],
+ [
+ -92.48203713808924,
+ 36.01101950872826
+ ],
+ [
+ -92.27065944895308,
+ 35.697764454511336
+ ],
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ],
+ [
+ -92.27065944895308,
+ 35.697764454511336
+ ],
+ [
+ -91.84790407068077,
+ 35.697764454511336
+ ],
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ],
+ [
+ -91.84790407068077,
+ 35.697764454511336
+ ],
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ],
+ [
+ -92.05928175981693,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ],
+ [
+ -91.63652638154461,
+ 36.637529617162116
+ ],
+ [
+ -91.84790407068077,
+ 36.95078467137904
+ ],
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ],
+ [
+ -91.84790407068077,
+ 36.95078467137904
+ ],
+ [
+ -92.27065944895308,
+ 36.95078467137904
+ ],
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ],
+ [
+ -92.27065944895308,
+ 36.95078467137904
+ ],
+ [
+ -92.48203713808924,
+ 36.637529617162116
+ ],
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ],
+ [
+ -92.48203713808924,
+ 36.637529617162116
+ ],
+ [
+ -92.27065944895308,
+ 36.32427456294519
+ ],
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ],
+ [
+ -92.27065944895308,
+ 36.32427456294519
+ ],
+ [
+ -91.84790407068077,
+ 36.32427456294519
+ ],
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ],
+ [
+ -91.84790407068077,
+ 36.32427456294519
+ ],
+ [
+ -91.63652638154461,
+ 36.637529617162116
+ ],
+ [
+ -92.05928175981693,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ],
+ [
+ -91.63652638154461,
+ 37.26403972559597
+ ],
+ [
+ -91.84790407068077,
+ 37.577294779812895
+ ],
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ],
+ [
+ -91.84790407068077,
+ 37.577294779812895
+ ],
+ [
+ -92.27065944895308,
+ 37.577294779812895
+ ],
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ],
+ [
+ -92.27065944895308,
+ 37.577294779812895
+ ],
+ [
+ -92.48203713808924,
+ 37.26403972559597
+ ],
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ],
+ [
+ -92.48203713808924,
+ 37.26403972559597
+ ],
+ [
+ -92.27065944895308,
+ 36.95078467137905
+ ],
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ],
+ [
+ -92.27065944895308,
+ 36.95078467137905
+ ],
+ [
+ -91.84790407068077,
+ 36.95078467137905
+ ],
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ],
+ [
+ -91.84790407068077,
+ 36.95078467137905
+ ],
+ [
+ -91.63652638154461,
+ 37.26403972559597
+ ],
+ [
+ -92.05928175981693,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ],
+ [
+ -91.63652638154461,
+ 37.89054983402983
+ ],
+ [
+ -91.84790407068077,
+ 38.20380488824675
+ ],
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ],
+ [
+ -91.84790407068077,
+ 38.20380488824675
+ ],
+ [
+ -92.27065944895308,
+ 38.20380488824675
+ ],
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ],
+ [
+ -92.27065944895308,
+ 38.20380488824675
+ ],
+ [
+ -92.48203713808924,
+ 37.89054983402983
+ ],
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ],
+ [
+ -92.48203713808924,
+ 37.89054983402983
+ ],
+ [
+ -92.27065944895308,
+ 37.5772947798129
+ ],
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ],
+ [
+ -92.27065944895308,
+ 37.5772947798129
+ ],
+ [
+ -91.84790407068077,
+ 37.5772947798129
+ ],
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ],
+ [
+ -91.84790407068077,
+ 37.5772947798129
+ ],
+ [
+ -91.63652638154461,
+ 37.89054983402983
+ ],
+ [
+ -92.05928175981693,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ],
+ [
+ -91.63652638154461,
+ 38.51705994246368
+ ],
+ [
+ -91.84790407068077,
+ 38.830314996680606
+ ],
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ],
+ [
+ -91.84790407068077,
+ 38.830314996680606
+ ],
+ [
+ -92.27065944895308,
+ 38.830314996680606
+ ],
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ],
+ [
+ -92.27065944895308,
+ 38.830314996680606
+ ],
+ [
+ -92.48203713808924,
+ 38.51705994246368
+ ],
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ],
+ [
+ -92.48203713808924,
+ 38.51705994246368
+ ],
+ [
+ -92.27065944895308,
+ 38.20380488824676
+ ],
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ],
+ [
+ -92.27065944895308,
+ 38.20380488824676
+ ],
+ [
+ -91.84790407068077,
+ 38.20380488824676
+ ],
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ],
+ [
+ -91.84790407068077,
+ 38.20380488824676
+ ],
+ [
+ -91.63652638154461,
+ 38.51705994246368
+ ],
+ [
+ -92.05928175981693,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ],
+ [
+ -91.63652638154461,
+ 39.14357005089754
+ ],
+ [
+ -91.84790407068077,
+ 39.45682510511446
+ ],
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ],
+ [
+ -91.84790407068077,
+ 39.45682510511446
+ ],
+ [
+ -92.27065944895308,
+ 39.45682510511446
+ ],
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ],
+ [
+ -92.27065944895308,
+ 39.45682510511446
+ ],
+ [
+ -92.48203713808924,
+ 39.14357005089754
+ ],
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ],
+ [
+ -92.48203713808924,
+ 39.14357005089754
+ ],
+ [
+ -92.27065944895308,
+ 38.83031499668061
+ ],
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ],
+ [
+ -92.27065944895308,
+ 38.83031499668061
+ ],
+ [
+ -91.84790407068077,
+ 38.83031499668061
+ ],
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ],
+ [
+ -91.84790407068077,
+ 38.83031499668061
+ ],
+ [
+ -91.63652638154461,
+ 39.14357005089754
+ ],
+ [
+ -92.05928175981693,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ],
+ [
+ -91.63652638154461,
+ 39.77008015933139
+ ],
+ [
+ -91.84790407068077,
+ 40.08333521354832
+ ],
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ],
+ [
+ -91.84790407068077,
+ 40.08333521354832
+ ],
+ [
+ -92.27065944895308,
+ 40.08333521354832
+ ],
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ],
+ [
+ -92.27065944895308,
+ 40.08333521354832
+ ],
+ [
+ -92.48203713808924,
+ 39.77008015933139
+ ],
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ],
+ [
+ -92.48203713808924,
+ 39.77008015933139
+ ],
+ [
+ -92.27065944895308,
+ 39.45682510511447
+ ],
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ],
+ [
+ -92.27065944895308,
+ 39.45682510511447
+ ],
+ [
+ -91.84790407068077,
+ 39.45682510511447
+ ],
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ],
+ [
+ -91.84790407068077,
+ 39.45682510511447
+ ],
+ [
+ -91.63652638154461,
+ 39.77008015933139
+ ],
+ [
+ -92.05928175981693,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ],
+ [
+ -91.63652638154461,
+ 40.39659026776525
+ ],
+ [
+ -91.84790407068077,
+ 40.70984532198217
+ ],
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ],
+ [
+ -91.84790407068077,
+ 40.70984532198217
+ ],
+ [
+ -92.27065944895308,
+ 40.70984532198217
+ ],
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ],
+ [
+ -92.27065944895308,
+ 40.70984532198217
+ ],
+ [
+ -92.48203713808924,
+ 40.39659026776525
+ ],
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ],
+ [
+ -92.48203713808924,
+ 40.39659026776525
+ ],
+ [
+ -92.27065944895308,
+ 40.083335213548324
+ ],
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ],
+ [
+ -92.27065944895308,
+ 40.083335213548324
+ ],
+ [
+ -91.84790407068077,
+ 40.083335213548324
+ ],
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ],
+ [
+ -91.84790407068077,
+ 40.083335213548324
+ ],
+ [
+ -91.63652638154461,
+ 40.39659026776525
+ ],
+ [
+ -92.05928175981693,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ],
+ [
+ -91.00239331413614,
+ 31.312193695474356
+ ],
+ [
+ -91.2137710032723,
+ 31.625448749691284
+ ],
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ],
+ [
+ -91.2137710032723,
+ 31.625448749691284
+ ],
+ [
+ -91.63652638154461,
+ 31.625448749691284
+ ],
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ],
+ [
+ -91.63652638154461,
+ 31.625448749691284
+ ],
+ [
+ -91.84790407068077,
+ 31.312193695474356
+ ],
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ],
+ [
+ -91.84790407068077,
+ 31.312193695474356
+ ],
+ [
+ -91.63652638154461,
+ 30.99893864125743
+ ],
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ],
+ [
+ -91.63652638154461,
+ 30.99893864125743
+ ],
+ [
+ -91.2137710032723,
+ 30.99893864125743
+ ],
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ],
+ [
+ -91.2137710032723,
+ 30.99893864125743
+ ],
+ [
+ -91.00239331413614,
+ 31.312193695474356
+ ],
+ [
+ -91.42514869240846,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ],
+ [
+ -91.00239331413614,
+ 31.938703803908208
+ ],
+ [
+ -91.2137710032723,
+ 32.251958858125136
+ ],
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ],
+ [
+ -91.2137710032723,
+ 32.251958858125136
+ ],
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ],
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ],
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ],
+ [
+ -91.84790407068077,
+ 31.938703803908208
+ ],
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ],
+ [
+ -91.84790407068077,
+ 31.938703803908208
+ ],
+ [
+ -91.63652638154461,
+ 31.62544874969128
+ ],
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ],
+ [
+ -91.63652638154461,
+ 31.62544874969128
+ ],
+ [
+ -91.2137710032723,
+ 31.62544874969128
+ ],
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ],
+ [
+ -91.2137710032723,
+ 31.62544874969128
+ ],
+ [
+ -91.00239331413614,
+ 31.938703803908208
+ ],
+ [
+ -91.42514869240846,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ],
+ [
+ -91.00239331413614,
+ 32.56521391234206
+ ],
+ [
+ -91.2137710032723,
+ 32.878468966558984
+ ],
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ],
+ [
+ -91.2137710032723,
+ 32.878468966558984
+ ],
+ [
+ -91.63652638154461,
+ 32.878468966558984
+ ],
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ],
+ [
+ -91.63652638154461,
+ 32.878468966558984
+ ],
+ [
+ -91.84790407068077,
+ 32.56521391234206
+ ],
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ],
+ [
+ -91.84790407068077,
+ 32.56521391234206
+ ],
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ],
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ],
+ [
+ -91.63652638154461,
+ 32.251958858125136
+ ],
+ [
+ -91.2137710032723,
+ 32.251958858125136
+ ],
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ],
+ [
+ -91.2137710032723,
+ 32.251958858125136
+ ],
+ [
+ -91.00239331413614,
+ 32.56521391234206
+ ],
+ [
+ -91.42514869240846,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ],
+ [
+ -91.00239331413614,
+ 33.191724020775915
+ ],
+ [
+ -91.2137710032723,
+ 33.50497907499284
+ ],
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ],
+ [
+ -91.2137710032723,
+ 33.50497907499284
+ ],
+ [
+ -91.63652638154461,
+ 33.50497907499284
+ ],
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ],
+ [
+ -91.63652638154461,
+ 33.50497907499284
+ ],
+ [
+ -91.84790407068077,
+ 33.191724020775915
+ ],
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ],
+ [
+ -91.84790407068077,
+ 33.191724020775915
+ ],
+ [
+ -91.63652638154461,
+ 32.87846896655899
+ ],
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ],
+ [
+ -91.63652638154461,
+ 32.87846896655899
+ ],
+ [
+ -91.2137710032723,
+ 32.87846896655899
+ ],
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ],
+ [
+ -91.2137710032723,
+ 32.87846896655899
+ ],
+ [
+ -91.00239331413614,
+ 33.191724020775915
+ ],
+ [
+ -91.42514869240846,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ],
+ [
+ -91.00239331413614,
+ 33.81823412920977
+ ],
+ [
+ -91.2137710032723,
+ 34.131489183426694
+ ],
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ],
+ [
+ -91.2137710032723,
+ 34.131489183426694
+ ],
+ [
+ -91.63652638154461,
+ 34.131489183426694
+ ],
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ],
+ [
+ -91.63652638154461,
+ 34.131489183426694
+ ],
+ [
+ -91.84790407068077,
+ 33.81823412920977
+ ],
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ],
+ [
+ -91.84790407068077,
+ 33.81823412920977
+ ],
+ [
+ -91.63652638154461,
+ 33.504979074992846
+ ],
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ],
+ [
+ -91.63652638154461,
+ 33.504979074992846
+ ],
+ [
+ -91.2137710032723,
+ 33.504979074992846
+ ],
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ],
+ [
+ -91.2137710032723,
+ 33.504979074992846
+ ],
+ [
+ -91.00239331413614,
+ 33.81823412920977
+ ],
+ [
+ -91.42514869240846,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ],
+ [
+ -91.00239331413614,
+ 34.444744237643626
+ ],
+ [
+ -91.2137710032723,
+ 34.75799929186055
+ ],
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ],
+ [
+ -91.2137710032723,
+ 34.75799929186055
+ ],
+ [
+ -91.63652638154461,
+ 34.75799929186055
+ ],
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ],
+ [
+ -91.63652638154461,
+ 34.75799929186055
+ ],
+ [
+ -91.84790407068077,
+ 34.444744237643626
+ ],
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ],
+ [
+ -91.84790407068077,
+ 34.444744237643626
+ ],
+ [
+ -91.63652638154461,
+ 34.1314891834267
+ ],
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ],
+ [
+ -91.63652638154461,
+ 34.1314891834267
+ ],
+ [
+ -91.2137710032723,
+ 34.1314891834267
+ ],
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ],
+ [
+ -91.2137710032723,
+ 34.1314891834267
+ ],
+ [
+ -91.00239331413614,
+ 34.444744237643626
+ ],
+ [
+ -91.42514869240846,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ],
+ [
+ -91.00239331413614,
+ 35.07125434607748
+ ],
+ [
+ -91.2137710032723,
+ 35.384509400294405
+ ],
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ],
+ [
+ -91.2137710032723,
+ 35.384509400294405
+ ],
+ [
+ -91.63652638154461,
+ 35.384509400294405
+ ],
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ],
+ [
+ -91.63652638154461,
+ 35.384509400294405
+ ],
+ [
+ -91.84790407068077,
+ 35.07125434607748
+ ],
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ],
+ [
+ -91.84790407068077,
+ 35.07125434607748
+ ],
+ [
+ -91.63652638154461,
+ 34.75799929186056
+ ],
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ],
+ [
+ -91.63652638154461,
+ 34.75799929186056
+ ],
+ [
+ -91.2137710032723,
+ 34.75799929186056
+ ],
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ],
+ [
+ -91.2137710032723,
+ 34.75799929186056
+ ],
+ [
+ -91.00239331413614,
+ 35.07125434607748
+ ],
+ [
+ -91.42514869240846,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ],
+ [
+ -91.00239331413614,
+ 35.697764454511336
+ ],
+ [
+ -91.2137710032723,
+ 36.01101950872826
+ ],
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ],
+ [
+ -91.2137710032723,
+ 36.01101950872826
+ ],
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ],
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ],
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ],
+ [
+ -91.84790407068077,
+ 35.697764454511336
+ ],
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ],
+ [
+ -91.84790407068077,
+ 35.697764454511336
+ ],
+ [
+ -91.63652638154461,
+ 35.38450940029441
+ ],
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ],
+ [
+ -91.63652638154461,
+ 35.38450940029441
+ ],
+ [
+ -91.2137710032723,
+ 35.38450940029441
+ ],
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ],
+ [
+ -91.2137710032723,
+ 35.38450940029441
+ ],
+ [
+ -91.00239331413614,
+ 35.697764454511336
+ ],
+ [
+ -91.42514869240846,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ],
+ [
+ -91.00239331413614,
+ 36.324274562945185
+ ],
+ [
+ -91.2137710032723,
+ 36.63752961716211
+ ],
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ],
+ [
+ -91.2137710032723,
+ 36.63752961716211
+ ],
+ [
+ -91.63652638154461,
+ 36.63752961716211
+ ],
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ],
+ [
+ -91.63652638154461,
+ 36.63752961716211
+ ],
+ [
+ -91.84790407068077,
+ 36.324274562945185
+ ],
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ],
+ [
+ -91.84790407068077,
+ 36.324274562945185
+ ],
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ],
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ],
+ [
+ -91.63652638154461,
+ 36.01101950872826
+ ],
+ [
+ -91.2137710032723,
+ 36.01101950872826
+ ],
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ],
+ [
+ -91.2137710032723,
+ 36.01101950872826
+ ],
+ [
+ -91.00239331413614,
+ 36.324274562945185
+ ],
+ [
+ -91.42514869240846,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ],
+ [
+ -91.00239331413614,
+ 36.95078467137904
+ ],
+ [
+ -91.2137710032723,
+ 37.264039725595964
+ ],
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ],
+ [
+ -91.2137710032723,
+ 37.264039725595964
+ ],
+ [
+ -91.63652638154461,
+ 37.264039725595964
+ ],
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ],
+ [
+ -91.63652638154461,
+ 37.264039725595964
+ ],
+ [
+ -91.84790407068077,
+ 36.95078467137904
+ ],
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ],
+ [
+ -91.84790407068077,
+ 36.95078467137904
+ ],
+ [
+ -91.63652638154461,
+ 36.637529617162116
+ ],
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ],
+ [
+ -91.63652638154461,
+ 36.637529617162116
+ ],
+ [
+ -91.2137710032723,
+ 36.637529617162116
+ ],
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ],
+ [
+ -91.2137710032723,
+ 36.637529617162116
+ ],
+ [
+ -91.00239331413614,
+ 36.95078467137904
+ ],
+ [
+ -91.42514869240846,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ],
+ [
+ -91.00239331413614,
+ 37.577294779812895
+ ],
+ [
+ -91.2137710032723,
+ 37.89054983402982
+ ],
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ],
+ [
+ -91.2137710032723,
+ 37.89054983402982
+ ],
+ [
+ -91.63652638154461,
+ 37.89054983402982
+ ],
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ],
+ [
+ -91.63652638154461,
+ 37.89054983402982
+ ],
+ [
+ -91.84790407068077,
+ 37.577294779812895
+ ],
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ],
+ [
+ -91.84790407068077,
+ 37.577294779812895
+ ],
+ [
+ -91.63652638154461,
+ 37.26403972559597
+ ],
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ],
+ [
+ -91.63652638154461,
+ 37.26403972559597
+ ],
+ [
+ -91.2137710032723,
+ 37.26403972559597
+ ],
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ],
+ [
+ -91.2137710032723,
+ 37.26403972559597
+ ],
+ [
+ -91.00239331413614,
+ 37.577294779812895
+ ],
+ [
+ -91.42514869240846,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ],
+ [
+ -91.00239331413614,
+ 38.20380488824675
+ ],
+ [
+ -91.2137710032723,
+ 38.517059942463675
+ ],
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ],
+ [
+ -91.2137710032723,
+ 38.517059942463675
+ ],
+ [
+ -91.63652638154461,
+ 38.517059942463675
+ ],
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ],
+ [
+ -91.63652638154461,
+ 38.517059942463675
+ ],
+ [
+ -91.84790407068077,
+ 38.20380488824675
+ ],
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ],
+ [
+ -91.84790407068077,
+ 38.20380488824675
+ ],
+ [
+ -91.63652638154461,
+ 37.89054983402983
+ ],
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ],
+ [
+ -91.63652638154461,
+ 37.89054983402983
+ ],
+ [
+ -91.2137710032723,
+ 37.89054983402983
+ ],
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ],
+ [
+ -91.2137710032723,
+ 37.89054983402983
+ ],
+ [
+ -91.00239331413614,
+ 38.20380488824675
+ ],
+ [
+ -91.42514869240846,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ],
+ [
+ -91.00239331413614,
+ 38.830314996680606
+ ],
+ [
+ -91.2137710032723,
+ 39.14357005089753
+ ],
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ],
+ [
+ -91.2137710032723,
+ 39.14357005089753
+ ],
+ [
+ -91.63652638154461,
+ 39.14357005089753
+ ],
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ],
+ [
+ -91.63652638154461,
+ 39.14357005089753
+ ],
+ [
+ -91.84790407068077,
+ 38.830314996680606
+ ],
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ],
+ [
+ -91.84790407068077,
+ 38.830314996680606
+ ],
+ [
+ -91.63652638154461,
+ 38.51705994246368
+ ],
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ],
+ [
+ -91.63652638154461,
+ 38.51705994246368
+ ],
+ [
+ -91.2137710032723,
+ 38.51705994246368
+ ],
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ],
+ [
+ -91.2137710032723,
+ 38.51705994246368
+ ],
+ [
+ -91.00239331413614,
+ 38.830314996680606
+ ],
+ [
+ -91.42514869240846,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ],
+ [
+ -91.00239331413614,
+ 39.45682510511446
+ ],
+ [
+ -91.2137710032723,
+ 39.770080159331386
+ ],
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ],
+ [
+ -91.2137710032723,
+ 39.770080159331386
+ ],
+ [
+ -91.63652638154461,
+ 39.770080159331386
+ ],
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ],
+ [
+ -91.63652638154461,
+ 39.770080159331386
+ ],
+ [
+ -91.84790407068077,
+ 39.45682510511446
+ ],
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ],
+ [
+ -91.84790407068077,
+ 39.45682510511446
+ ],
+ [
+ -91.63652638154461,
+ 39.14357005089754
+ ],
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ],
+ [
+ -91.63652638154461,
+ 39.14357005089754
+ ],
+ [
+ -91.2137710032723,
+ 39.14357005089754
+ ],
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ],
+ [
+ -91.2137710032723,
+ 39.14357005089754
+ ],
+ [
+ -91.00239331413614,
+ 39.45682510511446
+ ],
+ [
+ -91.42514869240846,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ],
+ [
+ -91.00239331413614,
+ 40.08333521354832
+ ],
+ [
+ -91.2137710032723,
+ 40.39659026776524
+ ],
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ],
+ [
+ -91.2137710032723,
+ 40.39659026776524
+ ],
+ [
+ -91.63652638154461,
+ 40.39659026776524
+ ],
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ],
+ [
+ -91.63652638154461,
+ 40.39659026776524
+ ],
+ [
+ -91.84790407068077,
+ 40.08333521354832
+ ],
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ],
+ [
+ -91.84790407068077,
+ 40.08333521354832
+ ],
+ [
+ -91.63652638154461,
+ 39.77008015933139
+ ],
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ],
+ [
+ -91.63652638154461,
+ 39.77008015933139
+ ],
+ [
+ -91.2137710032723,
+ 39.77008015933139
+ ],
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ],
+ [
+ -91.2137710032723,
+ 39.77008015933139
+ ],
+ [
+ -91.00239331413614,
+ 40.08333521354832
+ ],
+ [
+ -91.42514869240846,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ],
+ [
+ -91.00239331413614,
+ 40.70984532198217
+ ],
+ [
+ -91.2137710032723,
+ 41.023100376199096
+ ],
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ],
+ [
+ -91.2137710032723,
+ 41.023100376199096
+ ],
+ [
+ -91.63652638154461,
+ 41.023100376199096
+ ],
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ],
+ [
+ -91.63652638154461,
+ 41.023100376199096
+ ],
+ [
+ -91.84790407068077,
+ 40.70984532198217
+ ],
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ],
+ [
+ -91.84790407068077,
+ 40.70984532198217
+ ],
+ [
+ -91.63652638154461,
+ 40.39659026776525
+ ],
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ],
+ [
+ -91.63652638154461,
+ 40.39659026776525
+ ],
+ [
+ -91.2137710032723,
+ 40.39659026776525
+ ],
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ],
+ [
+ -91.2137710032723,
+ 40.39659026776525
+ ],
+ [
+ -91.00239331413614,
+ 40.70984532198217
+ ],
+ [
+ -91.42514869240846,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 30.99893864125743
+ ],
+ [
+ -90.36826024672769,
+ 30.99893864125743
+ ],
+ [
+ -90.57963793586384,
+ 31.312193695474356
+ ],
+ [
+ -90.791015625,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 30.99893864125743
+ ],
+ [
+ -90.57963793586384,
+ 31.312193695474356
+ ],
+ [
+ -91.00239331413616,
+ 31.312193695474356
+ ],
+ [
+ -90.791015625,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 30.99893864125743
+ ],
+ [
+ -91.00239331413616,
+ 31.312193695474356
+ ],
+ [
+ -91.21377100327231,
+ 30.99893864125743
+ ],
+ [
+ -90.791015625,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 30.99893864125743
+ ],
+ [
+ -91.21377100327231,
+ 30.99893864125743
+ ],
+ [
+ -91.00239331413616,
+ 30.6856835870405
+ ],
+ [
+ -90.791015625,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 30.99893864125743
+ ],
+ [
+ -91.00239331413616,
+ 30.6856835870405
+ ],
+ [
+ -90.57963793586384,
+ 30.6856835870405
+ ],
+ [
+ -90.791015625,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 30.99893864125743
+ ],
+ [
+ -90.57963793586384,
+ 30.6856835870405
+ ],
+ [
+ -90.36826024672769,
+ 30.99893864125743
+ ],
+ [
+ -90.791015625,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 31.62544874969128
+ ],
+ [
+ -90.36826024672769,
+ 31.62544874969128
+ ],
+ [
+ -90.57963793586384,
+ 31.938703803908208
+ ],
+ [
+ -90.791015625,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 31.62544874969128
+ ],
+ [
+ -90.57963793586384,
+ 31.938703803908208
+ ],
+ [
+ -91.00239331413616,
+ 31.938703803908208
+ ],
+ [
+ -90.791015625,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 31.62544874969128
+ ],
+ [
+ -91.00239331413616,
+ 31.938703803908208
+ ],
+ [
+ -91.21377100327231,
+ 31.62544874969128
+ ],
+ [
+ -90.791015625,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 31.62544874969128
+ ],
+ [
+ -91.21377100327231,
+ 31.62544874969128
+ ],
+ [
+ -91.00239331413616,
+ 31.312193695474352
+ ],
+ [
+ -90.791015625,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 31.62544874969128
+ ],
+ [
+ -91.00239331413616,
+ 31.312193695474352
+ ],
+ [
+ -90.57963793586384,
+ 31.312193695474352
+ ],
+ [
+ -90.791015625,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 31.62544874969128
+ ],
+ [
+ -90.57963793586384,
+ 31.312193695474352
+ ],
+ [
+ -90.36826024672769,
+ 31.62544874969128
+ ],
+ [
+ -90.791015625,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.251958858125136
+ ],
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ],
+ [
+ -90.57963793586384,
+ 32.56521391234206
+ ],
+ [
+ -90.791015625,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.251958858125136
+ ],
+ [
+ -90.57963793586384,
+ 32.56521391234206
+ ],
+ [
+ -91.00239331413616,
+ 32.56521391234206
+ ],
+ [
+ -90.791015625,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.251958858125136
+ ],
+ [
+ -91.00239331413616,
+ 32.56521391234206
+ ],
+ [
+ -91.21377100327231,
+ 32.251958858125136
+ ],
+ [
+ -90.791015625,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.251958858125136
+ ],
+ [
+ -91.21377100327231,
+ 32.251958858125136
+ ],
+ [
+ -91.00239331413616,
+ 31.938703803908208
+ ],
+ [
+ -90.791015625,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.251958858125136
+ ],
+ [
+ -91.00239331413616,
+ 31.938703803908208
+ ],
+ [
+ -90.57963793586384,
+ 31.938703803908208
+ ],
+ [
+ -90.791015625,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.251958858125136
+ ],
+ [
+ -90.57963793586384,
+ 31.938703803908208
+ ],
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ],
+ [
+ -90.791015625,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.87846896655899
+ ],
+ [
+ -90.36826024672769,
+ 32.87846896655899
+ ],
+ [
+ -90.57963793586384,
+ 33.191724020775915
+ ],
+ [
+ -90.791015625,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.87846896655899
+ ],
+ [
+ -90.57963793586384,
+ 33.191724020775915
+ ],
+ [
+ -91.00239331413616,
+ 33.191724020775915
+ ],
+ [
+ -90.791015625,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.87846896655899
+ ],
+ [
+ -91.00239331413616,
+ 33.191724020775915
+ ],
+ [
+ -91.21377100327231,
+ 32.87846896655899
+ ],
+ [
+ -90.791015625,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.87846896655899
+ ],
+ [
+ -91.21377100327231,
+ 32.87846896655899
+ ],
+ [
+ -91.00239331413616,
+ 32.56521391234207
+ ],
+ [
+ -90.791015625,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.87846896655899
+ ],
+ [
+ -91.00239331413616,
+ 32.56521391234207
+ ],
+ [
+ -90.57963793586384,
+ 32.56521391234207
+ ],
+ [
+ -90.791015625,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 32.87846896655899
+ ],
+ [
+ -90.57963793586384,
+ 32.56521391234207
+ ],
+ [
+ -90.36826024672769,
+ 32.87846896655899
+ ],
+ [
+ -90.791015625,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 33.504979074992846
+ ],
+ [
+ -90.36826024672769,
+ 33.504979074992846
+ ],
+ [
+ -90.57963793586384,
+ 33.81823412920977
+ ],
+ [
+ -90.791015625,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 33.504979074992846
+ ],
+ [
+ -90.57963793586384,
+ 33.81823412920977
+ ],
+ [
+ -91.00239331413616,
+ 33.81823412920977
+ ],
+ [
+ -90.791015625,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 33.504979074992846
+ ],
+ [
+ -91.00239331413616,
+ 33.81823412920977
+ ],
+ [
+ -91.21377100327231,
+ 33.504979074992846
+ ],
+ [
+ -90.791015625,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 33.504979074992846
+ ],
+ [
+ -91.21377100327231,
+ 33.504979074992846
+ ],
+ [
+ -91.00239331413616,
+ 33.19172402077592
+ ],
+ [
+ -90.791015625,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 33.504979074992846
+ ],
+ [
+ -91.00239331413616,
+ 33.19172402077592
+ ],
+ [
+ -90.57963793586384,
+ 33.19172402077592
+ ],
+ [
+ -90.791015625,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 33.504979074992846
+ ],
+ [
+ -90.57963793586384,
+ 33.19172402077592
+ ],
+ [
+ -90.36826024672769,
+ 33.504979074992846
+ ],
+ [
+ -90.791015625,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.1314891834267
+ ],
+ [
+ -90.36826024672769,
+ 34.1314891834267
+ ],
+ [
+ -90.57963793586384,
+ 34.444744237643626
+ ],
+ [
+ -90.791015625,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.1314891834267
+ ],
+ [
+ -90.57963793586384,
+ 34.444744237643626
+ ],
+ [
+ -91.00239331413616,
+ 34.444744237643626
+ ],
+ [
+ -90.791015625,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.1314891834267
+ ],
+ [
+ -91.00239331413616,
+ 34.444744237643626
+ ],
+ [
+ -91.21377100327231,
+ 34.1314891834267
+ ],
+ [
+ -90.791015625,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.1314891834267
+ ],
+ [
+ -91.21377100327231,
+ 34.1314891834267
+ ],
+ [
+ -91.00239331413616,
+ 33.81823412920978
+ ],
+ [
+ -90.791015625,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.1314891834267
+ ],
+ [
+ -91.00239331413616,
+ 33.81823412920978
+ ],
+ [
+ -90.57963793586384,
+ 33.81823412920978
+ ],
+ [
+ -90.791015625,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.1314891834267
+ ],
+ [
+ -90.57963793586384,
+ 33.81823412920978
+ ],
+ [
+ -90.36826024672769,
+ 34.1314891834267
+ ],
+ [
+ -90.791015625,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.75799929186056
+ ],
+ [
+ -90.36826024672769,
+ 34.75799929186056
+ ],
+ [
+ -90.57963793586384,
+ 35.07125434607748
+ ],
+ [
+ -90.791015625,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.75799929186056
+ ],
+ [
+ -90.57963793586384,
+ 35.07125434607748
+ ],
+ [
+ -91.00239331413616,
+ 35.07125434607748
+ ],
+ [
+ -90.791015625,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.75799929186056
+ ],
+ [
+ -91.00239331413616,
+ 35.07125434607748
+ ],
+ [
+ -91.21377100327231,
+ 34.75799929186056
+ ],
+ [
+ -90.791015625,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.75799929186056
+ ],
+ [
+ -91.21377100327231,
+ 34.75799929186056
+ ],
+ [
+ -91.00239331413616,
+ 34.44474423764363
+ ],
+ [
+ -90.791015625,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.75799929186056
+ ],
+ [
+ -91.00239331413616,
+ 34.44474423764363
+ ],
+ [
+ -90.57963793586384,
+ 34.44474423764363
+ ],
+ [
+ -90.791015625,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 34.75799929186056
+ ],
+ [
+ -90.57963793586384,
+ 34.44474423764363
+ ],
+ [
+ -90.36826024672769,
+ 34.75799929186056
+ ],
+ [
+ -90.791015625,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 35.38450940029441
+ ],
+ [
+ -90.36826024672769,
+ 35.38450940029441
+ ],
+ [
+ -90.57963793586384,
+ 35.697764454511336
+ ],
+ [
+ -90.791015625,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 35.38450940029441
+ ],
+ [
+ -90.57963793586384,
+ 35.697764454511336
+ ],
+ [
+ -91.00239331413616,
+ 35.697764454511336
+ ],
+ [
+ -90.791015625,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 35.38450940029441
+ ],
+ [
+ -91.00239331413616,
+ 35.697764454511336
+ ],
+ [
+ -91.21377100327231,
+ 35.38450940029441
+ ],
+ [
+ -90.791015625,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 35.38450940029441
+ ],
+ [
+ -91.21377100327231,
+ 35.38450940029441
+ ],
+ [
+ -91.00239331413616,
+ 35.07125434607749
+ ],
+ [
+ -90.791015625,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 35.38450940029441
+ ],
+ [
+ -91.00239331413616,
+ 35.07125434607749
+ ],
+ [
+ -90.57963793586384,
+ 35.07125434607749
+ ],
+ [
+ -90.791015625,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 35.38450940029441
+ ],
+ [
+ -90.57963793586384,
+ 35.07125434607749
+ ],
+ [
+ -90.36826024672769,
+ 35.38450940029441
+ ],
+ [
+ -90.791015625,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.01101950872826
+ ],
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ],
+ [
+ -90.57963793586384,
+ 36.324274562945185
+ ],
+ [
+ -90.791015625,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.01101950872826
+ ],
+ [
+ -90.57963793586384,
+ 36.324274562945185
+ ],
+ [
+ -91.00239331413616,
+ 36.324274562945185
+ ],
+ [
+ -90.791015625,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.01101950872826
+ ],
+ [
+ -91.00239331413616,
+ 36.324274562945185
+ ],
+ [
+ -91.21377100327231,
+ 36.01101950872826
+ ],
+ [
+ -90.791015625,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.01101950872826
+ ],
+ [
+ -91.21377100327231,
+ 36.01101950872826
+ ],
+ [
+ -91.00239331413616,
+ 35.697764454511336
+ ],
+ [
+ -90.791015625,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.01101950872826
+ ],
+ [
+ -91.00239331413616,
+ 35.697764454511336
+ ],
+ [
+ -90.57963793586384,
+ 35.697764454511336
+ ],
+ [
+ -90.791015625,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.01101950872826
+ ],
+ [
+ -90.57963793586384,
+ 35.697764454511336
+ ],
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ],
+ [
+ -90.791015625,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.637529617162116
+ ],
+ [
+ -90.36826024672769,
+ 36.637529617162116
+ ],
+ [
+ -90.57963793586384,
+ 36.95078467137904
+ ],
+ [
+ -90.791015625,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.637529617162116
+ ],
+ [
+ -90.57963793586384,
+ 36.95078467137904
+ ],
+ [
+ -91.00239331413616,
+ 36.95078467137904
+ ],
+ [
+ -90.791015625,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.637529617162116
+ ],
+ [
+ -91.00239331413616,
+ 36.95078467137904
+ ],
+ [
+ -91.21377100327231,
+ 36.637529617162116
+ ],
+ [
+ -90.791015625,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.637529617162116
+ ],
+ [
+ -91.21377100327231,
+ 36.637529617162116
+ ],
+ [
+ -91.00239331413616,
+ 36.32427456294519
+ ],
+ [
+ -90.791015625,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.637529617162116
+ ],
+ [
+ -91.00239331413616,
+ 36.32427456294519
+ ],
+ [
+ -90.57963793586384,
+ 36.32427456294519
+ ],
+ [
+ -90.791015625,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 36.637529617162116
+ ],
+ [
+ -90.57963793586384,
+ 36.32427456294519
+ ],
+ [
+ -90.36826024672769,
+ 36.637529617162116
+ ],
+ [
+ -90.791015625,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.26403972559597
+ ],
+ [
+ -90.36826024672769,
+ 37.26403972559597
+ ],
+ [
+ -90.57963793586384,
+ 37.577294779812895
+ ],
+ [
+ -90.791015625,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.26403972559597
+ ],
+ [
+ -90.57963793586384,
+ 37.577294779812895
+ ],
+ [
+ -91.00239331413616,
+ 37.577294779812895
+ ],
+ [
+ -90.791015625,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.26403972559597
+ ],
+ [
+ -91.00239331413616,
+ 37.577294779812895
+ ],
+ [
+ -91.21377100327231,
+ 37.26403972559597
+ ],
+ [
+ -90.791015625,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.26403972559597
+ ],
+ [
+ -91.21377100327231,
+ 37.26403972559597
+ ],
+ [
+ -91.00239331413616,
+ 36.95078467137905
+ ],
+ [
+ -90.791015625,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.26403972559597
+ ],
+ [
+ -91.00239331413616,
+ 36.95078467137905
+ ],
+ [
+ -90.57963793586384,
+ 36.95078467137905
+ ],
+ [
+ -90.791015625,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.26403972559597
+ ],
+ [
+ -90.57963793586384,
+ 36.95078467137905
+ ],
+ [
+ -90.36826024672769,
+ 37.26403972559597
+ ],
+ [
+ -90.791015625,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.89054983402983
+ ],
+ [
+ -90.36826024672769,
+ 37.89054983402983
+ ],
+ [
+ -90.57963793586384,
+ 38.20380488824675
+ ],
+ [
+ -90.791015625,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.89054983402983
+ ],
+ [
+ -90.57963793586384,
+ 38.20380488824675
+ ],
+ [
+ -91.00239331413616,
+ 38.20380488824675
+ ],
+ [
+ -90.791015625,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.89054983402983
+ ],
+ [
+ -91.00239331413616,
+ 38.20380488824675
+ ],
+ [
+ -91.21377100327231,
+ 37.89054983402983
+ ],
+ [
+ -90.791015625,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.89054983402983
+ ],
+ [
+ -91.21377100327231,
+ 37.89054983402983
+ ],
+ [
+ -91.00239331413616,
+ 37.5772947798129
+ ],
+ [
+ -90.791015625,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.89054983402983
+ ],
+ [
+ -91.00239331413616,
+ 37.5772947798129
+ ],
+ [
+ -90.57963793586384,
+ 37.5772947798129
+ ],
+ [
+ -90.791015625,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 37.89054983402983
+ ],
+ [
+ -90.57963793586384,
+ 37.5772947798129
+ ],
+ [
+ -90.36826024672769,
+ 37.89054983402983
+ ],
+ [
+ -90.791015625,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 38.51705994246368
+ ],
+ [
+ -90.36826024672769,
+ 38.51705994246368
+ ],
+ [
+ -90.57963793586384,
+ 38.830314996680606
+ ],
+ [
+ -90.791015625,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 38.51705994246368
+ ],
+ [
+ -90.57963793586384,
+ 38.830314996680606
+ ],
+ [
+ -91.00239331413616,
+ 38.830314996680606
+ ],
+ [
+ -90.791015625,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 38.51705994246368
+ ],
+ [
+ -91.00239331413616,
+ 38.830314996680606
+ ],
+ [
+ -91.21377100327231,
+ 38.51705994246368
+ ],
+ [
+ -90.791015625,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 38.51705994246368
+ ],
+ [
+ -91.21377100327231,
+ 38.51705994246368
+ ],
+ [
+ -91.00239331413616,
+ 38.20380488824676
+ ],
+ [
+ -90.791015625,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 38.51705994246368
+ ],
+ [
+ -91.00239331413616,
+ 38.20380488824676
+ ],
+ [
+ -90.57963793586384,
+ 38.20380488824676
+ ],
+ [
+ -90.791015625,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 38.51705994246368
+ ],
+ [
+ -90.57963793586384,
+ 38.20380488824676
+ ],
+ [
+ -90.36826024672769,
+ 38.51705994246368
+ ],
+ [
+ -90.791015625,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.14357005089754
+ ],
+ [
+ -90.36826024672769,
+ 39.14357005089754
+ ],
+ [
+ -90.57963793586384,
+ 39.45682510511446
+ ],
+ [
+ -90.791015625,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.14357005089754
+ ],
+ [
+ -90.57963793586384,
+ 39.45682510511446
+ ],
+ [
+ -91.00239331413616,
+ 39.45682510511446
+ ],
+ [
+ -90.791015625,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.14357005089754
+ ],
+ [
+ -91.00239331413616,
+ 39.45682510511446
+ ],
+ [
+ -91.21377100327231,
+ 39.14357005089754
+ ],
+ [
+ -90.791015625,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.14357005089754
+ ],
+ [
+ -91.21377100327231,
+ 39.14357005089754
+ ],
+ [
+ -91.00239331413616,
+ 38.83031499668061
+ ],
+ [
+ -90.791015625,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.14357005089754
+ ],
+ [
+ -91.00239331413616,
+ 38.83031499668061
+ ],
+ [
+ -90.57963793586384,
+ 38.83031499668061
+ ],
+ [
+ -90.791015625,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.14357005089754
+ ],
+ [
+ -90.57963793586384,
+ 38.83031499668061
+ ],
+ [
+ -90.36826024672769,
+ 39.14357005089754
+ ],
+ [
+ -90.791015625,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.77008015933139
+ ],
+ [
+ -90.36826024672769,
+ 39.77008015933139
+ ],
+ [
+ -90.57963793586384,
+ 40.08333521354832
+ ],
+ [
+ -90.791015625,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.77008015933139
+ ],
+ [
+ -90.57963793586384,
+ 40.08333521354832
+ ],
+ [
+ -91.00239331413616,
+ 40.08333521354832
+ ],
+ [
+ -90.791015625,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.77008015933139
+ ],
+ [
+ -91.00239331413616,
+ 40.08333521354832
+ ],
+ [
+ -91.21377100327231,
+ 39.77008015933139
+ ],
+ [
+ -90.791015625,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.77008015933139
+ ],
+ [
+ -91.21377100327231,
+ 39.77008015933139
+ ],
+ [
+ -91.00239331413616,
+ 39.45682510511447
+ ],
+ [
+ -90.791015625,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.77008015933139
+ ],
+ [
+ -91.00239331413616,
+ 39.45682510511447
+ ],
+ [
+ -90.57963793586384,
+ 39.45682510511447
+ ],
+ [
+ -90.791015625,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 39.77008015933139
+ ],
+ [
+ -90.57963793586384,
+ 39.45682510511447
+ ],
+ [
+ -90.36826024672769,
+ 39.77008015933139
+ ],
+ [
+ -90.791015625,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 40.39659026776525
+ ],
+ [
+ -90.36826024672769,
+ 40.39659026776525
+ ],
+ [
+ -90.57963793586384,
+ 40.70984532198217
+ ],
+ [
+ -90.791015625,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 40.39659026776525
+ ],
+ [
+ -90.57963793586384,
+ 40.70984532198217
+ ],
+ [
+ -91.00239331413616,
+ 40.70984532198217
+ ],
+ [
+ -90.791015625,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 40.39659026776525
+ ],
+ [
+ -91.00239331413616,
+ 40.70984532198217
+ ],
+ [
+ -91.21377100327231,
+ 40.39659026776525
+ ],
+ [
+ -90.791015625,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 40.39659026776525
+ ],
+ [
+ -91.21377100327231,
+ 40.39659026776525
+ ],
+ [
+ -91.00239331413616,
+ 40.083335213548324
+ ],
+ [
+ -90.791015625,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 40.39659026776525
+ ],
+ [
+ -91.00239331413616,
+ 40.083335213548324
+ ],
+ [
+ -90.57963793586384,
+ 40.083335213548324
+ ],
+ [
+ -90.791015625,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.791015625,
+ 40.39659026776525
+ ],
+ [
+ -90.57963793586384,
+ 40.083335213548324
+ ],
+ [
+ -90.36826024672769,
+ 40.39659026776525
+ ],
+ [
+ -90.791015625,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ],
+ [
+ -89.73412717931922,
+ 31.312193695474356
+ ],
+ [
+ -89.94550486845537,
+ 31.625448749691284
+ ],
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ],
+ [
+ -89.94550486845537,
+ 31.625448749691284
+ ],
+ [
+ -90.36826024672769,
+ 31.625448749691284
+ ],
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ],
+ [
+ -90.36826024672769,
+ 31.625448749691284
+ ],
+ [
+ -90.57963793586384,
+ 31.312193695474356
+ ],
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ],
+ [
+ -90.57963793586384,
+ 31.312193695474356
+ ],
+ [
+ -90.36826024672769,
+ 30.99893864125743
+ ],
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ],
+ [
+ -90.36826024672769,
+ 30.99893864125743
+ ],
+ [
+ -89.94550486845537,
+ 30.99893864125743
+ ],
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ],
+ [
+ -89.94550486845537,
+ 30.99893864125743
+ ],
+ [
+ -89.73412717931922,
+ 31.312193695474356
+ ],
+ [
+ -90.15688255759153,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ],
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ],
+ [
+ -89.94550486845537,
+ 32.251958858125136
+ ],
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ],
+ [
+ -89.94550486845537,
+ 32.251958858125136
+ ],
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ],
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ],
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ],
+ [
+ -90.57963793586384,
+ 31.938703803908208
+ ],
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ],
+ [
+ -90.57963793586384,
+ 31.938703803908208
+ ],
+ [
+ -90.36826024672769,
+ 31.62544874969128
+ ],
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ],
+ [
+ -90.36826024672769,
+ 31.62544874969128
+ ],
+ [
+ -89.94550486845537,
+ 31.62544874969128
+ ],
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ],
+ [
+ -89.94550486845537,
+ 31.62544874969128
+ ],
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ],
+ [
+ -90.15688255759153,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ],
+ [
+ -89.73412717931922,
+ 32.56521391234206
+ ],
+ [
+ -89.94550486845537,
+ 32.878468966558984
+ ],
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ],
+ [
+ -89.94550486845537,
+ 32.878468966558984
+ ],
+ [
+ -90.36826024672769,
+ 32.878468966558984
+ ],
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ],
+ [
+ -90.36826024672769,
+ 32.878468966558984
+ ],
+ [
+ -90.57963793586384,
+ 32.56521391234206
+ ],
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ],
+ [
+ -90.57963793586384,
+ 32.56521391234206
+ ],
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ],
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ],
+ [
+ -90.36826024672769,
+ 32.251958858125136
+ ],
+ [
+ -89.94550486845537,
+ 32.251958858125136
+ ],
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ],
+ [
+ -89.94550486845537,
+ 32.251958858125136
+ ],
+ [
+ -89.73412717931922,
+ 32.56521391234206
+ ],
+ [
+ -90.15688255759153,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ],
+ [
+ -89.73412717931922,
+ 33.191724020775915
+ ],
+ [
+ -89.94550486845537,
+ 33.50497907499284
+ ],
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ],
+ [
+ -89.94550486845537,
+ 33.50497907499284
+ ],
+ [
+ -90.36826024672769,
+ 33.50497907499284
+ ],
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ],
+ [
+ -90.36826024672769,
+ 33.50497907499284
+ ],
+ [
+ -90.57963793586384,
+ 33.191724020775915
+ ],
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ],
+ [
+ -90.57963793586384,
+ 33.191724020775915
+ ],
+ [
+ -90.36826024672769,
+ 32.87846896655899
+ ],
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ],
+ [
+ -90.36826024672769,
+ 32.87846896655899
+ ],
+ [
+ -89.94550486845537,
+ 32.87846896655899
+ ],
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ],
+ [
+ -89.94550486845537,
+ 32.87846896655899
+ ],
+ [
+ -89.73412717931922,
+ 33.191724020775915
+ ],
+ [
+ -90.15688255759153,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ],
+ [
+ -89.73412717931922,
+ 33.81823412920977
+ ],
+ [
+ -89.94550486845537,
+ 34.131489183426694
+ ],
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ],
+ [
+ -89.94550486845537,
+ 34.131489183426694
+ ],
+ [
+ -90.36826024672769,
+ 34.131489183426694
+ ],
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ],
+ [
+ -90.36826024672769,
+ 34.131489183426694
+ ],
+ [
+ -90.57963793586384,
+ 33.81823412920977
+ ],
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ],
+ [
+ -90.57963793586384,
+ 33.81823412920977
+ ],
+ [
+ -90.36826024672769,
+ 33.504979074992846
+ ],
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ],
+ [
+ -90.36826024672769,
+ 33.504979074992846
+ ],
+ [
+ -89.94550486845537,
+ 33.504979074992846
+ ],
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ],
+ [
+ -89.94550486845537,
+ 33.504979074992846
+ ],
+ [
+ -89.73412717931922,
+ 33.81823412920977
+ ],
+ [
+ -90.15688255759153,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ],
+ [
+ -89.73412717931922,
+ 34.444744237643626
+ ],
+ [
+ -89.94550486845537,
+ 34.75799929186055
+ ],
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ],
+ [
+ -89.94550486845537,
+ 34.75799929186055
+ ],
+ [
+ -90.36826024672769,
+ 34.75799929186055
+ ],
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ],
+ [
+ -90.36826024672769,
+ 34.75799929186055
+ ],
+ [
+ -90.57963793586384,
+ 34.444744237643626
+ ],
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ],
+ [
+ -90.57963793586384,
+ 34.444744237643626
+ ],
+ [
+ -90.36826024672769,
+ 34.1314891834267
+ ],
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ],
+ [
+ -90.36826024672769,
+ 34.1314891834267
+ ],
+ [
+ -89.94550486845537,
+ 34.1314891834267
+ ],
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ],
+ [
+ -89.94550486845537,
+ 34.1314891834267
+ ],
+ [
+ -89.73412717931922,
+ 34.444744237643626
+ ],
+ [
+ -90.15688255759153,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ],
+ [
+ -89.73412717931922,
+ 35.07125434607748
+ ],
+ [
+ -89.94550486845537,
+ 35.384509400294405
+ ],
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ],
+ [
+ -89.94550486845537,
+ 35.384509400294405
+ ],
+ [
+ -90.36826024672769,
+ 35.384509400294405
+ ],
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ],
+ [
+ -90.36826024672769,
+ 35.384509400294405
+ ],
+ [
+ -90.57963793586384,
+ 35.07125434607748
+ ],
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ],
+ [
+ -90.57963793586384,
+ 35.07125434607748
+ ],
+ [
+ -90.36826024672769,
+ 34.75799929186056
+ ],
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ],
+ [
+ -90.36826024672769,
+ 34.75799929186056
+ ],
+ [
+ -89.94550486845537,
+ 34.75799929186056
+ ],
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ],
+ [
+ -89.94550486845537,
+ 34.75799929186056
+ ],
+ [
+ -89.73412717931922,
+ 35.07125434607748
+ ],
+ [
+ -90.15688255759153,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ],
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ],
+ [
+ -89.94550486845537,
+ 36.01101950872826
+ ],
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ],
+ [
+ -89.94550486845537,
+ 36.01101950872826
+ ],
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ],
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ],
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ],
+ [
+ -90.57963793586384,
+ 35.697764454511336
+ ],
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ],
+ [
+ -90.57963793586384,
+ 35.697764454511336
+ ],
+ [
+ -90.36826024672769,
+ 35.38450940029441
+ ],
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ],
+ [
+ -90.36826024672769,
+ 35.38450940029441
+ ],
+ [
+ -89.94550486845537,
+ 35.38450940029441
+ ],
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ],
+ [
+ -89.94550486845537,
+ 35.38450940029441
+ ],
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ],
+ [
+ -90.15688255759153,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ],
+ [
+ -89.73412717931922,
+ 36.324274562945185
+ ],
+ [
+ -89.94550486845537,
+ 36.63752961716211
+ ],
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ],
+ [
+ -89.94550486845537,
+ 36.63752961716211
+ ],
+ [
+ -90.36826024672769,
+ 36.63752961716211
+ ],
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ],
+ [
+ -90.36826024672769,
+ 36.63752961716211
+ ],
+ [
+ -90.57963793586384,
+ 36.324274562945185
+ ],
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ],
+ [
+ -90.57963793586384,
+ 36.324274562945185
+ ],
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ],
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ],
+ [
+ -90.36826024672769,
+ 36.01101950872826
+ ],
+ [
+ -89.94550486845537,
+ 36.01101950872826
+ ],
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ],
+ [
+ -89.94550486845537,
+ 36.01101950872826
+ ],
+ [
+ -89.73412717931922,
+ 36.324274562945185
+ ],
+ [
+ -90.15688255759153,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ],
+ [
+ -89.73412717931922,
+ 36.95078467137904
+ ],
+ [
+ -89.94550486845537,
+ 37.264039725595964
+ ],
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ],
+ [
+ -89.94550486845537,
+ 37.264039725595964
+ ],
+ [
+ -90.36826024672769,
+ 37.264039725595964
+ ],
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ],
+ [
+ -90.36826024672769,
+ 37.264039725595964
+ ],
+ [
+ -90.57963793586384,
+ 36.95078467137904
+ ],
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ],
+ [
+ -90.57963793586384,
+ 36.95078467137904
+ ],
+ [
+ -90.36826024672769,
+ 36.637529617162116
+ ],
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ],
+ [
+ -90.36826024672769,
+ 36.637529617162116
+ ],
+ [
+ -89.94550486845537,
+ 36.637529617162116
+ ],
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ],
+ [
+ -89.94550486845537,
+ 36.637529617162116
+ ],
+ [
+ -89.73412717931922,
+ 36.95078467137904
+ ],
+ [
+ -90.15688255759153,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ],
+ [
+ -89.73412717931922,
+ 37.577294779812895
+ ],
+ [
+ -89.94550486845537,
+ 37.89054983402982
+ ],
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ],
+ [
+ -89.94550486845537,
+ 37.89054983402982
+ ],
+ [
+ -90.36826024672769,
+ 37.89054983402982
+ ],
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ],
+ [
+ -90.36826024672769,
+ 37.89054983402982
+ ],
+ [
+ -90.57963793586384,
+ 37.577294779812895
+ ],
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ],
+ [
+ -90.57963793586384,
+ 37.577294779812895
+ ],
+ [
+ -90.36826024672769,
+ 37.26403972559597
+ ],
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ],
+ [
+ -90.36826024672769,
+ 37.26403972559597
+ ],
+ [
+ -89.94550486845537,
+ 37.26403972559597
+ ],
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ],
+ [
+ -89.94550486845537,
+ 37.26403972559597
+ ],
+ [
+ -89.73412717931922,
+ 37.577294779812895
+ ],
+ [
+ -90.15688255759153,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ],
+ [
+ -89.73412717931922,
+ 38.20380488824675
+ ],
+ [
+ -89.94550486845537,
+ 38.517059942463675
+ ],
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ],
+ [
+ -89.94550486845537,
+ 38.517059942463675
+ ],
+ [
+ -90.36826024672769,
+ 38.517059942463675
+ ],
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ],
+ [
+ -90.36826024672769,
+ 38.517059942463675
+ ],
+ [
+ -90.57963793586384,
+ 38.20380488824675
+ ],
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ],
+ [
+ -90.57963793586384,
+ 38.20380488824675
+ ],
+ [
+ -90.36826024672769,
+ 37.89054983402983
+ ],
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ],
+ [
+ -90.36826024672769,
+ 37.89054983402983
+ ],
+ [
+ -89.94550486845537,
+ 37.89054983402983
+ ],
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ],
+ [
+ -89.94550486845537,
+ 37.89054983402983
+ ],
+ [
+ -89.73412717931922,
+ 38.20380488824675
+ ],
+ [
+ -90.15688255759153,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ],
+ [
+ -89.73412717931922,
+ 38.830314996680606
+ ],
+ [
+ -89.94550486845537,
+ 39.14357005089753
+ ],
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ],
+ [
+ -89.94550486845537,
+ 39.14357005089753
+ ],
+ [
+ -90.36826024672769,
+ 39.14357005089753
+ ],
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ],
+ [
+ -90.36826024672769,
+ 39.14357005089753
+ ],
+ [
+ -90.57963793586384,
+ 38.830314996680606
+ ],
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ],
+ [
+ -90.57963793586384,
+ 38.830314996680606
+ ],
+ [
+ -90.36826024672769,
+ 38.51705994246368
+ ],
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ],
+ [
+ -90.36826024672769,
+ 38.51705994246368
+ ],
+ [
+ -89.94550486845537,
+ 38.51705994246368
+ ],
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ],
+ [
+ -89.94550486845537,
+ 38.51705994246368
+ ],
+ [
+ -89.73412717931922,
+ 38.830314996680606
+ ],
+ [
+ -90.15688255759153,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ],
+ [
+ -89.73412717931922,
+ 39.45682510511446
+ ],
+ [
+ -89.94550486845537,
+ 39.770080159331386
+ ],
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ],
+ [
+ -89.94550486845537,
+ 39.770080159331386
+ ],
+ [
+ -90.36826024672769,
+ 39.770080159331386
+ ],
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ],
+ [
+ -90.36826024672769,
+ 39.770080159331386
+ ],
+ [
+ -90.57963793586384,
+ 39.45682510511446
+ ],
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ],
+ [
+ -90.57963793586384,
+ 39.45682510511446
+ ],
+ [
+ -90.36826024672769,
+ 39.14357005089754
+ ],
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ],
+ [
+ -90.36826024672769,
+ 39.14357005089754
+ ],
+ [
+ -89.94550486845537,
+ 39.14357005089754
+ ],
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ],
+ [
+ -89.94550486845537,
+ 39.14357005089754
+ ],
+ [
+ -89.73412717931922,
+ 39.45682510511446
+ ],
+ [
+ -90.15688255759153,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ],
+ [
+ -89.73412717931922,
+ 40.08333521354832
+ ],
+ [
+ -89.94550486845537,
+ 40.39659026776524
+ ],
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ],
+ [
+ -89.94550486845537,
+ 40.39659026776524
+ ],
+ [
+ -90.36826024672769,
+ 40.39659026776524
+ ],
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ],
+ [
+ -90.36826024672769,
+ 40.39659026776524
+ ],
+ [
+ -90.57963793586384,
+ 40.08333521354832
+ ],
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ],
+ [
+ -90.57963793586384,
+ 40.08333521354832
+ ],
+ [
+ -90.36826024672769,
+ 39.77008015933139
+ ],
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ],
+ [
+ -90.36826024672769,
+ 39.77008015933139
+ ],
+ [
+ -89.94550486845537,
+ 39.77008015933139
+ ],
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ],
+ [
+ -89.94550486845537,
+ 39.77008015933139
+ ],
+ [
+ -89.73412717931922,
+ 40.08333521354832
+ ],
+ [
+ -90.15688255759153,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ],
+ [
+ -89.73412717931922,
+ 40.70984532198217
+ ],
+ [
+ -89.94550486845537,
+ 41.023100376199096
+ ],
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ],
+ [
+ -89.94550486845537,
+ 41.023100376199096
+ ],
+ [
+ -90.36826024672769,
+ 41.023100376199096
+ ],
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ],
+ [
+ -90.36826024672769,
+ 41.023100376199096
+ ],
+ [
+ -90.57963793586384,
+ 40.70984532198217
+ ],
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ],
+ [
+ -90.57963793586384,
+ 40.70984532198217
+ ],
+ [
+ -90.36826024672769,
+ 40.39659026776525
+ ],
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ],
+ [
+ -90.36826024672769,
+ 40.39659026776525
+ ],
+ [
+ -89.94550486845537,
+ 40.39659026776525
+ ],
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ],
+ [
+ -89.94550486845537,
+ 40.39659026776525
+ ],
+ [
+ -89.73412717931922,
+ 40.70984532198217
+ ],
+ [
+ -90.15688255759153,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ],
+ [
+ -89.09999411191075,
+ 30.99893864125743
+ ],
+ [
+ -89.3113718010469,
+ 31.312193695474356
+ ],
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ],
+ [
+ -89.3113718010469,
+ 31.312193695474356
+ ],
+ [
+ -89.73412717931922,
+ 31.312193695474356
+ ],
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ],
+ [
+ -89.73412717931922,
+ 31.312193695474356
+ ],
+ [
+ -89.94550486845537,
+ 30.99893864125743
+ ],
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ],
+ [
+ -89.94550486845537,
+ 30.99893864125743
+ ],
+ [
+ -89.73412717931922,
+ 30.6856835870405
+ ],
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ],
+ [
+ -89.73412717931922,
+ 30.6856835870405
+ ],
+ [
+ -89.3113718010469,
+ 30.6856835870405
+ ],
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ],
+ [
+ -89.3113718010469,
+ 30.6856835870405
+ ],
+ [
+ -89.09999411191075,
+ 30.99893864125743
+ ],
+ [
+ -89.52274949018306,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ],
+ [
+ -89.09999411191075,
+ 31.62544874969128
+ ],
+ [
+ -89.3113718010469,
+ 31.938703803908208
+ ],
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ],
+ [
+ -89.3113718010469,
+ 31.938703803908208
+ ],
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ],
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ],
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ],
+ [
+ -89.94550486845537,
+ 31.62544874969128
+ ],
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ],
+ [
+ -89.94550486845537,
+ 31.62544874969128
+ ],
+ [
+ -89.73412717931922,
+ 31.312193695474352
+ ],
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ],
+ [
+ -89.73412717931922,
+ 31.312193695474352
+ ],
+ [
+ -89.3113718010469,
+ 31.312193695474352
+ ],
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ],
+ [
+ -89.3113718010469,
+ 31.312193695474352
+ ],
+ [
+ -89.09999411191075,
+ 31.62544874969128
+ ],
+ [
+ -89.52274949018306,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ],
+ [
+ -89.09999411191075,
+ 32.251958858125136
+ ],
+ [
+ -89.3113718010469,
+ 32.56521391234206
+ ],
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ],
+ [
+ -89.3113718010469,
+ 32.56521391234206
+ ],
+ [
+ -89.73412717931922,
+ 32.56521391234206
+ ],
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ],
+ [
+ -89.73412717931922,
+ 32.56521391234206
+ ],
+ [
+ -89.94550486845537,
+ 32.251958858125136
+ ],
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ],
+ [
+ -89.94550486845537,
+ 32.251958858125136
+ ],
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ],
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ],
+ [
+ -89.73412717931922,
+ 31.938703803908208
+ ],
+ [
+ -89.3113718010469,
+ 31.938703803908208
+ ],
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ],
+ [
+ -89.3113718010469,
+ 31.938703803908208
+ ],
+ [
+ -89.09999411191075,
+ 32.251958858125136
+ ],
+ [
+ -89.52274949018306,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ],
+ [
+ -89.09999411191075,
+ 32.87846896655899
+ ],
+ [
+ -89.3113718010469,
+ 33.191724020775915
+ ],
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ],
+ [
+ -89.3113718010469,
+ 33.191724020775915
+ ],
+ [
+ -89.73412717931922,
+ 33.191724020775915
+ ],
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ],
+ [
+ -89.73412717931922,
+ 33.191724020775915
+ ],
+ [
+ -89.94550486845537,
+ 32.87846896655899
+ ],
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ],
+ [
+ -89.94550486845537,
+ 32.87846896655899
+ ],
+ [
+ -89.73412717931922,
+ 32.56521391234207
+ ],
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ],
+ [
+ -89.73412717931922,
+ 32.56521391234207
+ ],
+ [
+ -89.3113718010469,
+ 32.56521391234207
+ ],
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ],
+ [
+ -89.3113718010469,
+ 32.56521391234207
+ ],
+ [
+ -89.09999411191075,
+ 32.87846896655899
+ ],
+ [
+ -89.52274949018306,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ],
+ [
+ -89.09999411191075,
+ 33.504979074992846
+ ],
+ [
+ -89.3113718010469,
+ 33.81823412920977
+ ],
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ],
+ [
+ -89.3113718010469,
+ 33.81823412920977
+ ],
+ [
+ -89.73412717931922,
+ 33.81823412920977
+ ],
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ],
+ [
+ -89.73412717931922,
+ 33.81823412920977
+ ],
+ [
+ -89.94550486845537,
+ 33.504979074992846
+ ],
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ],
+ [
+ -89.94550486845537,
+ 33.504979074992846
+ ],
+ [
+ -89.73412717931922,
+ 33.19172402077592
+ ],
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ],
+ [
+ -89.73412717931922,
+ 33.19172402077592
+ ],
+ [
+ -89.3113718010469,
+ 33.19172402077592
+ ],
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ],
+ [
+ -89.3113718010469,
+ 33.19172402077592
+ ],
+ [
+ -89.09999411191075,
+ 33.504979074992846
+ ],
+ [
+ -89.52274949018306,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ],
+ [
+ -89.09999411191075,
+ 34.1314891834267
+ ],
+ [
+ -89.3113718010469,
+ 34.444744237643626
+ ],
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ],
+ [
+ -89.3113718010469,
+ 34.444744237643626
+ ],
+ [
+ -89.73412717931922,
+ 34.444744237643626
+ ],
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ],
+ [
+ -89.73412717931922,
+ 34.444744237643626
+ ],
+ [
+ -89.94550486845537,
+ 34.1314891834267
+ ],
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ],
+ [
+ -89.94550486845537,
+ 34.1314891834267
+ ],
+ [
+ -89.73412717931922,
+ 33.81823412920978
+ ],
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ],
+ [
+ -89.73412717931922,
+ 33.81823412920978
+ ],
+ [
+ -89.3113718010469,
+ 33.81823412920978
+ ],
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ],
+ [
+ -89.3113718010469,
+ 33.81823412920978
+ ],
+ [
+ -89.09999411191075,
+ 34.1314891834267
+ ],
+ [
+ -89.52274949018306,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ],
+ [
+ -89.09999411191075,
+ 34.75799929186056
+ ],
+ [
+ -89.3113718010469,
+ 35.07125434607748
+ ],
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ],
+ [
+ -89.3113718010469,
+ 35.07125434607748
+ ],
+ [
+ -89.73412717931922,
+ 35.07125434607748
+ ],
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ],
+ [
+ -89.73412717931922,
+ 35.07125434607748
+ ],
+ [
+ -89.94550486845537,
+ 34.75799929186056
+ ],
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ],
+ [
+ -89.94550486845537,
+ 34.75799929186056
+ ],
+ [
+ -89.73412717931922,
+ 34.44474423764363
+ ],
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ],
+ [
+ -89.73412717931922,
+ 34.44474423764363
+ ],
+ [
+ -89.3113718010469,
+ 34.44474423764363
+ ],
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ],
+ [
+ -89.3113718010469,
+ 34.44474423764363
+ ],
+ [
+ -89.09999411191075,
+ 34.75799929186056
+ ],
+ [
+ -89.52274949018306,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ],
+ [
+ -89.09999411191075,
+ 35.38450940029441
+ ],
+ [
+ -89.3113718010469,
+ 35.697764454511336
+ ],
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ],
+ [
+ -89.3113718010469,
+ 35.697764454511336
+ ],
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ],
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ],
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ],
+ [
+ -89.94550486845537,
+ 35.38450940029441
+ ],
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ],
+ [
+ -89.94550486845537,
+ 35.38450940029441
+ ],
+ [
+ -89.73412717931922,
+ 35.07125434607749
+ ],
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ],
+ [
+ -89.73412717931922,
+ 35.07125434607749
+ ],
+ [
+ -89.3113718010469,
+ 35.07125434607749
+ ],
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ],
+ [
+ -89.3113718010469,
+ 35.07125434607749
+ ],
+ [
+ -89.09999411191075,
+ 35.38450940029441
+ ],
+ [
+ -89.52274949018306,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ],
+ [
+ -89.09999411191075,
+ 36.01101950872826
+ ],
+ [
+ -89.3113718010469,
+ 36.324274562945185
+ ],
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ],
+ [
+ -89.3113718010469,
+ 36.324274562945185
+ ],
+ [
+ -89.73412717931922,
+ 36.324274562945185
+ ],
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ],
+ [
+ -89.73412717931922,
+ 36.324274562945185
+ ],
+ [
+ -89.94550486845537,
+ 36.01101950872826
+ ],
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ],
+ [
+ -89.94550486845537,
+ 36.01101950872826
+ ],
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ],
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ],
+ [
+ -89.73412717931922,
+ 35.697764454511336
+ ],
+ [
+ -89.3113718010469,
+ 35.697764454511336
+ ],
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ],
+ [
+ -89.3113718010469,
+ 35.697764454511336
+ ],
+ [
+ -89.09999411191075,
+ 36.01101950872826
+ ],
+ [
+ -89.52274949018306,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ],
+ [
+ -89.09999411191075,
+ 36.637529617162116
+ ],
+ [
+ -89.3113718010469,
+ 36.95078467137904
+ ],
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ],
+ [
+ -89.3113718010469,
+ 36.95078467137904
+ ],
+ [
+ -89.73412717931922,
+ 36.95078467137904
+ ],
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ],
+ [
+ -89.73412717931922,
+ 36.95078467137904
+ ],
+ [
+ -89.94550486845537,
+ 36.637529617162116
+ ],
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ],
+ [
+ -89.94550486845537,
+ 36.637529617162116
+ ],
+ [
+ -89.73412717931922,
+ 36.32427456294519
+ ],
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ],
+ [
+ -89.73412717931922,
+ 36.32427456294519
+ ],
+ [
+ -89.3113718010469,
+ 36.32427456294519
+ ],
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ],
+ [
+ -89.3113718010469,
+ 36.32427456294519
+ ],
+ [
+ -89.09999411191075,
+ 36.637529617162116
+ ],
+ [
+ -89.52274949018306,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ],
+ [
+ -89.09999411191075,
+ 37.26403972559597
+ ],
+ [
+ -89.3113718010469,
+ 37.577294779812895
+ ],
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ],
+ [
+ -89.3113718010469,
+ 37.577294779812895
+ ],
+ [
+ -89.73412717931922,
+ 37.577294779812895
+ ],
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ],
+ [
+ -89.73412717931922,
+ 37.577294779812895
+ ],
+ [
+ -89.94550486845537,
+ 37.26403972559597
+ ],
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ],
+ [
+ -89.94550486845537,
+ 37.26403972559597
+ ],
+ [
+ -89.73412717931922,
+ 36.95078467137905
+ ],
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ],
+ [
+ -89.73412717931922,
+ 36.95078467137905
+ ],
+ [
+ -89.3113718010469,
+ 36.95078467137905
+ ],
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ],
+ [
+ -89.3113718010469,
+ 36.95078467137905
+ ],
+ [
+ -89.09999411191075,
+ 37.26403972559597
+ ],
+ [
+ -89.52274949018306,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ],
+ [
+ -89.09999411191075,
+ 37.89054983402983
+ ],
+ [
+ -89.3113718010469,
+ 38.20380488824675
+ ],
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ],
+ [
+ -89.3113718010469,
+ 38.20380488824675
+ ],
+ [
+ -89.73412717931922,
+ 38.20380488824675
+ ],
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ],
+ [
+ -89.73412717931922,
+ 38.20380488824675
+ ],
+ [
+ -89.94550486845537,
+ 37.89054983402983
+ ],
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ],
+ [
+ -89.94550486845537,
+ 37.89054983402983
+ ],
+ [
+ -89.73412717931922,
+ 37.5772947798129
+ ],
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ],
+ [
+ -89.73412717931922,
+ 37.5772947798129
+ ],
+ [
+ -89.3113718010469,
+ 37.5772947798129
+ ],
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ],
+ [
+ -89.3113718010469,
+ 37.5772947798129
+ ],
+ [
+ -89.09999411191075,
+ 37.89054983402983
+ ],
+ [
+ -89.52274949018306,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ],
+ [
+ -89.09999411191075,
+ 38.51705994246368
+ ],
+ [
+ -89.3113718010469,
+ 38.830314996680606
+ ],
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ],
+ [
+ -89.3113718010469,
+ 38.830314996680606
+ ],
+ [
+ -89.73412717931922,
+ 38.830314996680606
+ ],
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ],
+ [
+ -89.73412717931922,
+ 38.830314996680606
+ ],
+ [
+ -89.94550486845537,
+ 38.51705994246368
+ ],
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ],
+ [
+ -89.94550486845537,
+ 38.51705994246368
+ ],
+ [
+ -89.73412717931922,
+ 38.20380488824676
+ ],
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ],
+ [
+ -89.73412717931922,
+ 38.20380488824676
+ ],
+ [
+ -89.3113718010469,
+ 38.20380488824676
+ ],
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ],
+ [
+ -89.3113718010469,
+ 38.20380488824676
+ ],
+ [
+ -89.09999411191075,
+ 38.51705994246368
+ ],
+ [
+ -89.52274949018306,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ],
+ [
+ -89.09999411191075,
+ 39.14357005089754
+ ],
+ [
+ -89.3113718010469,
+ 39.45682510511446
+ ],
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ],
+ [
+ -89.3113718010469,
+ 39.45682510511446
+ ],
+ [
+ -89.73412717931922,
+ 39.45682510511446
+ ],
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ],
+ [
+ -89.73412717931922,
+ 39.45682510511446
+ ],
+ [
+ -89.94550486845537,
+ 39.14357005089754
+ ],
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ],
+ [
+ -89.94550486845537,
+ 39.14357005089754
+ ],
+ [
+ -89.73412717931922,
+ 38.83031499668061
+ ],
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ],
+ [
+ -89.73412717931922,
+ 38.83031499668061
+ ],
+ [
+ -89.3113718010469,
+ 38.83031499668061
+ ],
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ],
+ [
+ -89.3113718010469,
+ 38.83031499668061
+ ],
+ [
+ -89.09999411191075,
+ 39.14357005089754
+ ],
+ [
+ -89.52274949018306,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ],
+ [
+ -89.09999411191075,
+ 39.77008015933139
+ ],
+ [
+ -89.3113718010469,
+ 40.08333521354832
+ ],
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ],
+ [
+ -89.3113718010469,
+ 40.08333521354832
+ ],
+ [
+ -89.73412717931922,
+ 40.08333521354832
+ ],
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ],
+ [
+ -89.73412717931922,
+ 40.08333521354832
+ ],
+ [
+ -89.94550486845537,
+ 39.77008015933139
+ ],
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ],
+ [
+ -89.94550486845537,
+ 39.77008015933139
+ ],
+ [
+ -89.73412717931922,
+ 39.45682510511447
+ ],
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ],
+ [
+ -89.73412717931922,
+ 39.45682510511447
+ ],
+ [
+ -89.3113718010469,
+ 39.45682510511447
+ ],
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ],
+ [
+ -89.3113718010469,
+ 39.45682510511447
+ ],
+ [
+ -89.09999411191075,
+ 39.77008015933139
+ ],
+ [
+ -89.52274949018306,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ],
+ [
+ -89.09999411191075,
+ 40.39659026776525
+ ],
+ [
+ -89.3113718010469,
+ 40.70984532198217
+ ],
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ],
+ [
+ -89.3113718010469,
+ 40.70984532198217
+ ],
+ [
+ -89.73412717931922,
+ 40.70984532198217
+ ],
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ],
+ [
+ -89.73412717931922,
+ 40.70984532198217
+ ],
+ [
+ -89.94550486845537,
+ 40.39659026776525
+ ],
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ],
+ [
+ -89.94550486845537,
+ 40.39659026776525
+ ],
+ [
+ -89.73412717931922,
+ 40.083335213548324
+ ],
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ],
+ [
+ -89.73412717931922,
+ 40.083335213548324
+ ],
+ [
+ -89.3113718010469,
+ 40.083335213548324
+ ],
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ],
+ [
+ -89.3113718010469,
+ 40.083335213548324
+ ],
+ [
+ -89.09999411191075,
+ 40.39659026776525
+ ],
+ [
+ -89.52274949018306,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ],
+ [
+ -88.46586104450229,
+ 31.312193695474356
+ ],
+ [
+ -88.67723873363845,
+ 31.625448749691284
+ ],
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ],
+ [
+ -88.67723873363845,
+ 31.625448749691284
+ ],
+ [
+ -89.09999411191076,
+ 31.625448749691284
+ ],
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ],
+ [
+ -89.09999411191076,
+ 31.625448749691284
+ ],
+ [
+ -89.31137180104692,
+ 31.312193695474356
+ ],
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ],
+ [
+ -89.31137180104692,
+ 31.312193695474356
+ ],
+ [
+ -89.09999411191076,
+ 30.99893864125743
+ ],
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ],
+ [
+ -89.09999411191076,
+ 30.99893864125743
+ ],
+ [
+ -88.67723873363845,
+ 30.99893864125743
+ ],
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ],
+ [
+ -88.67723873363845,
+ 30.99893864125743
+ ],
+ [
+ -88.46586104450229,
+ 31.312193695474356
+ ],
+ [
+ -88.8886164227746,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ],
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ],
+ [
+ -88.67723873363845,
+ 32.251958858125136
+ ],
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ],
+ [
+ -88.67723873363845,
+ 32.251958858125136
+ ],
+ [
+ -89.09999411191076,
+ 32.251958858125136
+ ],
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ],
+ [
+ -89.09999411191076,
+ 32.251958858125136
+ ],
+ [
+ -89.31137180104692,
+ 31.938703803908208
+ ],
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ],
+ [
+ -89.31137180104692,
+ 31.938703803908208
+ ],
+ [
+ -89.09999411191076,
+ 31.62544874969128
+ ],
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ],
+ [
+ -89.09999411191076,
+ 31.62544874969128
+ ],
+ [
+ -88.67723873363845,
+ 31.62544874969128
+ ],
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ],
+ [
+ -88.67723873363845,
+ 31.62544874969128
+ ],
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ],
+ [
+ -88.8886164227746,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ],
+ [
+ -88.46586104450229,
+ 32.56521391234206
+ ],
+ [
+ -88.67723873363845,
+ 32.878468966558984
+ ],
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ],
+ [
+ -88.67723873363845,
+ 32.878468966558984
+ ],
+ [
+ -89.09999411191076,
+ 32.878468966558984
+ ],
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ],
+ [
+ -89.09999411191076,
+ 32.878468966558984
+ ],
+ [
+ -89.31137180104692,
+ 32.56521391234206
+ ],
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ],
+ [
+ -89.31137180104692,
+ 32.56521391234206
+ ],
+ [
+ -89.09999411191076,
+ 32.251958858125136
+ ],
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ],
+ [
+ -89.09999411191076,
+ 32.251958858125136
+ ],
+ [
+ -88.67723873363845,
+ 32.251958858125136
+ ],
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ],
+ [
+ -88.67723873363845,
+ 32.251958858125136
+ ],
+ [
+ -88.46586104450229,
+ 32.56521391234206
+ ],
+ [
+ -88.8886164227746,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ],
+ [
+ -88.46586104450229,
+ 33.191724020775915
+ ],
+ [
+ -88.67723873363845,
+ 33.50497907499284
+ ],
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ],
+ [
+ -88.67723873363845,
+ 33.50497907499284
+ ],
+ [
+ -89.09999411191076,
+ 33.50497907499284
+ ],
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ],
+ [
+ -89.09999411191076,
+ 33.50497907499284
+ ],
+ [
+ -89.31137180104692,
+ 33.191724020775915
+ ],
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ],
+ [
+ -89.31137180104692,
+ 33.191724020775915
+ ],
+ [
+ -89.09999411191076,
+ 32.87846896655899
+ ],
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ],
+ [
+ -89.09999411191076,
+ 32.87846896655899
+ ],
+ [
+ -88.67723873363845,
+ 32.87846896655899
+ ],
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ],
+ [
+ -88.67723873363845,
+ 32.87846896655899
+ ],
+ [
+ -88.46586104450229,
+ 33.191724020775915
+ ],
+ [
+ -88.8886164227746,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ],
+ [
+ -88.46586104450229,
+ 33.81823412920977
+ ],
+ [
+ -88.67723873363845,
+ 34.131489183426694
+ ],
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ],
+ [
+ -88.67723873363845,
+ 34.131489183426694
+ ],
+ [
+ -89.09999411191076,
+ 34.131489183426694
+ ],
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ],
+ [
+ -89.09999411191076,
+ 34.131489183426694
+ ],
+ [
+ -89.31137180104692,
+ 33.81823412920977
+ ],
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ],
+ [
+ -89.31137180104692,
+ 33.81823412920977
+ ],
+ [
+ -89.09999411191076,
+ 33.504979074992846
+ ],
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ],
+ [
+ -89.09999411191076,
+ 33.504979074992846
+ ],
+ [
+ -88.67723873363845,
+ 33.504979074992846
+ ],
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ],
+ [
+ -88.67723873363845,
+ 33.504979074992846
+ ],
+ [
+ -88.46586104450229,
+ 33.81823412920977
+ ],
+ [
+ -88.8886164227746,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ],
+ [
+ -88.46586104450229,
+ 34.444744237643626
+ ],
+ [
+ -88.67723873363845,
+ 34.75799929186055
+ ],
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ],
+ [
+ -88.67723873363845,
+ 34.75799929186055
+ ],
+ [
+ -89.09999411191076,
+ 34.75799929186055
+ ],
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ],
+ [
+ -89.09999411191076,
+ 34.75799929186055
+ ],
+ [
+ -89.31137180104692,
+ 34.444744237643626
+ ],
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ],
+ [
+ -89.31137180104692,
+ 34.444744237643626
+ ],
+ [
+ -89.09999411191076,
+ 34.1314891834267
+ ],
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ],
+ [
+ -89.09999411191076,
+ 34.1314891834267
+ ],
+ [
+ -88.67723873363845,
+ 34.1314891834267
+ ],
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ],
+ [
+ -88.67723873363845,
+ 34.1314891834267
+ ],
+ [
+ -88.46586104450229,
+ 34.444744237643626
+ ],
+ [
+ -88.8886164227746,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ],
+ [
+ -88.46586104450229,
+ 35.07125434607748
+ ],
+ [
+ -88.67723873363845,
+ 35.384509400294405
+ ],
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ],
+ [
+ -88.67723873363845,
+ 35.384509400294405
+ ],
+ [
+ -89.09999411191076,
+ 35.384509400294405
+ ],
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ],
+ [
+ -89.09999411191076,
+ 35.384509400294405
+ ],
+ [
+ -89.31137180104692,
+ 35.07125434607748
+ ],
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ],
+ [
+ -89.31137180104692,
+ 35.07125434607748
+ ],
+ [
+ -89.09999411191076,
+ 34.75799929186056
+ ],
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ],
+ [
+ -89.09999411191076,
+ 34.75799929186056
+ ],
+ [
+ -88.67723873363845,
+ 34.75799929186056
+ ],
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ],
+ [
+ -88.67723873363845,
+ 34.75799929186056
+ ],
+ [
+ -88.46586104450229,
+ 35.07125434607748
+ ],
+ [
+ -88.8886164227746,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ],
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ],
+ [
+ -88.67723873363845,
+ 36.01101950872826
+ ],
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ],
+ [
+ -88.67723873363845,
+ 36.01101950872826
+ ],
+ [
+ -89.09999411191076,
+ 36.01101950872826
+ ],
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ],
+ [
+ -89.09999411191076,
+ 36.01101950872826
+ ],
+ [
+ -89.31137180104692,
+ 35.697764454511336
+ ],
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ],
+ [
+ -89.31137180104692,
+ 35.697764454511336
+ ],
+ [
+ -89.09999411191076,
+ 35.38450940029441
+ ],
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ],
+ [
+ -89.09999411191076,
+ 35.38450940029441
+ ],
+ [
+ -88.67723873363845,
+ 35.38450940029441
+ ],
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ],
+ [
+ -88.67723873363845,
+ 35.38450940029441
+ ],
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ],
+ [
+ -88.8886164227746,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ],
+ [
+ -88.46586104450229,
+ 36.324274562945185
+ ],
+ [
+ -88.67723873363845,
+ 36.63752961716211
+ ],
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ],
+ [
+ -88.67723873363845,
+ 36.63752961716211
+ ],
+ [
+ -89.09999411191076,
+ 36.63752961716211
+ ],
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ],
+ [
+ -89.09999411191076,
+ 36.63752961716211
+ ],
+ [
+ -89.31137180104692,
+ 36.324274562945185
+ ],
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ],
+ [
+ -89.31137180104692,
+ 36.324274562945185
+ ],
+ [
+ -89.09999411191076,
+ 36.01101950872826
+ ],
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ],
+ [
+ -89.09999411191076,
+ 36.01101950872826
+ ],
+ [
+ -88.67723873363845,
+ 36.01101950872826
+ ],
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ],
+ [
+ -88.67723873363845,
+ 36.01101950872826
+ ],
+ [
+ -88.46586104450229,
+ 36.324274562945185
+ ],
+ [
+ -88.8886164227746,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ],
+ [
+ -88.46586104450229,
+ 36.95078467137904
+ ],
+ [
+ -88.67723873363845,
+ 37.264039725595964
+ ],
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ],
+ [
+ -88.67723873363845,
+ 37.264039725595964
+ ],
+ [
+ -89.09999411191076,
+ 37.264039725595964
+ ],
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ],
+ [
+ -89.09999411191076,
+ 37.264039725595964
+ ],
+ [
+ -89.31137180104692,
+ 36.95078467137904
+ ],
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ],
+ [
+ -89.31137180104692,
+ 36.95078467137904
+ ],
+ [
+ -89.09999411191076,
+ 36.637529617162116
+ ],
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ],
+ [
+ -89.09999411191076,
+ 36.637529617162116
+ ],
+ [
+ -88.67723873363845,
+ 36.637529617162116
+ ],
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ],
+ [
+ -88.67723873363845,
+ 36.637529617162116
+ ],
+ [
+ -88.46586104450229,
+ 36.95078467137904
+ ],
+ [
+ -88.8886164227746,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ],
+ [
+ -88.46586104450229,
+ 37.577294779812895
+ ],
+ [
+ -88.67723873363845,
+ 37.89054983402982
+ ],
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ],
+ [
+ -88.67723873363845,
+ 37.89054983402982
+ ],
+ [
+ -89.09999411191076,
+ 37.89054983402982
+ ],
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ],
+ [
+ -89.09999411191076,
+ 37.89054983402982
+ ],
+ [
+ -89.31137180104692,
+ 37.577294779812895
+ ],
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ],
+ [
+ -89.31137180104692,
+ 37.577294779812895
+ ],
+ [
+ -89.09999411191076,
+ 37.26403972559597
+ ],
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ],
+ [
+ -89.09999411191076,
+ 37.26403972559597
+ ],
+ [
+ -88.67723873363845,
+ 37.26403972559597
+ ],
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ],
+ [
+ -88.67723873363845,
+ 37.26403972559597
+ ],
+ [
+ -88.46586104450229,
+ 37.577294779812895
+ ],
+ [
+ -88.8886164227746,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ],
+ [
+ -88.46586104450229,
+ 38.20380488824675
+ ],
+ [
+ -88.67723873363845,
+ 38.517059942463675
+ ],
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ],
+ [
+ -88.67723873363845,
+ 38.517059942463675
+ ],
+ [
+ -89.09999411191076,
+ 38.517059942463675
+ ],
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ],
+ [
+ -89.09999411191076,
+ 38.517059942463675
+ ],
+ [
+ -89.31137180104692,
+ 38.20380488824675
+ ],
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ],
+ [
+ -89.31137180104692,
+ 38.20380488824675
+ ],
+ [
+ -89.09999411191076,
+ 37.89054983402983
+ ],
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ],
+ [
+ -89.09999411191076,
+ 37.89054983402983
+ ],
+ [
+ -88.67723873363845,
+ 37.89054983402983
+ ],
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ],
+ [
+ -88.67723873363845,
+ 37.89054983402983
+ ],
+ [
+ -88.46586104450229,
+ 38.20380488824675
+ ],
+ [
+ -88.8886164227746,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ],
+ [
+ -88.46586104450229,
+ 38.830314996680606
+ ],
+ [
+ -88.67723873363845,
+ 39.14357005089753
+ ],
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ],
+ [
+ -88.67723873363845,
+ 39.14357005089753
+ ],
+ [
+ -89.09999411191076,
+ 39.14357005089753
+ ],
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ],
+ [
+ -89.09999411191076,
+ 39.14357005089753
+ ],
+ [
+ -89.31137180104692,
+ 38.830314996680606
+ ],
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ],
+ [
+ -89.31137180104692,
+ 38.830314996680606
+ ],
+ [
+ -89.09999411191076,
+ 38.51705994246368
+ ],
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ],
+ [
+ -89.09999411191076,
+ 38.51705994246368
+ ],
+ [
+ -88.67723873363845,
+ 38.51705994246368
+ ],
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ],
+ [
+ -88.67723873363845,
+ 38.51705994246368
+ ],
+ [
+ -88.46586104450229,
+ 38.830314996680606
+ ],
+ [
+ -88.8886164227746,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ],
+ [
+ -88.46586104450229,
+ 39.45682510511446
+ ],
+ [
+ -88.67723873363845,
+ 39.770080159331386
+ ],
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ],
+ [
+ -88.67723873363845,
+ 39.770080159331386
+ ],
+ [
+ -89.09999411191076,
+ 39.770080159331386
+ ],
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ],
+ [
+ -89.09999411191076,
+ 39.770080159331386
+ ],
+ [
+ -89.31137180104692,
+ 39.45682510511446
+ ],
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ],
+ [
+ -89.31137180104692,
+ 39.45682510511446
+ ],
+ [
+ -89.09999411191076,
+ 39.14357005089754
+ ],
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ],
+ [
+ -89.09999411191076,
+ 39.14357005089754
+ ],
+ [
+ -88.67723873363845,
+ 39.14357005089754
+ ],
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ],
+ [
+ -88.67723873363845,
+ 39.14357005089754
+ ],
+ [
+ -88.46586104450229,
+ 39.45682510511446
+ ],
+ [
+ -88.8886164227746,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ],
+ [
+ -88.46586104450229,
+ 40.08333521354832
+ ],
+ [
+ -88.67723873363845,
+ 40.39659026776524
+ ],
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ],
+ [
+ -88.67723873363845,
+ 40.39659026776524
+ ],
+ [
+ -89.09999411191076,
+ 40.39659026776524
+ ],
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ],
+ [
+ -89.09999411191076,
+ 40.39659026776524
+ ],
+ [
+ -89.31137180104692,
+ 40.08333521354832
+ ],
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ],
+ [
+ -89.31137180104692,
+ 40.08333521354832
+ ],
+ [
+ -89.09999411191076,
+ 39.77008015933139
+ ],
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ],
+ [
+ -89.09999411191076,
+ 39.77008015933139
+ ],
+ [
+ -88.67723873363845,
+ 39.77008015933139
+ ],
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ],
+ [
+ -88.67723873363845,
+ 39.77008015933139
+ ],
+ [
+ -88.46586104450229,
+ 40.08333521354832
+ ],
+ [
+ -88.8886164227746,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ],
+ [
+ -88.46586104450229,
+ 40.70984532198217
+ ],
+ [
+ -88.67723873363845,
+ 41.023100376199096
+ ],
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ],
+ [
+ -88.67723873363845,
+ 41.023100376199096
+ ],
+ [
+ -89.09999411191076,
+ 41.023100376199096
+ ],
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ],
+ [
+ -89.09999411191076,
+ 41.023100376199096
+ ],
+ [
+ -89.31137180104692,
+ 40.70984532198217
+ ],
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ],
+ [
+ -89.31137180104692,
+ 40.70984532198217
+ ],
+ [
+ -89.09999411191076,
+ 40.39659026776525
+ ],
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ],
+ [
+ -89.09999411191076,
+ 40.39659026776525
+ ],
+ [
+ -88.67723873363845,
+ 40.39659026776525
+ ],
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ],
+ [
+ -88.67723873363845,
+ 40.39659026776525
+ ],
+ [
+ -88.46586104450229,
+ 40.70984532198217
+ ],
+ [
+ -88.8886164227746,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ],
+ [
+ -87.83172797709382,
+ 30.99893864125743
+ ],
+ [
+ -88.04310566622998,
+ 31.312193695474356
+ ],
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ],
+ [
+ -88.04310566622998,
+ 31.312193695474356
+ ],
+ [
+ -88.46586104450229,
+ 31.312193695474356
+ ],
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ],
+ [
+ -88.46586104450229,
+ 31.312193695474356
+ ],
+ [
+ -88.67723873363845,
+ 30.99893864125743
+ ],
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ],
+ [
+ -88.67723873363845,
+ 30.99893864125743
+ ],
+ [
+ -88.46586104450229,
+ 30.6856835870405
+ ],
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ],
+ [
+ -88.46586104450229,
+ 30.6856835870405
+ ],
+ [
+ -88.04310566622998,
+ 30.6856835870405
+ ],
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ],
+ [
+ -88.04310566622998,
+ 30.6856835870405
+ ],
+ [
+ -87.83172797709382,
+ 30.99893864125743
+ ],
+ [
+ -88.25448335536613,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ],
+ [
+ -87.83172797709382,
+ 31.62544874969128
+ ],
+ [
+ -88.04310566622998,
+ 31.938703803908208
+ ],
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ],
+ [
+ -88.04310566622998,
+ 31.938703803908208
+ ],
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ],
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ],
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ],
+ [
+ -88.67723873363845,
+ 31.62544874969128
+ ],
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ],
+ [
+ -88.67723873363845,
+ 31.62544874969128
+ ],
+ [
+ -88.46586104450229,
+ 31.312193695474352
+ ],
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ],
+ [
+ -88.46586104450229,
+ 31.312193695474352
+ ],
+ [
+ -88.04310566622998,
+ 31.312193695474352
+ ],
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ],
+ [
+ -88.04310566622998,
+ 31.312193695474352
+ ],
+ [
+ -87.83172797709382,
+ 31.62544874969128
+ ],
+ [
+ -88.25448335536613,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ],
+ [
+ -87.83172797709382,
+ 32.251958858125136
+ ],
+ [
+ -88.04310566622998,
+ 32.56521391234206
+ ],
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ],
+ [
+ -88.04310566622998,
+ 32.56521391234206
+ ],
+ [
+ -88.46586104450229,
+ 32.56521391234206
+ ],
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ],
+ [
+ -88.46586104450229,
+ 32.56521391234206
+ ],
+ [
+ -88.67723873363845,
+ 32.251958858125136
+ ],
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ],
+ [
+ -88.67723873363845,
+ 32.251958858125136
+ ],
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ],
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ],
+ [
+ -88.46586104450229,
+ 31.938703803908208
+ ],
+ [
+ -88.04310566622998,
+ 31.938703803908208
+ ],
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ],
+ [
+ -88.04310566622998,
+ 31.938703803908208
+ ],
+ [
+ -87.83172797709382,
+ 32.251958858125136
+ ],
+ [
+ -88.25448335536613,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ],
+ [
+ -87.83172797709382,
+ 32.87846896655899
+ ],
+ [
+ -88.04310566622998,
+ 33.191724020775915
+ ],
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ],
+ [
+ -88.04310566622998,
+ 33.191724020775915
+ ],
+ [
+ -88.46586104450229,
+ 33.191724020775915
+ ],
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ],
+ [
+ -88.46586104450229,
+ 33.191724020775915
+ ],
+ [
+ -88.67723873363845,
+ 32.87846896655899
+ ],
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ],
+ [
+ -88.67723873363845,
+ 32.87846896655899
+ ],
+ [
+ -88.46586104450229,
+ 32.56521391234207
+ ],
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ],
+ [
+ -88.46586104450229,
+ 32.56521391234207
+ ],
+ [
+ -88.04310566622998,
+ 32.56521391234207
+ ],
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ],
+ [
+ -88.04310566622998,
+ 32.56521391234207
+ ],
+ [
+ -87.83172797709382,
+ 32.87846896655899
+ ],
+ [
+ -88.25448335536613,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ],
+ [
+ -87.83172797709382,
+ 33.504979074992846
+ ],
+ [
+ -88.04310566622998,
+ 33.81823412920977
+ ],
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ],
+ [
+ -88.04310566622998,
+ 33.81823412920977
+ ],
+ [
+ -88.46586104450229,
+ 33.81823412920977
+ ],
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ],
+ [
+ -88.46586104450229,
+ 33.81823412920977
+ ],
+ [
+ -88.67723873363845,
+ 33.504979074992846
+ ],
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ],
+ [
+ -88.67723873363845,
+ 33.504979074992846
+ ],
+ [
+ -88.46586104450229,
+ 33.19172402077592
+ ],
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ],
+ [
+ -88.46586104450229,
+ 33.19172402077592
+ ],
+ [
+ -88.04310566622998,
+ 33.19172402077592
+ ],
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ],
+ [
+ -88.04310566622998,
+ 33.19172402077592
+ ],
+ [
+ -87.83172797709382,
+ 33.504979074992846
+ ],
+ [
+ -88.25448335536613,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ],
+ [
+ -87.83172797709382,
+ 34.1314891834267
+ ],
+ [
+ -88.04310566622998,
+ 34.444744237643626
+ ],
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ],
+ [
+ -88.04310566622998,
+ 34.444744237643626
+ ],
+ [
+ -88.46586104450229,
+ 34.444744237643626
+ ],
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ],
+ [
+ -88.46586104450229,
+ 34.444744237643626
+ ],
+ [
+ -88.67723873363845,
+ 34.1314891834267
+ ],
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ],
+ [
+ -88.67723873363845,
+ 34.1314891834267
+ ],
+ [
+ -88.46586104450229,
+ 33.81823412920978
+ ],
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ],
+ [
+ -88.46586104450229,
+ 33.81823412920978
+ ],
+ [
+ -88.04310566622998,
+ 33.81823412920978
+ ],
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ],
+ [
+ -88.04310566622998,
+ 33.81823412920978
+ ],
+ [
+ -87.83172797709382,
+ 34.1314891834267
+ ],
+ [
+ -88.25448335536613,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ],
+ [
+ -87.83172797709382,
+ 34.75799929186056
+ ],
+ [
+ -88.04310566622998,
+ 35.07125434607748
+ ],
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ],
+ [
+ -88.04310566622998,
+ 35.07125434607748
+ ],
+ [
+ -88.46586104450229,
+ 35.07125434607748
+ ],
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ],
+ [
+ -88.46586104450229,
+ 35.07125434607748
+ ],
+ [
+ -88.67723873363845,
+ 34.75799929186056
+ ],
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ],
+ [
+ -88.67723873363845,
+ 34.75799929186056
+ ],
+ [
+ -88.46586104450229,
+ 34.44474423764363
+ ],
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ],
+ [
+ -88.46586104450229,
+ 34.44474423764363
+ ],
+ [
+ -88.04310566622998,
+ 34.44474423764363
+ ],
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ],
+ [
+ -88.04310566622998,
+ 34.44474423764363
+ ],
+ [
+ -87.83172797709382,
+ 34.75799929186056
+ ],
+ [
+ -88.25448335536613,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ],
+ [
+ -87.83172797709382,
+ 35.38450940029441
+ ],
+ [
+ -88.04310566622998,
+ 35.697764454511336
+ ],
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ],
+ [
+ -88.04310566622998,
+ 35.697764454511336
+ ],
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ],
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ],
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ],
+ [
+ -88.67723873363845,
+ 35.38450940029441
+ ],
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ],
+ [
+ -88.67723873363845,
+ 35.38450940029441
+ ],
+ [
+ -88.46586104450229,
+ 35.07125434607749
+ ],
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ],
+ [
+ -88.46586104450229,
+ 35.07125434607749
+ ],
+ [
+ -88.04310566622998,
+ 35.07125434607749
+ ],
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ],
+ [
+ -88.04310566622998,
+ 35.07125434607749
+ ],
+ [
+ -87.83172797709382,
+ 35.38450940029441
+ ],
+ [
+ -88.25448335536613,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ],
+ [
+ -87.83172797709382,
+ 36.01101950872826
+ ],
+ [
+ -88.04310566622998,
+ 36.324274562945185
+ ],
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ],
+ [
+ -88.04310566622998,
+ 36.324274562945185
+ ],
+ [
+ -88.46586104450229,
+ 36.324274562945185
+ ],
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ],
+ [
+ -88.46586104450229,
+ 36.324274562945185
+ ],
+ [
+ -88.67723873363845,
+ 36.01101950872826
+ ],
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ],
+ [
+ -88.67723873363845,
+ 36.01101950872826
+ ],
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ],
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ],
+ [
+ -88.46586104450229,
+ 35.697764454511336
+ ],
+ [
+ -88.04310566622998,
+ 35.697764454511336
+ ],
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ],
+ [
+ -88.04310566622998,
+ 35.697764454511336
+ ],
+ [
+ -87.83172797709382,
+ 36.01101950872826
+ ],
+ [
+ -88.25448335536613,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ],
+ [
+ -87.83172797709382,
+ 36.637529617162116
+ ],
+ [
+ -88.04310566622998,
+ 36.95078467137904
+ ],
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ],
+ [
+ -88.04310566622998,
+ 36.95078467137904
+ ],
+ [
+ -88.46586104450229,
+ 36.95078467137904
+ ],
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ],
+ [
+ -88.46586104450229,
+ 36.95078467137904
+ ],
+ [
+ -88.67723873363845,
+ 36.637529617162116
+ ],
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ],
+ [
+ -88.67723873363845,
+ 36.637529617162116
+ ],
+ [
+ -88.46586104450229,
+ 36.32427456294519
+ ],
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ],
+ [
+ -88.46586104450229,
+ 36.32427456294519
+ ],
+ [
+ -88.04310566622998,
+ 36.32427456294519
+ ],
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ],
+ [
+ -88.04310566622998,
+ 36.32427456294519
+ ],
+ [
+ -87.83172797709382,
+ 36.637529617162116
+ ],
+ [
+ -88.25448335536613,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ],
+ [
+ -87.83172797709382,
+ 37.26403972559597
+ ],
+ [
+ -88.04310566622998,
+ 37.577294779812895
+ ],
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ],
+ [
+ -88.04310566622998,
+ 37.577294779812895
+ ],
+ [
+ -88.46586104450229,
+ 37.577294779812895
+ ],
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ],
+ [
+ -88.46586104450229,
+ 37.577294779812895
+ ],
+ [
+ -88.67723873363845,
+ 37.26403972559597
+ ],
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ],
+ [
+ -88.67723873363845,
+ 37.26403972559597
+ ],
+ [
+ -88.46586104450229,
+ 36.95078467137905
+ ],
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ],
+ [
+ -88.46586104450229,
+ 36.95078467137905
+ ],
+ [
+ -88.04310566622998,
+ 36.95078467137905
+ ],
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ],
+ [
+ -88.04310566622998,
+ 36.95078467137905
+ ],
+ [
+ -87.83172797709382,
+ 37.26403972559597
+ ],
+ [
+ -88.25448335536613,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ],
+ [
+ -87.83172797709382,
+ 37.89054983402983
+ ],
+ [
+ -88.04310566622998,
+ 38.20380488824675
+ ],
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ],
+ [
+ -88.04310566622998,
+ 38.20380488824675
+ ],
+ [
+ -88.46586104450229,
+ 38.20380488824675
+ ],
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ],
+ [
+ -88.46586104450229,
+ 38.20380488824675
+ ],
+ [
+ -88.67723873363845,
+ 37.89054983402983
+ ],
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ],
+ [
+ -88.67723873363845,
+ 37.89054983402983
+ ],
+ [
+ -88.46586104450229,
+ 37.5772947798129
+ ],
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ],
+ [
+ -88.46586104450229,
+ 37.5772947798129
+ ],
+ [
+ -88.04310566622998,
+ 37.5772947798129
+ ],
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ],
+ [
+ -88.04310566622998,
+ 37.5772947798129
+ ],
+ [
+ -87.83172797709382,
+ 37.89054983402983
+ ],
+ [
+ -88.25448335536613,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ],
+ [
+ -87.83172797709382,
+ 38.51705994246368
+ ],
+ [
+ -88.04310566622998,
+ 38.830314996680606
+ ],
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ],
+ [
+ -88.04310566622998,
+ 38.830314996680606
+ ],
+ [
+ -88.46586104450229,
+ 38.830314996680606
+ ],
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ],
+ [
+ -88.46586104450229,
+ 38.830314996680606
+ ],
+ [
+ -88.67723873363845,
+ 38.51705994246368
+ ],
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ],
+ [
+ -88.67723873363845,
+ 38.51705994246368
+ ],
+ [
+ -88.46586104450229,
+ 38.20380488824676
+ ],
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ],
+ [
+ -88.46586104450229,
+ 38.20380488824676
+ ],
+ [
+ -88.04310566622998,
+ 38.20380488824676
+ ],
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ],
+ [
+ -88.04310566622998,
+ 38.20380488824676
+ ],
+ [
+ -87.83172797709382,
+ 38.51705994246368
+ ],
+ [
+ -88.25448335536613,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ],
+ [
+ -87.83172797709382,
+ 39.14357005089754
+ ],
+ [
+ -88.04310566622998,
+ 39.45682510511446
+ ],
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ],
+ [
+ -88.04310566622998,
+ 39.45682510511446
+ ],
+ [
+ -88.46586104450229,
+ 39.45682510511446
+ ],
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ],
+ [
+ -88.46586104450229,
+ 39.45682510511446
+ ],
+ [
+ -88.67723873363845,
+ 39.14357005089754
+ ],
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ],
+ [
+ -88.67723873363845,
+ 39.14357005089754
+ ],
+ [
+ -88.46586104450229,
+ 38.83031499668061
+ ],
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ],
+ [
+ -88.46586104450229,
+ 38.83031499668061
+ ],
+ [
+ -88.04310566622998,
+ 38.83031499668061
+ ],
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ],
+ [
+ -88.04310566622998,
+ 38.83031499668061
+ ],
+ [
+ -87.83172797709382,
+ 39.14357005089754
+ ],
+ [
+ -88.25448335536613,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ],
+ [
+ -87.83172797709382,
+ 39.77008015933139
+ ],
+ [
+ -88.04310566622998,
+ 40.08333521354832
+ ],
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ],
+ [
+ -88.04310566622998,
+ 40.08333521354832
+ ],
+ [
+ -88.46586104450229,
+ 40.08333521354832
+ ],
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ],
+ [
+ -88.46586104450229,
+ 40.08333521354832
+ ],
+ [
+ -88.67723873363845,
+ 39.77008015933139
+ ],
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ],
+ [
+ -88.67723873363845,
+ 39.77008015933139
+ ],
+ [
+ -88.46586104450229,
+ 39.45682510511447
+ ],
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ],
+ [
+ -88.46586104450229,
+ 39.45682510511447
+ ],
+ [
+ -88.04310566622998,
+ 39.45682510511447
+ ],
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ],
+ [
+ -88.04310566622998,
+ 39.45682510511447
+ ],
+ [
+ -87.83172797709382,
+ 39.77008015933139
+ ],
+ [
+ -88.25448335536613,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ],
+ [
+ -87.83172797709382,
+ 40.39659026776525
+ ],
+ [
+ -88.04310566622998,
+ 40.70984532198217
+ ],
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ],
+ [
+ -88.04310566622998,
+ 40.70984532198217
+ ],
+ [
+ -88.46586104450229,
+ 40.70984532198217
+ ],
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ],
+ [
+ -88.46586104450229,
+ 40.70984532198217
+ ],
+ [
+ -88.67723873363845,
+ 40.39659026776525
+ ],
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ],
+ [
+ -88.67723873363845,
+ 40.39659026776525
+ ],
+ [
+ -88.46586104450229,
+ 40.083335213548324
+ ],
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ],
+ [
+ -88.46586104450229,
+ 40.083335213548324
+ ],
+ [
+ -88.04310566622998,
+ 40.083335213548324
+ ],
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ],
+ [
+ -88.04310566622998,
+ 40.083335213548324
+ ],
+ [
+ -87.83172797709382,
+ 40.39659026776525
+ ],
+ [
+ -88.25448335536613,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ],
+ [
+ -87.19759490968536,
+ 31.312193695474356
+ ],
+ [
+ -87.40897259882152,
+ 31.625448749691284
+ ],
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ],
+ [
+ -87.40897259882152,
+ 31.625448749691284
+ ],
+ [
+ -87.83172797709383,
+ 31.625448749691284
+ ],
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ],
+ [
+ -87.83172797709383,
+ 31.625448749691284
+ ],
+ [
+ -88.04310566622999,
+ 31.312193695474356
+ ],
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ],
+ [
+ -88.04310566622999,
+ 31.312193695474356
+ ],
+ [
+ -87.83172797709383,
+ 30.99893864125743
+ ],
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ],
+ [
+ -87.83172797709383,
+ 30.99893864125743
+ ],
+ [
+ -87.40897259882152,
+ 30.99893864125743
+ ],
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ],
+ [
+ -87.40897259882152,
+ 30.99893864125743
+ ],
+ [
+ -87.19759490968536,
+ 31.312193695474356
+ ],
+ [
+ -87.62035028795768,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ],
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ],
+ [
+ -87.40897259882152,
+ 32.251958858125136
+ ],
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ],
+ [
+ -87.40897259882152,
+ 32.251958858125136
+ ],
+ [
+ -87.83172797709383,
+ 32.251958858125136
+ ],
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ],
+ [
+ -87.83172797709383,
+ 32.251958858125136
+ ],
+ [
+ -88.04310566622999,
+ 31.938703803908208
+ ],
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ],
+ [
+ -88.04310566622999,
+ 31.938703803908208
+ ],
+ [
+ -87.83172797709383,
+ 31.62544874969128
+ ],
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ],
+ [
+ -87.83172797709383,
+ 31.62544874969128
+ ],
+ [
+ -87.40897259882152,
+ 31.62544874969128
+ ],
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ],
+ [
+ -87.40897259882152,
+ 31.62544874969128
+ ],
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ],
+ [
+ -87.62035028795768,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ],
+ [
+ -87.19759490968536,
+ 32.56521391234206
+ ],
+ [
+ -87.40897259882152,
+ 32.878468966558984
+ ],
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ],
+ [
+ -87.40897259882152,
+ 32.878468966558984
+ ],
+ [
+ -87.83172797709383,
+ 32.878468966558984
+ ],
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ],
+ [
+ -87.83172797709383,
+ 32.878468966558984
+ ],
+ [
+ -88.04310566622999,
+ 32.56521391234206
+ ],
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ],
+ [
+ -88.04310566622999,
+ 32.56521391234206
+ ],
+ [
+ -87.83172797709383,
+ 32.251958858125136
+ ],
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ],
+ [
+ -87.83172797709383,
+ 32.251958858125136
+ ],
+ [
+ -87.40897259882152,
+ 32.251958858125136
+ ],
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ],
+ [
+ -87.40897259882152,
+ 32.251958858125136
+ ],
+ [
+ -87.19759490968536,
+ 32.56521391234206
+ ],
+ [
+ -87.62035028795768,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ],
+ [
+ -87.19759490968536,
+ 33.191724020775915
+ ],
+ [
+ -87.40897259882152,
+ 33.50497907499284
+ ],
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ],
+ [
+ -87.40897259882152,
+ 33.50497907499284
+ ],
+ [
+ -87.83172797709383,
+ 33.50497907499284
+ ],
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ],
+ [
+ -87.83172797709383,
+ 33.50497907499284
+ ],
+ [
+ -88.04310566622999,
+ 33.191724020775915
+ ],
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ],
+ [
+ -88.04310566622999,
+ 33.191724020775915
+ ],
+ [
+ -87.83172797709383,
+ 32.87846896655899
+ ],
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ],
+ [
+ -87.83172797709383,
+ 32.87846896655899
+ ],
+ [
+ -87.40897259882152,
+ 32.87846896655899
+ ],
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ],
+ [
+ -87.40897259882152,
+ 32.87846896655899
+ ],
+ [
+ -87.19759490968536,
+ 33.191724020775915
+ ],
+ [
+ -87.62035028795768,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ],
+ [
+ -87.19759490968536,
+ 33.81823412920977
+ ],
+ [
+ -87.40897259882152,
+ 34.131489183426694
+ ],
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ],
+ [
+ -87.40897259882152,
+ 34.131489183426694
+ ],
+ [
+ -87.83172797709383,
+ 34.131489183426694
+ ],
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ],
+ [
+ -87.83172797709383,
+ 34.131489183426694
+ ],
+ [
+ -88.04310566622999,
+ 33.81823412920977
+ ],
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ],
+ [
+ -88.04310566622999,
+ 33.81823412920977
+ ],
+ [
+ -87.83172797709383,
+ 33.504979074992846
+ ],
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ],
+ [
+ -87.83172797709383,
+ 33.504979074992846
+ ],
+ [
+ -87.40897259882152,
+ 33.504979074992846
+ ],
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ],
+ [
+ -87.40897259882152,
+ 33.504979074992846
+ ],
+ [
+ -87.19759490968536,
+ 33.81823412920977
+ ],
+ [
+ -87.62035028795768,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ],
+ [
+ -87.19759490968536,
+ 34.444744237643626
+ ],
+ [
+ -87.40897259882152,
+ 34.75799929186055
+ ],
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ],
+ [
+ -87.40897259882152,
+ 34.75799929186055
+ ],
+ [
+ -87.83172797709383,
+ 34.75799929186055
+ ],
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ],
+ [
+ -87.83172797709383,
+ 34.75799929186055
+ ],
+ [
+ -88.04310566622999,
+ 34.444744237643626
+ ],
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ],
+ [
+ -88.04310566622999,
+ 34.444744237643626
+ ],
+ [
+ -87.83172797709383,
+ 34.1314891834267
+ ],
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ],
+ [
+ -87.83172797709383,
+ 34.1314891834267
+ ],
+ [
+ -87.40897259882152,
+ 34.1314891834267
+ ],
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ],
+ [
+ -87.40897259882152,
+ 34.1314891834267
+ ],
+ [
+ -87.19759490968536,
+ 34.444744237643626
+ ],
+ [
+ -87.62035028795768,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ],
+ [
+ -87.19759490968536,
+ 35.07125434607748
+ ],
+ [
+ -87.40897259882152,
+ 35.384509400294405
+ ],
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ],
+ [
+ -87.40897259882152,
+ 35.384509400294405
+ ],
+ [
+ -87.83172797709383,
+ 35.384509400294405
+ ],
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ],
+ [
+ -87.83172797709383,
+ 35.384509400294405
+ ],
+ [
+ -88.04310566622999,
+ 35.07125434607748
+ ],
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ],
+ [
+ -88.04310566622999,
+ 35.07125434607748
+ ],
+ [
+ -87.83172797709383,
+ 34.75799929186056
+ ],
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ],
+ [
+ -87.83172797709383,
+ 34.75799929186056
+ ],
+ [
+ -87.40897259882152,
+ 34.75799929186056
+ ],
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ],
+ [
+ -87.40897259882152,
+ 34.75799929186056
+ ],
+ [
+ -87.19759490968536,
+ 35.07125434607748
+ ],
+ [
+ -87.62035028795768,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ],
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ],
+ [
+ -87.40897259882152,
+ 36.01101950872826
+ ],
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ],
+ [
+ -87.40897259882152,
+ 36.01101950872826
+ ],
+ [
+ -87.83172797709383,
+ 36.01101950872826
+ ],
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ],
+ [
+ -87.83172797709383,
+ 36.01101950872826
+ ],
+ [
+ -88.04310566622999,
+ 35.697764454511336
+ ],
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ],
+ [
+ -88.04310566622999,
+ 35.697764454511336
+ ],
+ [
+ -87.83172797709383,
+ 35.38450940029441
+ ],
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ],
+ [
+ -87.83172797709383,
+ 35.38450940029441
+ ],
+ [
+ -87.40897259882152,
+ 35.38450940029441
+ ],
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ],
+ [
+ -87.40897259882152,
+ 35.38450940029441
+ ],
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ],
+ [
+ -87.62035028795768,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ],
+ [
+ -87.19759490968536,
+ 36.324274562945185
+ ],
+ [
+ -87.40897259882152,
+ 36.63752961716211
+ ],
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ],
+ [
+ -87.40897259882152,
+ 36.63752961716211
+ ],
+ [
+ -87.83172797709383,
+ 36.63752961716211
+ ],
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ],
+ [
+ -87.83172797709383,
+ 36.63752961716211
+ ],
+ [
+ -88.04310566622999,
+ 36.324274562945185
+ ],
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ],
+ [
+ -88.04310566622999,
+ 36.324274562945185
+ ],
+ [
+ -87.83172797709383,
+ 36.01101950872826
+ ],
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ],
+ [
+ -87.83172797709383,
+ 36.01101950872826
+ ],
+ [
+ -87.40897259882152,
+ 36.01101950872826
+ ],
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ],
+ [
+ -87.40897259882152,
+ 36.01101950872826
+ ],
+ [
+ -87.19759490968536,
+ 36.324274562945185
+ ],
+ [
+ -87.62035028795768,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ],
+ [
+ -87.19759490968536,
+ 36.95078467137904
+ ],
+ [
+ -87.40897259882152,
+ 37.264039725595964
+ ],
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ],
+ [
+ -87.40897259882152,
+ 37.264039725595964
+ ],
+ [
+ -87.83172797709383,
+ 37.264039725595964
+ ],
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ],
+ [
+ -87.83172797709383,
+ 37.264039725595964
+ ],
+ [
+ -88.04310566622999,
+ 36.95078467137904
+ ],
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ],
+ [
+ -88.04310566622999,
+ 36.95078467137904
+ ],
+ [
+ -87.83172797709383,
+ 36.637529617162116
+ ],
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ],
+ [
+ -87.83172797709383,
+ 36.637529617162116
+ ],
+ [
+ -87.40897259882152,
+ 36.637529617162116
+ ],
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ],
+ [
+ -87.40897259882152,
+ 36.637529617162116
+ ],
+ [
+ -87.19759490968536,
+ 36.95078467137904
+ ],
+ [
+ -87.62035028795768,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ],
+ [
+ -87.19759490968536,
+ 37.577294779812895
+ ],
+ [
+ -87.40897259882152,
+ 37.89054983402982
+ ],
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ],
+ [
+ -87.40897259882152,
+ 37.89054983402982
+ ],
+ [
+ -87.83172797709383,
+ 37.89054983402982
+ ],
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ],
+ [
+ -87.83172797709383,
+ 37.89054983402982
+ ],
+ [
+ -88.04310566622999,
+ 37.577294779812895
+ ],
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ],
+ [
+ -88.04310566622999,
+ 37.577294779812895
+ ],
+ [
+ -87.83172797709383,
+ 37.26403972559597
+ ],
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ],
+ [
+ -87.83172797709383,
+ 37.26403972559597
+ ],
+ [
+ -87.40897259882152,
+ 37.26403972559597
+ ],
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ],
+ [
+ -87.40897259882152,
+ 37.26403972559597
+ ],
+ [
+ -87.19759490968536,
+ 37.577294779812895
+ ],
+ [
+ -87.62035028795768,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ],
+ [
+ -87.19759490968536,
+ 38.20380488824675
+ ],
+ [
+ -87.40897259882152,
+ 38.517059942463675
+ ],
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ],
+ [
+ -87.40897259882152,
+ 38.517059942463675
+ ],
+ [
+ -87.83172797709383,
+ 38.517059942463675
+ ],
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ],
+ [
+ -87.83172797709383,
+ 38.517059942463675
+ ],
+ [
+ -88.04310566622999,
+ 38.20380488824675
+ ],
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ],
+ [
+ -88.04310566622999,
+ 38.20380488824675
+ ],
+ [
+ -87.83172797709383,
+ 37.89054983402983
+ ],
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ],
+ [
+ -87.83172797709383,
+ 37.89054983402983
+ ],
+ [
+ -87.40897259882152,
+ 37.89054983402983
+ ],
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ],
+ [
+ -87.40897259882152,
+ 37.89054983402983
+ ],
+ [
+ -87.19759490968536,
+ 38.20380488824675
+ ],
+ [
+ -87.62035028795768,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ],
+ [
+ -87.19759490968536,
+ 38.830314996680606
+ ],
+ [
+ -87.40897259882152,
+ 39.14357005089753
+ ],
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ],
+ [
+ -87.40897259882152,
+ 39.14357005089753
+ ],
+ [
+ -87.83172797709383,
+ 39.14357005089753
+ ],
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ],
+ [
+ -87.83172797709383,
+ 39.14357005089753
+ ],
+ [
+ -88.04310566622999,
+ 38.830314996680606
+ ],
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ],
+ [
+ -88.04310566622999,
+ 38.830314996680606
+ ],
+ [
+ -87.83172797709383,
+ 38.51705994246368
+ ],
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ],
+ [
+ -87.83172797709383,
+ 38.51705994246368
+ ],
+ [
+ -87.40897259882152,
+ 38.51705994246368
+ ],
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ],
+ [
+ -87.40897259882152,
+ 38.51705994246368
+ ],
+ [
+ -87.19759490968536,
+ 38.830314996680606
+ ],
+ [
+ -87.62035028795768,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ],
+ [
+ -87.19759490968536,
+ 39.45682510511446
+ ],
+ [
+ -87.40897259882152,
+ 39.770080159331386
+ ],
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ],
+ [
+ -87.40897259882152,
+ 39.770080159331386
+ ],
+ [
+ -87.83172797709383,
+ 39.770080159331386
+ ],
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ],
+ [
+ -87.83172797709383,
+ 39.770080159331386
+ ],
+ [
+ -88.04310566622999,
+ 39.45682510511446
+ ],
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ],
+ [
+ -88.04310566622999,
+ 39.45682510511446
+ ],
+ [
+ -87.83172797709383,
+ 39.14357005089754
+ ],
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ],
+ [
+ -87.83172797709383,
+ 39.14357005089754
+ ],
+ [
+ -87.40897259882152,
+ 39.14357005089754
+ ],
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ],
+ [
+ -87.40897259882152,
+ 39.14357005089754
+ ],
+ [
+ -87.19759490968536,
+ 39.45682510511446
+ ],
+ [
+ -87.62035028795768,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ],
+ [
+ -87.19759490968536,
+ 40.08333521354832
+ ],
+ [
+ -87.40897259882152,
+ 40.39659026776524
+ ],
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ],
+ [
+ -87.40897259882152,
+ 40.39659026776524
+ ],
+ [
+ -87.83172797709383,
+ 40.39659026776524
+ ],
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ],
+ [
+ -87.83172797709383,
+ 40.39659026776524
+ ],
+ [
+ -88.04310566622999,
+ 40.08333521354832
+ ],
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ],
+ [
+ -88.04310566622999,
+ 40.08333521354832
+ ],
+ [
+ -87.83172797709383,
+ 39.77008015933139
+ ],
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ],
+ [
+ -87.83172797709383,
+ 39.77008015933139
+ ],
+ [
+ -87.40897259882152,
+ 39.77008015933139
+ ],
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ],
+ [
+ -87.40897259882152,
+ 39.77008015933139
+ ],
+ [
+ -87.19759490968536,
+ 40.08333521354832
+ ],
+ [
+ -87.62035028795768,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ],
+ [
+ -87.19759490968536,
+ 40.70984532198217
+ ],
+ [
+ -87.40897259882152,
+ 41.023100376199096
+ ],
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ],
+ [
+ -87.40897259882152,
+ 41.023100376199096
+ ],
+ [
+ -87.83172797709383,
+ 41.023100376199096
+ ],
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ],
+ [
+ -87.83172797709383,
+ 41.023100376199096
+ ],
+ [
+ -88.04310566622999,
+ 40.70984532198217
+ ],
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ],
+ [
+ -88.04310566622999,
+ 40.70984532198217
+ ],
+ [
+ -87.83172797709383,
+ 40.39659026776525
+ ],
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ],
+ [
+ -87.83172797709383,
+ 40.39659026776525
+ ],
+ [
+ -87.40897259882152,
+ 40.39659026776525
+ ],
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ],
+ [
+ -87.40897259882152,
+ 40.39659026776525
+ ],
+ [
+ -87.19759490968536,
+ 40.70984532198217
+ ],
+ [
+ -87.62035028795768,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ],
+ [
+ -86.5634618422769,
+ 30.99893864125743
+ ],
+ [
+ -86.77483953141305,
+ 31.312193695474356
+ ],
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ],
+ [
+ -86.77483953141305,
+ 31.312193695474356
+ ],
+ [
+ -87.19759490968536,
+ 31.312193695474356
+ ],
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ],
+ [
+ -87.19759490968536,
+ 31.312193695474356
+ ],
+ [
+ -87.40897259882152,
+ 30.99893864125743
+ ],
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ],
+ [
+ -87.40897259882152,
+ 30.99893864125743
+ ],
+ [
+ -87.19759490968536,
+ 30.6856835870405
+ ],
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ],
+ [
+ -87.19759490968536,
+ 30.6856835870405
+ ],
+ [
+ -86.77483953141305,
+ 30.6856835870405
+ ],
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ],
+ [
+ -86.77483953141305,
+ 30.6856835870405
+ ],
+ [
+ -86.5634618422769,
+ 30.99893864125743
+ ],
+ [
+ -86.98621722054921,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ],
+ [
+ -86.5634618422769,
+ 31.62544874969128
+ ],
+ [
+ -86.77483953141305,
+ 31.938703803908208
+ ],
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ],
+ [
+ -86.77483953141305,
+ 31.938703803908208
+ ],
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ],
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ],
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ],
+ [
+ -87.40897259882152,
+ 31.62544874969128
+ ],
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ],
+ [
+ -87.40897259882152,
+ 31.62544874969128
+ ],
+ [
+ -87.19759490968536,
+ 31.312193695474352
+ ],
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ],
+ [
+ -87.19759490968536,
+ 31.312193695474352
+ ],
+ [
+ -86.77483953141305,
+ 31.312193695474352
+ ],
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ],
+ [
+ -86.77483953141305,
+ 31.312193695474352
+ ],
+ [
+ -86.5634618422769,
+ 31.62544874969128
+ ],
+ [
+ -86.98621722054921,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ],
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ],
+ [
+ -86.77483953141305,
+ 32.56521391234206
+ ],
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ],
+ [
+ -86.77483953141305,
+ 32.56521391234206
+ ],
+ [
+ -87.19759490968536,
+ 32.56521391234206
+ ],
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ],
+ [
+ -87.19759490968536,
+ 32.56521391234206
+ ],
+ [
+ -87.40897259882152,
+ 32.251958858125136
+ ],
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ],
+ [
+ -87.40897259882152,
+ 32.251958858125136
+ ],
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ],
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ],
+ [
+ -87.19759490968536,
+ 31.938703803908208
+ ],
+ [
+ -86.77483953141305,
+ 31.938703803908208
+ ],
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ],
+ [
+ -86.77483953141305,
+ 31.938703803908208
+ ],
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ],
+ [
+ -86.98621722054921,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ],
+ [
+ -86.5634618422769,
+ 32.87846896655899
+ ],
+ [
+ -86.77483953141305,
+ 33.191724020775915
+ ],
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ],
+ [
+ -86.77483953141305,
+ 33.191724020775915
+ ],
+ [
+ -87.19759490968536,
+ 33.191724020775915
+ ],
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ],
+ [
+ -87.19759490968536,
+ 33.191724020775915
+ ],
+ [
+ -87.40897259882152,
+ 32.87846896655899
+ ],
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ],
+ [
+ -87.40897259882152,
+ 32.87846896655899
+ ],
+ [
+ -87.19759490968536,
+ 32.56521391234207
+ ],
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ],
+ [
+ -87.19759490968536,
+ 32.56521391234207
+ ],
+ [
+ -86.77483953141305,
+ 32.56521391234207
+ ],
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ],
+ [
+ -86.77483953141305,
+ 32.56521391234207
+ ],
+ [
+ -86.5634618422769,
+ 32.87846896655899
+ ],
+ [
+ -86.98621722054921,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ],
+ [
+ -86.5634618422769,
+ 33.504979074992846
+ ],
+ [
+ -86.77483953141305,
+ 33.81823412920977
+ ],
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ],
+ [
+ -86.77483953141305,
+ 33.81823412920977
+ ],
+ [
+ -87.19759490968536,
+ 33.81823412920977
+ ],
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ],
+ [
+ -87.19759490968536,
+ 33.81823412920977
+ ],
+ [
+ -87.40897259882152,
+ 33.504979074992846
+ ],
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ],
+ [
+ -87.40897259882152,
+ 33.504979074992846
+ ],
+ [
+ -87.19759490968536,
+ 33.19172402077592
+ ],
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ],
+ [
+ -87.19759490968536,
+ 33.19172402077592
+ ],
+ [
+ -86.77483953141305,
+ 33.19172402077592
+ ],
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ],
+ [
+ -86.77483953141305,
+ 33.19172402077592
+ ],
+ [
+ -86.5634618422769,
+ 33.504979074992846
+ ],
+ [
+ -86.98621722054921,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ],
+ [
+ -86.5634618422769,
+ 34.1314891834267
+ ],
+ [
+ -86.77483953141305,
+ 34.444744237643626
+ ],
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ],
+ [
+ -86.77483953141305,
+ 34.444744237643626
+ ],
+ [
+ -87.19759490968536,
+ 34.444744237643626
+ ],
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ],
+ [
+ -87.19759490968536,
+ 34.444744237643626
+ ],
+ [
+ -87.40897259882152,
+ 34.1314891834267
+ ],
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ],
+ [
+ -87.40897259882152,
+ 34.1314891834267
+ ],
+ [
+ -87.19759490968536,
+ 33.81823412920978
+ ],
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ],
+ [
+ -87.19759490968536,
+ 33.81823412920978
+ ],
+ [
+ -86.77483953141305,
+ 33.81823412920978
+ ],
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ],
+ [
+ -86.77483953141305,
+ 33.81823412920978
+ ],
+ [
+ -86.5634618422769,
+ 34.1314891834267
+ ],
+ [
+ -86.98621722054921,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ],
+ [
+ -86.5634618422769,
+ 34.75799929186056
+ ],
+ [
+ -86.77483953141305,
+ 35.07125434607748
+ ],
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ],
+ [
+ -86.77483953141305,
+ 35.07125434607748
+ ],
+ [
+ -87.19759490968536,
+ 35.07125434607748
+ ],
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ],
+ [
+ -87.19759490968536,
+ 35.07125434607748
+ ],
+ [
+ -87.40897259882152,
+ 34.75799929186056
+ ],
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ],
+ [
+ -87.40897259882152,
+ 34.75799929186056
+ ],
+ [
+ -87.19759490968536,
+ 34.44474423764363
+ ],
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ],
+ [
+ -87.19759490968536,
+ 34.44474423764363
+ ],
+ [
+ -86.77483953141305,
+ 34.44474423764363
+ ],
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ],
+ [
+ -86.77483953141305,
+ 34.44474423764363
+ ],
+ [
+ -86.5634618422769,
+ 34.75799929186056
+ ],
+ [
+ -86.98621722054921,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ],
+ [
+ -86.5634618422769,
+ 35.38450940029441
+ ],
+ [
+ -86.77483953141305,
+ 35.697764454511336
+ ],
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ],
+ [
+ -86.77483953141305,
+ 35.697764454511336
+ ],
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ],
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ],
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ],
+ [
+ -87.40897259882152,
+ 35.38450940029441
+ ],
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ],
+ [
+ -87.40897259882152,
+ 35.38450940029441
+ ],
+ [
+ -87.19759490968536,
+ 35.07125434607749
+ ],
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ],
+ [
+ -87.19759490968536,
+ 35.07125434607749
+ ],
+ [
+ -86.77483953141305,
+ 35.07125434607749
+ ],
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ],
+ [
+ -86.77483953141305,
+ 35.07125434607749
+ ],
+ [
+ -86.5634618422769,
+ 35.38450940029441
+ ],
+ [
+ -86.98621722054921,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ],
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ],
+ [
+ -86.77483953141305,
+ 36.324274562945185
+ ],
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ],
+ [
+ -86.77483953141305,
+ 36.324274562945185
+ ],
+ [
+ -87.19759490968536,
+ 36.324274562945185
+ ],
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ],
+ [
+ -87.19759490968536,
+ 36.324274562945185
+ ],
+ [
+ -87.40897259882152,
+ 36.01101950872826
+ ],
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ],
+ [
+ -87.40897259882152,
+ 36.01101950872826
+ ],
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ],
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ],
+ [
+ -87.19759490968536,
+ 35.697764454511336
+ ],
+ [
+ -86.77483953141305,
+ 35.697764454511336
+ ],
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ],
+ [
+ -86.77483953141305,
+ 35.697764454511336
+ ],
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ],
+ [
+ -86.98621722054921,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ],
+ [
+ -86.5634618422769,
+ 36.637529617162116
+ ],
+ [
+ -86.77483953141305,
+ 36.95078467137904
+ ],
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ],
+ [
+ -86.77483953141305,
+ 36.95078467137904
+ ],
+ [
+ -87.19759490968536,
+ 36.95078467137904
+ ],
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ],
+ [
+ -87.19759490968536,
+ 36.95078467137904
+ ],
+ [
+ -87.40897259882152,
+ 36.637529617162116
+ ],
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ],
+ [
+ -87.40897259882152,
+ 36.637529617162116
+ ],
+ [
+ -87.19759490968536,
+ 36.32427456294519
+ ],
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ],
+ [
+ -87.19759490968536,
+ 36.32427456294519
+ ],
+ [
+ -86.77483953141305,
+ 36.32427456294519
+ ],
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ],
+ [
+ -86.77483953141305,
+ 36.32427456294519
+ ],
+ [
+ -86.5634618422769,
+ 36.637529617162116
+ ],
+ [
+ -86.98621722054921,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ],
+ [
+ -86.5634618422769,
+ 37.26403972559597
+ ],
+ [
+ -86.77483953141305,
+ 37.577294779812895
+ ],
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ],
+ [
+ -86.77483953141305,
+ 37.577294779812895
+ ],
+ [
+ -87.19759490968536,
+ 37.577294779812895
+ ],
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ],
+ [
+ -87.19759490968536,
+ 37.577294779812895
+ ],
+ [
+ -87.40897259882152,
+ 37.26403972559597
+ ],
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ],
+ [
+ -87.40897259882152,
+ 37.26403972559597
+ ],
+ [
+ -87.19759490968536,
+ 36.95078467137905
+ ],
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ],
+ [
+ -87.19759490968536,
+ 36.95078467137905
+ ],
+ [
+ -86.77483953141305,
+ 36.95078467137905
+ ],
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ],
+ [
+ -86.77483953141305,
+ 36.95078467137905
+ ],
+ [
+ -86.5634618422769,
+ 37.26403972559597
+ ],
+ [
+ -86.98621722054921,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ],
+ [
+ -86.5634618422769,
+ 37.89054983402983
+ ],
+ [
+ -86.77483953141305,
+ 38.20380488824675
+ ],
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ],
+ [
+ -86.77483953141305,
+ 38.20380488824675
+ ],
+ [
+ -87.19759490968536,
+ 38.20380488824675
+ ],
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ],
+ [
+ -87.19759490968536,
+ 38.20380488824675
+ ],
+ [
+ -87.40897259882152,
+ 37.89054983402983
+ ],
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ],
+ [
+ -87.40897259882152,
+ 37.89054983402983
+ ],
+ [
+ -87.19759490968536,
+ 37.5772947798129
+ ],
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ],
+ [
+ -87.19759490968536,
+ 37.5772947798129
+ ],
+ [
+ -86.77483953141305,
+ 37.5772947798129
+ ],
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ],
+ [
+ -86.77483953141305,
+ 37.5772947798129
+ ],
+ [
+ -86.5634618422769,
+ 37.89054983402983
+ ],
+ [
+ -86.98621722054921,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ],
+ [
+ -86.5634618422769,
+ 38.51705994246368
+ ],
+ [
+ -86.77483953141305,
+ 38.830314996680606
+ ],
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ],
+ [
+ -86.77483953141305,
+ 38.830314996680606
+ ],
+ [
+ -87.19759490968536,
+ 38.830314996680606
+ ],
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ],
+ [
+ -87.19759490968536,
+ 38.830314996680606
+ ],
+ [
+ -87.40897259882152,
+ 38.51705994246368
+ ],
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ],
+ [
+ -87.40897259882152,
+ 38.51705994246368
+ ],
+ [
+ -87.19759490968536,
+ 38.20380488824676
+ ],
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ],
+ [
+ -87.19759490968536,
+ 38.20380488824676
+ ],
+ [
+ -86.77483953141305,
+ 38.20380488824676
+ ],
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ],
+ [
+ -86.77483953141305,
+ 38.20380488824676
+ ],
+ [
+ -86.5634618422769,
+ 38.51705994246368
+ ],
+ [
+ -86.98621722054921,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ],
+ [
+ -86.5634618422769,
+ 39.14357005089754
+ ],
+ [
+ -86.77483953141305,
+ 39.45682510511446
+ ],
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ],
+ [
+ -86.77483953141305,
+ 39.45682510511446
+ ],
+ [
+ -87.19759490968536,
+ 39.45682510511446
+ ],
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ],
+ [
+ -87.19759490968536,
+ 39.45682510511446
+ ],
+ [
+ -87.40897259882152,
+ 39.14357005089754
+ ],
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ],
+ [
+ -87.40897259882152,
+ 39.14357005089754
+ ],
+ [
+ -87.19759490968536,
+ 38.83031499668061
+ ],
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ],
+ [
+ -87.19759490968536,
+ 38.83031499668061
+ ],
+ [
+ -86.77483953141305,
+ 38.83031499668061
+ ],
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ],
+ [
+ -86.77483953141305,
+ 38.83031499668061
+ ],
+ [
+ -86.5634618422769,
+ 39.14357005089754
+ ],
+ [
+ -86.98621722054921,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ],
+ [
+ -86.5634618422769,
+ 39.77008015933139
+ ],
+ [
+ -86.77483953141305,
+ 40.08333521354832
+ ],
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ],
+ [
+ -86.77483953141305,
+ 40.08333521354832
+ ],
+ [
+ -87.19759490968536,
+ 40.08333521354832
+ ],
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ],
+ [
+ -87.19759490968536,
+ 40.08333521354832
+ ],
+ [
+ -87.40897259882152,
+ 39.77008015933139
+ ],
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ],
+ [
+ -87.40897259882152,
+ 39.77008015933139
+ ],
+ [
+ -87.19759490968536,
+ 39.45682510511447
+ ],
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ],
+ [
+ -87.19759490968536,
+ 39.45682510511447
+ ],
+ [
+ -86.77483953141305,
+ 39.45682510511447
+ ],
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ],
+ [
+ -86.77483953141305,
+ 39.45682510511447
+ ],
+ [
+ -86.5634618422769,
+ 39.77008015933139
+ ],
+ [
+ -86.98621722054921,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ],
+ [
+ -86.5634618422769,
+ 40.39659026776525
+ ],
+ [
+ -86.77483953141305,
+ 40.70984532198217
+ ],
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ],
+ [
+ -86.77483953141305,
+ 40.70984532198217
+ ],
+ [
+ -87.19759490968536,
+ 40.70984532198217
+ ],
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ],
+ [
+ -87.19759490968536,
+ 40.70984532198217
+ ],
+ [
+ -87.40897259882152,
+ 40.39659026776525
+ ],
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ],
+ [
+ -87.40897259882152,
+ 40.39659026776525
+ ],
+ [
+ -87.19759490968536,
+ 40.083335213548324
+ ],
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ],
+ [
+ -87.19759490968536,
+ 40.083335213548324
+ ],
+ [
+ -86.77483953141305,
+ 40.083335213548324
+ ],
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ],
+ [
+ -86.77483953141305,
+ 40.083335213548324
+ ],
+ [
+ -86.5634618422769,
+ 40.39659026776525
+ ],
+ [
+ -86.98621722054921,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ],
+ [
+ -85.92932877486842,
+ 31.312193695474356
+ ],
+ [
+ -86.14070646400458,
+ 31.625448749691284
+ ],
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ],
+ [
+ -86.14070646400458,
+ 31.625448749691284
+ ],
+ [
+ -86.5634618422769,
+ 31.625448749691284
+ ],
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ],
+ [
+ -86.5634618422769,
+ 31.625448749691284
+ ],
+ [
+ -86.77483953141305,
+ 31.312193695474356
+ ],
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ],
+ [
+ -86.77483953141305,
+ 31.312193695474356
+ ],
+ [
+ -86.5634618422769,
+ 30.99893864125743
+ ],
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ],
+ [
+ -86.5634618422769,
+ 30.99893864125743
+ ],
+ [
+ -86.14070646400458,
+ 30.99893864125743
+ ],
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ],
+ [
+ -86.14070646400458,
+ 30.99893864125743
+ ],
+ [
+ -85.92932877486842,
+ 31.312193695474356
+ ],
+ [
+ -86.35208415314074,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ],
+ [
+ -85.92932877486842,
+ 31.938703803908208
+ ],
+ [
+ -86.14070646400458,
+ 32.251958858125136
+ ],
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ],
+ [
+ -86.14070646400458,
+ 32.251958858125136
+ ],
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ],
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ],
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ],
+ [
+ -86.77483953141305,
+ 31.938703803908208
+ ],
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ],
+ [
+ -86.77483953141305,
+ 31.938703803908208
+ ],
+ [
+ -86.5634618422769,
+ 31.62544874969128
+ ],
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ],
+ [
+ -86.5634618422769,
+ 31.62544874969128
+ ],
+ [
+ -86.14070646400458,
+ 31.62544874969128
+ ],
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ],
+ [
+ -86.14070646400458,
+ 31.62544874969128
+ ],
+ [
+ -85.92932877486842,
+ 31.938703803908208
+ ],
+ [
+ -86.35208415314074,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ],
+ [
+ -85.92932877486842,
+ 32.56521391234206
+ ],
+ [
+ -86.14070646400458,
+ 32.878468966558984
+ ],
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ],
+ [
+ -86.14070646400458,
+ 32.878468966558984
+ ],
+ [
+ -86.5634618422769,
+ 32.878468966558984
+ ],
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ],
+ [
+ -86.5634618422769,
+ 32.878468966558984
+ ],
+ [
+ -86.77483953141305,
+ 32.56521391234206
+ ],
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ],
+ [
+ -86.77483953141305,
+ 32.56521391234206
+ ],
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ],
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ],
+ [
+ -86.5634618422769,
+ 32.251958858125136
+ ],
+ [
+ -86.14070646400458,
+ 32.251958858125136
+ ],
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ],
+ [
+ -86.14070646400458,
+ 32.251958858125136
+ ],
+ [
+ -85.92932877486842,
+ 32.56521391234206
+ ],
+ [
+ -86.35208415314074,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ],
+ [
+ -85.92932877486842,
+ 33.191724020775915
+ ],
+ [
+ -86.14070646400458,
+ 33.50497907499284
+ ],
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ],
+ [
+ -86.14070646400458,
+ 33.50497907499284
+ ],
+ [
+ -86.5634618422769,
+ 33.50497907499284
+ ],
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ],
+ [
+ -86.5634618422769,
+ 33.50497907499284
+ ],
+ [
+ -86.77483953141305,
+ 33.191724020775915
+ ],
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ],
+ [
+ -86.77483953141305,
+ 33.191724020775915
+ ],
+ [
+ -86.5634618422769,
+ 32.87846896655899
+ ],
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ],
+ [
+ -86.5634618422769,
+ 32.87846896655899
+ ],
+ [
+ -86.14070646400458,
+ 32.87846896655899
+ ],
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ],
+ [
+ -86.14070646400458,
+ 32.87846896655899
+ ],
+ [
+ -85.92932877486842,
+ 33.191724020775915
+ ],
+ [
+ -86.35208415314074,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ],
+ [
+ -85.92932877486842,
+ 33.81823412920977
+ ],
+ [
+ -86.14070646400458,
+ 34.131489183426694
+ ],
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ],
+ [
+ -86.14070646400458,
+ 34.131489183426694
+ ],
+ [
+ -86.5634618422769,
+ 34.131489183426694
+ ],
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ],
+ [
+ -86.5634618422769,
+ 34.131489183426694
+ ],
+ [
+ -86.77483953141305,
+ 33.81823412920977
+ ],
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ],
+ [
+ -86.77483953141305,
+ 33.81823412920977
+ ],
+ [
+ -86.5634618422769,
+ 33.504979074992846
+ ],
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ],
+ [
+ -86.5634618422769,
+ 33.504979074992846
+ ],
+ [
+ -86.14070646400458,
+ 33.504979074992846
+ ],
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ],
+ [
+ -86.14070646400458,
+ 33.504979074992846
+ ],
+ [
+ -85.92932877486842,
+ 33.81823412920977
+ ],
+ [
+ -86.35208415314074,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ],
+ [
+ -85.92932877486842,
+ 34.444744237643626
+ ],
+ [
+ -86.14070646400458,
+ 34.75799929186055
+ ],
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ],
+ [
+ -86.14070646400458,
+ 34.75799929186055
+ ],
+ [
+ -86.5634618422769,
+ 34.75799929186055
+ ],
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ],
+ [
+ -86.5634618422769,
+ 34.75799929186055
+ ],
+ [
+ -86.77483953141305,
+ 34.444744237643626
+ ],
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ],
+ [
+ -86.77483953141305,
+ 34.444744237643626
+ ],
+ [
+ -86.5634618422769,
+ 34.1314891834267
+ ],
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ],
+ [
+ -86.5634618422769,
+ 34.1314891834267
+ ],
+ [
+ -86.14070646400458,
+ 34.1314891834267
+ ],
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ],
+ [
+ -86.14070646400458,
+ 34.1314891834267
+ ],
+ [
+ -85.92932877486842,
+ 34.444744237643626
+ ],
+ [
+ -86.35208415314074,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ],
+ [
+ -85.92932877486842,
+ 35.07125434607748
+ ],
+ [
+ -86.14070646400458,
+ 35.384509400294405
+ ],
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ],
+ [
+ -86.14070646400458,
+ 35.384509400294405
+ ],
+ [
+ -86.5634618422769,
+ 35.384509400294405
+ ],
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ],
+ [
+ -86.5634618422769,
+ 35.384509400294405
+ ],
+ [
+ -86.77483953141305,
+ 35.07125434607748
+ ],
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ],
+ [
+ -86.77483953141305,
+ 35.07125434607748
+ ],
+ [
+ -86.5634618422769,
+ 34.75799929186056
+ ],
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ],
+ [
+ -86.5634618422769,
+ 34.75799929186056
+ ],
+ [
+ -86.14070646400458,
+ 34.75799929186056
+ ],
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ],
+ [
+ -86.14070646400458,
+ 34.75799929186056
+ ],
+ [
+ -85.92932877486842,
+ 35.07125434607748
+ ],
+ [
+ -86.35208415314074,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ],
+ [
+ -85.92932877486842,
+ 35.697764454511336
+ ],
+ [
+ -86.14070646400458,
+ 36.01101950872826
+ ],
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ],
+ [
+ -86.14070646400458,
+ 36.01101950872826
+ ],
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ],
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ],
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ],
+ [
+ -86.77483953141305,
+ 35.697764454511336
+ ],
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ],
+ [
+ -86.77483953141305,
+ 35.697764454511336
+ ],
+ [
+ -86.5634618422769,
+ 35.38450940029441
+ ],
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ],
+ [
+ -86.5634618422769,
+ 35.38450940029441
+ ],
+ [
+ -86.14070646400458,
+ 35.38450940029441
+ ],
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ],
+ [
+ -86.14070646400458,
+ 35.38450940029441
+ ],
+ [
+ -85.92932877486842,
+ 35.697764454511336
+ ],
+ [
+ -86.35208415314074,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ],
+ [
+ -85.92932877486842,
+ 36.324274562945185
+ ],
+ [
+ -86.14070646400458,
+ 36.63752961716211
+ ],
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ],
+ [
+ -86.14070646400458,
+ 36.63752961716211
+ ],
+ [
+ -86.5634618422769,
+ 36.63752961716211
+ ],
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ],
+ [
+ -86.5634618422769,
+ 36.63752961716211
+ ],
+ [
+ -86.77483953141305,
+ 36.324274562945185
+ ],
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ],
+ [
+ -86.77483953141305,
+ 36.324274562945185
+ ],
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ],
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ],
+ [
+ -86.5634618422769,
+ 36.01101950872826
+ ],
+ [
+ -86.14070646400458,
+ 36.01101950872826
+ ],
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ],
+ [
+ -86.14070646400458,
+ 36.01101950872826
+ ],
+ [
+ -85.92932877486842,
+ 36.324274562945185
+ ],
+ [
+ -86.35208415314074,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ],
+ [
+ -85.92932877486842,
+ 36.95078467137904
+ ],
+ [
+ -86.14070646400458,
+ 37.264039725595964
+ ],
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ],
+ [
+ -86.14070646400458,
+ 37.264039725595964
+ ],
+ [
+ -86.5634618422769,
+ 37.264039725595964
+ ],
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ],
+ [
+ -86.5634618422769,
+ 37.264039725595964
+ ],
+ [
+ -86.77483953141305,
+ 36.95078467137904
+ ],
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ],
+ [
+ -86.77483953141305,
+ 36.95078467137904
+ ],
+ [
+ -86.5634618422769,
+ 36.637529617162116
+ ],
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ],
+ [
+ -86.5634618422769,
+ 36.637529617162116
+ ],
+ [
+ -86.14070646400458,
+ 36.637529617162116
+ ],
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ],
+ [
+ -86.14070646400458,
+ 36.637529617162116
+ ],
+ [
+ -85.92932877486842,
+ 36.95078467137904
+ ],
+ [
+ -86.35208415314074,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ],
+ [
+ -85.92932877486842,
+ 37.577294779812895
+ ],
+ [
+ -86.14070646400458,
+ 37.89054983402982
+ ],
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ],
+ [
+ -86.14070646400458,
+ 37.89054983402982
+ ],
+ [
+ -86.5634618422769,
+ 37.89054983402982
+ ],
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ],
+ [
+ -86.5634618422769,
+ 37.89054983402982
+ ],
+ [
+ -86.77483953141305,
+ 37.577294779812895
+ ],
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ],
+ [
+ -86.77483953141305,
+ 37.577294779812895
+ ],
+ [
+ -86.5634618422769,
+ 37.26403972559597
+ ],
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ],
+ [
+ -86.5634618422769,
+ 37.26403972559597
+ ],
+ [
+ -86.14070646400458,
+ 37.26403972559597
+ ],
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ],
+ [
+ -86.14070646400458,
+ 37.26403972559597
+ ],
+ [
+ -85.92932877486842,
+ 37.577294779812895
+ ],
+ [
+ -86.35208415314074,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ],
+ [
+ -85.92932877486842,
+ 38.20380488824675
+ ],
+ [
+ -86.14070646400458,
+ 38.517059942463675
+ ],
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ],
+ [
+ -86.14070646400458,
+ 38.517059942463675
+ ],
+ [
+ -86.5634618422769,
+ 38.517059942463675
+ ],
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ],
+ [
+ -86.5634618422769,
+ 38.517059942463675
+ ],
+ [
+ -86.77483953141305,
+ 38.20380488824675
+ ],
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ],
+ [
+ -86.77483953141305,
+ 38.20380488824675
+ ],
+ [
+ -86.5634618422769,
+ 37.89054983402983
+ ],
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ],
+ [
+ -86.5634618422769,
+ 37.89054983402983
+ ],
+ [
+ -86.14070646400458,
+ 37.89054983402983
+ ],
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ],
+ [
+ -86.14070646400458,
+ 37.89054983402983
+ ],
+ [
+ -85.92932877486842,
+ 38.20380488824675
+ ],
+ [
+ -86.35208415314074,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ],
+ [
+ -85.92932877486842,
+ 38.830314996680606
+ ],
+ [
+ -86.14070646400458,
+ 39.14357005089753
+ ],
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ],
+ [
+ -86.14070646400458,
+ 39.14357005089753
+ ],
+ [
+ -86.5634618422769,
+ 39.14357005089753
+ ],
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ],
+ [
+ -86.5634618422769,
+ 39.14357005089753
+ ],
+ [
+ -86.77483953141305,
+ 38.830314996680606
+ ],
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ],
+ [
+ -86.77483953141305,
+ 38.830314996680606
+ ],
+ [
+ -86.5634618422769,
+ 38.51705994246368
+ ],
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ],
+ [
+ -86.5634618422769,
+ 38.51705994246368
+ ],
+ [
+ -86.14070646400458,
+ 38.51705994246368
+ ],
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ],
+ [
+ -86.14070646400458,
+ 38.51705994246368
+ ],
+ [
+ -85.92932877486842,
+ 38.830314996680606
+ ],
+ [
+ -86.35208415314074,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ],
+ [
+ -85.92932877486842,
+ 39.45682510511446
+ ],
+ [
+ -86.14070646400458,
+ 39.770080159331386
+ ],
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ],
+ [
+ -86.14070646400458,
+ 39.770080159331386
+ ],
+ [
+ -86.5634618422769,
+ 39.770080159331386
+ ],
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ],
+ [
+ -86.5634618422769,
+ 39.770080159331386
+ ],
+ [
+ -86.77483953141305,
+ 39.45682510511446
+ ],
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ],
+ [
+ -86.77483953141305,
+ 39.45682510511446
+ ],
+ [
+ -86.5634618422769,
+ 39.14357005089754
+ ],
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ],
+ [
+ -86.5634618422769,
+ 39.14357005089754
+ ],
+ [
+ -86.14070646400458,
+ 39.14357005089754
+ ],
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ],
+ [
+ -86.14070646400458,
+ 39.14357005089754
+ ],
+ [
+ -85.92932877486842,
+ 39.45682510511446
+ ],
+ [
+ -86.35208415314074,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ],
+ [
+ -85.92932877486842,
+ 40.08333521354832
+ ],
+ [
+ -86.14070646400458,
+ 40.39659026776524
+ ],
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ],
+ [
+ -86.14070646400458,
+ 40.39659026776524
+ ],
+ [
+ -86.5634618422769,
+ 40.39659026776524
+ ],
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ],
+ [
+ -86.5634618422769,
+ 40.39659026776524
+ ],
+ [
+ -86.77483953141305,
+ 40.08333521354832
+ ],
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ],
+ [
+ -86.77483953141305,
+ 40.08333521354832
+ ],
+ [
+ -86.5634618422769,
+ 39.77008015933139
+ ],
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ],
+ [
+ -86.5634618422769,
+ 39.77008015933139
+ ],
+ [
+ -86.14070646400458,
+ 39.77008015933139
+ ],
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ],
+ [
+ -86.14070646400458,
+ 39.77008015933139
+ ],
+ [
+ -85.92932877486842,
+ 40.08333521354832
+ ],
+ [
+ -86.35208415314074,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ],
+ [
+ -85.92932877486842,
+ 40.70984532198217
+ ],
+ [
+ -86.14070646400458,
+ 41.023100376199096
+ ],
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ],
+ [
+ -86.14070646400458,
+ 41.023100376199096
+ ],
+ [
+ -86.5634618422769,
+ 41.023100376199096
+ ],
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ],
+ [
+ -86.5634618422769,
+ 41.023100376199096
+ ],
+ [
+ -86.77483953141305,
+ 40.70984532198217
+ ],
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ],
+ [
+ -86.77483953141305,
+ 40.70984532198217
+ ],
+ [
+ -86.5634618422769,
+ 40.39659026776525
+ ],
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ],
+ [
+ -86.5634618422769,
+ 40.39659026776525
+ ],
+ [
+ -86.14070646400458,
+ 40.39659026776525
+ ],
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ],
+ [
+ -86.14070646400458,
+ 40.39659026776525
+ ],
+ [
+ -85.92932877486842,
+ 40.70984532198217
+ ],
+ [
+ -86.35208415314074,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ],
+ [
+ -85.29519570745997,
+ 30.99893864125743
+ ],
+ [
+ -85.50657339659612,
+ 31.312193695474356
+ ],
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ],
+ [
+ -85.50657339659612,
+ 31.312193695474356
+ ],
+ [
+ -85.92932877486844,
+ 31.312193695474356
+ ],
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ],
+ [
+ -85.92932877486844,
+ 31.312193695474356
+ ],
+ [
+ -86.1407064640046,
+ 30.99893864125743
+ ],
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ],
+ [
+ -86.1407064640046,
+ 30.99893864125743
+ ],
+ [
+ -85.92932877486844,
+ 30.6856835870405
+ ],
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ],
+ [
+ -85.92932877486844,
+ 30.6856835870405
+ ],
+ [
+ -85.50657339659612,
+ 30.6856835870405
+ ],
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ],
+ [
+ -85.50657339659612,
+ 30.6856835870405
+ ],
+ [
+ -85.29519570745997,
+ 30.99893864125743
+ ],
+ [
+ -85.71795108573228,
+ 30.99893864125743
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ],
+ [
+ -85.29519570745997,
+ 31.62544874969128
+ ],
+ [
+ -85.50657339659612,
+ 31.938703803908208
+ ],
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ],
+ [
+ -85.50657339659612,
+ 31.938703803908208
+ ],
+ [
+ -85.92932877486844,
+ 31.938703803908208
+ ],
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ],
+ [
+ -85.92932877486844,
+ 31.938703803908208
+ ],
+ [
+ -86.1407064640046,
+ 31.62544874969128
+ ],
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ],
+ [
+ -86.1407064640046,
+ 31.62544874969128
+ ],
+ [
+ -85.92932877486844,
+ 31.312193695474352
+ ],
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ],
+ [
+ -85.92932877486844,
+ 31.312193695474352
+ ],
+ [
+ -85.50657339659612,
+ 31.312193695474352
+ ],
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ],
+ [
+ -85.50657339659612,
+ 31.312193695474352
+ ],
+ [
+ -85.29519570745997,
+ 31.62544874969128
+ ],
+ [
+ -85.71795108573228,
+ 31.62544874969128
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ],
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ],
+ [
+ -85.50657339659612,
+ 32.56521391234206
+ ],
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ],
+ [
+ -85.50657339659612,
+ 32.56521391234206
+ ],
+ [
+ -85.92932877486844,
+ 32.56521391234206
+ ],
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ],
+ [
+ -85.92932877486844,
+ 32.56521391234206
+ ],
+ [
+ -86.1407064640046,
+ 32.251958858125136
+ ],
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ],
+ [
+ -86.1407064640046,
+ 32.251958858125136
+ ],
+ [
+ -85.92932877486844,
+ 31.938703803908208
+ ],
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ],
+ [
+ -85.92932877486844,
+ 31.938703803908208
+ ],
+ [
+ -85.50657339659612,
+ 31.938703803908208
+ ],
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ],
+ [
+ -85.50657339659612,
+ 31.938703803908208
+ ],
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ],
+ [
+ -85.71795108573228,
+ 32.251958858125136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ],
+ [
+ -85.29519570745997,
+ 32.87846896655899
+ ],
+ [
+ -85.50657339659612,
+ 33.191724020775915
+ ],
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ],
+ [
+ -85.50657339659612,
+ 33.191724020775915
+ ],
+ [
+ -85.92932877486844,
+ 33.191724020775915
+ ],
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ],
+ [
+ -85.92932877486844,
+ 33.191724020775915
+ ],
+ [
+ -86.1407064640046,
+ 32.87846896655899
+ ],
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ],
+ [
+ -86.1407064640046,
+ 32.87846896655899
+ ],
+ [
+ -85.92932877486844,
+ 32.56521391234207
+ ],
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ],
+ [
+ -85.92932877486844,
+ 32.56521391234207
+ ],
+ [
+ -85.50657339659612,
+ 32.56521391234207
+ ],
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ],
+ [
+ -85.50657339659612,
+ 32.56521391234207
+ ],
+ [
+ -85.29519570745997,
+ 32.87846896655899
+ ],
+ [
+ -85.71795108573228,
+ 32.87846896655899
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ],
+ [
+ -85.29519570745997,
+ 33.504979074992846
+ ],
+ [
+ -85.50657339659612,
+ 33.81823412920977
+ ],
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ],
+ [
+ -85.50657339659612,
+ 33.81823412920977
+ ],
+ [
+ -85.92932877486844,
+ 33.81823412920977
+ ],
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ],
+ [
+ -85.92932877486844,
+ 33.81823412920977
+ ],
+ [
+ -86.1407064640046,
+ 33.504979074992846
+ ],
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ],
+ [
+ -86.1407064640046,
+ 33.504979074992846
+ ],
+ [
+ -85.92932877486844,
+ 33.19172402077592
+ ],
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ],
+ [
+ -85.92932877486844,
+ 33.19172402077592
+ ],
+ [
+ -85.50657339659612,
+ 33.19172402077592
+ ],
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ],
+ [
+ -85.50657339659612,
+ 33.19172402077592
+ ],
+ [
+ -85.29519570745997,
+ 33.504979074992846
+ ],
+ [
+ -85.71795108573228,
+ 33.504979074992846
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ],
+ [
+ -85.29519570745997,
+ 34.1314891834267
+ ],
+ [
+ -85.50657339659612,
+ 34.444744237643626
+ ],
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ],
+ [
+ -85.50657339659612,
+ 34.444744237643626
+ ],
+ [
+ -85.92932877486844,
+ 34.444744237643626
+ ],
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ],
+ [
+ -85.92932877486844,
+ 34.444744237643626
+ ],
+ [
+ -86.1407064640046,
+ 34.1314891834267
+ ],
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ],
+ [
+ -86.1407064640046,
+ 34.1314891834267
+ ],
+ [
+ -85.92932877486844,
+ 33.81823412920978
+ ],
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ],
+ [
+ -85.92932877486844,
+ 33.81823412920978
+ ],
+ [
+ -85.50657339659612,
+ 33.81823412920978
+ ],
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ],
+ [
+ -85.50657339659612,
+ 33.81823412920978
+ ],
+ [
+ -85.29519570745997,
+ 34.1314891834267
+ ],
+ [
+ -85.71795108573228,
+ 34.1314891834267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ],
+ [
+ -85.29519570745997,
+ 34.75799929186056
+ ],
+ [
+ -85.50657339659612,
+ 35.07125434607748
+ ],
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ],
+ [
+ -85.50657339659612,
+ 35.07125434607748
+ ],
+ [
+ -85.92932877486844,
+ 35.07125434607748
+ ],
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ],
+ [
+ -85.92932877486844,
+ 35.07125434607748
+ ],
+ [
+ -86.1407064640046,
+ 34.75799929186056
+ ],
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ],
+ [
+ -86.1407064640046,
+ 34.75799929186056
+ ],
+ [
+ -85.92932877486844,
+ 34.44474423764363
+ ],
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ],
+ [
+ -85.92932877486844,
+ 34.44474423764363
+ ],
+ [
+ -85.50657339659612,
+ 34.44474423764363
+ ],
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ],
+ [
+ -85.50657339659612,
+ 34.44474423764363
+ ],
+ [
+ -85.29519570745997,
+ 34.75799929186056
+ ],
+ [
+ -85.71795108573228,
+ 34.75799929186056
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ],
+ [
+ -85.29519570745997,
+ 35.38450940029441
+ ],
+ [
+ -85.50657339659612,
+ 35.697764454511336
+ ],
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ],
+ [
+ -85.50657339659612,
+ 35.697764454511336
+ ],
+ [
+ -85.92932877486844,
+ 35.697764454511336
+ ],
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ],
+ [
+ -85.92932877486844,
+ 35.697764454511336
+ ],
+ [
+ -86.1407064640046,
+ 35.38450940029441
+ ],
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ],
+ [
+ -86.1407064640046,
+ 35.38450940029441
+ ],
+ [
+ -85.92932877486844,
+ 35.07125434607749
+ ],
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ],
+ [
+ -85.92932877486844,
+ 35.07125434607749
+ ],
+ [
+ -85.50657339659612,
+ 35.07125434607749
+ ],
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ],
+ [
+ -85.50657339659612,
+ 35.07125434607749
+ ],
+ [
+ -85.29519570745997,
+ 35.38450940029441
+ ],
+ [
+ -85.71795108573228,
+ 35.38450940029441
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ],
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ],
+ [
+ -85.50657339659612,
+ 36.324274562945185
+ ],
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ],
+ [
+ -85.50657339659612,
+ 36.324274562945185
+ ],
+ [
+ -85.92932877486844,
+ 36.324274562945185
+ ],
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ],
+ [
+ -85.92932877486844,
+ 36.324274562945185
+ ],
+ [
+ -86.1407064640046,
+ 36.01101950872826
+ ],
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ],
+ [
+ -86.1407064640046,
+ 36.01101950872826
+ ],
+ [
+ -85.92932877486844,
+ 35.697764454511336
+ ],
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ],
+ [
+ -85.92932877486844,
+ 35.697764454511336
+ ],
+ [
+ -85.50657339659612,
+ 35.697764454511336
+ ],
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ],
+ [
+ -85.50657339659612,
+ 35.697764454511336
+ ],
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ],
+ [
+ -85.71795108573228,
+ 36.01101950872826
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ],
+ [
+ -85.29519570745997,
+ 36.637529617162116
+ ],
+ [
+ -85.50657339659612,
+ 36.95078467137904
+ ],
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ],
+ [
+ -85.50657339659612,
+ 36.95078467137904
+ ],
+ [
+ -85.92932877486844,
+ 36.95078467137904
+ ],
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ],
+ [
+ -85.92932877486844,
+ 36.95078467137904
+ ],
+ [
+ -86.1407064640046,
+ 36.637529617162116
+ ],
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ],
+ [
+ -86.1407064640046,
+ 36.637529617162116
+ ],
+ [
+ -85.92932877486844,
+ 36.32427456294519
+ ],
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ],
+ [
+ -85.92932877486844,
+ 36.32427456294519
+ ],
+ [
+ -85.50657339659612,
+ 36.32427456294519
+ ],
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ],
+ [
+ -85.50657339659612,
+ 36.32427456294519
+ ],
+ [
+ -85.29519570745997,
+ 36.637529617162116
+ ],
+ [
+ -85.71795108573228,
+ 36.637529617162116
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ],
+ [
+ -85.29519570745997,
+ 37.26403972559597
+ ],
+ [
+ -85.50657339659612,
+ 37.577294779812895
+ ],
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ],
+ [
+ -85.50657339659612,
+ 37.577294779812895
+ ],
+ [
+ -85.92932877486844,
+ 37.577294779812895
+ ],
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ],
+ [
+ -85.92932877486844,
+ 37.577294779812895
+ ],
+ [
+ -86.1407064640046,
+ 37.26403972559597
+ ],
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ],
+ [
+ -86.1407064640046,
+ 37.26403972559597
+ ],
+ [
+ -85.92932877486844,
+ 36.95078467137905
+ ],
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ],
+ [
+ -85.92932877486844,
+ 36.95078467137905
+ ],
+ [
+ -85.50657339659612,
+ 36.95078467137905
+ ],
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ],
+ [
+ -85.50657339659612,
+ 36.95078467137905
+ ],
+ [
+ -85.29519570745997,
+ 37.26403972559597
+ ],
+ [
+ -85.71795108573228,
+ 37.26403972559597
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ],
+ [
+ -85.29519570745997,
+ 37.89054983402983
+ ],
+ [
+ -85.50657339659612,
+ 38.20380488824675
+ ],
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ],
+ [
+ -85.50657339659612,
+ 38.20380488824675
+ ],
+ [
+ -85.92932877486844,
+ 38.20380488824675
+ ],
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ],
+ [
+ -85.92932877486844,
+ 38.20380488824675
+ ],
+ [
+ -86.1407064640046,
+ 37.89054983402983
+ ],
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ],
+ [
+ -86.1407064640046,
+ 37.89054983402983
+ ],
+ [
+ -85.92932877486844,
+ 37.5772947798129
+ ],
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ],
+ [
+ -85.92932877486844,
+ 37.5772947798129
+ ],
+ [
+ -85.50657339659612,
+ 37.5772947798129
+ ],
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ],
+ [
+ -85.50657339659612,
+ 37.5772947798129
+ ],
+ [
+ -85.29519570745997,
+ 37.89054983402983
+ ],
+ [
+ -85.71795108573228,
+ 37.89054983402983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ],
+ [
+ -85.29519570745997,
+ 38.51705994246368
+ ],
+ [
+ -85.50657339659612,
+ 38.830314996680606
+ ],
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ],
+ [
+ -85.50657339659612,
+ 38.830314996680606
+ ],
+ [
+ -85.92932877486844,
+ 38.830314996680606
+ ],
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ],
+ [
+ -85.92932877486844,
+ 38.830314996680606
+ ],
+ [
+ -86.1407064640046,
+ 38.51705994246368
+ ],
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ],
+ [
+ -86.1407064640046,
+ 38.51705994246368
+ ],
+ [
+ -85.92932877486844,
+ 38.20380488824676
+ ],
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ],
+ [
+ -85.92932877486844,
+ 38.20380488824676
+ ],
+ [
+ -85.50657339659612,
+ 38.20380488824676
+ ],
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ],
+ [
+ -85.50657339659612,
+ 38.20380488824676
+ ],
+ [
+ -85.29519570745997,
+ 38.51705994246368
+ ],
+ [
+ -85.71795108573228,
+ 38.51705994246368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ],
+ [
+ -85.29519570745997,
+ 39.14357005089754
+ ],
+ [
+ -85.50657339659612,
+ 39.45682510511446
+ ],
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ],
+ [
+ -85.50657339659612,
+ 39.45682510511446
+ ],
+ [
+ -85.92932877486844,
+ 39.45682510511446
+ ],
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ],
+ [
+ -85.92932877486844,
+ 39.45682510511446
+ ],
+ [
+ -86.1407064640046,
+ 39.14357005089754
+ ],
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ],
+ [
+ -86.1407064640046,
+ 39.14357005089754
+ ],
+ [
+ -85.92932877486844,
+ 38.83031499668061
+ ],
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ],
+ [
+ -85.92932877486844,
+ 38.83031499668061
+ ],
+ [
+ -85.50657339659612,
+ 38.83031499668061
+ ],
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ],
+ [
+ -85.50657339659612,
+ 38.83031499668061
+ ],
+ [
+ -85.29519570745997,
+ 39.14357005089754
+ ],
+ [
+ -85.71795108573228,
+ 39.14357005089754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ],
+ [
+ -85.29519570745997,
+ 39.77008015933139
+ ],
+ [
+ -85.50657339659612,
+ 40.08333521354832
+ ],
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ],
+ [
+ -85.50657339659612,
+ 40.08333521354832
+ ],
+ [
+ -85.92932877486844,
+ 40.08333521354832
+ ],
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ],
+ [
+ -85.92932877486844,
+ 40.08333521354832
+ ],
+ [
+ -86.1407064640046,
+ 39.77008015933139
+ ],
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ],
+ [
+ -86.1407064640046,
+ 39.77008015933139
+ ],
+ [
+ -85.92932877486844,
+ 39.45682510511447
+ ],
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ],
+ [
+ -85.92932877486844,
+ 39.45682510511447
+ ],
+ [
+ -85.50657339659612,
+ 39.45682510511447
+ ],
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ],
+ [
+ -85.50657339659612,
+ 39.45682510511447
+ ],
+ [
+ -85.29519570745997,
+ 39.77008015933139
+ ],
+ [
+ -85.71795108573228,
+ 39.77008015933139
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ],
+ [
+ -85.29519570745997,
+ 40.39659026776525
+ ],
+ [
+ -85.50657339659612,
+ 40.70984532198217
+ ],
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ],
+ [
+ -85.50657339659612,
+ 40.70984532198217
+ ],
+ [
+ -85.92932877486844,
+ 40.70984532198217
+ ],
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ],
+ [
+ -85.92932877486844,
+ 40.70984532198217
+ ],
+ [
+ -86.1407064640046,
+ 40.39659026776525
+ ],
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ],
+ [
+ -86.1407064640046,
+ 40.39659026776525
+ ],
+ [
+ -85.92932877486844,
+ 40.083335213548324
+ ],
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ],
+ [
+ -85.92932877486844,
+ 40.083335213548324
+ ],
+ [
+ -85.50657339659612,
+ 40.083335213548324
+ ],
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ],
+ [
+ -85.50657339659612,
+ 40.083335213548324
+ ],
+ [
+ -85.29519570745997,
+ 40.39659026776525
+ ],
+ [
+ -85.71795108573228,
+ 40.39659026776525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ],
+ [
+ -84.6610626400515,
+ 31.312193695474356
+ ],
+ [
+ -84.87244032918765,
+ 31.625448749691284
+ ],
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ],
+ [
+ -84.87244032918765,
+ 31.625448749691284
+ ],
+ [
+ -85.29519570745997,
+ 31.625448749691284
+ ],
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ],
+ [
+ -85.29519570745997,
+ 31.625448749691284
+ ],
+ [
+ -85.50657339659612,
+ 31.312193695474356
+ ],
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ],
+ [
+ -85.50657339659612,
+ 31.312193695474356
+ ],
+ [
+ -85.29519570745997,
+ 30.99893864125743
+ ],
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ],
+ [
+ -85.29519570745997,
+ 30.99893864125743
+ ],
+ [
+ -84.87244032918765,
+ 30.99893864125743
+ ],
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ],
+ [
+ -84.87244032918765,
+ 30.99893864125743
+ ],
+ [
+ -84.6610626400515,
+ 31.312193695474356
+ ],
+ [
+ -85.08381801832381,
+ 31.312193695474356
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ],
+ [
+ -84.6610626400515,
+ 31.938703803908208
+ ],
+ [
+ -84.87244032918765,
+ 32.251958858125136
+ ],
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ],
+ [
+ -84.87244032918765,
+ 32.251958858125136
+ ],
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ],
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ],
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ],
+ [
+ -85.50657339659612,
+ 31.938703803908208
+ ],
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ],
+ [
+ -85.50657339659612,
+ 31.938703803908208
+ ],
+ [
+ -85.29519570745997,
+ 31.62544874969128
+ ],
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ],
+ [
+ -85.29519570745997,
+ 31.62544874969128
+ ],
+ [
+ -84.87244032918765,
+ 31.62544874969128
+ ],
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ],
+ [
+ -84.87244032918765,
+ 31.62544874969128
+ ],
+ [
+ -84.6610626400515,
+ 31.938703803908208
+ ],
+ [
+ -85.08381801832381,
+ 31.938703803908208
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ],
+ [
+ -84.6610626400515,
+ 32.56521391234206
+ ],
+ [
+ -84.87244032918765,
+ 32.878468966558984
+ ],
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ],
+ [
+ -84.87244032918765,
+ 32.878468966558984
+ ],
+ [
+ -85.29519570745997,
+ 32.878468966558984
+ ],
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ],
+ [
+ -85.29519570745997,
+ 32.878468966558984
+ ],
+ [
+ -85.50657339659612,
+ 32.56521391234206
+ ],
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ],
+ [
+ -85.50657339659612,
+ 32.56521391234206
+ ],
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ],
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ],
+ [
+ -85.29519570745997,
+ 32.251958858125136
+ ],
+ [
+ -84.87244032918765,
+ 32.251958858125136
+ ],
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ],
+ [
+ -84.87244032918765,
+ 32.251958858125136
+ ],
+ [
+ -84.6610626400515,
+ 32.56521391234206
+ ],
+ [
+ -85.08381801832381,
+ 32.56521391234206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ],
+ [
+ -84.6610626400515,
+ 33.191724020775915
+ ],
+ [
+ -84.87244032918765,
+ 33.50497907499284
+ ],
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ],
+ [
+ -84.87244032918765,
+ 33.50497907499284
+ ],
+ [
+ -85.29519570745997,
+ 33.50497907499284
+ ],
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ],
+ [
+ -85.29519570745997,
+ 33.50497907499284
+ ],
+ [
+ -85.50657339659612,
+ 33.191724020775915
+ ],
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ],
+ [
+ -85.50657339659612,
+ 33.191724020775915
+ ],
+ [
+ -85.29519570745997,
+ 32.87846896655899
+ ],
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ],
+ [
+ -85.29519570745997,
+ 32.87846896655899
+ ],
+ [
+ -84.87244032918765,
+ 32.87846896655899
+ ],
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ],
+ [
+ -84.87244032918765,
+ 32.87846896655899
+ ],
+ [
+ -84.6610626400515,
+ 33.191724020775915
+ ],
+ [
+ -85.08381801832381,
+ 33.191724020775915
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ],
+ [
+ -84.6610626400515,
+ 33.81823412920977
+ ],
+ [
+ -84.87244032918765,
+ 34.131489183426694
+ ],
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ],
+ [
+ -84.87244032918765,
+ 34.131489183426694
+ ],
+ [
+ -85.29519570745997,
+ 34.131489183426694
+ ],
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ],
+ [
+ -85.29519570745997,
+ 34.131489183426694
+ ],
+ [
+ -85.50657339659612,
+ 33.81823412920977
+ ],
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ],
+ [
+ -85.50657339659612,
+ 33.81823412920977
+ ],
+ [
+ -85.29519570745997,
+ 33.504979074992846
+ ],
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ],
+ [
+ -85.29519570745997,
+ 33.504979074992846
+ ],
+ [
+ -84.87244032918765,
+ 33.504979074992846
+ ],
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ],
+ [
+ -84.87244032918765,
+ 33.504979074992846
+ ],
+ [
+ -84.6610626400515,
+ 33.81823412920977
+ ],
+ [
+ -85.08381801832381,
+ 33.81823412920977
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ],
+ [
+ -84.6610626400515,
+ 34.444744237643626
+ ],
+ [
+ -84.87244032918765,
+ 34.75799929186055
+ ],
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ],
+ [
+ -84.87244032918765,
+ 34.75799929186055
+ ],
+ [
+ -85.29519570745997,
+ 34.75799929186055
+ ],
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ],
+ [
+ -85.29519570745997,
+ 34.75799929186055
+ ],
+ [
+ -85.50657339659612,
+ 34.444744237643626
+ ],
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ],
+ [
+ -85.50657339659612,
+ 34.444744237643626
+ ],
+ [
+ -85.29519570745997,
+ 34.1314891834267
+ ],
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ],
+ [
+ -85.29519570745997,
+ 34.1314891834267
+ ],
+ [
+ -84.87244032918765,
+ 34.1314891834267
+ ],
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ],
+ [
+ -84.87244032918765,
+ 34.1314891834267
+ ],
+ [
+ -84.6610626400515,
+ 34.444744237643626
+ ],
+ [
+ -85.08381801832381,
+ 34.444744237643626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ],
+ [
+ -84.6610626400515,
+ 35.07125434607748
+ ],
+ [
+ -84.87244032918765,
+ 35.384509400294405
+ ],
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ],
+ [
+ -84.87244032918765,
+ 35.384509400294405
+ ],
+ [
+ -85.29519570745997,
+ 35.384509400294405
+ ],
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ],
+ [
+ -85.29519570745997,
+ 35.384509400294405
+ ],
+ [
+ -85.50657339659612,
+ 35.07125434607748
+ ],
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ],
+ [
+ -85.50657339659612,
+ 35.07125434607748
+ ],
+ [
+ -85.29519570745997,
+ 34.75799929186056
+ ],
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ],
+ [
+ -85.29519570745997,
+ 34.75799929186056
+ ],
+ [
+ -84.87244032918765,
+ 34.75799929186056
+ ],
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ],
+ [
+ -84.87244032918765,
+ 34.75799929186056
+ ],
+ [
+ -84.6610626400515,
+ 35.07125434607748
+ ],
+ [
+ -85.08381801832381,
+ 35.07125434607748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ],
+ [
+ -84.6610626400515,
+ 35.697764454511336
+ ],
+ [
+ -84.87244032918765,
+ 36.01101950872826
+ ],
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ],
+ [
+ -84.87244032918765,
+ 36.01101950872826
+ ],
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ],
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ],
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ],
+ [
+ -85.50657339659612,
+ 35.697764454511336
+ ],
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ],
+ [
+ -85.50657339659612,
+ 35.697764454511336
+ ],
+ [
+ -85.29519570745997,
+ 35.38450940029441
+ ],
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ],
+ [
+ -85.29519570745997,
+ 35.38450940029441
+ ],
+ [
+ -84.87244032918765,
+ 35.38450940029441
+ ],
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ],
+ [
+ -84.87244032918765,
+ 35.38450940029441
+ ],
+ [
+ -84.6610626400515,
+ 35.697764454511336
+ ],
+ [
+ -85.08381801832381,
+ 35.697764454511336
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ],
+ [
+ -84.6610626400515,
+ 36.324274562945185
+ ],
+ [
+ -84.87244032918765,
+ 36.63752961716211
+ ],
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ],
+ [
+ -84.87244032918765,
+ 36.63752961716211
+ ],
+ [
+ -85.29519570745997,
+ 36.63752961716211
+ ],
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ],
+ [
+ -85.29519570745997,
+ 36.63752961716211
+ ],
+ [
+ -85.50657339659612,
+ 36.324274562945185
+ ],
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ],
+ [
+ -85.50657339659612,
+ 36.324274562945185
+ ],
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ],
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ],
+ [
+ -85.29519570745997,
+ 36.01101950872826
+ ],
+ [
+ -84.87244032918765,
+ 36.01101950872826
+ ],
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ],
+ [
+ -84.87244032918765,
+ 36.01101950872826
+ ],
+ [
+ -84.6610626400515,
+ 36.324274562945185
+ ],
+ [
+ -85.08381801832381,
+ 36.324274562945185
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ],
+ [
+ -84.6610626400515,
+ 36.95078467137904
+ ],
+ [
+ -84.87244032918765,
+ 37.264039725595964
+ ],
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ],
+ [
+ -84.87244032918765,
+ 37.264039725595964
+ ],
+ [
+ -85.29519570745997,
+ 37.264039725595964
+ ],
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ],
+ [
+ -85.29519570745997,
+ 37.264039725595964
+ ],
+ [
+ -85.50657339659612,
+ 36.95078467137904
+ ],
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ],
+ [
+ -85.50657339659612,
+ 36.95078467137904
+ ],
+ [
+ -85.29519570745997,
+ 36.637529617162116
+ ],
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ],
+ [
+ -85.29519570745997,
+ 36.637529617162116
+ ],
+ [
+ -84.87244032918765,
+ 36.637529617162116
+ ],
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ],
+ [
+ -84.87244032918765,
+ 36.637529617162116
+ ],
+ [
+ -84.6610626400515,
+ 36.95078467137904
+ ],
+ [
+ -85.08381801832381,
+ 36.95078467137904
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ],
+ [
+ -84.6610626400515,
+ 37.577294779812895
+ ],
+ [
+ -84.87244032918765,
+ 37.89054983402982
+ ],
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ],
+ [
+ -84.87244032918765,
+ 37.89054983402982
+ ],
+ [
+ -85.29519570745997,
+ 37.89054983402982
+ ],
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ],
+ [
+ -85.29519570745997,
+ 37.89054983402982
+ ],
+ [
+ -85.50657339659612,
+ 37.577294779812895
+ ],
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ],
+ [
+ -85.50657339659612,
+ 37.577294779812895
+ ],
+ [
+ -85.29519570745997,
+ 37.26403972559597
+ ],
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ],
+ [
+ -85.29519570745997,
+ 37.26403972559597
+ ],
+ [
+ -84.87244032918765,
+ 37.26403972559597
+ ],
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ],
+ [
+ -84.87244032918765,
+ 37.26403972559597
+ ],
+ [
+ -84.6610626400515,
+ 37.577294779812895
+ ],
+ [
+ -85.08381801832381,
+ 37.577294779812895
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ],
+ [
+ -84.6610626400515,
+ 38.20380488824675
+ ],
+ [
+ -84.87244032918765,
+ 38.517059942463675
+ ],
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ],
+ [
+ -84.87244032918765,
+ 38.517059942463675
+ ],
+ [
+ -85.29519570745997,
+ 38.517059942463675
+ ],
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ],
+ [
+ -85.29519570745997,
+ 38.517059942463675
+ ],
+ [
+ -85.50657339659612,
+ 38.20380488824675
+ ],
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ],
+ [
+ -85.50657339659612,
+ 38.20380488824675
+ ],
+ [
+ -85.29519570745997,
+ 37.89054983402983
+ ],
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ],
+ [
+ -85.29519570745997,
+ 37.89054983402983
+ ],
+ [
+ -84.87244032918765,
+ 37.89054983402983
+ ],
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ],
+ [
+ -84.87244032918765,
+ 37.89054983402983
+ ],
+ [
+ -84.6610626400515,
+ 38.20380488824675
+ ],
+ [
+ -85.08381801832381,
+ 38.20380488824675
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ],
+ [
+ -84.6610626400515,
+ 38.830314996680606
+ ],
+ [
+ -84.87244032918765,
+ 39.14357005089753
+ ],
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ],
+ [
+ -84.87244032918765,
+ 39.14357005089753
+ ],
+ [
+ -85.29519570745997,
+ 39.14357005089753
+ ],
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ],
+ [
+ -85.29519570745997,
+ 39.14357005089753
+ ],
+ [
+ -85.50657339659612,
+ 38.830314996680606
+ ],
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ],
+ [
+ -85.50657339659612,
+ 38.830314996680606
+ ],
+ [
+ -85.29519570745997,
+ 38.51705994246368
+ ],
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ],
+ [
+ -85.29519570745997,
+ 38.51705994246368
+ ],
+ [
+ -84.87244032918765,
+ 38.51705994246368
+ ],
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ],
+ [
+ -84.87244032918765,
+ 38.51705994246368
+ ],
+ [
+ -84.6610626400515,
+ 38.830314996680606
+ ],
+ [
+ -85.08381801832381,
+ 38.830314996680606
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ],
+ [
+ -84.6610626400515,
+ 39.45682510511446
+ ],
+ [
+ -84.87244032918765,
+ 39.770080159331386
+ ],
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ],
+ [
+ -84.87244032918765,
+ 39.770080159331386
+ ],
+ [
+ -85.29519570745997,
+ 39.770080159331386
+ ],
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ],
+ [
+ -85.29519570745997,
+ 39.770080159331386
+ ],
+ [
+ -85.50657339659612,
+ 39.45682510511446
+ ],
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ],
+ [
+ -85.50657339659612,
+ 39.45682510511446
+ ],
+ [
+ -85.29519570745997,
+ 39.14357005089754
+ ],
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ],
+ [
+ -85.29519570745997,
+ 39.14357005089754
+ ],
+ [
+ -84.87244032918765,
+ 39.14357005089754
+ ],
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ],
+ [
+ -84.87244032918765,
+ 39.14357005089754
+ ],
+ [
+ -84.6610626400515,
+ 39.45682510511446
+ ],
+ [
+ -85.08381801832381,
+ 39.45682510511446
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ],
+ [
+ -84.6610626400515,
+ 40.08333521354832
+ ],
+ [
+ -84.87244032918765,
+ 40.39659026776524
+ ],
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ],
+ [
+ -84.87244032918765,
+ 40.39659026776524
+ ],
+ [
+ -85.29519570745997,
+ 40.39659026776524
+ ],
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ],
+ [
+ -85.29519570745997,
+ 40.39659026776524
+ ],
+ [
+ -85.50657339659612,
+ 40.08333521354832
+ ],
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ],
+ [
+ -85.50657339659612,
+ 40.08333521354832
+ ],
+ [
+ -85.29519570745997,
+ 39.77008015933139
+ ],
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ],
+ [
+ -85.29519570745997,
+ 39.77008015933139
+ ],
+ [
+ -84.87244032918765,
+ 39.77008015933139
+ ],
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ],
+ [
+ -84.87244032918765,
+ 39.77008015933139
+ ],
+ [
+ -84.6610626400515,
+ 40.08333521354832
+ ],
+ [
+ -85.08381801832381,
+ 40.08333521354832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ],
+ [
+ -84.6610626400515,
+ 40.70984532198217
+ ],
+ [
+ -84.87244032918765,
+ 41.023100376199096
+ ],
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ],
+ [
+ -84.87244032918765,
+ 41.023100376199096
+ ],
+ [
+ -85.29519570745997,
+ 41.023100376199096
+ ],
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ],
+ [
+ -85.29519570745997,
+ 41.023100376199096
+ ],
+ [
+ -85.50657339659612,
+ 40.70984532198217
+ ],
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ],
+ [
+ -85.50657339659612,
+ 40.70984532198217
+ ],
+ [
+ -85.29519570745997,
+ 40.39659026776525
+ ],
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ],
+ [
+ -85.29519570745997,
+ 40.39659026776525
+ ],
+ [
+ -84.87244032918765,
+ 40.39659026776525
+ ],
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ],
+ [
+ -84.87244032918765,
+ 40.39659026776525
+ ],
+ [
+ -84.6610626400515,
+ 40.70984532198217
+ ],
+ [
+ -85.08381801832381,
+ 40.70984532198217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "fill-opacity": 0,
+ "stroke": "#0ff"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -96.6357421875,
+ 31.12819929911196
+ ],
+ [
+ -84.9462890625,
+ 31.12819929911196
+ ],
+ [
+ -84.9462890625,
+ 40.58058466412764
+ ],
+ [
+ -96.6357421875,
+ 40.58058466412764
+ ],
+ [
+ -96.6357421875,
+ 31.12819929911196
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-hex-grid/test/out/trigrid2.geojson b/packages/turf-hex-grid/test/out/trigrid2.geojson
new file mode 100644
index 0000000000..c92dae4098
--- /dev/null
+++ b/packages/turf-hex-grid/test/out/trigrid2.geojson
@@ -0,0 +1,125589 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ],
+ [
+ -81.60708907395546,
+ 24.942612038041236
+ ],
+ [
+ -81.62703273337885,
+ 24.973937543462927
+ ],
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ],
+ [
+ -81.62703273337885,
+ 24.973937543462927
+ ],
+ [
+ -81.6669200522256,
+ 24.973937543462927
+ ],
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ],
+ [
+ -81.6669200522256,
+ 24.973937543462927
+ ],
+ [
+ -81.686863711649,
+ 24.942612038041236
+ ],
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ],
+ [
+ -81.686863711649,
+ 24.942612038041236
+ ],
+ [
+ -81.6669200522256,
+ 24.911286532619545
+ ],
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ],
+ [
+ -81.6669200522256,
+ 24.911286532619545
+ ],
+ [
+ -81.62703273337885,
+ 24.911286532619545
+ ],
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ],
+ [
+ -81.62703273337885,
+ 24.911286532619545
+ ],
+ [
+ -81.60708907395546,
+ 24.942612038041236
+ ],
+ [
+ -81.64697639280223,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ],
+ [
+ -81.60708907395546,
+ 25.005263048884622
+ ],
+ [
+ -81.62703273337885,
+ 25.036588554306313
+ ],
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ],
+ [
+ -81.62703273337885,
+ 25.036588554306313
+ ],
+ [
+ -81.6669200522256,
+ 25.036588554306313
+ ],
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ],
+ [
+ -81.6669200522256,
+ 25.036588554306313
+ ],
+ [
+ -81.686863711649,
+ 25.005263048884622
+ ],
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ],
+ [
+ -81.686863711649,
+ 25.005263048884622
+ ],
+ [
+ -81.6669200522256,
+ 24.97393754346293
+ ],
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ],
+ [
+ -81.6669200522256,
+ 24.97393754346293
+ ],
+ [
+ -81.62703273337885,
+ 24.97393754346293
+ ],
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ],
+ [
+ -81.62703273337885,
+ 24.97393754346293
+ ],
+ [
+ -81.60708907395546,
+ 25.005263048884622
+ ],
+ [
+ -81.64697639280223,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ],
+ [
+ -81.60708907395546,
+ 25.067914059728007
+ ],
+ [
+ -81.62703273337885,
+ 25.0992395651497
+ ],
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ],
+ [
+ -81.62703273337885,
+ 25.0992395651497
+ ],
+ [
+ -81.6669200522256,
+ 25.0992395651497
+ ],
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ],
+ [
+ -81.6669200522256,
+ 25.0992395651497
+ ],
+ [
+ -81.686863711649,
+ 25.067914059728007
+ ],
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ],
+ [
+ -81.686863711649,
+ 25.067914059728007
+ ],
+ [
+ -81.6669200522256,
+ 25.036588554306316
+ ],
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ],
+ [
+ -81.6669200522256,
+ 25.036588554306316
+ ],
+ [
+ -81.62703273337885,
+ 25.036588554306316
+ ],
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ],
+ [
+ -81.62703273337885,
+ 25.036588554306316
+ ],
+ [
+ -81.60708907395546,
+ 25.067914059728007
+ ],
+ [
+ -81.64697639280223,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ],
+ [
+ -81.60708907395546,
+ 25.130565070571393
+ ],
+ [
+ -81.62703273337885,
+ 25.161890575993084
+ ],
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ],
+ [
+ -81.62703273337885,
+ 25.161890575993084
+ ],
+ [
+ -81.6669200522256,
+ 25.161890575993084
+ ],
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ],
+ [
+ -81.6669200522256,
+ 25.161890575993084
+ ],
+ [
+ -81.686863711649,
+ 25.130565070571393
+ ],
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ],
+ [
+ -81.686863711649,
+ 25.130565070571393
+ ],
+ [
+ -81.6669200522256,
+ 25.099239565149702
+ ],
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ],
+ [
+ -81.6669200522256,
+ 25.099239565149702
+ ],
+ [
+ -81.62703273337885,
+ 25.099239565149702
+ ],
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ],
+ [
+ -81.62703273337885,
+ 25.099239565149702
+ ],
+ [
+ -81.60708907395546,
+ 25.130565070571393
+ ],
+ [
+ -81.64697639280223,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ],
+ [
+ -81.60708907395546,
+ 25.19321608141478
+ ],
+ [
+ -81.62703273337885,
+ 25.22454158683647
+ ],
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ],
+ [
+ -81.62703273337885,
+ 25.22454158683647
+ ],
+ [
+ -81.6669200522256,
+ 25.22454158683647
+ ],
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ],
+ [
+ -81.6669200522256,
+ 25.22454158683647
+ ],
+ [
+ -81.686863711649,
+ 25.19321608141478
+ ],
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ],
+ [
+ -81.686863711649,
+ 25.19321608141478
+ ],
+ [
+ -81.6669200522256,
+ 25.161890575993088
+ ],
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ],
+ [
+ -81.6669200522256,
+ 25.161890575993088
+ ],
+ [
+ -81.62703273337885,
+ 25.161890575993088
+ ],
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ],
+ [
+ -81.62703273337885,
+ 25.161890575993088
+ ],
+ [
+ -81.60708907395546,
+ 25.19321608141478
+ ],
+ [
+ -81.64697639280223,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ],
+ [
+ -81.60708907395546,
+ 25.255867092258164
+ ],
+ [
+ -81.62703273337885,
+ 25.287192597679855
+ ],
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ],
+ [
+ -81.62703273337885,
+ 25.287192597679855
+ ],
+ [
+ -81.6669200522256,
+ 25.287192597679855
+ ],
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ],
+ [
+ -81.6669200522256,
+ 25.287192597679855
+ ],
+ [
+ -81.686863711649,
+ 25.255867092258164
+ ],
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ],
+ [
+ -81.686863711649,
+ 25.255867092258164
+ ],
+ [
+ -81.6669200522256,
+ 25.224541586836473
+ ],
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ],
+ [
+ -81.6669200522256,
+ 25.224541586836473
+ ],
+ [
+ -81.62703273337885,
+ 25.224541586836473
+ ],
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ],
+ [
+ -81.62703273337885,
+ 25.224541586836473
+ ],
+ [
+ -81.60708907395546,
+ 25.255867092258164
+ ],
+ [
+ -81.64697639280223,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ],
+ [
+ -81.60708907395546,
+ 25.31851810310155
+ ],
+ [
+ -81.62703273337885,
+ 25.34984360852324
+ ],
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ],
+ [
+ -81.62703273337885,
+ 25.34984360852324
+ ],
+ [
+ -81.6669200522256,
+ 25.34984360852324
+ ],
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ],
+ [
+ -81.6669200522256,
+ 25.34984360852324
+ ],
+ [
+ -81.686863711649,
+ 25.31851810310155
+ ],
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ],
+ [
+ -81.686863711649,
+ 25.31851810310155
+ ],
+ [
+ -81.6669200522256,
+ 25.28719259767986
+ ],
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ],
+ [
+ -81.6669200522256,
+ 25.28719259767986
+ ],
+ [
+ -81.62703273337885,
+ 25.28719259767986
+ ],
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ],
+ [
+ -81.62703273337885,
+ 25.28719259767986
+ ],
+ [
+ -81.60708907395546,
+ 25.31851810310155
+ ],
+ [
+ -81.64697639280223,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ],
+ [
+ -81.60708907395546,
+ 25.381169113944935
+ ],
+ [
+ -81.62703273337885,
+ 25.412494619366626
+ ],
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ],
+ [
+ -81.62703273337885,
+ 25.412494619366626
+ ],
+ [
+ -81.6669200522256,
+ 25.412494619366626
+ ],
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ],
+ [
+ -81.6669200522256,
+ 25.412494619366626
+ ],
+ [
+ -81.686863711649,
+ 25.381169113944935
+ ],
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ],
+ [
+ -81.686863711649,
+ 25.381169113944935
+ ],
+ [
+ -81.6669200522256,
+ 25.349843608523244
+ ],
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ],
+ [
+ -81.6669200522256,
+ 25.349843608523244
+ ],
+ [
+ -81.62703273337885,
+ 25.349843608523244
+ ],
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ],
+ [
+ -81.62703273337885,
+ 25.349843608523244
+ ],
+ [
+ -81.60708907395546,
+ 25.381169113944935
+ ],
+ [
+ -81.64697639280223,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ],
+ [
+ -81.60708907395546,
+ 25.44382012478832
+ ],
+ [
+ -81.62703273337885,
+ 25.47514563021001
+ ],
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ],
+ [
+ -81.62703273337885,
+ 25.47514563021001
+ ],
+ [
+ -81.6669200522256,
+ 25.47514563021001
+ ],
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ],
+ [
+ -81.6669200522256,
+ 25.47514563021001
+ ],
+ [
+ -81.686863711649,
+ 25.44382012478832
+ ],
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ],
+ [
+ -81.686863711649,
+ 25.44382012478832
+ ],
+ [
+ -81.6669200522256,
+ 25.41249461936663
+ ],
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ],
+ [
+ -81.6669200522256,
+ 25.41249461936663
+ ],
+ [
+ -81.62703273337885,
+ 25.41249461936663
+ ],
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ],
+ [
+ -81.62703273337885,
+ 25.41249461936663
+ ],
+ [
+ -81.60708907395546,
+ 25.44382012478832
+ ],
+ [
+ -81.64697639280223,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ],
+ [
+ -81.60708907395546,
+ 25.506471135631706
+ ],
+ [
+ -81.62703273337885,
+ 25.537796641053397
+ ],
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ],
+ [
+ -81.62703273337885,
+ 25.537796641053397
+ ],
+ [
+ -81.6669200522256,
+ 25.537796641053397
+ ],
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ],
+ [
+ -81.6669200522256,
+ 25.537796641053397
+ ],
+ [
+ -81.686863711649,
+ 25.506471135631706
+ ],
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ],
+ [
+ -81.686863711649,
+ 25.506471135631706
+ ],
+ [
+ -81.6669200522256,
+ 25.475145630210015
+ ],
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ],
+ [
+ -81.6669200522256,
+ 25.475145630210015
+ ],
+ [
+ -81.62703273337885,
+ 25.475145630210015
+ ],
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ],
+ [
+ -81.62703273337885,
+ 25.475145630210015
+ ],
+ [
+ -81.60708907395546,
+ 25.506471135631706
+ ],
+ [
+ -81.64697639280223,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ],
+ [
+ -81.60708907395546,
+ 25.56912214647509
+ ],
+ [
+ -81.62703273337885,
+ 25.600447651896783
+ ],
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ],
+ [
+ -81.62703273337885,
+ 25.600447651896783
+ ],
+ [
+ -81.6669200522256,
+ 25.600447651896783
+ ],
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ],
+ [
+ -81.6669200522256,
+ 25.600447651896783
+ ],
+ [
+ -81.686863711649,
+ 25.56912214647509
+ ],
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ],
+ [
+ -81.686863711649,
+ 25.56912214647509
+ ],
+ [
+ -81.6669200522256,
+ 25.5377966410534
+ ],
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ],
+ [
+ -81.6669200522256,
+ 25.5377966410534
+ ],
+ [
+ -81.62703273337885,
+ 25.5377966410534
+ ],
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ],
+ [
+ -81.62703273337885,
+ 25.5377966410534
+ ],
+ [
+ -81.60708907395546,
+ 25.56912214647509
+ ],
+ [
+ -81.64697639280223,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ],
+ [
+ -81.60708907395546,
+ 25.631773157318477
+ ],
+ [
+ -81.62703273337885,
+ 25.66309866274017
+ ],
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ],
+ [
+ -81.62703273337885,
+ 25.66309866274017
+ ],
+ [
+ -81.6669200522256,
+ 25.66309866274017
+ ],
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ],
+ [
+ -81.6669200522256,
+ 25.66309866274017
+ ],
+ [
+ -81.686863711649,
+ 25.631773157318477
+ ],
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ],
+ [
+ -81.686863711649,
+ 25.631773157318477
+ ],
+ [
+ -81.6669200522256,
+ 25.600447651896786
+ ],
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ],
+ [
+ -81.6669200522256,
+ 25.600447651896786
+ ],
+ [
+ -81.62703273337885,
+ 25.600447651896786
+ ],
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ],
+ [
+ -81.62703273337885,
+ 25.600447651896786
+ ],
+ [
+ -81.60708907395546,
+ 25.631773157318477
+ ],
+ [
+ -81.64697639280223,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ],
+ [
+ -81.60708907395546,
+ 25.694424168161863
+ ],
+ [
+ -81.62703273337885,
+ 25.725749673583554
+ ],
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ],
+ [
+ -81.62703273337885,
+ 25.725749673583554
+ ],
+ [
+ -81.6669200522256,
+ 25.725749673583554
+ ],
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ],
+ [
+ -81.6669200522256,
+ 25.725749673583554
+ ],
+ [
+ -81.686863711649,
+ 25.694424168161863
+ ],
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ],
+ [
+ -81.686863711649,
+ 25.694424168161863
+ ],
+ [
+ -81.6669200522256,
+ 25.663098662740172
+ ],
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ],
+ [
+ -81.6669200522256,
+ 25.663098662740172
+ ],
+ [
+ -81.62703273337885,
+ 25.663098662740172
+ ],
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ],
+ [
+ -81.62703273337885,
+ 25.663098662740172
+ ],
+ [
+ -81.60708907395546,
+ 25.694424168161863
+ ],
+ [
+ -81.64697639280223,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ],
+ [
+ -81.60708907395546,
+ 25.75707517900525
+ ],
+ [
+ -81.62703273337885,
+ 25.78840068442694
+ ],
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ],
+ [
+ -81.62703273337885,
+ 25.78840068442694
+ ],
+ [
+ -81.6669200522256,
+ 25.78840068442694
+ ],
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ],
+ [
+ -81.6669200522256,
+ 25.78840068442694
+ ],
+ [
+ -81.686863711649,
+ 25.75707517900525
+ ],
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ],
+ [
+ -81.686863711649,
+ 25.75707517900525
+ ],
+ [
+ -81.6669200522256,
+ 25.725749673583557
+ ],
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ],
+ [
+ -81.6669200522256,
+ 25.725749673583557
+ ],
+ [
+ -81.62703273337885,
+ 25.725749673583557
+ ],
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ],
+ [
+ -81.62703273337885,
+ 25.725749673583557
+ ],
+ [
+ -81.60708907395546,
+ 25.75707517900525
+ ],
+ [
+ -81.64697639280223,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ],
+ [
+ -81.60708907395546,
+ 25.819726189848634
+ ],
+ [
+ -81.62703273337885,
+ 25.851051695270325
+ ],
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ],
+ [
+ -81.62703273337885,
+ 25.851051695270325
+ ],
+ [
+ -81.6669200522256,
+ 25.851051695270325
+ ],
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ],
+ [
+ -81.6669200522256,
+ 25.851051695270325
+ ],
+ [
+ -81.686863711649,
+ 25.819726189848634
+ ],
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ],
+ [
+ -81.686863711649,
+ 25.819726189848634
+ ],
+ [
+ -81.6669200522256,
+ 25.788400684426943
+ ],
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ],
+ [
+ -81.6669200522256,
+ 25.788400684426943
+ ],
+ [
+ -81.62703273337885,
+ 25.788400684426943
+ ],
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ],
+ [
+ -81.62703273337885,
+ 25.788400684426943
+ ],
+ [
+ -81.60708907395546,
+ 25.819726189848634
+ ],
+ [
+ -81.64697639280223,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ],
+ [
+ -81.60708907395546,
+ 25.88237720069202
+ ],
+ [
+ -81.62703273337885,
+ 25.91370270611371
+ ],
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ],
+ [
+ -81.62703273337885,
+ 25.91370270611371
+ ],
+ [
+ -81.6669200522256,
+ 25.91370270611371
+ ],
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ],
+ [
+ -81.6669200522256,
+ 25.91370270611371
+ ],
+ [
+ -81.686863711649,
+ 25.88237720069202
+ ],
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ],
+ [
+ -81.686863711649,
+ 25.88237720069202
+ ],
+ [
+ -81.6669200522256,
+ 25.85105169527033
+ ],
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ],
+ [
+ -81.6669200522256,
+ 25.85105169527033
+ ],
+ [
+ -81.62703273337885,
+ 25.85105169527033
+ ],
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ],
+ [
+ -81.62703273337885,
+ 25.85105169527033
+ ],
+ [
+ -81.60708907395546,
+ 25.88237720069202
+ ],
+ [
+ -81.64697639280223,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ],
+ [
+ -81.60708907395546,
+ 25.945028211535405
+ ],
+ [
+ -81.62703273337885,
+ 25.976353716957096
+ ],
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ],
+ [
+ -81.62703273337885,
+ 25.976353716957096
+ ],
+ [
+ -81.6669200522256,
+ 25.976353716957096
+ ],
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ],
+ [
+ -81.6669200522256,
+ 25.976353716957096
+ ],
+ [
+ -81.686863711649,
+ 25.945028211535405
+ ],
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ],
+ [
+ -81.686863711649,
+ 25.945028211535405
+ ],
+ [
+ -81.6669200522256,
+ 25.913702706113714
+ ],
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ],
+ [
+ -81.6669200522256,
+ 25.913702706113714
+ ],
+ [
+ -81.62703273337885,
+ 25.913702706113714
+ ],
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ],
+ [
+ -81.62703273337885,
+ 25.913702706113714
+ ],
+ [
+ -81.60708907395546,
+ 25.945028211535405
+ ],
+ [
+ -81.64697639280223,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ],
+ [
+ -81.60708907395546,
+ 26.00767922237879
+ ],
+ [
+ -81.62703273337885,
+ 26.03900472780048
+ ],
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ],
+ [
+ -81.62703273337885,
+ 26.03900472780048
+ ],
+ [
+ -81.6669200522256,
+ 26.03900472780048
+ ],
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ],
+ [
+ -81.6669200522256,
+ 26.03900472780048
+ ],
+ [
+ -81.686863711649,
+ 26.00767922237879
+ ],
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ],
+ [
+ -81.686863711649,
+ 26.00767922237879
+ ],
+ [
+ -81.6669200522256,
+ 25.9763537169571
+ ],
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ],
+ [
+ -81.6669200522256,
+ 25.9763537169571
+ ],
+ [
+ -81.62703273337885,
+ 25.9763537169571
+ ],
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ],
+ [
+ -81.62703273337885,
+ 25.9763537169571
+ ],
+ [
+ -81.60708907395546,
+ 26.00767922237879
+ ],
+ [
+ -81.64697639280223,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ],
+ [
+ -81.60708907395546,
+ 26.070330233222176
+ ],
+ [
+ -81.62703273337885,
+ 26.101655738643867
+ ],
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ],
+ [
+ -81.62703273337885,
+ 26.101655738643867
+ ],
+ [
+ -81.6669200522256,
+ 26.101655738643867
+ ],
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ],
+ [
+ -81.6669200522256,
+ 26.101655738643867
+ ],
+ [
+ -81.686863711649,
+ 26.070330233222176
+ ],
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ],
+ [
+ -81.686863711649,
+ 26.070330233222176
+ ],
+ [
+ -81.6669200522256,
+ 26.039004727800485
+ ],
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ],
+ [
+ -81.6669200522256,
+ 26.039004727800485
+ ],
+ [
+ -81.62703273337885,
+ 26.039004727800485
+ ],
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ],
+ [
+ -81.62703273337885,
+ 26.039004727800485
+ ],
+ [
+ -81.60708907395546,
+ 26.070330233222176
+ ],
+ [
+ -81.64697639280223,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ],
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ],
+ [
+ -81.62703273337885,
+ 26.164306749487253
+ ],
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ],
+ [
+ -81.62703273337885,
+ 26.164306749487253
+ ],
+ [
+ -81.6669200522256,
+ 26.164306749487253
+ ],
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ],
+ [
+ -81.6669200522256,
+ 26.164306749487253
+ ],
+ [
+ -81.686863711649,
+ 26.13298124406556
+ ],
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ],
+ [
+ -81.686863711649,
+ 26.13298124406556
+ ],
+ [
+ -81.6669200522256,
+ 26.10165573864387
+ ],
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ],
+ [
+ -81.6669200522256,
+ 26.10165573864387
+ ],
+ [
+ -81.62703273337885,
+ 26.10165573864387
+ ],
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ],
+ [
+ -81.62703273337885,
+ 26.10165573864387
+ ],
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ],
+ [
+ -81.64697639280223,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ],
+ [
+ -81.60708907395546,
+ 26.195632254908944
+ ],
+ [
+ -81.62703273337885,
+ 26.226957760330635
+ ],
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ],
+ [
+ -81.62703273337885,
+ 26.226957760330635
+ ],
+ [
+ -81.6669200522256,
+ 26.226957760330635
+ ],
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ],
+ [
+ -81.6669200522256,
+ 26.226957760330635
+ ],
+ [
+ -81.686863711649,
+ 26.195632254908944
+ ],
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ],
+ [
+ -81.686863711649,
+ 26.195632254908944
+ ],
+ [
+ -81.6669200522256,
+ 26.164306749487253
+ ],
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ],
+ [
+ -81.6669200522256,
+ 26.164306749487253
+ ],
+ [
+ -81.62703273337885,
+ 26.164306749487253
+ ],
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ],
+ [
+ -81.62703273337885,
+ 26.164306749487253
+ ],
+ [
+ -81.60708907395546,
+ 26.195632254908944
+ ],
+ [
+ -81.64697639280223,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ],
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ],
+ [
+ -81.62703273337885,
+ 26.289608771174024
+ ],
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ],
+ [
+ -81.62703273337885,
+ 26.289608771174024
+ ],
+ [
+ -81.6669200522256,
+ 26.289608771174024
+ ],
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ],
+ [
+ -81.6669200522256,
+ 26.289608771174024
+ ],
+ [
+ -81.686863711649,
+ 26.258283265752333
+ ],
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ],
+ [
+ -81.686863711649,
+ 26.258283265752333
+ ],
+ [
+ -81.6669200522256,
+ 26.22695776033064
+ ],
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ],
+ [
+ -81.6669200522256,
+ 26.22695776033064
+ ],
+ [
+ -81.62703273337885,
+ 26.22695776033064
+ ],
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ],
+ [
+ -81.62703273337885,
+ 26.22695776033064
+ ],
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ],
+ [
+ -81.64697639280223,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ],
+ [
+ -81.60708907395546,
+ 26.320934276595715
+ ],
+ [
+ -81.62703273337885,
+ 26.352259782017406
+ ],
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ],
+ [
+ -81.62703273337885,
+ 26.352259782017406
+ ],
+ [
+ -81.6669200522256,
+ 26.352259782017406
+ ],
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ],
+ [
+ -81.6669200522256,
+ 26.352259782017406
+ ],
+ [
+ -81.686863711649,
+ 26.320934276595715
+ ],
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ],
+ [
+ -81.686863711649,
+ 26.320934276595715
+ ],
+ [
+ -81.6669200522256,
+ 26.289608771174024
+ ],
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ],
+ [
+ -81.6669200522256,
+ 26.289608771174024
+ ],
+ [
+ -81.62703273337885,
+ 26.289608771174024
+ ],
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ],
+ [
+ -81.62703273337885,
+ 26.289608771174024
+ ],
+ [
+ -81.60708907395546,
+ 26.320934276595715
+ ],
+ [
+ -81.64697639280223,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ],
+ [
+ -81.60708907395546,
+ 26.3835852874391
+ ],
+ [
+ -81.62703273337885,
+ 26.41491079286079
+ ],
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ],
+ [
+ -81.62703273337885,
+ 26.41491079286079
+ ],
+ [
+ -81.6669200522256,
+ 26.41491079286079
+ ],
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ],
+ [
+ -81.6669200522256,
+ 26.41491079286079
+ ],
+ [
+ -81.686863711649,
+ 26.3835852874391
+ ],
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ],
+ [
+ -81.686863711649,
+ 26.3835852874391
+ ],
+ [
+ -81.6669200522256,
+ 26.35225978201741
+ ],
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ],
+ [
+ -81.6669200522256,
+ 26.35225978201741
+ ],
+ [
+ -81.62703273337885,
+ 26.35225978201741
+ ],
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ],
+ [
+ -81.62703273337885,
+ 26.35225978201741
+ ],
+ [
+ -81.60708907395546,
+ 26.3835852874391
+ ],
+ [
+ -81.64697639280223,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ],
+ [
+ -81.60708907395546,
+ 26.446236298282486
+ ],
+ [
+ -81.62703273337885,
+ 26.477561803704177
+ ],
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ],
+ [
+ -81.62703273337885,
+ 26.477561803704177
+ ],
+ [
+ -81.6669200522256,
+ 26.477561803704177
+ ],
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ],
+ [
+ -81.6669200522256,
+ 26.477561803704177
+ ],
+ [
+ -81.686863711649,
+ 26.446236298282486
+ ],
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ],
+ [
+ -81.686863711649,
+ 26.446236298282486
+ ],
+ [
+ -81.6669200522256,
+ 26.414910792860795
+ ],
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ],
+ [
+ -81.6669200522256,
+ 26.414910792860795
+ ],
+ [
+ -81.62703273337885,
+ 26.414910792860795
+ ],
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ],
+ [
+ -81.62703273337885,
+ 26.414910792860795
+ ],
+ [
+ -81.60708907395546,
+ 26.446236298282486
+ ],
+ [
+ -81.64697639280223,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ],
+ [
+ -81.54725809568532,
+ 24.911286532619545
+ ],
+ [
+ -81.56720175510871,
+ 24.942612038041236
+ ],
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ],
+ [
+ -81.56720175510871,
+ 24.942612038041236
+ ],
+ [
+ -81.60708907395546,
+ 24.942612038041236
+ ],
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ],
+ [
+ -81.60708907395546,
+ 24.942612038041236
+ ],
+ [
+ -81.62703273337885,
+ 24.911286532619545
+ ],
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ],
+ [
+ -81.62703273337885,
+ 24.911286532619545
+ ],
+ [
+ -81.60708907395546,
+ 24.879961027197854
+ ],
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ],
+ [
+ -81.60708907395546,
+ 24.879961027197854
+ ],
+ [
+ -81.56720175510871,
+ 24.879961027197854
+ ],
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ],
+ [
+ -81.56720175510871,
+ 24.879961027197854
+ ],
+ [
+ -81.54725809568532,
+ 24.911286532619545
+ ],
+ [
+ -81.58714541453209,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ],
+ [
+ -81.54725809568532,
+ 24.97393754346293
+ ],
+ [
+ -81.56720175510871,
+ 25.005263048884622
+ ],
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ],
+ [
+ -81.56720175510871,
+ 25.005263048884622
+ ],
+ [
+ -81.60708907395546,
+ 25.005263048884622
+ ],
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ],
+ [
+ -81.60708907395546,
+ 25.005263048884622
+ ],
+ [
+ -81.62703273337885,
+ 24.97393754346293
+ ],
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ],
+ [
+ -81.62703273337885,
+ 24.97393754346293
+ ],
+ [
+ -81.60708907395546,
+ 24.94261203804124
+ ],
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ],
+ [
+ -81.60708907395546,
+ 24.94261203804124
+ ],
+ [
+ -81.56720175510871,
+ 24.94261203804124
+ ],
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ],
+ [
+ -81.56720175510871,
+ 24.94261203804124
+ ],
+ [
+ -81.54725809568532,
+ 24.97393754346293
+ ],
+ [
+ -81.58714541453209,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ],
+ [
+ -81.54725809568532,
+ 25.036588554306316
+ ],
+ [
+ -81.56720175510871,
+ 25.067914059728007
+ ],
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ],
+ [
+ -81.56720175510871,
+ 25.067914059728007
+ ],
+ [
+ -81.60708907395546,
+ 25.067914059728007
+ ],
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ],
+ [
+ -81.60708907395546,
+ 25.067914059728007
+ ],
+ [
+ -81.62703273337885,
+ 25.036588554306316
+ ],
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ],
+ [
+ -81.62703273337885,
+ 25.036588554306316
+ ],
+ [
+ -81.60708907395546,
+ 25.005263048884625
+ ],
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ],
+ [
+ -81.60708907395546,
+ 25.005263048884625
+ ],
+ [
+ -81.56720175510871,
+ 25.005263048884625
+ ],
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ],
+ [
+ -81.56720175510871,
+ 25.005263048884625
+ ],
+ [
+ -81.54725809568532,
+ 25.036588554306316
+ ],
+ [
+ -81.58714541453209,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ],
+ [
+ -81.54725809568532,
+ 25.099239565149702
+ ],
+ [
+ -81.56720175510871,
+ 25.130565070571393
+ ],
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ],
+ [
+ -81.56720175510871,
+ 25.130565070571393
+ ],
+ [
+ -81.60708907395546,
+ 25.130565070571393
+ ],
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ],
+ [
+ -81.60708907395546,
+ 25.130565070571393
+ ],
+ [
+ -81.62703273337885,
+ 25.099239565149702
+ ],
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ],
+ [
+ -81.62703273337885,
+ 25.099239565149702
+ ],
+ [
+ -81.60708907395546,
+ 25.06791405972801
+ ],
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ],
+ [
+ -81.60708907395546,
+ 25.06791405972801
+ ],
+ [
+ -81.56720175510871,
+ 25.06791405972801
+ ],
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ],
+ [
+ -81.56720175510871,
+ 25.06791405972801
+ ],
+ [
+ -81.54725809568532,
+ 25.099239565149702
+ ],
+ [
+ -81.58714541453209,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ],
+ [
+ -81.54725809568532,
+ 25.161890575993088
+ ],
+ [
+ -81.56720175510871,
+ 25.19321608141478
+ ],
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ],
+ [
+ -81.56720175510871,
+ 25.19321608141478
+ ],
+ [
+ -81.60708907395546,
+ 25.19321608141478
+ ],
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ],
+ [
+ -81.60708907395546,
+ 25.19321608141478
+ ],
+ [
+ -81.62703273337885,
+ 25.161890575993088
+ ],
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ],
+ [
+ -81.62703273337885,
+ 25.161890575993088
+ ],
+ [
+ -81.60708907395546,
+ 25.130565070571397
+ ],
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ],
+ [
+ -81.60708907395546,
+ 25.130565070571397
+ ],
+ [
+ -81.56720175510871,
+ 25.130565070571397
+ ],
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ],
+ [
+ -81.56720175510871,
+ 25.130565070571397
+ ],
+ [
+ -81.54725809568532,
+ 25.161890575993088
+ ],
+ [
+ -81.58714541453209,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ],
+ [
+ -81.54725809568532,
+ 25.224541586836473
+ ],
+ [
+ -81.56720175510871,
+ 25.255867092258164
+ ],
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ],
+ [
+ -81.56720175510871,
+ 25.255867092258164
+ ],
+ [
+ -81.60708907395546,
+ 25.255867092258164
+ ],
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ],
+ [
+ -81.60708907395546,
+ 25.255867092258164
+ ],
+ [
+ -81.62703273337885,
+ 25.224541586836473
+ ],
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ],
+ [
+ -81.62703273337885,
+ 25.224541586836473
+ ],
+ [
+ -81.60708907395546,
+ 25.193216081414782
+ ],
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ],
+ [
+ -81.60708907395546,
+ 25.193216081414782
+ ],
+ [
+ -81.56720175510871,
+ 25.193216081414782
+ ],
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ],
+ [
+ -81.56720175510871,
+ 25.193216081414782
+ ],
+ [
+ -81.54725809568532,
+ 25.224541586836473
+ ],
+ [
+ -81.58714541453209,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ],
+ [
+ -81.54725809568532,
+ 25.28719259767986
+ ],
+ [
+ -81.56720175510871,
+ 25.31851810310155
+ ],
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ],
+ [
+ -81.56720175510871,
+ 25.31851810310155
+ ],
+ [
+ -81.60708907395546,
+ 25.31851810310155
+ ],
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ],
+ [
+ -81.60708907395546,
+ 25.31851810310155
+ ],
+ [
+ -81.62703273337885,
+ 25.28719259767986
+ ],
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ],
+ [
+ -81.62703273337885,
+ 25.28719259767986
+ ],
+ [
+ -81.60708907395546,
+ 25.255867092258168
+ ],
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ],
+ [
+ -81.60708907395546,
+ 25.255867092258168
+ ],
+ [
+ -81.56720175510871,
+ 25.255867092258168
+ ],
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ],
+ [
+ -81.56720175510871,
+ 25.255867092258168
+ ],
+ [
+ -81.54725809568532,
+ 25.28719259767986
+ ],
+ [
+ -81.58714541453209,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ],
+ [
+ -81.54725809568532,
+ 25.349843608523244
+ ],
+ [
+ -81.56720175510871,
+ 25.381169113944935
+ ],
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ],
+ [
+ -81.56720175510871,
+ 25.381169113944935
+ ],
+ [
+ -81.60708907395546,
+ 25.381169113944935
+ ],
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ],
+ [
+ -81.60708907395546,
+ 25.381169113944935
+ ],
+ [
+ -81.62703273337885,
+ 25.349843608523244
+ ],
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ],
+ [
+ -81.62703273337885,
+ 25.349843608523244
+ ],
+ [
+ -81.60708907395546,
+ 25.318518103101553
+ ],
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ],
+ [
+ -81.60708907395546,
+ 25.318518103101553
+ ],
+ [
+ -81.56720175510871,
+ 25.318518103101553
+ ],
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ],
+ [
+ -81.56720175510871,
+ 25.318518103101553
+ ],
+ [
+ -81.54725809568532,
+ 25.349843608523244
+ ],
+ [
+ -81.58714541453209,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ],
+ [
+ -81.54725809568532,
+ 25.41249461936663
+ ],
+ [
+ -81.56720175510871,
+ 25.44382012478832
+ ],
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ],
+ [
+ -81.56720175510871,
+ 25.44382012478832
+ ],
+ [
+ -81.60708907395546,
+ 25.44382012478832
+ ],
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ],
+ [
+ -81.60708907395546,
+ 25.44382012478832
+ ],
+ [
+ -81.62703273337885,
+ 25.41249461936663
+ ],
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ],
+ [
+ -81.62703273337885,
+ 25.41249461936663
+ ],
+ [
+ -81.60708907395546,
+ 25.38116911394494
+ ],
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ],
+ [
+ -81.60708907395546,
+ 25.38116911394494
+ ],
+ [
+ -81.56720175510871,
+ 25.38116911394494
+ ],
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ],
+ [
+ -81.56720175510871,
+ 25.38116911394494
+ ],
+ [
+ -81.54725809568532,
+ 25.41249461936663
+ ],
+ [
+ -81.58714541453209,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ],
+ [
+ -81.54725809568532,
+ 25.475145630210015
+ ],
+ [
+ -81.56720175510871,
+ 25.506471135631706
+ ],
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ],
+ [
+ -81.56720175510871,
+ 25.506471135631706
+ ],
+ [
+ -81.60708907395546,
+ 25.506471135631706
+ ],
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ],
+ [
+ -81.60708907395546,
+ 25.506471135631706
+ ],
+ [
+ -81.62703273337885,
+ 25.475145630210015
+ ],
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ],
+ [
+ -81.62703273337885,
+ 25.475145630210015
+ ],
+ [
+ -81.60708907395546,
+ 25.443820124788324
+ ],
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ],
+ [
+ -81.60708907395546,
+ 25.443820124788324
+ ],
+ [
+ -81.56720175510871,
+ 25.443820124788324
+ ],
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ],
+ [
+ -81.56720175510871,
+ 25.443820124788324
+ ],
+ [
+ -81.54725809568532,
+ 25.475145630210015
+ ],
+ [
+ -81.58714541453209,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ],
+ [
+ -81.54725809568532,
+ 25.5377966410534
+ ],
+ [
+ -81.56720175510871,
+ 25.56912214647509
+ ],
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ],
+ [
+ -81.56720175510871,
+ 25.56912214647509
+ ],
+ [
+ -81.60708907395546,
+ 25.56912214647509
+ ],
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ],
+ [
+ -81.60708907395546,
+ 25.56912214647509
+ ],
+ [
+ -81.62703273337885,
+ 25.5377966410534
+ ],
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ],
+ [
+ -81.62703273337885,
+ 25.5377966410534
+ ],
+ [
+ -81.60708907395546,
+ 25.50647113563171
+ ],
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ],
+ [
+ -81.60708907395546,
+ 25.50647113563171
+ ],
+ [
+ -81.56720175510871,
+ 25.50647113563171
+ ],
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ],
+ [
+ -81.56720175510871,
+ 25.50647113563171
+ ],
+ [
+ -81.54725809568532,
+ 25.5377966410534
+ ],
+ [
+ -81.58714541453209,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ],
+ [
+ -81.54725809568532,
+ 25.600447651896786
+ ],
+ [
+ -81.56720175510871,
+ 25.631773157318477
+ ],
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ],
+ [
+ -81.56720175510871,
+ 25.631773157318477
+ ],
+ [
+ -81.60708907395546,
+ 25.631773157318477
+ ],
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ],
+ [
+ -81.60708907395546,
+ 25.631773157318477
+ ],
+ [
+ -81.62703273337885,
+ 25.600447651896786
+ ],
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ],
+ [
+ -81.62703273337885,
+ 25.600447651896786
+ ],
+ [
+ -81.60708907395546,
+ 25.569122146475095
+ ],
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ],
+ [
+ -81.60708907395546,
+ 25.569122146475095
+ ],
+ [
+ -81.56720175510871,
+ 25.569122146475095
+ ],
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ],
+ [
+ -81.56720175510871,
+ 25.569122146475095
+ ],
+ [
+ -81.54725809568532,
+ 25.600447651896786
+ ],
+ [
+ -81.58714541453209,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ],
+ [
+ -81.54725809568532,
+ 25.663098662740172
+ ],
+ [
+ -81.56720175510871,
+ 25.694424168161863
+ ],
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ],
+ [
+ -81.56720175510871,
+ 25.694424168161863
+ ],
+ [
+ -81.60708907395546,
+ 25.694424168161863
+ ],
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ],
+ [
+ -81.60708907395546,
+ 25.694424168161863
+ ],
+ [
+ -81.62703273337885,
+ 25.663098662740172
+ ],
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ],
+ [
+ -81.62703273337885,
+ 25.663098662740172
+ ],
+ [
+ -81.60708907395546,
+ 25.63177315731848
+ ],
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ],
+ [
+ -81.60708907395546,
+ 25.63177315731848
+ ],
+ [
+ -81.56720175510871,
+ 25.63177315731848
+ ],
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ],
+ [
+ -81.56720175510871,
+ 25.63177315731848
+ ],
+ [
+ -81.54725809568532,
+ 25.663098662740172
+ ],
+ [
+ -81.58714541453209,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ],
+ [
+ -81.54725809568532,
+ 25.725749673583557
+ ],
+ [
+ -81.56720175510871,
+ 25.75707517900525
+ ],
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ],
+ [
+ -81.56720175510871,
+ 25.75707517900525
+ ],
+ [
+ -81.60708907395546,
+ 25.75707517900525
+ ],
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ],
+ [
+ -81.60708907395546,
+ 25.75707517900525
+ ],
+ [
+ -81.62703273337885,
+ 25.725749673583557
+ ],
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ],
+ [
+ -81.62703273337885,
+ 25.725749673583557
+ ],
+ [
+ -81.60708907395546,
+ 25.694424168161866
+ ],
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ],
+ [
+ -81.60708907395546,
+ 25.694424168161866
+ ],
+ [
+ -81.56720175510871,
+ 25.694424168161866
+ ],
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ],
+ [
+ -81.56720175510871,
+ 25.694424168161866
+ ],
+ [
+ -81.54725809568532,
+ 25.725749673583557
+ ],
+ [
+ -81.58714541453209,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ],
+ [
+ -81.54725809568532,
+ 25.788400684426943
+ ],
+ [
+ -81.56720175510871,
+ 25.819726189848634
+ ],
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ],
+ [
+ -81.56720175510871,
+ 25.819726189848634
+ ],
+ [
+ -81.60708907395546,
+ 25.819726189848634
+ ],
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ],
+ [
+ -81.60708907395546,
+ 25.819726189848634
+ ],
+ [
+ -81.62703273337885,
+ 25.788400684426943
+ ],
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ],
+ [
+ -81.62703273337885,
+ 25.788400684426943
+ ],
+ [
+ -81.60708907395546,
+ 25.757075179005252
+ ],
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ],
+ [
+ -81.60708907395546,
+ 25.757075179005252
+ ],
+ [
+ -81.56720175510871,
+ 25.757075179005252
+ ],
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ],
+ [
+ -81.56720175510871,
+ 25.757075179005252
+ ],
+ [
+ -81.54725809568532,
+ 25.788400684426943
+ ],
+ [
+ -81.58714541453209,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ],
+ [
+ -81.54725809568532,
+ 25.85105169527033
+ ],
+ [
+ -81.56720175510871,
+ 25.88237720069202
+ ],
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ],
+ [
+ -81.56720175510871,
+ 25.88237720069202
+ ],
+ [
+ -81.60708907395546,
+ 25.88237720069202
+ ],
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ],
+ [
+ -81.60708907395546,
+ 25.88237720069202
+ ],
+ [
+ -81.62703273337885,
+ 25.85105169527033
+ ],
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ],
+ [
+ -81.62703273337885,
+ 25.85105169527033
+ ],
+ [
+ -81.60708907395546,
+ 25.819726189848637
+ ],
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ],
+ [
+ -81.60708907395546,
+ 25.819726189848637
+ ],
+ [
+ -81.56720175510871,
+ 25.819726189848637
+ ],
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ],
+ [
+ -81.56720175510871,
+ 25.819726189848637
+ ],
+ [
+ -81.54725809568532,
+ 25.85105169527033
+ ],
+ [
+ -81.58714541453209,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ],
+ [
+ -81.54725809568532,
+ 25.913702706113714
+ ],
+ [
+ -81.56720175510871,
+ 25.945028211535405
+ ],
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ],
+ [
+ -81.56720175510871,
+ 25.945028211535405
+ ],
+ [
+ -81.60708907395546,
+ 25.945028211535405
+ ],
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ],
+ [
+ -81.60708907395546,
+ 25.945028211535405
+ ],
+ [
+ -81.62703273337885,
+ 25.913702706113714
+ ],
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ],
+ [
+ -81.62703273337885,
+ 25.913702706113714
+ ],
+ [
+ -81.60708907395546,
+ 25.882377200692023
+ ],
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ],
+ [
+ -81.60708907395546,
+ 25.882377200692023
+ ],
+ [
+ -81.56720175510871,
+ 25.882377200692023
+ ],
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ],
+ [
+ -81.56720175510871,
+ 25.882377200692023
+ ],
+ [
+ -81.54725809568532,
+ 25.913702706113714
+ ],
+ [
+ -81.58714541453209,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ],
+ [
+ -81.54725809568532,
+ 25.9763537169571
+ ],
+ [
+ -81.56720175510871,
+ 26.00767922237879
+ ],
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ],
+ [
+ -81.56720175510871,
+ 26.00767922237879
+ ],
+ [
+ -81.60708907395546,
+ 26.00767922237879
+ ],
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ],
+ [
+ -81.60708907395546,
+ 26.00767922237879
+ ],
+ [
+ -81.62703273337885,
+ 25.9763537169571
+ ],
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ],
+ [
+ -81.62703273337885,
+ 25.9763537169571
+ ],
+ [
+ -81.60708907395546,
+ 25.94502821153541
+ ],
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ],
+ [
+ -81.60708907395546,
+ 25.94502821153541
+ ],
+ [
+ -81.56720175510871,
+ 25.94502821153541
+ ],
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ],
+ [
+ -81.56720175510871,
+ 25.94502821153541
+ ],
+ [
+ -81.54725809568532,
+ 25.9763537169571
+ ],
+ [
+ -81.58714541453209,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ],
+ [
+ -81.54725809568532,
+ 26.039004727800485
+ ],
+ [
+ -81.56720175510871,
+ 26.070330233222176
+ ],
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ],
+ [
+ -81.56720175510871,
+ 26.070330233222176
+ ],
+ [
+ -81.60708907395546,
+ 26.070330233222176
+ ],
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ],
+ [
+ -81.60708907395546,
+ 26.070330233222176
+ ],
+ [
+ -81.62703273337885,
+ 26.039004727800485
+ ],
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ],
+ [
+ -81.62703273337885,
+ 26.039004727800485
+ ],
+ [
+ -81.60708907395546,
+ 26.007679222378794
+ ],
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ],
+ [
+ -81.60708907395546,
+ 26.007679222378794
+ ],
+ [
+ -81.56720175510871,
+ 26.007679222378794
+ ],
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ],
+ [
+ -81.56720175510871,
+ 26.007679222378794
+ ],
+ [
+ -81.54725809568532,
+ 26.039004727800485
+ ],
+ [
+ -81.58714541453209,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ],
+ [
+ -81.54725809568532,
+ 26.10165573864387
+ ],
+ [
+ -81.56720175510871,
+ 26.13298124406556
+ ],
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ],
+ [
+ -81.56720175510871,
+ 26.13298124406556
+ ],
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ],
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ],
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ],
+ [
+ -81.62703273337885,
+ 26.10165573864387
+ ],
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ],
+ [
+ -81.62703273337885,
+ 26.10165573864387
+ ],
+ [
+ -81.60708907395546,
+ 26.07033023322218
+ ],
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ],
+ [
+ -81.60708907395546,
+ 26.07033023322218
+ ],
+ [
+ -81.56720175510871,
+ 26.07033023322218
+ ],
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ],
+ [
+ -81.56720175510871,
+ 26.07033023322218
+ ],
+ [
+ -81.54725809568532,
+ 26.10165573864387
+ ],
+ [
+ -81.58714541453209,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ],
+ [
+ -81.54725809568532,
+ 26.164306749487253
+ ],
+ [
+ -81.56720175510871,
+ 26.195632254908944
+ ],
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ],
+ [
+ -81.56720175510871,
+ 26.195632254908944
+ ],
+ [
+ -81.60708907395546,
+ 26.195632254908944
+ ],
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ],
+ [
+ -81.60708907395546,
+ 26.195632254908944
+ ],
+ [
+ -81.62703273337885,
+ 26.164306749487253
+ ],
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ],
+ [
+ -81.62703273337885,
+ 26.164306749487253
+ ],
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ],
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ],
+ [
+ -81.60708907395546,
+ 26.13298124406556
+ ],
+ [
+ -81.56720175510871,
+ 26.13298124406556
+ ],
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ],
+ [
+ -81.56720175510871,
+ 26.13298124406556
+ ],
+ [
+ -81.54725809568532,
+ 26.164306749487253
+ ],
+ [
+ -81.58714541453209,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ],
+ [
+ -81.54725809568532,
+ 26.22695776033064
+ ],
+ [
+ -81.56720175510871,
+ 26.258283265752333
+ ],
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ],
+ [
+ -81.56720175510871,
+ 26.258283265752333
+ ],
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ],
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ],
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ],
+ [
+ -81.62703273337885,
+ 26.22695776033064
+ ],
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ],
+ [
+ -81.62703273337885,
+ 26.22695776033064
+ ],
+ [
+ -81.60708907395546,
+ 26.19563225490895
+ ],
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ],
+ [
+ -81.60708907395546,
+ 26.19563225490895
+ ],
+ [
+ -81.56720175510871,
+ 26.19563225490895
+ ],
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ],
+ [
+ -81.56720175510871,
+ 26.19563225490895
+ ],
+ [
+ -81.54725809568532,
+ 26.22695776033064
+ ],
+ [
+ -81.58714541453209,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ],
+ [
+ -81.54725809568532,
+ 26.289608771174024
+ ],
+ [
+ -81.56720175510871,
+ 26.320934276595715
+ ],
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ],
+ [
+ -81.56720175510871,
+ 26.320934276595715
+ ],
+ [
+ -81.60708907395546,
+ 26.320934276595715
+ ],
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ],
+ [
+ -81.60708907395546,
+ 26.320934276595715
+ ],
+ [
+ -81.62703273337885,
+ 26.289608771174024
+ ],
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ],
+ [
+ -81.62703273337885,
+ 26.289608771174024
+ ],
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ],
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ],
+ [
+ -81.60708907395546,
+ 26.258283265752333
+ ],
+ [
+ -81.56720175510871,
+ 26.258283265752333
+ ],
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ],
+ [
+ -81.56720175510871,
+ 26.258283265752333
+ ],
+ [
+ -81.54725809568532,
+ 26.289608771174024
+ ],
+ [
+ -81.58714541453209,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ],
+ [
+ -81.54725809568532,
+ 26.35225978201741
+ ],
+ [
+ -81.56720175510871,
+ 26.3835852874391
+ ],
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ],
+ [
+ -81.56720175510871,
+ 26.3835852874391
+ ],
+ [
+ -81.60708907395546,
+ 26.3835852874391
+ ],
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ],
+ [
+ -81.60708907395546,
+ 26.3835852874391
+ ],
+ [
+ -81.62703273337885,
+ 26.35225978201741
+ ],
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ],
+ [
+ -81.62703273337885,
+ 26.35225978201741
+ ],
+ [
+ -81.60708907395546,
+ 26.320934276595718
+ ],
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ],
+ [
+ -81.60708907395546,
+ 26.320934276595718
+ ],
+ [
+ -81.56720175510871,
+ 26.320934276595718
+ ],
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ],
+ [
+ -81.56720175510871,
+ 26.320934276595718
+ ],
+ [
+ -81.54725809568532,
+ 26.35225978201741
+ ],
+ [
+ -81.58714541453209,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ],
+ [
+ -81.54725809568532,
+ 26.414910792860795
+ ],
+ [
+ -81.56720175510871,
+ 26.446236298282486
+ ],
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ],
+ [
+ -81.56720175510871,
+ 26.446236298282486
+ ],
+ [
+ -81.60708907395546,
+ 26.446236298282486
+ ],
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ],
+ [
+ -81.60708907395546,
+ 26.446236298282486
+ ],
+ [
+ -81.62703273337885,
+ 26.414910792860795
+ ],
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ],
+ [
+ -81.62703273337885,
+ 26.414910792860795
+ ],
+ [
+ -81.60708907395546,
+ 26.383585287439104
+ ],
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ],
+ [
+ -81.60708907395546,
+ 26.383585287439104
+ ],
+ [
+ -81.56720175510871,
+ 26.383585287439104
+ ],
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ],
+ [
+ -81.56720175510871,
+ 26.383585287439104
+ ],
+ [
+ -81.54725809568532,
+ 26.414910792860795
+ ],
+ [
+ -81.58714541453209,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ],
+ [
+ -81.48742711741517,
+ 24.942612038041236
+ ],
+ [
+ -81.50737077683856,
+ 24.973937543462927
+ ],
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ],
+ [
+ -81.50737077683856,
+ 24.973937543462927
+ ],
+ [
+ -81.54725809568531,
+ 24.973937543462927
+ ],
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ],
+ [
+ -81.54725809568531,
+ 24.973937543462927
+ ],
+ [
+ -81.5672017551087,
+ 24.942612038041236
+ ],
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ],
+ [
+ -81.5672017551087,
+ 24.942612038041236
+ ],
+ [
+ -81.54725809568531,
+ 24.911286532619545
+ ],
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ],
+ [
+ -81.54725809568531,
+ 24.911286532619545
+ ],
+ [
+ -81.50737077683856,
+ 24.911286532619545
+ ],
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ],
+ [
+ -81.50737077683856,
+ 24.911286532619545
+ ],
+ [
+ -81.48742711741517,
+ 24.942612038041236
+ ],
+ [
+ -81.52731443626193,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ],
+ [
+ -81.48742711741517,
+ 25.005263048884622
+ ],
+ [
+ -81.50737077683856,
+ 25.036588554306313
+ ],
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ],
+ [
+ -81.50737077683856,
+ 25.036588554306313
+ ],
+ [
+ -81.54725809568531,
+ 25.036588554306313
+ ],
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ],
+ [
+ -81.54725809568531,
+ 25.036588554306313
+ ],
+ [
+ -81.5672017551087,
+ 25.005263048884622
+ ],
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ],
+ [
+ -81.5672017551087,
+ 25.005263048884622
+ ],
+ [
+ -81.54725809568531,
+ 24.97393754346293
+ ],
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ],
+ [
+ -81.54725809568531,
+ 24.97393754346293
+ ],
+ [
+ -81.50737077683856,
+ 24.97393754346293
+ ],
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ],
+ [
+ -81.50737077683856,
+ 24.97393754346293
+ ],
+ [
+ -81.48742711741517,
+ 25.005263048884622
+ ],
+ [
+ -81.52731443626193,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ],
+ [
+ -81.48742711741517,
+ 25.067914059728007
+ ],
+ [
+ -81.50737077683856,
+ 25.0992395651497
+ ],
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ],
+ [
+ -81.50737077683856,
+ 25.0992395651497
+ ],
+ [
+ -81.54725809568531,
+ 25.0992395651497
+ ],
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ],
+ [
+ -81.54725809568531,
+ 25.0992395651497
+ ],
+ [
+ -81.5672017551087,
+ 25.067914059728007
+ ],
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ],
+ [
+ -81.5672017551087,
+ 25.067914059728007
+ ],
+ [
+ -81.54725809568531,
+ 25.036588554306316
+ ],
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ],
+ [
+ -81.54725809568531,
+ 25.036588554306316
+ ],
+ [
+ -81.50737077683856,
+ 25.036588554306316
+ ],
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ],
+ [
+ -81.50737077683856,
+ 25.036588554306316
+ ],
+ [
+ -81.48742711741517,
+ 25.067914059728007
+ ],
+ [
+ -81.52731443626193,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ],
+ [
+ -81.48742711741517,
+ 25.130565070571393
+ ],
+ [
+ -81.50737077683856,
+ 25.161890575993084
+ ],
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ],
+ [
+ -81.50737077683856,
+ 25.161890575993084
+ ],
+ [
+ -81.54725809568531,
+ 25.161890575993084
+ ],
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ],
+ [
+ -81.54725809568531,
+ 25.161890575993084
+ ],
+ [
+ -81.5672017551087,
+ 25.130565070571393
+ ],
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ],
+ [
+ -81.5672017551087,
+ 25.130565070571393
+ ],
+ [
+ -81.54725809568531,
+ 25.099239565149702
+ ],
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ],
+ [
+ -81.54725809568531,
+ 25.099239565149702
+ ],
+ [
+ -81.50737077683856,
+ 25.099239565149702
+ ],
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ],
+ [
+ -81.50737077683856,
+ 25.099239565149702
+ ],
+ [
+ -81.48742711741517,
+ 25.130565070571393
+ ],
+ [
+ -81.52731443626193,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ],
+ [
+ -81.48742711741517,
+ 25.19321608141478
+ ],
+ [
+ -81.50737077683856,
+ 25.22454158683647
+ ],
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ],
+ [
+ -81.50737077683856,
+ 25.22454158683647
+ ],
+ [
+ -81.54725809568531,
+ 25.22454158683647
+ ],
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ],
+ [
+ -81.54725809568531,
+ 25.22454158683647
+ ],
+ [
+ -81.5672017551087,
+ 25.19321608141478
+ ],
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ],
+ [
+ -81.5672017551087,
+ 25.19321608141478
+ ],
+ [
+ -81.54725809568531,
+ 25.161890575993088
+ ],
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ],
+ [
+ -81.54725809568531,
+ 25.161890575993088
+ ],
+ [
+ -81.50737077683856,
+ 25.161890575993088
+ ],
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ],
+ [
+ -81.50737077683856,
+ 25.161890575993088
+ ],
+ [
+ -81.48742711741517,
+ 25.19321608141478
+ ],
+ [
+ -81.52731443626193,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ],
+ [
+ -81.48742711741517,
+ 25.255867092258164
+ ],
+ [
+ -81.50737077683856,
+ 25.287192597679855
+ ],
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ],
+ [
+ -81.50737077683856,
+ 25.287192597679855
+ ],
+ [
+ -81.54725809568531,
+ 25.287192597679855
+ ],
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ],
+ [
+ -81.54725809568531,
+ 25.287192597679855
+ ],
+ [
+ -81.5672017551087,
+ 25.255867092258164
+ ],
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ],
+ [
+ -81.5672017551087,
+ 25.255867092258164
+ ],
+ [
+ -81.54725809568531,
+ 25.224541586836473
+ ],
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ],
+ [
+ -81.54725809568531,
+ 25.224541586836473
+ ],
+ [
+ -81.50737077683856,
+ 25.224541586836473
+ ],
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ],
+ [
+ -81.50737077683856,
+ 25.224541586836473
+ ],
+ [
+ -81.48742711741517,
+ 25.255867092258164
+ ],
+ [
+ -81.52731443626193,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ],
+ [
+ -81.48742711741517,
+ 25.31851810310155
+ ],
+ [
+ -81.50737077683856,
+ 25.34984360852324
+ ],
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ],
+ [
+ -81.50737077683856,
+ 25.34984360852324
+ ],
+ [
+ -81.54725809568531,
+ 25.34984360852324
+ ],
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ],
+ [
+ -81.54725809568531,
+ 25.34984360852324
+ ],
+ [
+ -81.5672017551087,
+ 25.31851810310155
+ ],
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ],
+ [
+ -81.5672017551087,
+ 25.31851810310155
+ ],
+ [
+ -81.54725809568531,
+ 25.28719259767986
+ ],
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ],
+ [
+ -81.54725809568531,
+ 25.28719259767986
+ ],
+ [
+ -81.50737077683856,
+ 25.28719259767986
+ ],
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ],
+ [
+ -81.50737077683856,
+ 25.28719259767986
+ ],
+ [
+ -81.48742711741517,
+ 25.31851810310155
+ ],
+ [
+ -81.52731443626193,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ],
+ [
+ -81.48742711741517,
+ 25.381169113944935
+ ],
+ [
+ -81.50737077683856,
+ 25.412494619366626
+ ],
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ],
+ [
+ -81.50737077683856,
+ 25.412494619366626
+ ],
+ [
+ -81.54725809568531,
+ 25.412494619366626
+ ],
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ],
+ [
+ -81.54725809568531,
+ 25.412494619366626
+ ],
+ [
+ -81.5672017551087,
+ 25.381169113944935
+ ],
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ],
+ [
+ -81.5672017551087,
+ 25.381169113944935
+ ],
+ [
+ -81.54725809568531,
+ 25.349843608523244
+ ],
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ],
+ [
+ -81.54725809568531,
+ 25.349843608523244
+ ],
+ [
+ -81.50737077683856,
+ 25.349843608523244
+ ],
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ],
+ [
+ -81.50737077683856,
+ 25.349843608523244
+ ],
+ [
+ -81.48742711741517,
+ 25.381169113944935
+ ],
+ [
+ -81.52731443626193,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ],
+ [
+ -81.48742711741517,
+ 25.44382012478832
+ ],
+ [
+ -81.50737077683856,
+ 25.47514563021001
+ ],
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ],
+ [
+ -81.50737077683856,
+ 25.47514563021001
+ ],
+ [
+ -81.54725809568531,
+ 25.47514563021001
+ ],
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ],
+ [
+ -81.54725809568531,
+ 25.47514563021001
+ ],
+ [
+ -81.5672017551087,
+ 25.44382012478832
+ ],
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ],
+ [
+ -81.5672017551087,
+ 25.44382012478832
+ ],
+ [
+ -81.54725809568531,
+ 25.41249461936663
+ ],
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ],
+ [
+ -81.54725809568531,
+ 25.41249461936663
+ ],
+ [
+ -81.50737077683856,
+ 25.41249461936663
+ ],
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ],
+ [
+ -81.50737077683856,
+ 25.41249461936663
+ ],
+ [
+ -81.48742711741517,
+ 25.44382012478832
+ ],
+ [
+ -81.52731443626193,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ],
+ [
+ -81.48742711741517,
+ 25.506471135631706
+ ],
+ [
+ -81.50737077683856,
+ 25.537796641053397
+ ],
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ],
+ [
+ -81.50737077683856,
+ 25.537796641053397
+ ],
+ [
+ -81.54725809568531,
+ 25.537796641053397
+ ],
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ],
+ [
+ -81.54725809568531,
+ 25.537796641053397
+ ],
+ [
+ -81.5672017551087,
+ 25.506471135631706
+ ],
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ],
+ [
+ -81.5672017551087,
+ 25.506471135631706
+ ],
+ [
+ -81.54725809568531,
+ 25.475145630210015
+ ],
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ],
+ [
+ -81.54725809568531,
+ 25.475145630210015
+ ],
+ [
+ -81.50737077683856,
+ 25.475145630210015
+ ],
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ],
+ [
+ -81.50737077683856,
+ 25.475145630210015
+ ],
+ [
+ -81.48742711741517,
+ 25.506471135631706
+ ],
+ [
+ -81.52731443626193,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ],
+ [
+ -81.48742711741517,
+ 25.56912214647509
+ ],
+ [
+ -81.50737077683856,
+ 25.600447651896783
+ ],
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ],
+ [
+ -81.50737077683856,
+ 25.600447651896783
+ ],
+ [
+ -81.54725809568531,
+ 25.600447651896783
+ ],
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ],
+ [
+ -81.54725809568531,
+ 25.600447651896783
+ ],
+ [
+ -81.5672017551087,
+ 25.56912214647509
+ ],
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ],
+ [
+ -81.5672017551087,
+ 25.56912214647509
+ ],
+ [
+ -81.54725809568531,
+ 25.5377966410534
+ ],
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ],
+ [
+ -81.54725809568531,
+ 25.5377966410534
+ ],
+ [
+ -81.50737077683856,
+ 25.5377966410534
+ ],
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ],
+ [
+ -81.50737077683856,
+ 25.5377966410534
+ ],
+ [
+ -81.48742711741517,
+ 25.56912214647509
+ ],
+ [
+ -81.52731443626193,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ],
+ [
+ -81.48742711741517,
+ 25.631773157318477
+ ],
+ [
+ -81.50737077683856,
+ 25.66309866274017
+ ],
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ],
+ [
+ -81.50737077683856,
+ 25.66309866274017
+ ],
+ [
+ -81.54725809568531,
+ 25.66309866274017
+ ],
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ],
+ [
+ -81.54725809568531,
+ 25.66309866274017
+ ],
+ [
+ -81.5672017551087,
+ 25.631773157318477
+ ],
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ],
+ [
+ -81.5672017551087,
+ 25.631773157318477
+ ],
+ [
+ -81.54725809568531,
+ 25.600447651896786
+ ],
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ],
+ [
+ -81.54725809568531,
+ 25.600447651896786
+ ],
+ [
+ -81.50737077683856,
+ 25.600447651896786
+ ],
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ],
+ [
+ -81.50737077683856,
+ 25.600447651896786
+ ],
+ [
+ -81.48742711741517,
+ 25.631773157318477
+ ],
+ [
+ -81.52731443626193,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ],
+ [
+ -81.48742711741517,
+ 25.694424168161863
+ ],
+ [
+ -81.50737077683856,
+ 25.725749673583554
+ ],
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ],
+ [
+ -81.50737077683856,
+ 25.725749673583554
+ ],
+ [
+ -81.54725809568531,
+ 25.725749673583554
+ ],
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ],
+ [
+ -81.54725809568531,
+ 25.725749673583554
+ ],
+ [
+ -81.5672017551087,
+ 25.694424168161863
+ ],
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ],
+ [
+ -81.5672017551087,
+ 25.694424168161863
+ ],
+ [
+ -81.54725809568531,
+ 25.663098662740172
+ ],
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ],
+ [
+ -81.54725809568531,
+ 25.663098662740172
+ ],
+ [
+ -81.50737077683856,
+ 25.663098662740172
+ ],
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ],
+ [
+ -81.50737077683856,
+ 25.663098662740172
+ ],
+ [
+ -81.48742711741517,
+ 25.694424168161863
+ ],
+ [
+ -81.52731443626193,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ],
+ [
+ -81.48742711741517,
+ 25.75707517900525
+ ],
+ [
+ -81.50737077683856,
+ 25.78840068442694
+ ],
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ],
+ [
+ -81.50737077683856,
+ 25.78840068442694
+ ],
+ [
+ -81.54725809568531,
+ 25.78840068442694
+ ],
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ],
+ [
+ -81.54725809568531,
+ 25.78840068442694
+ ],
+ [
+ -81.5672017551087,
+ 25.75707517900525
+ ],
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ],
+ [
+ -81.5672017551087,
+ 25.75707517900525
+ ],
+ [
+ -81.54725809568531,
+ 25.725749673583557
+ ],
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ],
+ [
+ -81.54725809568531,
+ 25.725749673583557
+ ],
+ [
+ -81.50737077683856,
+ 25.725749673583557
+ ],
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ],
+ [
+ -81.50737077683856,
+ 25.725749673583557
+ ],
+ [
+ -81.48742711741517,
+ 25.75707517900525
+ ],
+ [
+ -81.52731443626193,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ],
+ [
+ -81.48742711741517,
+ 25.819726189848634
+ ],
+ [
+ -81.50737077683856,
+ 25.851051695270325
+ ],
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ],
+ [
+ -81.50737077683856,
+ 25.851051695270325
+ ],
+ [
+ -81.54725809568531,
+ 25.851051695270325
+ ],
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ],
+ [
+ -81.54725809568531,
+ 25.851051695270325
+ ],
+ [
+ -81.5672017551087,
+ 25.819726189848634
+ ],
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ],
+ [
+ -81.5672017551087,
+ 25.819726189848634
+ ],
+ [
+ -81.54725809568531,
+ 25.788400684426943
+ ],
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ],
+ [
+ -81.54725809568531,
+ 25.788400684426943
+ ],
+ [
+ -81.50737077683856,
+ 25.788400684426943
+ ],
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ],
+ [
+ -81.50737077683856,
+ 25.788400684426943
+ ],
+ [
+ -81.48742711741517,
+ 25.819726189848634
+ ],
+ [
+ -81.52731443626193,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ],
+ [
+ -81.48742711741517,
+ 25.88237720069202
+ ],
+ [
+ -81.50737077683856,
+ 25.91370270611371
+ ],
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ],
+ [
+ -81.50737077683856,
+ 25.91370270611371
+ ],
+ [
+ -81.54725809568531,
+ 25.91370270611371
+ ],
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ],
+ [
+ -81.54725809568531,
+ 25.91370270611371
+ ],
+ [
+ -81.5672017551087,
+ 25.88237720069202
+ ],
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ],
+ [
+ -81.5672017551087,
+ 25.88237720069202
+ ],
+ [
+ -81.54725809568531,
+ 25.85105169527033
+ ],
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ],
+ [
+ -81.54725809568531,
+ 25.85105169527033
+ ],
+ [
+ -81.50737077683856,
+ 25.85105169527033
+ ],
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ],
+ [
+ -81.50737077683856,
+ 25.85105169527033
+ ],
+ [
+ -81.48742711741517,
+ 25.88237720069202
+ ],
+ [
+ -81.52731443626193,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ],
+ [
+ -81.48742711741517,
+ 25.945028211535405
+ ],
+ [
+ -81.50737077683856,
+ 25.976353716957096
+ ],
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ],
+ [
+ -81.50737077683856,
+ 25.976353716957096
+ ],
+ [
+ -81.54725809568531,
+ 25.976353716957096
+ ],
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ],
+ [
+ -81.54725809568531,
+ 25.976353716957096
+ ],
+ [
+ -81.5672017551087,
+ 25.945028211535405
+ ],
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ],
+ [
+ -81.5672017551087,
+ 25.945028211535405
+ ],
+ [
+ -81.54725809568531,
+ 25.913702706113714
+ ],
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ],
+ [
+ -81.54725809568531,
+ 25.913702706113714
+ ],
+ [
+ -81.50737077683856,
+ 25.913702706113714
+ ],
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ],
+ [
+ -81.50737077683856,
+ 25.913702706113714
+ ],
+ [
+ -81.48742711741517,
+ 25.945028211535405
+ ],
+ [
+ -81.52731443626193,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ],
+ [
+ -81.48742711741517,
+ 26.00767922237879
+ ],
+ [
+ -81.50737077683856,
+ 26.03900472780048
+ ],
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ],
+ [
+ -81.50737077683856,
+ 26.03900472780048
+ ],
+ [
+ -81.54725809568531,
+ 26.03900472780048
+ ],
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ],
+ [
+ -81.54725809568531,
+ 26.03900472780048
+ ],
+ [
+ -81.5672017551087,
+ 26.00767922237879
+ ],
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ],
+ [
+ -81.5672017551087,
+ 26.00767922237879
+ ],
+ [
+ -81.54725809568531,
+ 25.9763537169571
+ ],
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ],
+ [
+ -81.54725809568531,
+ 25.9763537169571
+ ],
+ [
+ -81.50737077683856,
+ 25.9763537169571
+ ],
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ],
+ [
+ -81.50737077683856,
+ 25.9763537169571
+ ],
+ [
+ -81.48742711741517,
+ 26.00767922237879
+ ],
+ [
+ -81.52731443626193,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ],
+ [
+ -81.48742711741517,
+ 26.070330233222176
+ ],
+ [
+ -81.50737077683856,
+ 26.101655738643867
+ ],
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ],
+ [
+ -81.50737077683856,
+ 26.101655738643867
+ ],
+ [
+ -81.54725809568531,
+ 26.101655738643867
+ ],
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ],
+ [
+ -81.54725809568531,
+ 26.101655738643867
+ ],
+ [
+ -81.5672017551087,
+ 26.070330233222176
+ ],
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ],
+ [
+ -81.5672017551087,
+ 26.070330233222176
+ ],
+ [
+ -81.54725809568531,
+ 26.039004727800485
+ ],
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ],
+ [
+ -81.54725809568531,
+ 26.039004727800485
+ ],
+ [
+ -81.50737077683856,
+ 26.039004727800485
+ ],
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ],
+ [
+ -81.50737077683856,
+ 26.039004727800485
+ ],
+ [
+ -81.48742711741517,
+ 26.070330233222176
+ ],
+ [
+ -81.52731443626193,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ],
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ],
+ [
+ -81.50737077683856,
+ 26.164306749487253
+ ],
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ],
+ [
+ -81.50737077683856,
+ 26.164306749487253
+ ],
+ [
+ -81.54725809568531,
+ 26.164306749487253
+ ],
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ],
+ [
+ -81.54725809568531,
+ 26.164306749487253
+ ],
+ [
+ -81.5672017551087,
+ 26.13298124406556
+ ],
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ],
+ [
+ -81.5672017551087,
+ 26.13298124406556
+ ],
+ [
+ -81.54725809568531,
+ 26.10165573864387
+ ],
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ],
+ [
+ -81.54725809568531,
+ 26.10165573864387
+ ],
+ [
+ -81.50737077683856,
+ 26.10165573864387
+ ],
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ],
+ [
+ -81.50737077683856,
+ 26.10165573864387
+ ],
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ],
+ [
+ -81.52731443626193,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ],
+ [
+ -81.48742711741517,
+ 26.195632254908944
+ ],
+ [
+ -81.50737077683856,
+ 26.226957760330635
+ ],
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ],
+ [
+ -81.50737077683856,
+ 26.226957760330635
+ ],
+ [
+ -81.54725809568531,
+ 26.226957760330635
+ ],
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ],
+ [
+ -81.54725809568531,
+ 26.226957760330635
+ ],
+ [
+ -81.5672017551087,
+ 26.195632254908944
+ ],
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ],
+ [
+ -81.5672017551087,
+ 26.195632254908944
+ ],
+ [
+ -81.54725809568531,
+ 26.164306749487253
+ ],
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ],
+ [
+ -81.54725809568531,
+ 26.164306749487253
+ ],
+ [
+ -81.50737077683856,
+ 26.164306749487253
+ ],
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ],
+ [
+ -81.50737077683856,
+ 26.164306749487253
+ ],
+ [
+ -81.48742711741517,
+ 26.195632254908944
+ ],
+ [
+ -81.52731443626193,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ],
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ],
+ [
+ -81.50737077683856,
+ 26.289608771174024
+ ],
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ],
+ [
+ -81.50737077683856,
+ 26.289608771174024
+ ],
+ [
+ -81.54725809568531,
+ 26.289608771174024
+ ],
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ],
+ [
+ -81.54725809568531,
+ 26.289608771174024
+ ],
+ [
+ -81.5672017551087,
+ 26.258283265752333
+ ],
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ],
+ [
+ -81.5672017551087,
+ 26.258283265752333
+ ],
+ [
+ -81.54725809568531,
+ 26.22695776033064
+ ],
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ],
+ [
+ -81.54725809568531,
+ 26.22695776033064
+ ],
+ [
+ -81.50737077683856,
+ 26.22695776033064
+ ],
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ],
+ [
+ -81.50737077683856,
+ 26.22695776033064
+ ],
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ],
+ [
+ -81.52731443626193,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ],
+ [
+ -81.48742711741517,
+ 26.320934276595715
+ ],
+ [
+ -81.50737077683856,
+ 26.352259782017406
+ ],
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ],
+ [
+ -81.50737077683856,
+ 26.352259782017406
+ ],
+ [
+ -81.54725809568531,
+ 26.352259782017406
+ ],
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ],
+ [
+ -81.54725809568531,
+ 26.352259782017406
+ ],
+ [
+ -81.5672017551087,
+ 26.320934276595715
+ ],
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ],
+ [
+ -81.5672017551087,
+ 26.320934276595715
+ ],
+ [
+ -81.54725809568531,
+ 26.289608771174024
+ ],
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ],
+ [
+ -81.54725809568531,
+ 26.289608771174024
+ ],
+ [
+ -81.50737077683856,
+ 26.289608771174024
+ ],
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ],
+ [
+ -81.50737077683856,
+ 26.289608771174024
+ ],
+ [
+ -81.48742711741517,
+ 26.320934276595715
+ ],
+ [
+ -81.52731443626193,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ],
+ [
+ -81.48742711741517,
+ 26.3835852874391
+ ],
+ [
+ -81.50737077683856,
+ 26.41491079286079
+ ],
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ],
+ [
+ -81.50737077683856,
+ 26.41491079286079
+ ],
+ [
+ -81.54725809568531,
+ 26.41491079286079
+ ],
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ],
+ [
+ -81.54725809568531,
+ 26.41491079286079
+ ],
+ [
+ -81.5672017551087,
+ 26.3835852874391
+ ],
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ],
+ [
+ -81.5672017551087,
+ 26.3835852874391
+ ],
+ [
+ -81.54725809568531,
+ 26.35225978201741
+ ],
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ],
+ [
+ -81.54725809568531,
+ 26.35225978201741
+ ],
+ [
+ -81.50737077683856,
+ 26.35225978201741
+ ],
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ],
+ [
+ -81.50737077683856,
+ 26.35225978201741
+ ],
+ [
+ -81.48742711741517,
+ 26.3835852874391
+ ],
+ [
+ -81.52731443626193,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ],
+ [
+ -81.48742711741517,
+ 26.446236298282486
+ ],
+ [
+ -81.50737077683856,
+ 26.477561803704177
+ ],
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ],
+ [
+ -81.50737077683856,
+ 26.477561803704177
+ ],
+ [
+ -81.54725809568531,
+ 26.477561803704177
+ ],
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ],
+ [
+ -81.54725809568531,
+ 26.477561803704177
+ ],
+ [
+ -81.5672017551087,
+ 26.446236298282486
+ ],
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ],
+ [
+ -81.5672017551087,
+ 26.446236298282486
+ ],
+ [
+ -81.54725809568531,
+ 26.414910792860795
+ ],
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ],
+ [
+ -81.54725809568531,
+ 26.414910792860795
+ ],
+ [
+ -81.50737077683856,
+ 26.414910792860795
+ ],
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ],
+ [
+ -81.50737077683856,
+ 26.414910792860795
+ ],
+ [
+ -81.48742711741517,
+ 26.446236298282486
+ ],
+ [
+ -81.52731443626193,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ],
+ [
+ -81.42759613914502,
+ 24.911286532619545
+ ],
+ [
+ -81.44753979856841,
+ 24.942612038041236
+ ],
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ],
+ [
+ -81.44753979856841,
+ 24.942612038041236
+ ],
+ [
+ -81.48742711741517,
+ 24.942612038041236
+ ],
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ],
+ [
+ -81.48742711741517,
+ 24.942612038041236
+ ],
+ [
+ -81.50737077683856,
+ 24.911286532619545
+ ],
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ],
+ [
+ -81.50737077683856,
+ 24.911286532619545
+ ],
+ [
+ -81.48742711741517,
+ 24.879961027197854
+ ],
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ],
+ [
+ -81.48742711741517,
+ 24.879961027197854
+ ],
+ [
+ -81.44753979856841,
+ 24.879961027197854
+ ],
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ],
+ [
+ -81.44753979856841,
+ 24.879961027197854
+ ],
+ [
+ -81.42759613914502,
+ 24.911286532619545
+ ],
+ [
+ -81.46748345799179,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ],
+ [
+ -81.42759613914502,
+ 24.97393754346293
+ ],
+ [
+ -81.44753979856841,
+ 25.005263048884622
+ ],
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ],
+ [
+ -81.44753979856841,
+ 25.005263048884622
+ ],
+ [
+ -81.48742711741517,
+ 25.005263048884622
+ ],
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ],
+ [
+ -81.48742711741517,
+ 25.005263048884622
+ ],
+ [
+ -81.50737077683856,
+ 24.97393754346293
+ ],
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ],
+ [
+ -81.50737077683856,
+ 24.97393754346293
+ ],
+ [
+ -81.48742711741517,
+ 24.94261203804124
+ ],
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ],
+ [
+ -81.48742711741517,
+ 24.94261203804124
+ ],
+ [
+ -81.44753979856841,
+ 24.94261203804124
+ ],
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ],
+ [
+ -81.44753979856841,
+ 24.94261203804124
+ ],
+ [
+ -81.42759613914502,
+ 24.97393754346293
+ ],
+ [
+ -81.46748345799179,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ],
+ [
+ -81.42759613914502,
+ 25.036588554306316
+ ],
+ [
+ -81.44753979856841,
+ 25.067914059728007
+ ],
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ],
+ [
+ -81.44753979856841,
+ 25.067914059728007
+ ],
+ [
+ -81.48742711741517,
+ 25.067914059728007
+ ],
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ],
+ [
+ -81.48742711741517,
+ 25.067914059728007
+ ],
+ [
+ -81.50737077683856,
+ 25.036588554306316
+ ],
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ],
+ [
+ -81.50737077683856,
+ 25.036588554306316
+ ],
+ [
+ -81.48742711741517,
+ 25.005263048884625
+ ],
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ],
+ [
+ -81.48742711741517,
+ 25.005263048884625
+ ],
+ [
+ -81.44753979856841,
+ 25.005263048884625
+ ],
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ],
+ [
+ -81.44753979856841,
+ 25.005263048884625
+ ],
+ [
+ -81.42759613914502,
+ 25.036588554306316
+ ],
+ [
+ -81.46748345799179,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ],
+ [
+ -81.42759613914502,
+ 25.099239565149702
+ ],
+ [
+ -81.44753979856841,
+ 25.130565070571393
+ ],
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ],
+ [
+ -81.44753979856841,
+ 25.130565070571393
+ ],
+ [
+ -81.48742711741517,
+ 25.130565070571393
+ ],
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ],
+ [
+ -81.48742711741517,
+ 25.130565070571393
+ ],
+ [
+ -81.50737077683856,
+ 25.099239565149702
+ ],
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ],
+ [
+ -81.50737077683856,
+ 25.099239565149702
+ ],
+ [
+ -81.48742711741517,
+ 25.06791405972801
+ ],
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ],
+ [
+ -81.48742711741517,
+ 25.06791405972801
+ ],
+ [
+ -81.44753979856841,
+ 25.06791405972801
+ ],
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ],
+ [
+ -81.44753979856841,
+ 25.06791405972801
+ ],
+ [
+ -81.42759613914502,
+ 25.099239565149702
+ ],
+ [
+ -81.46748345799179,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ],
+ [
+ -81.42759613914502,
+ 25.161890575993088
+ ],
+ [
+ -81.44753979856841,
+ 25.19321608141478
+ ],
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ],
+ [
+ -81.44753979856841,
+ 25.19321608141478
+ ],
+ [
+ -81.48742711741517,
+ 25.19321608141478
+ ],
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ],
+ [
+ -81.48742711741517,
+ 25.19321608141478
+ ],
+ [
+ -81.50737077683856,
+ 25.161890575993088
+ ],
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ],
+ [
+ -81.50737077683856,
+ 25.161890575993088
+ ],
+ [
+ -81.48742711741517,
+ 25.130565070571397
+ ],
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ],
+ [
+ -81.48742711741517,
+ 25.130565070571397
+ ],
+ [
+ -81.44753979856841,
+ 25.130565070571397
+ ],
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ],
+ [
+ -81.44753979856841,
+ 25.130565070571397
+ ],
+ [
+ -81.42759613914502,
+ 25.161890575993088
+ ],
+ [
+ -81.46748345799179,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ],
+ [
+ -81.42759613914502,
+ 25.224541586836473
+ ],
+ [
+ -81.44753979856841,
+ 25.255867092258164
+ ],
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ],
+ [
+ -81.44753979856841,
+ 25.255867092258164
+ ],
+ [
+ -81.48742711741517,
+ 25.255867092258164
+ ],
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ],
+ [
+ -81.48742711741517,
+ 25.255867092258164
+ ],
+ [
+ -81.50737077683856,
+ 25.224541586836473
+ ],
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ],
+ [
+ -81.50737077683856,
+ 25.224541586836473
+ ],
+ [
+ -81.48742711741517,
+ 25.193216081414782
+ ],
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ],
+ [
+ -81.48742711741517,
+ 25.193216081414782
+ ],
+ [
+ -81.44753979856841,
+ 25.193216081414782
+ ],
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ],
+ [
+ -81.44753979856841,
+ 25.193216081414782
+ ],
+ [
+ -81.42759613914502,
+ 25.224541586836473
+ ],
+ [
+ -81.46748345799179,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ],
+ [
+ -81.42759613914502,
+ 25.28719259767986
+ ],
+ [
+ -81.44753979856841,
+ 25.31851810310155
+ ],
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ],
+ [
+ -81.44753979856841,
+ 25.31851810310155
+ ],
+ [
+ -81.48742711741517,
+ 25.31851810310155
+ ],
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ],
+ [
+ -81.48742711741517,
+ 25.31851810310155
+ ],
+ [
+ -81.50737077683856,
+ 25.28719259767986
+ ],
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ],
+ [
+ -81.50737077683856,
+ 25.28719259767986
+ ],
+ [
+ -81.48742711741517,
+ 25.255867092258168
+ ],
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ],
+ [
+ -81.48742711741517,
+ 25.255867092258168
+ ],
+ [
+ -81.44753979856841,
+ 25.255867092258168
+ ],
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ],
+ [
+ -81.44753979856841,
+ 25.255867092258168
+ ],
+ [
+ -81.42759613914502,
+ 25.28719259767986
+ ],
+ [
+ -81.46748345799179,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ],
+ [
+ -81.42759613914502,
+ 25.349843608523244
+ ],
+ [
+ -81.44753979856841,
+ 25.381169113944935
+ ],
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ],
+ [
+ -81.44753979856841,
+ 25.381169113944935
+ ],
+ [
+ -81.48742711741517,
+ 25.381169113944935
+ ],
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ],
+ [
+ -81.48742711741517,
+ 25.381169113944935
+ ],
+ [
+ -81.50737077683856,
+ 25.349843608523244
+ ],
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ],
+ [
+ -81.50737077683856,
+ 25.349843608523244
+ ],
+ [
+ -81.48742711741517,
+ 25.318518103101553
+ ],
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ],
+ [
+ -81.48742711741517,
+ 25.318518103101553
+ ],
+ [
+ -81.44753979856841,
+ 25.318518103101553
+ ],
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ],
+ [
+ -81.44753979856841,
+ 25.318518103101553
+ ],
+ [
+ -81.42759613914502,
+ 25.349843608523244
+ ],
+ [
+ -81.46748345799179,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ],
+ [
+ -81.42759613914502,
+ 25.41249461936663
+ ],
+ [
+ -81.44753979856841,
+ 25.44382012478832
+ ],
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ],
+ [
+ -81.44753979856841,
+ 25.44382012478832
+ ],
+ [
+ -81.48742711741517,
+ 25.44382012478832
+ ],
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ],
+ [
+ -81.48742711741517,
+ 25.44382012478832
+ ],
+ [
+ -81.50737077683856,
+ 25.41249461936663
+ ],
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ],
+ [
+ -81.50737077683856,
+ 25.41249461936663
+ ],
+ [
+ -81.48742711741517,
+ 25.38116911394494
+ ],
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ],
+ [
+ -81.48742711741517,
+ 25.38116911394494
+ ],
+ [
+ -81.44753979856841,
+ 25.38116911394494
+ ],
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ],
+ [
+ -81.44753979856841,
+ 25.38116911394494
+ ],
+ [
+ -81.42759613914502,
+ 25.41249461936663
+ ],
+ [
+ -81.46748345799179,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ],
+ [
+ -81.42759613914502,
+ 25.475145630210015
+ ],
+ [
+ -81.44753979856841,
+ 25.506471135631706
+ ],
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ],
+ [
+ -81.44753979856841,
+ 25.506471135631706
+ ],
+ [
+ -81.48742711741517,
+ 25.506471135631706
+ ],
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ],
+ [
+ -81.48742711741517,
+ 25.506471135631706
+ ],
+ [
+ -81.50737077683856,
+ 25.475145630210015
+ ],
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ],
+ [
+ -81.50737077683856,
+ 25.475145630210015
+ ],
+ [
+ -81.48742711741517,
+ 25.443820124788324
+ ],
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ],
+ [
+ -81.48742711741517,
+ 25.443820124788324
+ ],
+ [
+ -81.44753979856841,
+ 25.443820124788324
+ ],
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ],
+ [
+ -81.44753979856841,
+ 25.443820124788324
+ ],
+ [
+ -81.42759613914502,
+ 25.475145630210015
+ ],
+ [
+ -81.46748345799179,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ],
+ [
+ -81.42759613914502,
+ 25.5377966410534
+ ],
+ [
+ -81.44753979856841,
+ 25.56912214647509
+ ],
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ],
+ [
+ -81.44753979856841,
+ 25.56912214647509
+ ],
+ [
+ -81.48742711741517,
+ 25.56912214647509
+ ],
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ],
+ [
+ -81.48742711741517,
+ 25.56912214647509
+ ],
+ [
+ -81.50737077683856,
+ 25.5377966410534
+ ],
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ],
+ [
+ -81.50737077683856,
+ 25.5377966410534
+ ],
+ [
+ -81.48742711741517,
+ 25.50647113563171
+ ],
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ],
+ [
+ -81.48742711741517,
+ 25.50647113563171
+ ],
+ [
+ -81.44753979856841,
+ 25.50647113563171
+ ],
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ],
+ [
+ -81.44753979856841,
+ 25.50647113563171
+ ],
+ [
+ -81.42759613914502,
+ 25.5377966410534
+ ],
+ [
+ -81.46748345799179,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ],
+ [
+ -81.42759613914502,
+ 25.600447651896786
+ ],
+ [
+ -81.44753979856841,
+ 25.631773157318477
+ ],
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ],
+ [
+ -81.44753979856841,
+ 25.631773157318477
+ ],
+ [
+ -81.48742711741517,
+ 25.631773157318477
+ ],
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ],
+ [
+ -81.48742711741517,
+ 25.631773157318477
+ ],
+ [
+ -81.50737077683856,
+ 25.600447651896786
+ ],
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ],
+ [
+ -81.50737077683856,
+ 25.600447651896786
+ ],
+ [
+ -81.48742711741517,
+ 25.569122146475095
+ ],
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ],
+ [
+ -81.48742711741517,
+ 25.569122146475095
+ ],
+ [
+ -81.44753979856841,
+ 25.569122146475095
+ ],
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ],
+ [
+ -81.44753979856841,
+ 25.569122146475095
+ ],
+ [
+ -81.42759613914502,
+ 25.600447651896786
+ ],
+ [
+ -81.46748345799179,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ],
+ [
+ -81.42759613914502,
+ 25.663098662740172
+ ],
+ [
+ -81.44753979856841,
+ 25.694424168161863
+ ],
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ],
+ [
+ -81.44753979856841,
+ 25.694424168161863
+ ],
+ [
+ -81.48742711741517,
+ 25.694424168161863
+ ],
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ],
+ [
+ -81.48742711741517,
+ 25.694424168161863
+ ],
+ [
+ -81.50737077683856,
+ 25.663098662740172
+ ],
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ],
+ [
+ -81.50737077683856,
+ 25.663098662740172
+ ],
+ [
+ -81.48742711741517,
+ 25.63177315731848
+ ],
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ],
+ [
+ -81.48742711741517,
+ 25.63177315731848
+ ],
+ [
+ -81.44753979856841,
+ 25.63177315731848
+ ],
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ],
+ [
+ -81.44753979856841,
+ 25.63177315731848
+ ],
+ [
+ -81.42759613914502,
+ 25.663098662740172
+ ],
+ [
+ -81.46748345799179,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ],
+ [
+ -81.42759613914502,
+ 25.725749673583557
+ ],
+ [
+ -81.44753979856841,
+ 25.75707517900525
+ ],
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ],
+ [
+ -81.44753979856841,
+ 25.75707517900525
+ ],
+ [
+ -81.48742711741517,
+ 25.75707517900525
+ ],
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ],
+ [
+ -81.48742711741517,
+ 25.75707517900525
+ ],
+ [
+ -81.50737077683856,
+ 25.725749673583557
+ ],
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ],
+ [
+ -81.50737077683856,
+ 25.725749673583557
+ ],
+ [
+ -81.48742711741517,
+ 25.694424168161866
+ ],
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ],
+ [
+ -81.48742711741517,
+ 25.694424168161866
+ ],
+ [
+ -81.44753979856841,
+ 25.694424168161866
+ ],
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ],
+ [
+ -81.44753979856841,
+ 25.694424168161866
+ ],
+ [
+ -81.42759613914502,
+ 25.725749673583557
+ ],
+ [
+ -81.46748345799179,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ],
+ [
+ -81.42759613914502,
+ 25.788400684426943
+ ],
+ [
+ -81.44753979856841,
+ 25.819726189848634
+ ],
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ],
+ [
+ -81.44753979856841,
+ 25.819726189848634
+ ],
+ [
+ -81.48742711741517,
+ 25.819726189848634
+ ],
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ],
+ [
+ -81.48742711741517,
+ 25.819726189848634
+ ],
+ [
+ -81.50737077683856,
+ 25.788400684426943
+ ],
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ],
+ [
+ -81.50737077683856,
+ 25.788400684426943
+ ],
+ [
+ -81.48742711741517,
+ 25.757075179005252
+ ],
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ],
+ [
+ -81.48742711741517,
+ 25.757075179005252
+ ],
+ [
+ -81.44753979856841,
+ 25.757075179005252
+ ],
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ],
+ [
+ -81.44753979856841,
+ 25.757075179005252
+ ],
+ [
+ -81.42759613914502,
+ 25.788400684426943
+ ],
+ [
+ -81.46748345799179,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ],
+ [
+ -81.42759613914502,
+ 25.85105169527033
+ ],
+ [
+ -81.44753979856841,
+ 25.88237720069202
+ ],
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ],
+ [
+ -81.44753979856841,
+ 25.88237720069202
+ ],
+ [
+ -81.48742711741517,
+ 25.88237720069202
+ ],
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ],
+ [
+ -81.48742711741517,
+ 25.88237720069202
+ ],
+ [
+ -81.50737077683856,
+ 25.85105169527033
+ ],
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ],
+ [
+ -81.50737077683856,
+ 25.85105169527033
+ ],
+ [
+ -81.48742711741517,
+ 25.819726189848637
+ ],
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ],
+ [
+ -81.48742711741517,
+ 25.819726189848637
+ ],
+ [
+ -81.44753979856841,
+ 25.819726189848637
+ ],
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ],
+ [
+ -81.44753979856841,
+ 25.819726189848637
+ ],
+ [
+ -81.42759613914502,
+ 25.85105169527033
+ ],
+ [
+ -81.46748345799179,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ],
+ [
+ -81.42759613914502,
+ 25.913702706113714
+ ],
+ [
+ -81.44753979856841,
+ 25.945028211535405
+ ],
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ],
+ [
+ -81.44753979856841,
+ 25.945028211535405
+ ],
+ [
+ -81.48742711741517,
+ 25.945028211535405
+ ],
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ],
+ [
+ -81.48742711741517,
+ 25.945028211535405
+ ],
+ [
+ -81.50737077683856,
+ 25.913702706113714
+ ],
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ],
+ [
+ -81.50737077683856,
+ 25.913702706113714
+ ],
+ [
+ -81.48742711741517,
+ 25.882377200692023
+ ],
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ],
+ [
+ -81.48742711741517,
+ 25.882377200692023
+ ],
+ [
+ -81.44753979856841,
+ 25.882377200692023
+ ],
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ],
+ [
+ -81.44753979856841,
+ 25.882377200692023
+ ],
+ [
+ -81.42759613914502,
+ 25.913702706113714
+ ],
+ [
+ -81.46748345799179,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ],
+ [
+ -81.42759613914502,
+ 25.9763537169571
+ ],
+ [
+ -81.44753979856841,
+ 26.00767922237879
+ ],
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ],
+ [
+ -81.44753979856841,
+ 26.00767922237879
+ ],
+ [
+ -81.48742711741517,
+ 26.00767922237879
+ ],
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ],
+ [
+ -81.48742711741517,
+ 26.00767922237879
+ ],
+ [
+ -81.50737077683856,
+ 25.9763537169571
+ ],
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ],
+ [
+ -81.50737077683856,
+ 25.9763537169571
+ ],
+ [
+ -81.48742711741517,
+ 25.94502821153541
+ ],
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ],
+ [
+ -81.48742711741517,
+ 25.94502821153541
+ ],
+ [
+ -81.44753979856841,
+ 25.94502821153541
+ ],
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ],
+ [
+ -81.44753979856841,
+ 25.94502821153541
+ ],
+ [
+ -81.42759613914502,
+ 25.9763537169571
+ ],
+ [
+ -81.46748345799179,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ],
+ [
+ -81.42759613914502,
+ 26.039004727800485
+ ],
+ [
+ -81.44753979856841,
+ 26.070330233222176
+ ],
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ],
+ [
+ -81.44753979856841,
+ 26.070330233222176
+ ],
+ [
+ -81.48742711741517,
+ 26.070330233222176
+ ],
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ],
+ [
+ -81.48742711741517,
+ 26.070330233222176
+ ],
+ [
+ -81.50737077683856,
+ 26.039004727800485
+ ],
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ],
+ [
+ -81.50737077683856,
+ 26.039004727800485
+ ],
+ [
+ -81.48742711741517,
+ 26.007679222378794
+ ],
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ],
+ [
+ -81.48742711741517,
+ 26.007679222378794
+ ],
+ [
+ -81.44753979856841,
+ 26.007679222378794
+ ],
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ],
+ [
+ -81.44753979856841,
+ 26.007679222378794
+ ],
+ [
+ -81.42759613914502,
+ 26.039004727800485
+ ],
+ [
+ -81.46748345799179,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ],
+ [
+ -81.42759613914502,
+ 26.10165573864387
+ ],
+ [
+ -81.44753979856841,
+ 26.13298124406556
+ ],
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ],
+ [
+ -81.44753979856841,
+ 26.13298124406556
+ ],
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ],
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ],
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ],
+ [
+ -81.50737077683856,
+ 26.10165573864387
+ ],
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ],
+ [
+ -81.50737077683856,
+ 26.10165573864387
+ ],
+ [
+ -81.48742711741517,
+ 26.07033023322218
+ ],
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ],
+ [
+ -81.48742711741517,
+ 26.07033023322218
+ ],
+ [
+ -81.44753979856841,
+ 26.07033023322218
+ ],
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ],
+ [
+ -81.44753979856841,
+ 26.07033023322218
+ ],
+ [
+ -81.42759613914502,
+ 26.10165573864387
+ ],
+ [
+ -81.46748345799179,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ],
+ [
+ -81.42759613914502,
+ 26.164306749487253
+ ],
+ [
+ -81.44753979856841,
+ 26.195632254908944
+ ],
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ],
+ [
+ -81.44753979856841,
+ 26.195632254908944
+ ],
+ [
+ -81.48742711741517,
+ 26.195632254908944
+ ],
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ],
+ [
+ -81.48742711741517,
+ 26.195632254908944
+ ],
+ [
+ -81.50737077683856,
+ 26.164306749487253
+ ],
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ],
+ [
+ -81.50737077683856,
+ 26.164306749487253
+ ],
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ],
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ],
+ [
+ -81.48742711741517,
+ 26.13298124406556
+ ],
+ [
+ -81.44753979856841,
+ 26.13298124406556
+ ],
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ],
+ [
+ -81.44753979856841,
+ 26.13298124406556
+ ],
+ [
+ -81.42759613914502,
+ 26.164306749487253
+ ],
+ [
+ -81.46748345799179,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ],
+ [
+ -81.42759613914502,
+ 26.22695776033064
+ ],
+ [
+ -81.44753979856841,
+ 26.258283265752333
+ ],
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ],
+ [
+ -81.44753979856841,
+ 26.258283265752333
+ ],
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ],
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ],
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ],
+ [
+ -81.50737077683856,
+ 26.22695776033064
+ ],
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ],
+ [
+ -81.50737077683856,
+ 26.22695776033064
+ ],
+ [
+ -81.48742711741517,
+ 26.19563225490895
+ ],
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ],
+ [
+ -81.48742711741517,
+ 26.19563225490895
+ ],
+ [
+ -81.44753979856841,
+ 26.19563225490895
+ ],
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ],
+ [
+ -81.44753979856841,
+ 26.19563225490895
+ ],
+ [
+ -81.42759613914502,
+ 26.22695776033064
+ ],
+ [
+ -81.46748345799179,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ],
+ [
+ -81.42759613914502,
+ 26.289608771174024
+ ],
+ [
+ -81.44753979856841,
+ 26.320934276595715
+ ],
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ],
+ [
+ -81.44753979856841,
+ 26.320934276595715
+ ],
+ [
+ -81.48742711741517,
+ 26.320934276595715
+ ],
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ],
+ [
+ -81.48742711741517,
+ 26.320934276595715
+ ],
+ [
+ -81.50737077683856,
+ 26.289608771174024
+ ],
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ],
+ [
+ -81.50737077683856,
+ 26.289608771174024
+ ],
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ],
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ],
+ [
+ -81.48742711741517,
+ 26.258283265752333
+ ],
+ [
+ -81.44753979856841,
+ 26.258283265752333
+ ],
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ],
+ [
+ -81.44753979856841,
+ 26.258283265752333
+ ],
+ [
+ -81.42759613914502,
+ 26.289608771174024
+ ],
+ [
+ -81.46748345799179,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ],
+ [
+ -81.42759613914502,
+ 26.35225978201741
+ ],
+ [
+ -81.44753979856841,
+ 26.3835852874391
+ ],
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ],
+ [
+ -81.44753979856841,
+ 26.3835852874391
+ ],
+ [
+ -81.48742711741517,
+ 26.3835852874391
+ ],
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ],
+ [
+ -81.48742711741517,
+ 26.3835852874391
+ ],
+ [
+ -81.50737077683856,
+ 26.35225978201741
+ ],
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ],
+ [
+ -81.50737077683856,
+ 26.35225978201741
+ ],
+ [
+ -81.48742711741517,
+ 26.320934276595718
+ ],
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ],
+ [
+ -81.48742711741517,
+ 26.320934276595718
+ ],
+ [
+ -81.44753979856841,
+ 26.320934276595718
+ ],
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ],
+ [
+ -81.44753979856841,
+ 26.320934276595718
+ ],
+ [
+ -81.42759613914502,
+ 26.35225978201741
+ ],
+ [
+ -81.46748345799179,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ],
+ [
+ -81.42759613914502,
+ 26.414910792860795
+ ],
+ [
+ -81.44753979856841,
+ 26.446236298282486
+ ],
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ],
+ [
+ -81.44753979856841,
+ 26.446236298282486
+ ],
+ [
+ -81.48742711741517,
+ 26.446236298282486
+ ],
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ],
+ [
+ -81.48742711741517,
+ 26.446236298282486
+ ],
+ [
+ -81.50737077683856,
+ 26.414910792860795
+ ],
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ],
+ [
+ -81.50737077683856,
+ 26.414910792860795
+ ],
+ [
+ -81.48742711741517,
+ 26.383585287439104
+ ],
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ],
+ [
+ -81.48742711741517,
+ 26.383585287439104
+ ],
+ [
+ -81.44753979856841,
+ 26.383585287439104
+ ],
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ],
+ [
+ -81.44753979856841,
+ 26.383585287439104
+ ],
+ [
+ -81.42759613914502,
+ 26.414910792860795
+ ],
+ [
+ -81.46748345799179,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ],
+ [
+ -81.36776516087487,
+ 24.942612038041236
+ ],
+ [
+ -81.38770882029826,
+ 24.973937543462927
+ ],
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ],
+ [
+ -81.38770882029826,
+ 24.973937543462927
+ ],
+ [
+ -81.42759613914501,
+ 24.973937543462927
+ ],
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ],
+ [
+ -81.42759613914501,
+ 24.973937543462927
+ ],
+ [
+ -81.4475397985684,
+ 24.942612038041236
+ ],
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ],
+ [
+ -81.4475397985684,
+ 24.942612038041236
+ ],
+ [
+ -81.42759613914501,
+ 24.911286532619545
+ ],
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ],
+ [
+ -81.42759613914501,
+ 24.911286532619545
+ ],
+ [
+ -81.38770882029826,
+ 24.911286532619545
+ ],
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ],
+ [
+ -81.38770882029826,
+ 24.911286532619545
+ ],
+ [
+ -81.36776516087487,
+ 24.942612038041236
+ ],
+ [
+ -81.40765247972163,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ],
+ [
+ -81.36776516087487,
+ 25.005263048884622
+ ],
+ [
+ -81.38770882029826,
+ 25.036588554306313
+ ],
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ],
+ [
+ -81.38770882029826,
+ 25.036588554306313
+ ],
+ [
+ -81.42759613914501,
+ 25.036588554306313
+ ],
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ],
+ [
+ -81.42759613914501,
+ 25.036588554306313
+ ],
+ [
+ -81.4475397985684,
+ 25.005263048884622
+ ],
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ],
+ [
+ -81.4475397985684,
+ 25.005263048884622
+ ],
+ [
+ -81.42759613914501,
+ 24.97393754346293
+ ],
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ],
+ [
+ -81.42759613914501,
+ 24.97393754346293
+ ],
+ [
+ -81.38770882029826,
+ 24.97393754346293
+ ],
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ],
+ [
+ -81.38770882029826,
+ 24.97393754346293
+ ],
+ [
+ -81.36776516087487,
+ 25.005263048884622
+ ],
+ [
+ -81.40765247972163,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ],
+ [
+ -81.36776516087487,
+ 25.067914059728007
+ ],
+ [
+ -81.38770882029826,
+ 25.0992395651497
+ ],
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ],
+ [
+ -81.38770882029826,
+ 25.0992395651497
+ ],
+ [
+ -81.42759613914501,
+ 25.0992395651497
+ ],
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ],
+ [
+ -81.42759613914501,
+ 25.0992395651497
+ ],
+ [
+ -81.4475397985684,
+ 25.067914059728007
+ ],
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ],
+ [
+ -81.4475397985684,
+ 25.067914059728007
+ ],
+ [
+ -81.42759613914501,
+ 25.036588554306316
+ ],
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ],
+ [
+ -81.42759613914501,
+ 25.036588554306316
+ ],
+ [
+ -81.38770882029826,
+ 25.036588554306316
+ ],
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ],
+ [
+ -81.38770882029826,
+ 25.036588554306316
+ ],
+ [
+ -81.36776516087487,
+ 25.067914059728007
+ ],
+ [
+ -81.40765247972163,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ],
+ [
+ -81.36776516087487,
+ 25.130565070571393
+ ],
+ [
+ -81.38770882029826,
+ 25.161890575993084
+ ],
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ],
+ [
+ -81.38770882029826,
+ 25.161890575993084
+ ],
+ [
+ -81.42759613914501,
+ 25.161890575993084
+ ],
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ],
+ [
+ -81.42759613914501,
+ 25.161890575993084
+ ],
+ [
+ -81.4475397985684,
+ 25.130565070571393
+ ],
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ],
+ [
+ -81.4475397985684,
+ 25.130565070571393
+ ],
+ [
+ -81.42759613914501,
+ 25.099239565149702
+ ],
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ],
+ [
+ -81.42759613914501,
+ 25.099239565149702
+ ],
+ [
+ -81.38770882029826,
+ 25.099239565149702
+ ],
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ],
+ [
+ -81.38770882029826,
+ 25.099239565149702
+ ],
+ [
+ -81.36776516087487,
+ 25.130565070571393
+ ],
+ [
+ -81.40765247972163,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ],
+ [
+ -81.36776516087487,
+ 25.19321608141478
+ ],
+ [
+ -81.38770882029826,
+ 25.22454158683647
+ ],
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ],
+ [
+ -81.38770882029826,
+ 25.22454158683647
+ ],
+ [
+ -81.42759613914501,
+ 25.22454158683647
+ ],
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ],
+ [
+ -81.42759613914501,
+ 25.22454158683647
+ ],
+ [
+ -81.4475397985684,
+ 25.19321608141478
+ ],
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ],
+ [
+ -81.4475397985684,
+ 25.19321608141478
+ ],
+ [
+ -81.42759613914501,
+ 25.161890575993088
+ ],
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ],
+ [
+ -81.42759613914501,
+ 25.161890575993088
+ ],
+ [
+ -81.38770882029826,
+ 25.161890575993088
+ ],
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ],
+ [
+ -81.38770882029826,
+ 25.161890575993088
+ ],
+ [
+ -81.36776516087487,
+ 25.19321608141478
+ ],
+ [
+ -81.40765247972163,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ],
+ [
+ -81.36776516087487,
+ 25.255867092258164
+ ],
+ [
+ -81.38770882029826,
+ 25.287192597679855
+ ],
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ],
+ [
+ -81.38770882029826,
+ 25.287192597679855
+ ],
+ [
+ -81.42759613914501,
+ 25.287192597679855
+ ],
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ],
+ [
+ -81.42759613914501,
+ 25.287192597679855
+ ],
+ [
+ -81.4475397985684,
+ 25.255867092258164
+ ],
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ],
+ [
+ -81.4475397985684,
+ 25.255867092258164
+ ],
+ [
+ -81.42759613914501,
+ 25.224541586836473
+ ],
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ],
+ [
+ -81.42759613914501,
+ 25.224541586836473
+ ],
+ [
+ -81.38770882029826,
+ 25.224541586836473
+ ],
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ],
+ [
+ -81.38770882029826,
+ 25.224541586836473
+ ],
+ [
+ -81.36776516087487,
+ 25.255867092258164
+ ],
+ [
+ -81.40765247972163,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ],
+ [
+ -81.36776516087487,
+ 25.31851810310155
+ ],
+ [
+ -81.38770882029826,
+ 25.34984360852324
+ ],
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ],
+ [
+ -81.38770882029826,
+ 25.34984360852324
+ ],
+ [
+ -81.42759613914501,
+ 25.34984360852324
+ ],
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ],
+ [
+ -81.42759613914501,
+ 25.34984360852324
+ ],
+ [
+ -81.4475397985684,
+ 25.31851810310155
+ ],
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ],
+ [
+ -81.4475397985684,
+ 25.31851810310155
+ ],
+ [
+ -81.42759613914501,
+ 25.28719259767986
+ ],
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ],
+ [
+ -81.42759613914501,
+ 25.28719259767986
+ ],
+ [
+ -81.38770882029826,
+ 25.28719259767986
+ ],
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ],
+ [
+ -81.38770882029826,
+ 25.28719259767986
+ ],
+ [
+ -81.36776516087487,
+ 25.31851810310155
+ ],
+ [
+ -81.40765247972163,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ],
+ [
+ -81.36776516087487,
+ 25.381169113944935
+ ],
+ [
+ -81.38770882029826,
+ 25.412494619366626
+ ],
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ],
+ [
+ -81.38770882029826,
+ 25.412494619366626
+ ],
+ [
+ -81.42759613914501,
+ 25.412494619366626
+ ],
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ],
+ [
+ -81.42759613914501,
+ 25.412494619366626
+ ],
+ [
+ -81.4475397985684,
+ 25.381169113944935
+ ],
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ],
+ [
+ -81.4475397985684,
+ 25.381169113944935
+ ],
+ [
+ -81.42759613914501,
+ 25.349843608523244
+ ],
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ],
+ [
+ -81.42759613914501,
+ 25.349843608523244
+ ],
+ [
+ -81.38770882029826,
+ 25.349843608523244
+ ],
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ],
+ [
+ -81.38770882029826,
+ 25.349843608523244
+ ],
+ [
+ -81.36776516087487,
+ 25.381169113944935
+ ],
+ [
+ -81.40765247972163,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ],
+ [
+ -81.36776516087487,
+ 25.44382012478832
+ ],
+ [
+ -81.38770882029826,
+ 25.47514563021001
+ ],
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ],
+ [
+ -81.38770882029826,
+ 25.47514563021001
+ ],
+ [
+ -81.42759613914501,
+ 25.47514563021001
+ ],
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ],
+ [
+ -81.42759613914501,
+ 25.47514563021001
+ ],
+ [
+ -81.4475397985684,
+ 25.44382012478832
+ ],
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ],
+ [
+ -81.4475397985684,
+ 25.44382012478832
+ ],
+ [
+ -81.42759613914501,
+ 25.41249461936663
+ ],
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ],
+ [
+ -81.42759613914501,
+ 25.41249461936663
+ ],
+ [
+ -81.38770882029826,
+ 25.41249461936663
+ ],
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ],
+ [
+ -81.38770882029826,
+ 25.41249461936663
+ ],
+ [
+ -81.36776516087487,
+ 25.44382012478832
+ ],
+ [
+ -81.40765247972163,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ],
+ [
+ -81.36776516087487,
+ 25.506471135631706
+ ],
+ [
+ -81.38770882029826,
+ 25.537796641053397
+ ],
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ],
+ [
+ -81.38770882029826,
+ 25.537796641053397
+ ],
+ [
+ -81.42759613914501,
+ 25.537796641053397
+ ],
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ],
+ [
+ -81.42759613914501,
+ 25.537796641053397
+ ],
+ [
+ -81.4475397985684,
+ 25.506471135631706
+ ],
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ],
+ [
+ -81.4475397985684,
+ 25.506471135631706
+ ],
+ [
+ -81.42759613914501,
+ 25.475145630210015
+ ],
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ],
+ [
+ -81.42759613914501,
+ 25.475145630210015
+ ],
+ [
+ -81.38770882029826,
+ 25.475145630210015
+ ],
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ],
+ [
+ -81.38770882029826,
+ 25.475145630210015
+ ],
+ [
+ -81.36776516087487,
+ 25.506471135631706
+ ],
+ [
+ -81.40765247972163,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ],
+ [
+ -81.36776516087487,
+ 25.56912214647509
+ ],
+ [
+ -81.38770882029826,
+ 25.600447651896783
+ ],
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ],
+ [
+ -81.38770882029826,
+ 25.600447651896783
+ ],
+ [
+ -81.42759613914501,
+ 25.600447651896783
+ ],
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ],
+ [
+ -81.42759613914501,
+ 25.600447651896783
+ ],
+ [
+ -81.4475397985684,
+ 25.56912214647509
+ ],
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ],
+ [
+ -81.4475397985684,
+ 25.56912214647509
+ ],
+ [
+ -81.42759613914501,
+ 25.5377966410534
+ ],
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ],
+ [
+ -81.42759613914501,
+ 25.5377966410534
+ ],
+ [
+ -81.38770882029826,
+ 25.5377966410534
+ ],
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ],
+ [
+ -81.38770882029826,
+ 25.5377966410534
+ ],
+ [
+ -81.36776516087487,
+ 25.56912214647509
+ ],
+ [
+ -81.40765247972163,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ],
+ [
+ -81.36776516087487,
+ 25.631773157318477
+ ],
+ [
+ -81.38770882029826,
+ 25.66309866274017
+ ],
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ],
+ [
+ -81.38770882029826,
+ 25.66309866274017
+ ],
+ [
+ -81.42759613914501,
+ 25.66309866274017
+ ],
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ],
+ [
+ -81.42759613914501,
+ 25.66309866274017
+ ],
+ [
+ -81.4475397985684,
+ 25.631773157318477
+ ],
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ],
+ [
+ -81.4475397985684,
+ 25.631773157318477
+ ],
+ [
+ -81.42759613914501,
+ 25.600447651896786
+ ],
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ],
+ [
+ -81.42759613914501,
+ 25.600447651896786
+ ],
+ [
+ -81.38770882029826,
+ 25.600447651896786
+ ],
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ],
+ [
+ -81.38770882029826,
+ 25.600447651896786
+ ],
+ [
+ -81.36776516087487,
+ 25.631773157318477
+ ],
+ [
+ -81.40765247972163,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ],
+ [
+ -81.36776516087487,
+ 25.694424168161863
+ ],
+ [
+ -81.38770882029826,
+ 25.725749673583554
+ ],
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ],
+ [
+ -81.38770882029826,
+ 25.725749673583554
+ ],
+ [
+ -81.42759613914501,
+ 25.725749673583554
+ ],
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ],
+ [
+ -81.42759613914501,
+ 25.725749673583554
+ ],
+ [
+ -81.4475397985684,
+ 25.694424168161863
+ ],
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ],
+ [
+ -81.4475397985684,
+ 25.694424168161863
+ ],
+ [
+ -81.42759613914501,
+ 25.663098662740172
+ ],
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ],
+ [
+ -81.42759613914501,
+ 25.663098662740172
+ ],
+ [
+ -81.38770882029826,
+ 25.663098662740172
+ ],
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ],
+ [
+ -81.38770882029826,
+ 25.663098662740172
+ ],
+ [
+ -81.36776516087487,
+ 25.694424168161863
+ ],
+ [
+ -81.40765247972163,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ],
+ [
+ -81.36776516087487,
+ 25.75707517900525
+ ],
+ [
+ -81.38770882029826,
+ 25.78840068442694
+ ],
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ],
+ [
+ -81.38770882029826,
+ 25.78840068442694
+ ],
+ [
+ -81.42759613914501,
+ 25.78840068442694
+ ],
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ],
+ [
+ -81.42759613914501,
+ 25.78840068442694
+ ],
+ [
+ -81.4475397985684,
+ 25.75707517900525
+ ],
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ],
+ [
+ -81.4475397985684,
+ 25.75707517900525
+ ],
+ [
+ -81.42759613914501,
+ 25.725749673583557
+ ],
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ],
+ [
+ -81.42759613914501,
+ 25.725749673583557
+ ],
+ [
+ -81.38770882029826,
+ 25.725749673583557
+ ],
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ],
+ [
+ -81.38770882029826,
+ 25.725749673583557
+ ],
+ [
+ -81.36776516087487,
+ 25.75707517900525
+ ],
+ [
+ -81.40765247972163,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ],
+ [
+ -81.36776516087487,
+ 25.819726189848634
+ ],
+ [
+ -81.38770882029826,
+ 25.851051695270325
+ ],
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ],
+ [
+ -81.38770882029826,
+ 25.851051695270325
+ ],
+ [
+ -81.42759613914501,
+ 25.851051695270325
+ ],
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ],
+ [
+ -81.42759613914501,
+ 25.851051695270325
+ ],
+ [
+ -81.4475397985684,
+ 25.819726189848634
+ ],
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ],
+ [
+ -81.4475397985684,
+ 25.819726189848634
+ ],
+ [
+ -81.42759613914501,
+ 25.788400684426943
+ ],
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ],
+ [
+ -81.42759613914501,
+ 25.788400684426943
+ ],
+ [
+ -81.38770882029826,
+ 25.788400684426943
+ ],
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ],
+ [
+ -81.38770882029826,
+ 25.788400684426943
+ ],
+ [
+ -81.36776516087487,
+ 25.819726189848634
+ ],
+ [
+ -81.40765247972163,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ],
+ [
+ -81.36776516087487,
+ 25.88237720069202
+ ],
+ [
+ -81.38770882029826,
+ 25.91370270611371
+ ],
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ],
+ [
+ -81.38770882029826,
+ 25.91370270611371
+ ],
+ [
+ -81.42759613914501,
+ 25.91370270611371
+ ],
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ],
+ [
+ -81.42759613914501,
+ 25.91370270611371
+ ],
+ [
+ -81.4475397985684,
+ 25.88237720069202
+ ],
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ],
+ [
+ -81.4475397985684,
+ 25.88237720069202
+ ],
+ [
+ -81.42759613914501,
+ 25.85105169527033
+ ],
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ],
+ [
+ -81.42759613914501,
+ 25.85105169527033
+ ],
+ [
+ -81.38770882029826,
+ 25.85105169527033
+ ],
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ],
+ [
+ -81.38770882029826,
+ 25.85105169527033
+ ],
+ [
+ -81.36776516087487,
+ 25.88237720069202
+ ],
+ [
+ -81.40765247972163,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ],
+ [
+ -81.36776516087487,
+ 25.945028211535405
+ ],
+ [
+ -81.38770882029826,
+ 25.976353716957096
+ ],
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ],
+ [
+ -81.38770882029826,
+ 25.976353716957096
+ ],
+ [
+ -81.42759613914501,
+ 25.976353716957096
+ ],
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ],
+ [
+ -81.42759613914501,
+ 25.976353716957096
+ ],
+ [
+ -81.4475397985684,
+ 25.945028211535405
+ ],
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ],
+ [
+ -81.4475397985684,
+ 25.945028211535405
+ ],
+ [
+ -81.42759613914501,
+ 25.913702706113714
+ ],
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ],
+ [
+ -81.42759613914501,
+ 25.913702706113714
+ ],
+ [
+ -81.38770882029826,
+ 25.913702706113714
+ ],
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ],
+ [
+ -81.38770882029826,
+ 25.913702706113714
+ ],
+ [
+ -81.36776516087487,
+ 25.945028211535405
+ ],
+ [
+ -81.40765247972163,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ],
+ [
+ -81.36776516087487,
+ 26.00767922237879
+ ],
+ [
+ -81.38770882029826,
+ 26.03900472780048
+ ],
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ],
+ [
+ -81.38770882029826,
+ 26.03900472780048
+ ],
+ [
+ -81.42759613914501,
+ 26.03900472780048
+ ],
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ],
+ [
+ -81.42759613914501,
+ 26.03900472780048
+ ],
+ [
+ -81.4475397985684,
+ 26.00767922237879
+ ],
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ],
+ [
+ -81.4475397985684,
+ 26.00767922237879
+ ],
+ [
+ -81.42759613914501,
+ 25.9763537169571
+ ],
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ],
+ [
+ -81.42759613914501,
+ 25.9763537169571
+ ],
+ [
+ -81.38770882029826,
+ 25.9763537169571
+ ],
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ],
+ [
+ -81.38770882029826,
+ 25.9763537169571
+ ],
+ [
+ -81.36776516087487,
+ 26.00767922237879
+ ],
+ [
+ -81.40765247972163,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ],
+ [
+ -81.36776516087487,
+ 26.070330233222176
+ ],
+ [
+ -81.38770882029826,
+ 26.101655738643867
+ ],
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ],
+ [
+ -81.38770882029826,
+ 26.101655738643867
+ ],
+ [
+ -81.42759613914501,
+ 26.101655738643867
+ ],
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ],
+ [
+ -81.42759613914501,
+ 26.101655738643867
+ ],
+ [
+ -81.4475397985684,
+ 26.070330233222176
+ ],
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ],
+ [
+ -81.4475397985684,
+ 26.070330233222176
+ ],
+ [
+ -81.42759613914501,
+ 26.039004727800485
+ ],
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ],
+ [
+ -81.42759613914501,
+ 26.039004727800485
+ ],
+ [
+ -81.38770882029826,
+ 26.039004727800485
+ ],
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ],
+ [
+ -81.38770882029826,
+ 26.039004727800485
+ ],
+ [
+ -81.36776516087487,
+ 26.070330233222176
+ ],
+ [
+ -81.40765247972163,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ],
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ],
+ [
+ -81.38770882029826,
+ 26.164306749487253
+ ],
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ],
+ [
+ -81.38770882029826,
+ 26.164306749487253
+ ],
+ [
+ -81.42759613914501,
+ 26.164306749487253
+ ],
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ],
+ [
+ -81.42759613914501,
+ 26.164306749487253
+ ],
+ [
+ -81.4475397985684,
+ 26.13298124406556
+ ],
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ],
+ [
+ -81.4475397985684,
+ 26.13298124406556
+ ],
+ [
+ -81.42759613914501,
+ 26.10165573864387
+ ],
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ],
+ [
+ -81.42759613914501,
+ 26.10165573864387
+ ],
+ [
+ -81.38770882029826,
+ 26.10165573864387
+ ],
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ],
+ [
+ -81.38770882029826,
+ 26.10165573864387
+ ],
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ],
+ [
+ -81.40765247972163,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ],
+ [
+ -81.36776516087487,
+ 26.195632254908944
+ ],
+ [
+ -81.38770882029826,
+ 26.226957760330635
+ ],
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ],
+ [
+ -81.38770882029826,
+ 26.226957760330635
+ ],
+ [
+ -81.42759613914501,
+ 26.226957760330635
+ ],
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ],
+ [
+ -81.42759613914501,
+ 26.226957760330635
+ ],
+ [
+ -81.4475397985684,
+ 26.195632254908944
+ ],
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ],
+ [
+ -81.4475397985684,
+ 26.195632254908944
+ ],
+ [
+ -81.42759613914501,
+ 26.164306749487253
+ ],
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ],
+ [
+ -81.42759613914501,
+ 26.164306749487253
+ ],
+ [
+ -81.38770882029826,
+ 26.164306749487253
+ ],
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ],
+ [
+ -81.38770882029826,
+ 26.164306749487253
+ ],
+ [
+ -81.36776516087487,
+ 26.195632254908944
+ ],
+ [
+ -81.40765247972163,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ],
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ],
+ [
+ -81.38770882029826,
+ 26.289608771174024
+ ],
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ],
+ [
+ -81.38770882029826,
+ 26.289608771174024
+ ],
+ [
+ -81.42759613914501,
+ 26.289608771174024
+ ],
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ],
+ [
+ -81.42759613914501,
+ 26.289608771174024
+ ],
+ [
+ -81.4475397985684,
+ 26.258283265752333
+ ],
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ],
+ [
+ -81.4475397985684,
+ 26.258283265752333
+ ],
+ [
+ -81.42759613914501,
+ 26.22695776033064
+ ],
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ],
+ [
+ -81.42759613914501,
+ 26.22695776033064
+ ],
+ [
+ -81.38770882029826,
+ 26.22695776033064
+ ],
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ],
+ [
+ -81.38770882029826,
+ 26.22695776033064
+ ],
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ],
+ [
+ -81.40765247972163,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ],
+ [
+ -81.36776516087487,
+ 26.320934276595715
+ ],
+ [
+ -81.38770882029826,
+ 26.352259782017406
+ ],
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ],
+ [
+ -81.38770882029826,
+ 26.352259782017406
+ ],
+ [
+ -81.42759613914501,
+ 26.352259782017406
+ ],
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ],
+ [
+ -81.42759613914501,
+ 26.352259782017406
+ ],
+ [
+ -81.4475397985684,
+ 26.320934276595715
+ ],
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ],
+ [
+ -81.4475397985684,
+ 26.320934276595715
+ ],
+ [
+ -81.42759613914501,
+ 26.289608771174024
+ ],
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ],
+ [
+ -81.42759613914501,
+ 26.289608771174024
+ ],
+ [
+ -81.38770882029826,
+ 26.289608771174024
+ ],
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ],
+ [
+ -81.38770882029826,
+ 26.289608771174024
+ ],
+ [
+ -81.36776516087487,
+ 26.320934276595715
+ ],
+ [
+ -81.40765247972163,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ],
+ [
+ -81.36776516087487,
+ 26.3835852874391
+ ],
+ [
+ -81.38770882029826,
+ 26.41491079286079
+ ],
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ],
+ [
+ -81.38770882029826,
+ 26.41491079286079
+ ],
+ [
+ -81.42759613914501,
+ 26.41491079286079
+ ],
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ],
+ [
+ -81.42759613914501,
+ 26.41491079286079
+ ],
+ [
+ -81.4475397985684,
+ 26.3835852874391
+ ],
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ],
+ [
+ -81.4475397985684,
+ 26.3835852874391
+ ],
+ [
+ -81.42759613914501,
+ 26.35225978201741
+ ],
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ],
+ [
+ -81.42759613914501,
+ 26.35225978201741
+ ],
+ [
+ -81.38770882029826,
+ 26.35225978201741
+ ],
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ],
+ [
+ -81.38770882029826,
+ 26.35225978201741
+ ],
+ [
+ -81.36776516087487,
+ 26.3835852874391
+ ],
+ [
+ -81.40765247972163,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ],
+ [
+ -81.36776516087487,
+ 26.446236298282486
+ ],
+ [
+ -81.38770882029826,
+ 26.477561803704177
+ ],
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ],
+ [
+ -81.38770882029826,
+ 26.477561803704177
+ ],
+ [
+ -81.42759613914501,
+ 26.477561803704177
+ ],
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ],
+ [
+ -81.42759613914501,
+ 26.477561803704177
+ ],
+ [
+ -81.4475397985684,
+ 26.446236298282486
+ ],
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ],
+ [
+ -81.4475397985684,
+ 26.446236298282486
+ ],
+ [
+ -81.42759613914501,
+ 26.414910792860795
+ ],
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ],
+ [
+ -81.42759613914501,
+ 26.414910792860795
+ ],
+ [
+ -81.38770882029826,
+ 26.414910792860795
+ ],
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ],
+ [
+ -81.38770882029826,
+ 26.414910792860795
+ ],
+ [
+ -81.36776516087487,
+ 26.446236298282486
+ ],
+ [
+ -81.40765247972163,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ],
+ [
+ -81.30793418260473,
+ 24.911286532619545
+ ],
+ [
+ -81.32787784202812,
+ 24.942612038041236
+ ],
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ],
+ [
+ -81.32787784202812,
+ 24.942612038041236
+ ],
+ [
+ -81.36776516087487,
+ 24.942612038041236
+ ],
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ],
+ [
+ -81.36776516087487,
+ 24.942612038041236
+ ],
+ [
+ -81.38770882029826,
+ 24.911286532619545
+ ],
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ],
+ [
+ -81.38770882029826,
+ 24.911286532619545
+ ],
+ [
+ -81.36776516087487,
+ 24.879961027197854
+ ],
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ],
+ [
+ -81.36776516087487,
+ 24.879961027197854
+ ],
+ [
+ -81.32787784202812,
+ 24.879961027197854
+ ],
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ],
+ [
+ -81.32787784202812,
+ 24.879961027197854
+ ],
+ [
+ -81.30793418260473,
+ 24.911286532619545
+ ],
+ [
+ -81.34782150145149,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ],
+ [
+ -81.30793418260473,
+ 24.97393754346293
+ ],
+ [
+ -81.32787784202812,
+ 25.005263048884622
+ ],
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ],
+ [
+ -81.32787784202812,
+ 25.005263048884622
+ ],
+ [
+ -81.36776516087487,
+ 25.005263048884622
+ ],
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ],
+ [
+ -81.36776516087487,
+ 25.005263048884622
+ ],
+ [
+ -81.38770882029826,
+ 24.97393754346293
+ ],
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ],
+ [
+ -81.38770882029826,
+ 24.97393754346293
+ ],
+ [
+ -81.36776516087487,
+ 24.94261203804124
+ ],
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ],
+ [
+ -81.36776516087487,
+ 24.94261203804124
+ ],
+ [
+ -81.32787784202812,
+ 24.94261203804124
+ ],
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ],
+ [
+ -81.32787784202812,
+ 24.94261203804124
+ ],
+ [
+ -81.30793418260473,
+ 24.97393754346293
+ ],
+ [
+ -81.34782150145149,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ],
+ [
+ -81.30793418260473,
+ 25.036588554306316
+ ],
+ [
+ -81.32787784202812,
+ 25.067914059728007
+ ],
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ],
+ [
+ -81.32787784202812,
+ 25.067914059728007
+ ],
+ [
+ -81.36776516087487,
+ 25.067914059728007
+ ],
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ],
+ [
+ -81.36776516087487,
+ 25.067914059728007
+ ],
+ [
+ -81.38770882029826,
+ 25.036588554306316
+ ],
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ],
+ [
+ -81.38770882029826,
+ 25.036588554306316
+ ],
+ [
+ -81.36776516087487,
+ 25.005263048884625
+ ],
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ],
+ [
+ -81.36776516087487,
+ 25.005263048884625
+ ],
+ [
+ -81.32787784202812,
+ 25.005263048884625
+ ],
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ],
+ [
+ -81.32787784202812,
+ 25.005263048884625
+ ],
+ [
+ -81.30793418260473,
+ 25.036588554306316
+ ],
+ [
+ -81.34782150145149,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ],
+ [
+ -81.30793418260473,
+ 25.099239565149702
+ ],
+ [
+ -81.32787784202812,
+ 25.130565070571393
+ ],
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ],
+ [
+ -81.32787784202812,
+ 25.130565070571393
+ ],
+ [
+ -81.36776516087487,
+ 25.130565070571393
+ ],
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ],
+ [
+ -81.36776516087487,
+ 25.130565070571393
+ ],
+ [
+ -81.38770882029826,
+ 25.099239565149702
+ ],
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ],
+ [
+ -81.38770882029826,
+ 25.099239565149702
+ ],
+ [
+ -81.36776516087487,
+ 25.06791405972801
+ ],
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ],
+ [
+ -81.36776516087487,
+ 25.06791405972801
+ ],
+ [
+ -81.32787784202812,
+ 25.06791405972801
+ ],
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ],
+ [
+ -81.32787784202812,
+ 25.06791405972801
+ ],
+ [
+ -81.30793418260473,
+ 25.099239565149702
+ ],
+ [
+ -81.34782150145149,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ],
+ [
+ -81.30793418260473,
+ 25.161890575993088
+ ],
+ [
+ -81.32787784202812,
+ 25.19321608141478
+ ],
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ],
+ [
+ -81.32787784202812,
+ 25.19321608141478
+ ],
+ [
+ -81.36776516087487,
+ 25.19321608141478
+ ],
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ],
+ [
+ -81.36776516087487,
+ 25.19321608141478
+ ],
+ [
+ -81.38770882029826,
+ 25.161890575993088
+ ],
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ],
+ [
+ -81.38770882029826,
+ 25.161890575993088
+ ],
+ [
+ -81.36776516087487,
+ 25.130565070571397
+ ],
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ],
+ [
+ -81.36776516087487,
+ 25.130565070571397
+ ],
+ [
+ -81.32787784202812,
+ 25.130565070571397
+ ],
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ],
+ [
+ -81.32787784202812,
+ 25.130565070571397
+ ],
+ [
+ -81.30793418260473,
+ 25.161890575993088
+ ],
+ [
+ -81.34782150145149,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ],
+ [
+ -81.30793418260473,
+ 25.224541586836473
+ ],
+ [
+ -81.32787784202812,
+ 25.255867092258164
+ ],
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ],
+ [
+ -81.32787784202812,
+ 25.255867092258164
+ ],
+ [
+ -81.36776516087487,
+ 25.255867092258164
+ ],
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ],
+ [
+ -81.36776516087487,
+ 25.255867092258164
+ ],
+ [
+ -81.38770882029826,
+ 25.224541586836473
+ ],
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ],
+ [
+ -81.38770882029826,
+ 25.224541586836473
+ ],
+ [
+ -81.36776516087487,
+ 25.193216081414782
+ ],
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ],
+ [
+ -81.36776516087487,
+ 25.193216081414782
+ ],
+ [
+ -81.32787784202812,
+ 25.193216081414782
+ ],
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ],
+ [
+ -81.32787784202812,
+ 25.193216081414782
+ ],
+ [
+ -81.30793418260473,
+ 25.224541586836473
+ ],
+ [
+ -81.34782150145149,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ],
+ [
+ -81.30793418260473,
+ 25.28719259767986
+ ],
+ [
+ -81.32787784202812,
+ 25.31851810310155
+ ],
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ],
+ [
+ -81.32787784202812,
+ 25.31851810310155
+ ],
+ [
+ -81.36776516087487,
+ 25.31851810310155
+ ],
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ],
+ [
+ -81.36776516087487,
+ 25.31851810310155
+ ],
+ [
+ -81.38770882029826,
+ 25.28719259767986
+ ],
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ],
+ [
+ -81.38770882029826,
+ 25.28719259767986
+ ],
+ [
+ -81.36776516087487,
+ 25.255867092258168
+ ],
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ],
+ [
+ -81.36776516087487,
+ 25.255867092258168
+ ],
+ [
+ -81.32787784202812,
+ 25.255867092258168
+ ],
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ],
+ [
+ -81.32787784202812,
+ 25.255867092258168
+ ],
+ [
+ -81.30793418260473,
+ 25.28719259767986
+ ],
+ [
+ -81.34782150145149,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ],
+ [
+ -81.30793418260473,
+ 25.349843608523244
+ ],
+ [
+ -81.32787784202812,
+ 25.381169113944935
+ ],
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ],
+ [
+ -81.32787784202812,
+ 25.381169113944935
+ ],
+ [
+ -81.36776516087487,
+ 25.381169113944935
+ ],
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ],
+ [
+ -81.36776516087487,
+ 25.381169113944935
+ ],
+ [
+ -81.38770882029826,
+ 25.349843608523244
+ ],
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ],
+ [
+ -81.38770882029826,
+ 25.349843608523244
+ ],
+ [
+ -81.36776516087487,
+ 25.318518103101553
+ ],
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ],
+ [
+ -81.36776516087487,
+ 25.318518103101553
+ ],
+ [
+ -81.32787784202812,
+ 25.318518103101553
+ ],
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ],
+ [
+ -81.32787784202812,
+ 25.318518103101553
+ ],
+ [
+ -81.30793418260473,
+ 25.349843608523244
+ ],
+ [
+ -81.34782150145149,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ],
+ [
+ -81.30793418260473,
+ 25.41249461936663
+ ],
+ [
+ -81.32787784202812,
+ 25.44382012478832
+ ],
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ],
+ [
+ -81.32787784202812,
+ 25.44382012478832
+ ],
+ [
+ -81.36776516087487,
+ 25.44382012478832
+ ],
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ],
+ [
+ -81.36776516087487,
+ 25.44382012478832
+ ],
+ [
+ -81.38770882029826,
+ 25.41249461936663
+ ],
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ],
+ [
+ -81.38770882029826,
+ 25.41249461936663
+ ],
+ [
+ -81.36776516087487,
+ 25.38116911394494
+ ],
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ],
+ [
+ -81.36776516087487,
+ 25.38116911394494
+ ],
+ [
+ -81.32787784202812,
+ 25.38116911394494
+ ],
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ],
+ [
+ -81.32787784202812,
+ 25.38116911394494
+ ],
+ [
+ -81.30793418260473,
+ 25.41249461936663
+ ],
+ [
+ -81.34782150145149,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ],
+ [
+ -81.30793418260473,
+ 25.475145630210015
+ ],
+ [
+ -81.32787784202812,
+ 25.506471135631706
+ ],
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ],
+ [
+ -81.32787784202812,
+ 25.506471135631706
+ ],
+ [
+ -81.36776516087487,
+ 25.506471135631706
+ ],
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ],
+ [
+ -81.36776516087487,
+ 25.506471135631706
+ ],
+ [
+ -81.38770882029826,
+ 25.475145630210015
+ ],
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ],
+ [
+ -81.38770882029826,
+ 25.475145630210015
+ ],
+ [
+ -81.36776516087487,
+ 25.443820124788324
+ ],
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ],
+ [
+ -81.36776516087487,
+ 25.443820124788324
+ ],
+ [
+ -81.32787784202812,
+ 25.443820124788324
+ ],
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ],
+ [
+ -81.32787784202812,
+ 25.443820124788324
+ ],
+ [
+ -81.30793418260473,
+ 25.475145630210015
+ ],
+ [
+ -81.34782150145149,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ],
+ [
+ -81.30793418260473,
+ 25.5377966410534
+ ],
+ [
+ -81.32787784202812,
+ 25.56912214647509
+ ],
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ],
+ [
+ -81.32787784202812,
+ 25.56912214647509
+ ],
+ [
+ -81.36776516087487,
+ 25.56912214647509
+ ],
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ],
+ [
+ -81.36776516087487,
+ 25.56912214647509
+ ],
+ [
+ -81.38770882029826,
+ 25.5377966410534
+ ],
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ],
+ [
+ -81.38770882029826,
+ 25.5377966410534
+ ],
+ [
+ -81.36776516087487,
+ 25.50647113563171
+ ],
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ],
+ [
+ -81.36776516087487,
+ 25.50647113563171
+ ],
+ [
+ -81.32787784202812,
+ 25.50647113563171
+ ],
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ],
+ [
+ -81.32787784202812,
+ 25.50647113563171
+ ],
+ [
+ -81.30793418260473,
+ 25.5377966410534
+ ],
+ [
+ -81.34782150145149,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ],
+ [
+ -81.30793418260473,
+ 25.600447651896786
+ ],
+ [
+ -81.32787784202812,
+ 25.631773157318477
+ ],
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ],
+ [
+ -81.32787784202812,
+ 25.631773157318477
+ ],
+ [
+ -81.36776516087487,
+ 25.631773157318477
+ ],
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ],
+ [
+ -81.36776516087487,
+ 25.631773157318477
+ ],
+ [
+ -81.38770882029826,
+ 25.600447651896786
+ ],
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ],
+ [
+ -81.38770882029826,
+ 25.600447651896786
+ ],
+ [
+ -81.36776516087487,
+ 25.569122146475095
+ ],
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ],
+ [
+ -81.36776516087487,
+ 25.569122146475095
+ ],
+ [
+ -81.32787784202812,
+ 25.569122146475095
+ ],
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ],
+ [
+ -81.32787784202812,
+ 25.569122146475095
+ ],
+ [
+ -81.30793418260473,
+ 25.600447651896786
+ ],
+ [
+ -81.34782150145149,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ],
+ [
+ -81.30793418260473,
+ 25.663098662740172
+ ],
+ [
+ -81.32787784202812,
+ 25.694424168161863
+ ],
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ],
+ [
+ -81.32787784202812,
+ 25.694424168161863
+ ],
+ [
+ -81.36776516087487,
+ 25.694424168161863
+ ],
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ],
+ [
+ -81.36776516087487,
+ 25.694424168161863
+ ],
+ [
+ -81.38770882029826,
+ 25.663098662740172
+ ],
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ],
+ [
+ -81.38770882029826,
+ 25.663098662740172
+ ],
+ [
+ -81.36776516087487,
+ 25.63177315731848
+ ],
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ],
+ [
+ -81.36776516087487,
+ 25.63177315731848
+ ],
+ [
+ -81.32787784202812,
+ 25.63177315731848
+ ],
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ],
+ [
+ -81.32787784202812,
+ 25.63177315731848
+ ],
+ [
+ -81.30793418260473,
+ 25.663098662740172
+ ],
+ [
+ -81.34782150145149,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ],
+ [
+ -81.30793418260473,
+ 25.725749673583557
+ ],
+ [
+ -81.32787784202812,
+ 25.75707517900525
+ ],
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ],
+ [
+ -81.32787784202812,
+ 25.75707517900525
+ ],
+ [
+ -81.36776516087487,
+ 25.75707517900525
+ ],
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ],
+ [
+ -81.36776516087487,
+ 25.75707517900525
+ ],
+ [
+ -81.38770882029826,
+ 25.725749673583557
+ ],
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ],
+ [
+ -81.38770882029826,
+ 25.725749673583557
+ ],
+ [
+ -81.36776516087487,
+ 25.694424168161866
+ ],
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ],
+ [
+ -81.36776516087487,
+ 25.694424168161866
+ ],
+ [
+ -81.32787784202812,
+ 25.694424168161866
+ ],
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ],
+ [
+ -81.32787784202812,
+ 25.694424168161866
+ ],
+ [
+ -81.30793418260473,
+ 25.725749673583557
+ ],
+ [
+ -81.34782150145149,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ],
+ [
+ -81.30793418260473,
+ 25.788400684426943
+ ],
+ [
+ -81.32787784202812,
+ 25.819726189848634
+ ],
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ],
+ [
+ -81.32787784202812,
+ 25.819726189848634
+ ],
+ [
+ -81.36776516087487,
+ 25.819726189848634
+ ],
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ],
+ [
+ -81.36776516087487,
+ 25.819726189848634
+ ],
+ [
+ -81.38770882029826,
+ 25.788400684426943
+ ],
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ],
+ [
+ -81.38770882029826,
+ 25.788400684426943
+ ],
+ [
+ -81.36776516087487,
+ 25.757075179005252
+ ],
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ],
+ [
+ -81.36776516087487,
+ 25.757075179005252
+ ],
+ [
+ -81.32787784202812,
+ 25.757075179005252
+ ],
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ],
+ [
+ -81.32787784202812,
+ 25.757075179005252
+ ],
+ [
+ -81.30793418260473,
+ 25.788400684426943
+ ],
+ [
+ -81.34782150145149,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ],
+ [
+ -81.30793418260473,
+ 25.85105169527033
+ ],
+ [
+ -81.32787784202812,
+ 25.88237720069202
+ ],
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ],
+ [
+ -81.32787784202812,
+ 25.88237720069202
+ ],
+ [
+ -81.36776516087487,
+ 25.88237720069202
+ ],
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ],
+ [
+ -81.36776516087487,
+ 25.88237720069202
+ ],
+ [
+ -81.38770882029826,
+ 25.85105169527033
+ ],
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ],
+ [
+ -81.38770882029826,
+ 25.85105169527033
+ ],
+ [
+ -81.36776516087487,
+ 25.819726189848637
+ ],
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ],
+ [
+ -81.36776516087487,
+ 25.819726189848637
+ ],
+ [
+ -81.32787784202812,
+ 25.819726189848637
+ ],
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ],
+ [
+ -81.32787784202812,
+ 25.819726189848637
+ ],
+ [
+ -81.30793418260473,
+ 25.85105169527033
+ ],
+ [
+ -81.34782150145149,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ],
+ [
+ -81.30793418260473,
+ 25.913702706113714
+ ],
+ [
+ -81.32787784202812,
+ 25.945028211535405
+ ],
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ],
+ [
+ -81.32787784202812,
+ 25.945028211535405
+ ],
+ [
+ -81.36776516087487,
+ 25.945028211535405
+ ],
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ],
+ [
+ -81.36776516087487,
+ 25.945028211535405
+ ],
+ [
+ -81.38770882029826,
+ 25.913702706113714
+ ],
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ],
+ [
+ -81.38770882029826,
+ 25.913702706113714
+ ],
+ [
+ -81.36776516087487,
+ 25.882377200692023
+ ],
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ],
+ [
+ -81.36776516087487,
+ 25.882377200692023
+ ],
+ [
+ -81.32787784202812,
+ 25.882377200692023
+ ],
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ],
+ [
+ -81.32787784202812,
+ 25.882377200692023
+ ],
+ [
+ -81.30793418260473,
+ 25.913702706113714
+ ],
+ [
+ -81.34782150145149,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ],
+ [
+ -81.30793418260473,
+ 25.9763537169571
+ ],
+ [
+ -81.32787784202812,
+ 26.00767922237879
+ ],
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ],
+ [
+ -81.32787784202812,
+ 26.00767922237879
+ ],
+ [
+ -81.36776516087487,
+ 26.00767922237879
+ ],
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ],
+ [
+ -81.36776516087487,
+ 26.00767922237879
+ ],
+ [
+ -81.38770882029826,
+ 25.9763537169571
+ ],
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ],
+ [
+ -81.38770882029826,
+ 25.9763537169571
+ ],
+ [
+ -81.36776516087487,
+ 25.94502821153541
+ ],
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ],
+ [
+ -81.36776516087487,
+ 25.94502821153541
+ ],
+ [
+ -81.32787784202812,
+ 25.94502821153541
+ ],
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ],
+ [
+ -81.32787784202812,
+ 25.94502821153541
+ ],
+ [
+ -81.30793418260473,
+ 25.9763537169571
+ ],
+ [
+ -81.34782150145149,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ],
+ [
+ -81.30793418260473,
+ 26.039004727800485
+ ],
+ [
+ -81.32787784202812,
+ 26.070330233222176
+ ],
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ],
+ [
+ -81.32787784202812,
+ 26.070330233222176
+ ],
+ [
+ -81.36776516087487,
+ 26.070330233222176
+ ],
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ],
+ [
+ -81.36776516087487,
+ 26.070330233222176
+ ],
+ [
+ -81.38770882029826,
+ 26.039004727800485
+ ],
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ],
+ [
+ -81.38770882029826,
+ 26.039004727800485
+ ],
+ [
+ -81.36776516087487,
+ 26.007679222378794
+ ],
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ],
+ [
+ -81.36776516087487,
+ 26.007679222378794
+ ],
+ [
+ -81.32787784202812,
+ 26.007679222378794
+ ],
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ],
+ [
+ -81.32787784202812,
+ 26.007679222378794
+ ],
+ [
+ -81.30793418260473,
+ 26.039004727800485
+ ],
+ [
+ -81.34782150145149,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ],
+ [
+ -81.30793418260473,
+ 26.10165573864387
+ ],
+ [
+ -81.32787784202812,
+ 26.13298124406556
+ ],
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ],
+ [
+ -81.32787784202812,
+ 26.13298124406556
+ ],
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ],
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ],
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ],
+ [
+ -81.38770882029826,
+ 26.10165573864387
+ ],
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ],
+ [
+ -81.38770882029826,
+ 26.10165573864387
+ ],
+ [
+ -81.36776516087487,
+ 26.07033023322218
+ ],
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ],
+ [
+ -81.36776516087487,
+ 26.07033023322218
+ ],
+ [
+ -81.32787784202812,
+ 26.07033023322218
+ ],
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ],
+ [
+ -81.32787784202812,
+ 26.07033023322218
+ ],
+ [
+ -81.30793418260473,
+ 26.10165573864387
+ ],
+ [
+ -81.34782150145149,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ],
+ [
+ -81.30793418260473,
+ 26.164306749487253
+ ],
+ [
+ -81.32787784202812,
+ 26.195632254908944
+ ],
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ],
+ [
+ -81.32787784202812,
+ 26.195632254908944
+ ],
+ [
+ -81.36776516087487,
+ 26.195632254908944
+ ],
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ],
+ [
+ -81.36776516087487,
+ 26.195632254908944
+ ],
+ [
+ -81.38770882029826,
+ 26.164306749487253
+ ],
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ],
+ [
+ -81.38770882029826,
+ 26.164306749487253
+ ],
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ],
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ],
+ [
+ -81.36776516087487,
+ 26.13298124406556
+ ],
+ [
+ -81.32787784202812,
+ 26.13298124406556
+ ],
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ],
+ [
+ -81.32787784202812,
+ 26.13298124406556
+ ],
+ [
+ -81.30793418260473,
+ 26.164306749487253
+ ],
+ [
+ -81.34782150145149,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ],
+ [
+ -81.30793418260473,
+ 26.22695776033064
+ ],
+ [
+ -81.32787784202812,
+ 26.258283265752333
+ ],
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ],
+ [
+ -81.32787784202812,
+ 26.258283265752333
+ ],
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ],
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ],
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ],
+ [
+ -81.38770882029826,
+ 26.22695776033064
+ ],
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ],
+ [
+ -81.38770882029826,
+ 26.22695776033064
+ ],
+ [
+ -81.36776516087487,
+ 26.19563225490895
+ ],
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ],
+ [
+ -81.36776516087487,
+ 26.19563225490895
+ ],
+ [
+ -81.32787784202812,
+ 26.19563225490895
+ ],
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ],
+ [
+ -81.32787784202812,
+ 26.19563225490895
+ ],
+ [
+ -81.30793418260473,
+ 26.22695776033064
+ ],
+ [
+ -81.34782150145149,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ],
+ [
+ -81.30793418260473,
+ 26.289608771174024
+ ],
+ [
+ -81.32787784202812,
+ 26.320934276595715
+ ],
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ],
+ [
+ -81.32787784202812,
+ 26.320934276595715
+ ],
+ [
+ -81.36776516087487,
+ 26.320934276595715
+ ],
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ],
+ [
+ -81.36776516087487,
+ 26.320934276595715
+ ],
+ [
+ -81.38770882029826,
+ 26.289608771174024
+ ],
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ],
+ [
+ -81.38770882029826,
+ 26.289608771174024
+ ],
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ],
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ],
+ [
+ -81.36776516087487,
+ 26.258283265752333
+ ],
+ [
+ -81.32787784202812,
+ 26.258283265752333
+ ],
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ],
+ [
+ -81.32787784202812,
+ 26.258283265752333
+ ],
+ [
+ -81.30793418260473,
+ 26.289608771174024
+ ],
+ [
+ -81.34782150145149,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ],
+ [
+ -81.30793418260473,
+ 26.35225978201741
+ ],
+ [
+ -81.32787784202812,
+ 26.3835852874391
+ ],
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ],
+ [
+ -81.32787784202812,
+ 26.3835852874391
+ ],
+ [
+ -81.36776516087487,
+ 26.3835852874391
+ ],
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ],
+ [
+ -81.36776516087487,
+ 26.3835852874391
+ ],
+ [
+ -81.38770882029826,
+ 26.35225978201741
+ ],
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ],
+ [
+ -81.38770882029826,
+ 26.35225978201741
+ ],
+ [
+ -81.36776516087487,
+ 26.320934276595718
+ ],
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ],
+ [
+ -81.36776516087487,
+ 26.320934276595718
+ ],
+ [
+ -81.32787784202812,
+ 26.320934276595718
+ ],
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ],
+ [
+ -81.32787784202812,
+ 26.320934276595718
+ ],
+ [
+ -81.30793418260473,
+ 26.35225978201741
+ ],
+ [
+ -81.34782150145149,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ],
+ [
+ -81.30793418260473,
+ 26.414910792860795
+ ],
+ [
+ -81.32787784202812,
+ 26.446236298282486
+ ],
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ],
+ [
+ -81.32787784202812,
+ 26.446236298282486
+ ],
+ [
+ -81.36776516087487,
+ 26.446236298282486
+ ],
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ],
+ [
+ -81.36776516087487,
+ 26.446236298282486
+ ],
+ [
+ -81.38770882029826,
+ 26.414910792860795
+ ],
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ],
+ [
+ -81.38770882029826,
+ 26.414910792860795
+ ],
+ [
+ -81.36776516087487,
+ 26.383585287439104
+ ],
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ],
+ [
+ -81.36776516087487,
+ 26.383585287439104
+ ],
+ [
+ -81.32787784202812,
+ 26.383585287439104
+ ],
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ],
+ [
+ -81.32787784202812,
+ 26.383585287439104
+ ],
+ [
+ -81.30793418260473,
+ 26.414910792860795
+ ],
+ [
+ -81.34782150145149,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ],
+ [
+ -81.24810320433457,
+ 24.942612038041236
+ ],
+ [
+ -81.26804686375796,
+ 24.973937543462927
+ ],
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ],
+ [
+ -81.26804686375796,
+ 24.973937543462927
+ ],
+ [
+ -81.30793418260471,
+ 24.973937543462927
+ ],
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ],
+ [
+ -81.30793418260471,
+ 24.973937543462927
+ ],
+ [
+ -81.3278778420281,
+ 24.942612038041236
+ ],
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ],
+ [
+ -81.3278778420281,
+ 24.942612038041236
+ ],
+ [
+ -81.30793418260471,
+ 24.911286532619545
+ ],
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ],
+ [
+ -81.30793418260471,
+ 24.911286532619545
+ ],
+ [
+ -81.26804686375796,
+ 24.911286532619545
+ ],
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ],
+ [
+ -81.26804686375796,
+ 24.911286532619545
+ ],
+ [
+ -81.24810320433457,
+ 24.942612038041236
+ ],
+ [
+ -81.28799052318134,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ],
+ [
+ -81.24810320433457,
+ 25.005263048884622
+ ],
+ [
+ -81.26804686375796,
+ 25.036588554306313
+ ],
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ],
+ [
+ -81.26804686375796,
+ 25.036588554306313
+ ],
+ [
+ -81.30793418260471,
+ 25.036588554306313
+ ],
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ],
+ [
+ -81.30793418260471,
+ 25.036588554306313
+ ],
+ [
+ -81.3278778420281,
+ 25.005263048884622
+ ],
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ],
+ [
+ -81.3278778420281,
+ 25.005263048884622
+ ],
+ [
+ -81.30793418260471,
+ 24.97393754346293
+ ],
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ],
+ [
+ -81.30793418260471,
+ 24.97393754346293
+ ],
+ [
+ -81.26804686375796,
+ 24.97393754346293
+ ],
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ],
+ [
+ -81.26804686375796,
+ 24.97393754346293
+ ],
+ [
+ -81.24810320433457,
+ 25.005263048884622
+ ],
+ [
+ -81.28799052318134,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ],
+ [
+ -81.24810320433457,
+ 25.067914059728007
+ ],
+ [
+ -81.26804686375796,
+ 25.0992395651497
+ ],
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ],
+ [
+ -81.26804686375796,
+ 25.0992395651497
+ ],
+ [
+ -81.30793418260471,
+ 25.0992395651497
+ ],
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ],
+ [
+ -81.30793418260471,
+ 25.0992395651497
+ ],
+ [
+ -81.3278778420281,
+ 25.067914059728007
+ ],
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ],
+ [
+ -81.3278778420281,
+ 25.067914059728007
+ ],
+ [
+ -81.30793418260471,
+ 25.036588554306316
+ ],
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ],
+ [
+ -81.30793418260471,
+ 25.036588554306316
+ ],
+ [
+ -81.26804686375796,
+ 25.036588554306316
+ ],
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ],
+ [
+ -81.26804686375796,
+ 25.036588554306316
+ ],
+ [
+ -81.24810320433457,
+ 25.067914059728007
+ ],
+ [
+ -81.28799052318134,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ],
+ [
+ -81.24810320433457,
+ 25.130565070571393
+ ],
+ [
+ -81.26804686375796,
+ 25.161890575993084
+ ],
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ],
+ [
+ -81.26804686375796,
+ 25.161890575993084
+ ],
+ [
+ -81.30793418260471,
+ 25.161890575993084
+ ],
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ],
+ [
+ -81.30793418260471,
+ 25.161890575993084
+ ],
+ [
+ -81.3278778420281,
+ 25.130565070571393
+ ],
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ],
+ [
+ -81.3278778420281,
+ 25.130565070571393
+ ],
+ [
+ -81.30793418260471,
+ 25.099239565149702
+ ],
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ],
+ [
+ -81.30793418260471,
+ 25.099239565149702
+ ],
+ [
+ -81.26804686375796,
+ 25.099239565149702
+ ],
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ],
+ [
+ -81.26804686375796,
+ 25.099239565149702
+ ],
+ [
+ -81.24810320433457,
+ 25.130565070571393
+ ],
+ [
+ -81.28799052318134,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ],
+ [
+ -81.24810320433457,
+ 25.19321608141478
+ ],
+ [
+ -81.26804686375796,
+ 25.22454158683647
+ ],
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ],
+ [
+ -81.26804686375796,
+ 25.22454158683647
+ ],
+ [
+ -81.30793418260471,
+ 25.22454158683647
+ ],
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ],
+ [
+ -81.30793418260471,
+ 25.22454158683647
+ ],
+ [
+ -81.3278778420281,
+ 25.19321608141478
+ ],
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ],
+ [
+ -81.3278778420281,
+ 25.19321608141478
+ ],
+ [
+ -81.30793418260471,
+ 25.161890575993088
+ ],
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ],
+ [
+ -81.30793418260471,
+ 25.161890575993088
+ ],
+ [
+ -81.26804686375796,
+ 25.161890575993088
+ ],
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ],
+ [
+ -81.26804686375796,
+ 25.161890575993088
+ ],
+ [
+ -81.24810320433457,
+ 25.19321608141478
+ ],
+ [
+ -81.28799052318134,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ],
+ [
+ -81.24810320433457,
+ 25.255867092258164
+ ],
+ [
+ -81.26804686375796,
+ 25.287192597679855
+ ],
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ],
+ [
+ -81.26804686375796,
+ 25.287192597679855
+ ],
+ [
+ -81.30793418260471,
+ 25.287192597679855
+ ],
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ],
+ [
+ -81.30793418260471,
+ 25.287192597679855
+ ],
+ [
+ -81.3278778420281,
+ 25.255867092258164
+ ],
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ],
+ [
+ -81.3278778420281,
+ 25.255867092258164
+ ],
+ [
+ -81.30793418260471,
+ 25.224541586836473
+ ],
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ],
+ [
+ -81.30793418260471,
+ 25.224541586836473
+ ],
+ [
+ -81.26804686375796,
+ 25.224541586836473
+ ],
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ],
+ [
+ -81.26804686375796,
+ 25.224541586836473
+ ],
+ [
+ -81.24810320433457,
+ 25.255867092258164
+ ],
+ [
+ -81.28799052318134,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ],
+ [
+ -81.24810320433457,
+ 25.31851810310155
+ ],
+ [
+ -81.26804686375796,
+ 25.34984360852324
+ ],
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ],
+ [
+ -81.26804686375796,
+ 25.34984360852324
+ ],
+ [
+ -81.30793418260471,
+ 25.34984360852324
+ ],
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ],
+ [
+ -81.30793418260471,
+ 25.34984360852324
+ ],
+ [
+ -81.3278778420281,
+ 25.31851810310155
+ ],
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ],
+ [
+ -81.3278778420281,
+ 25.31851810310155
+ ],
+ [
+ -81.30793418260471,
+ 25.28719259767986
+ ],
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ],
+ [
+ -81.30793418260471,
+ 25.28719259767986
+ ],
+ [
+ -81.26804686375796,
+ 25.28719259767986
+ ],
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ],
+ [
+ -81.26804686375796,
+ 25.28719259767986
+ ],
+ [
+ -81.24810320433457,
+ 25.31851810310155
+ ],
+ [
+ -81.28799052318134,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ],
+ [
+ -81.24810320433457,
+ 25.381169113944935
+ ],
+ [
+ -81.26804686375796,
+ 25.412494619366626
+ ],
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ],
+ [
+ -81.26804686375796,
+ 25.412494619366626
+ ],
+ [
+ -81.30793418260471,
+ 25.412494619366626
+ ],
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ],
+ [
+ -81.30793418260471,
+ 25.412494619366626
+ ],
+ [
+ -81.3278778420281,
+ 25.381169113944935
+ ],
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ],
+ [
+ -81.3278778420281,
+ 25.381169113944935
+ ],
+ [
+ -81.30793418260471,
+ 25.349843608523244
+ ],
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ],
+ [
+ -81.30793418260471,
+ 25.349843608523244
+ ],
+ [
+ -81.26804686375796,
+ 25.349843608523244
+ ],
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ],
+ [
+ -81.26804686375796,
+ 25.349843608523244
+ ],
+ [
+ -81.24810320433457,
+ 25.381169113944935
+ ],
+ [
+ -81.28799052318134,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ],
+ [
+ -81.24810320433457,
+ 25.44382012478832
+ ],
+ [
+ -81.26804686375796,
+ 25.47514563021001
+ ],
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ],
+ [
+ -81.26804686375796,
+ 25.47514563021001
+ ],
+ [
+ -81.30793418260471,
+ 25.47514563021001
+ ],
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ],
+ [
+ -81.30793418260471,
+ 25.47514563021001
+ ],
+ [
+ -81.3278778420281,
+ 25.44382012478832
+ ],
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ],
+ [
+ -81.3278778420281,
+ 25.44382012478832
+ ],
+ [
+ -81.30793418260471,
+ 25.41249461936663
+ ],
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ],
+ [
+ -81.30793418260471,
+ 25.41249461936663
+ ],
+ [
+ -81.26804686375796,
+ 25.41249461936663
+ ],
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ],
+ [
+ -81.26804686375796,
+ 25.41249461936663
+ ],
+ [
+ -81.24810320433457,
+ 25.44382012478832
+ ],
+ [
+ -81.28799052318134,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ],
+ [
+ -81.24810320433457,
+ 25.506471135631706
+ ],
+ [
+ -81.26804686375796,
+ 25.537796641053397
+ ],
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ],
+ [
+ -81.26804686375796,
+ 25.537796641053397
+ ],
+ [
+ -81.30793418260471,
+ 25.537796641053397
+ ],
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ],
+ [
+ -81.30793418260471,
+ 25.537796641053397
+ ],
+ [
+ -81.3278778420281,
+ 25.506471135631706
+ ],
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ],
+ [
+ -81.3278778420281,
+ 25.506471135631706
+ ],
+ [
+ -81.30793418260471,
+ 25.475145630210015
+ ],
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ],
+ [
+ -81.30793418260471,
+ 25.475145630210015
+ ],
+ [
+ -81.26804686375796,
+ 25.475145630210015
+ ],
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ],
+ [
+ -81.26804686375796,
+ 25.475145630210015
+ ],
+ [
+ -81.24810320433457,
+ 25.506471135631706
+ ],
+ [
+ -81.28799052318134,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ],
+ [
+ -81.24810320433457,
+ 25.56912214647509
+ ],
+ [
+ -81.26804686375796,
+ 25.600447651896783
+ ],
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ],
+ [
+ -81.26804686375796,
+ 25.600447651896783
+ ],
+ [
+ -81.30793418260471,
+ 25.600447651896783
+ ],
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ],
+ [
+ -81.30793418260471,
+ 25.600447651896783
+ ],
+ [
+ -81.3278778420281,
+ 25.56912214647509
+ ],
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ],
+ [
+ -81.3278778420281,
+ 25.56912214647509
+ ],
+ [
+ -81.30793418260471,
+ 25.5377966410534
+ ],
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ],
+ [
+ -81.30793418260471,
+ 25.5377966410534
+ ],
+ [
+ -81.26804686375796,
+ 25.5377966410534
+ ],
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ],
+ [
+ -81.26804686375796,
+ 25.5377966410534
+ ],
+ [
+ -81.24810320433457,
+ 25.56912214647509
+ ],
+ [
+ -81.28799052318134,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ],
+ [
+ -81.24810320433457,
+ 25.631773157318477
+ ],
+ [
+ -81.26804686375796,
+ 25.66309866274017
+ ],
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ],
+ [
+ -81.26804686375796,
+ 25.66309866274017
+ ],
+ [
+ -81.30793418260471,
+ 25.66309866274017
+ ],
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ],
+ [
+ -81.30793418260471,
+ 25.66309866274017
+ ],
+ [
+ -81.3278778420281,
+ 25.631773157318477
+ ],
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ],
+ [
+ -81.3278778420281,
+ 25.631773157318477
+ ],
+ [
+ -81.30793418260471,
+ 25.600447651896786
+ ],
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ],
+ [
+ -81.30793418260471,
+ 25.600447651896786
+ ],
+ [
+ -81.26804686375796,
+ 25.600447651896786
+ ],
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ],
+ [
+ -81.26804686375796,
+ 25.600447651896786
+ ],
+ [
+ -81.24810320433457,
+ 25.631773157318477
+ ],
+ [
+ -81.28799052318134,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ],
+ [
+ -81.24810320433457,
+ 25.694424168161863
+ ],
+ [
+ -81.26804686375796,
+ 25.725749673583554
+ ],
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ],
+ [
+ -81.26804686375796,
+ 25.725749673583554
+ ],
+ [
+ -81.30793418260471,
+ 25.725749673583554
+ ],
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ],
+ [
+ -81.30793418260471,
+ 25.725749673583554
+ ],
+ [
+ -81.3278778420281,
+ 25.694424168161863
+ ],
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ],
+ [
+ -81.3278778420281,
+ 25.694424168161863
+ ],
+ [
+ -81.30793418260471,
+ 25.663098662740172
+ ],
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ],
+ [
+ -81.30793418260471,
+ 25.663098662740172
+ ],
+ [
+ -81.26804686375796,
+ 25.663098662740172
+ ],
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ],
+ [
+ -81.26804686375796,
+ 25.663098662740172
+ ],
+ [
+ -81.24810320433457,
+ 25.694424168161863
+ ],
+ [
+ -81.28799052318134,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ],
+ [
+ -81.24810320433457,
+ 25.75707517900525
+ ],
+ [
+ -81.26804686375796,
+ 25.78840068442694
+ ],
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ],
+ [
+ -81.26804686375796,
+ 25.78840068442694
+ ],
+ [
+ -81.30793418260471,
+ 25.78840068442694
+ ],
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ],
+ [
+ -81.30793418260471,
+ 25.78840068442694
+ ],
+ [
+ -81.3278778420281,
+ 25.75707517900525
+ ],
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ],
+ [
+ -81.3278778420281,
+ 25.75707517900525
+ ],
+ [
+ -81.30793418260471,
+ 25.725749673583557
+ ],
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ],
+ [
+ -81.30793418260471,
+ 25.725749673583557
+ ],
+ [
+ -81.26804686375796,
+ 25.725749673583557
+ ],
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ],
+ [
+ -81.26804686375796,
+ 25.725749673583557
+ ],
+ [
+ -81.24810320433457,
+ 25.75707517900525
+ ],
+ [
+ -81.28799052318134,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ],
+ [
+ -81.24810320433457,
+ 25.819726189848634
+ ],
+ [
+ -81.26804686375796,
+ 25.851051695270325
+ ],
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ],
+ [
+ -81.26804686375796,
+ 25.851051695270325
+ ],
+ [
+ -81.30793418260471,
+ 25.851051695270325
+ ],
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ],
+ [
+ -81.30793418260471,
+ 25.851051695270325
+ ],
+ [
+ -81.3278778420281,
+ 25.819726189848634
+ ],
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ],
+ [
+ -81.3278778420281,
+ 25.819726189848634
+ ],
+ [
+ -81.30793418260471,
+ 25.788400684426943
+ ],
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ],
+ [
+ -81.30793418260471,
+ 25.788400684426943
+ ],
+ [
+ -81.26804686375796,
+ 25.788400684426943
+ ],
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ],
+ [
+ -81.26804686375796,
+ 25.788400684426943
+ ],
+ [
+ -81.24810320433457,
+ 25.819726189848634
+ ],
+ [
+ -81.28799052318134,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ],
+ [
+ -81.24810320433457,
+ 25.88237720069202
+ ],
+ [
+ -81.26804686375796,
+ 25.91370270611371
+ ],
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ],
+ [
+ -81.26804686375796,
+ 25.91370270611371
+ ],
+ [
+ -81.30793418260471,
+ 25.91370270611371
+ ],
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ],
+ [
+ -81.30793418260471,
+ 25.91370270611371
+ ],
+ [
+ -81.3278778420281,
+ 25.88237720069202
+ ],
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ],
+ [
+ -81.3278778420281,
+ 25.88237720069202
+ ],
+ [
+ -81.30793418260471,
+ 25.85105169527033
+ ],
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ],
+ [
+ -81.30793418260471,
+ 25.85105169527033
+ ],
+ [
+ -81.26804686375796,
+ 25.85105169527033
+ ],
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ],
+ [
+ -81.26804686375796,
+ 25.85105169527033
+ ],
+ [
+ -81.24810320433457,
+ 25.88237720069202
+ ],
+ [
+ -81.28799052318134,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ],
+ [
+ -81.24810320433457,
+ 25.945028211535405
+ ],
+ [
+ -81.26804686375796,
+ 25.976353716957096
+ ],
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ],
+ [
+ -81.26804686375796,
+ 25.976353716957096
+ ],
+ [
+ -81.30793418260471,
+ 25.976353716957096
+ ],
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ],
+ [
+ -81.30793418260471,
+ 25.976353716957096
+ ],
+ [
+ -81.3278778420281,
+ 25.945028211535405
+ ],
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ],
+ [
+ -81.3278778420281,
+ 25.945028211535405
+ ],
+ [
+ -81.30793418260471,
+ 25.913702706113714
+ ],
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ],
+ [
+ -81.30793418260471,
+ 25.913702706113714
+ ],
+ [
+ -81.26804686375796,
+ 25.913702706113714
+ ],
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ],
+ [
+ -81.26804686375796,
+ 25.913702706113714
+ ],
+ [
+ -81.24810320433457,
+ 25.945028211535405
+ ],
+ [
+ -81.28799052318134,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ],
+ [
+ -81.24810320433457,
+ 26.00767922237879
+ ],
+ [
+ -81.26804686375796,
+ 26.03900472780048
+ ],
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ],
+ [
+ -81.26804686375796,
+ 26.03900472780048
+ ],
+ [
+ -81.30793418260471,
+ 26.03900472780048
+ ],
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ],
+ [
+ -81.30793418260471,
+ 26.03900472780048
+ ],
+ [
+ -81.3278778420281,
+ 26.00767922237879
+ ],
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ],
+ [
+ -81.3278778420281,
+ 26.00767922237879
+ ],
+ [
+ -81.30793418260471,
+ 25.9763537169571
+ ],
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ],
+ [
+ -81.30793418260471,
+ 25.9763537169571
+ ],
+ [
+ -81.26804686375796,
+ 25.9763537169571
+ ],
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ],
+ [
+ -81.26804686375796,
+ 25.9763537169571
+ ],
+ [
+ -81.24810320433457,
+ 26.00767922237879
+ ],
+ [
+ -81.28799052318134,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ],
+ [
+ -81.24810320433457,
+ 26.070330233222176
+ ],
+ [
+ -81.26804686375796,
+ 26.101655738643867
+ ],
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ],
+ [
+ -81.26804686375796,
+ 26.101655738643867
+ ],
+ [
+ -81.30793418260471,
+ 26.101655738643867
+ ],
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ],
+ [
+ -81.30793418260471,
+ 26.101655738643867
+ ],
+ [
+ -81.3278778420281,
+ 26.070330233222176
+ ],
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ],
+ [
+ -81.3278778420281,
+ 26.070330233222176
+ ],
+ [
+ -81.30793418260471,
+ 26.039004727800485
+ ],
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ],
+ [
+ -81.30793418260471,
+ 26.039004727800485
+ ],
+ [
+ -81.26804686375796,
+ 26.039004727800485
+ ],
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ],
+ [
+ -81.26804686375796,
+ 26.039004727800485
+ ],
+ [
+ -81.24810320433457,
+ 26.070330233222176
+ ],
+ [
+ -81.28799052318134,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ],
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ],
+ [
+ -81.26804686375796,
+ 26.164306749487253
+ ],
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ],
+ [
+ -81.26804686375796,
+ 26.164306749487253
+ ],
+ [
+ -81.30793418260471,
+ 26.164306749487253
+ ],
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ],
+ [
+ -81.30793418260471,
+ 26.164306749487253
+ ],
+ [
+ -81.3278778420281,
+ 26.13298124406556
+ ],
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ],
+ [
+ -81.3278778420281,
+ 26.13298124406556
+ ],
+ [
+ -81.30793418260471,
+ 26.10165573864387
+ ],
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ],
+ [
+ -81.30793418260471,
+ 26.10165573864387
+ ],
+ [
+ -81.26804686375796,
+ 26.10165573864387
+ ],
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ],
+ [
+ -81.26804686375796,
+ 26.10165573864387
+ ],
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ],
+ [
+ -81.28799052318134,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ],
+ [
+ -81.24810320433457,
+ 26.195632254908944
+ ],
+ [
+ -81.26804686375796,
+ 26.226957760330635
+ ],
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ],
+ [
+ -81.26804686375796,
+ 26.226957760330635
+ ],
+ [
+ -81.30793418260471,
+ 26.226957760330635
+ ],
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ],
+ [
+ -81.30793418260471,
+ 26.226957760330635
+ ],
+ [
+ -81.3278778420281,
+ 26.195632254908944
+ ],
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ],
+ [
+ -81.3278778420281,
+ 26.195632254908944
+ ],
+ [
+ -81.30793418260471,
+ 26.164306749487253
+ ],
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ],
+ [
+ -81.30793418260471,
+ 26.164306749487253
+ ],
+ [
+ -81.26804686375796,
+ 26.164306749487253
+ ],
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ],
+ [
+ -81.26804686375796,
+ 26.164306749487253
+ ],
+ [
+ -81.24810320433457,
+ 26.195632254908944
+ ],
+ [
+ -81.28799052318134,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ],
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ],
+ [
+ -81.26804686375796,
+ 26.289608771174024
+ ],
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ],
+ [
+ -81.26804686375796,
+ 26.289608771174024
+ ],
+ [
+ -81.30793418260471,
+ 26.289608771174024
+ ],
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ],
+ [
+ -81.30793418260471,
+ 26.289608771174024
+ ],
+ [
+ -81.3278778420281,
+ 26.258283265752333
+ ],
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ],
+ [
+ -81.3278778420281,
+ 26.258283265752333
+ ],
+ [
+ -81.30793418260471,
+ 26.22695776033064
+ ],
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ],
+ [
+ -81.30793418260471,
+ 26.22695776033064
+ ],
+ [
+ -81.26804686375796,
+ 26.22695776033064
+ ],
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ],
+ [
+ -81.26804686375796,
+ 26.22695776033064
+ ],
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ],
+ [
+ -81.28799052318134,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ],
+ [
+ -81.24810320433457,
+ 26.320934276595715
+ ],
+ [
+ -81.26804686375796,
+ 26.352259782017406
+ ],
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ],
+ [
+ -81.26804686375796,
+ 26.352259782017406
+ ],
+ [
+ -81.30793418260471,
+ 26.352259782017406
+ ],
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ],
+ [
+ -81.30793418260471,
+ 26.352259782017406
+ ],
+ [
+ -81.3278778420281,
+ 26.320934276595715
+ ],
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ],
+ [
+ -81.3278778420281,
+ 26.320934276595715
+ ],
+ [
+ -81.30793418260471,
+ 26.289608771174024
+ ],
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ],
+ [
+ -81.30793418260471,
+ 26.289608771174024
+ ],
+ [
+ -81.26804686375796,
+ 26.289608771174024
+ ],
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ],
+ [
+ -81.26804686375796,
+ 26.289608771174024
+ ],
+ [
+ -81.24810320433457,
+ 26.320934276595715
+ ],
+ [
+ -81.28799052318134,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ],
+ [
+ -81.24810320433457,
+ 26.3835852874391
+ ],
+ [
+ -81.26804686375796,
+ 26.41491079286079
+ ],
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ],
+ [
+ -81.26804686375796,
+ 26.41491079286079
+ ],
+ [
+ -81.30793418260471,
+ 26.41491079286079
+ ],
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ],
+ [
+ -81.30793418260471,
+ 26.41491079286079
+ ],
+ [
+ -81.3278778420281,
+ 26.3835852874391
+ ],
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ],
+ [
+ -81.3278778420281,
+ 26.3835852874391
+ ],
+ [
+ -81.30793418260471,
+ 26.35225978201741
+ ],
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ],
+ [
+ -81.30793418260471,
+ 26.35225978201741
+ ],
+ [
+ -81.26804686375796,
+ 26.35225978201741
+ ],
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ],
+ [
+ -81.26804686375796,
+ 26.35225978201741
+ ],
+ [
+ -81.24810320433457,
+ 26.3835852874391
+ ],
+ [
+ -81.28799052318134,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ],
+ [
+ -81.24810320433457,
+ 26.446236298282486
+ ],
+ [
+ -81.26804686375796,
+ 26.477561803704177
+ ],
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ],
+ [
+ -81.26804686375796,
+ 26.477561803704177
+ ],
+ [
+ -81.30793418260471,
+ 26.477561803704177
+ ],
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ],
+ [
+ -81.30793418260471,
+ 26.477561803704177
+ ],
+ [
+ -81.3278778420281,
+ 26.446236298282486
+ ],
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ],
+ [
+ -81.3278778420281,
+ 26.446236298282486
+ ],
+ [
+ -81.30793418260471,
+ 26.414910792860795
+ ],
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ],
+ [
+ -81.30793418260471,
+ 26.414910792860795
+ ],
+ [
+ -81.26804686375796,
+ 26.414910792860795
+ ],
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ],
+ [
+ -81.26804686375796,
+ 26.414910792860795
+ ],
+ [
+ -81.24810320433457,
+ 26.446236298282486
+ ],
+ [
+ -81.28799052318134,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ],
+ [
+ -81.18827222606443,
+ 24.911286532619545
+ ],
+ [
+ -81.20821588548782,
+ 24.942612038041236
+ ],
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ],
+ [
+ -81.20821588548782,
+ 24.942612038041236
+ ],
+ [
+ -81.24810320433457,
+ 24.942612038041236
+ ],
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ],
+ [
+ -81.24810320433457,
+ 24.942612038041236
+ ],
+ [
+ -81.26804686375796,
+ 24.911286532619545
+ ],
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ],
+ [
+ -81.26804686375796,
+ 24.911286532619545
+ ],
+ [
+ -81.24810320433457,
+ 24.879961027197854
+ ],
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ],
+ [
+ -81.24810320433457,
+ 24.879961027197854
+ ],
+ [
+ -81.20821588548782,
+ 24.879961027197854
+ ],
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ],
+ [
+ -81.20821588548782,
+ 24.879961027197854
+ ],
+ [
+ -81.18827222606443,
+ 24.911286532619545
+ ],
+ [
+ -81.2281595449112,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ],
+ [
+ -81.18827222606443,
+ 24.97393754346293
+ ],
+ [
+ -81.20821588548782,
+ 25.005263048884622
+ ],
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ],
+ [
+ -81.20821588548782,
+ 25.005263048884622
+ ],
+ [
+ -81.24810320433457,
+ 25.005263048884622
+ ],
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ],
+ [
+ -81.24810320433457,
+ 25.005263048884622
+ ],
+ [
+ -81.26804686375796,
+ 24.97393754346293
+ ],
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ],
+ [
+ -81.26804686375796,
+ 24.97393754346293
+ ],
+ [
+ -81.24810320433457,
+ 24.94261203804124
+ ],
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ],
+ [
+ -81.24810320433457,
+ 24.94261203804124
+ ],
+ [
+ -81.20821588548782,
+ 24.94261203804124
+ ],
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ],
+ [
+ -81.20821588548782,
+ 24.94261203804124
+ ],
+ [
+ -81.18827222606443,
+ 24.97393754346293
+ ],
+ [
+ -81.2281595449112,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ],
+ [
+ -81.18827222606443,
+ 25.036588554306316
+ ],
+ [
+ -81.20821588548782,
+ 25.067914059728007
+ ],
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ],
+ [
+ -81.20821588548782,
+ 25.067914059728007
+ ],
+ [
+ -81.24810320433457,
+ 25.067914059728007
+ ],
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ],
+ [
+ -81.24810320433457,
+ 25.067914059728007
+ ],
+ [
+ -81.26804686375796,
+ 25.036588554306316
+ ],
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ],
+ [
+ -81.26804686375796,
+ 25.036588554306316
+ ],
+ [
+ -81.24810320433457,
+ 25.005263048884625
+ ],
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ],
+ [
+ -81.24810320433457,
+ 25.005263048884625
+ ],
+ [
+ -81.20821588548782,
+ 25.005263048884625
+ ],
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ],
+ [
+ -81.20821588548782,
+ 25.005263048884625
+ ],
+ [
+ -81.18827222606443,
+ 25.036588554306316
+ ],
+ [
+ -81.2281595449112,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ],
+ [
+ -81.18827222606443,
+ 25.099239565149702
+ ],
+ [
+ -81.20821588548782,
+ 25.130565070571393
+ ],
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ],
+ [
+ -81.20821588548782,
+ 25.130565070571393
+ ],
+ [
+ -81.24810320433457,
+ 25.130565070571393
+ ],
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ],
+ [
+ -81.24810320433457,
+ 25.130565070571393
+ ],
+ [
+ -81.26804686375796,
+ 25.099239565149702
+ ],
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ],
+ [
+ -81.26804686375796,
+ 25.099239565149702
+ ],
+ [
+ -81.24810320433457,
+ 25.06791405972801
+ ],
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ],
+ [
+ -81.24810320433457,
+ 25.06791405972801
+ ],
+ [
+ -81.20821588548782,
+ 25.06791405972801
+ ],
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ],
+ [
+ -81.20821588548782,
+ 25.06791405972801
+ ],
+ [
+ -81.18827222606443,
+ 25.099239565149702
+ ],
+ [
+ -81.2281595449112,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ],
+ [
+ -81.18827222606443,
+ 25.161890575993088
+ ],
+ [
+ -81.20821588548782,
+ 25.19321608141478
+ ],
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ],
+ [
+ -81.20821588548782,
+ 25.19321608141478
+ ],
+ [
+ -81.24810320433457,
+ 25.19321608141478
+ ],
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ],
+ [
+ -81.24810320433457,
+ 25.19321608141478
+ ],
+ [
+ -81.26804686375796,
+ 25.161890575993088
+ ],
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ],
+ [
+ -81.26804686375796,
+ 25.161890575993088
+ ],
+ [
+ -81.24810320433457,
+ 25.130565070571397
+ ],
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ],
+ [
+ -81.24810320433457,
+ 25.130565070571397
+ ],
+ [
+ -81.20821588548782,
+ 25.130565070571397
+ ],
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ],
+ [
+ -81.20821588548782,
+ 25.130565070571397
+ ],
+ [
+ -81.18827222606443,
+ 25.161890575993088
+ ],
+ [
+ -81.2281595449112,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ],
+ [
+ -81.18827222606443,
+ 25.224541586836473
+ ],
+ [
+ -81.20821588548782,
+ 25.255867092258164
+ ],
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ],
+ [
+ -81.20821588548782,
+ 25.255867092258164
+ ],
+ [
+ -81.24810320433457,
+ 25.255867092258164
+ ],
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ],
+ [
+ -81.24810320433457,
+ 25.255867092258164
+ ],
+ [
+ -81.26804686375796,
+ 25.224541586836473
+ ],
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ],
+ [
+ -81.26804686375796,
+ 25.224541586836473
+ ],
+ [
+ -81.24810320433457,
+ 25.193216081414782
+ ],
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ],
+ [
+ -81.24810320433457,
+ 25.193216081414782
+ ],
+ [
+ -81.20821588548782,
+ 25.193216081414782
+ ],
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ],
+ [
+ -81.20821588548782,
+ 25.193216081414782
+ ],
+ [
+ -81.18827222606443,
+ 25.224541586836473
+ ],
+ [
+ -81.2281595449112,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ],
+ [
+ -81.18827222606443,
+ 25.28719259767986
+ ],
+ [
+ -81.20821588548782,
+ 25.31851810310155
+ ],
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ],
+ [
+ -81.20821588548782,
+ 25.31851810310155
+ ],
+ [
+ -81.24810320433457,
+ 25.31851810310155
+ ],
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ],
+ [
+ -81.24810320433457,
+ 25.31851810310155
+ ],
+ [
+ -81.26804686375796,
+ 25.28719259767986
+ ],
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ],
+ [
+ -81.26804686375796,
+ 25.28719259767986
+ ],
+ [
+ -81.24810320433457,
+ 25.255867092258168
+ ],
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ],
+ [
+ -81.24810320433457,
+ 25.255867092258168
+ ],
+ [
+ -81.20821588548782,
+ 25.255867092258168
+ ],
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ],
+ [
+ -81.20821588548782,
+ 25.255867092258168
+ ],
+ [
+ -81.18827222606443,
+ 25.28719259767986
+ ],
+ [
+ -81.2281595449112,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ],
+ [
+ -81.18827222606443,
+ 25.349843608523244
+ ],
+ [
+ -81.20821588548782,
+ 25.381169113944935
+ ],
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ],
+ [
+ -81.20821588548782,
+ 25.381169113944935
+ ],
+ [
+ -81.24810320433457,
+ 25.381169113944935
+ ],
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ],
+ [
+ -81.24810320433457,
+ 25.381169113944935
+ ],
+ [
+ -81.26804686375796,
+ 25.349843608523244
+ ],
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ],
+ [
+ -81.26804686375796,
+ 25.349843608523244
+ ],
+ [
+ -81.24810320433457,
+ 25.318518103101553
+ ],
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ],
+ [
+ -81.24810320433457,
+ 25.318518103101553
+ ],
+ [
+ -81.20821588548782,
+ 25.318518103101553
+ ],
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ],
+ [
+ -81.20821588548782,
+ 25.318518103101553
+ ],
+ [
+ -81.18827222606443,
+ 25.349843608523244
+ ],
+ [
+ -81.2281595449112,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ],
+ [
+ -81.18827222606443,
+ 25.41249461936663
+ ],
+ [
+ -81.20821588548782,
+ 25.44382012478832
+ ],
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ],
+ [
+ -81.20821588548782,
+ 25.44382012478832
+ ],
+ [
+ -81.24810320433457,
+ 25.44382012478832
+ ],
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ],
+ [
+ -81.24810320433457,
+ 25.44382012478832
+ ],
+ [
+ -81.26804686375796,
+ 25.41249461936663
+ ],
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ],
+ [
+ -81.26804686375796,
+ 25.41249461936663
+ ],
+ [
+ -81.24810320433457,
+ 25.38116911394494
+ ],
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ],
+ [
+ -81.24810320433457,
+ 25.38116911394494
+ ],
+ [
+ -81.20821588548782,
+ 25.38116911394494
+ ],
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ],
+ [
+ -81.20821588548782,
+ 25.38116911394494
+ ],
+ [
+ -81.18827222606443,
+ 25.41249461936663
+ ],
+ [
+ -81.2281595449112,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ],
+ [
+ -81.18827222606443,
+ 25.475145630210015
+ ],
+ [
+ -81.20821588548782,
+ 25.506471135631706
+ ],
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ],
+ [
+ -81.20821588548782,
+ 25.506471135631706
+ ],
+ [
+ -81.24810320433457,
+ 25.506471135631706
+ ],
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ],
+ [
+ -81.24810320433457,
+ 25.506471135631706
+ ],
+ [
+ -81.26804686375796,
+ 25.475145630210015
+ ],
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ],
+ [
+ -81.26804686375796,
+ 25.475145630210015
+ ],
+ [
+ -81.24810320433457,
+ 25.443820124788324
+ ],
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ],
+ [
+ -81.24810320433457,
+ 25.443820124788324
+ ],
+ [
+ -81.20821588548782,
+ 25.443820124788324
+ ],
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ],
+ [
+ -81.20821588548782,
+ 25.443820124788324
+ ],
+ [
+ -81.18827222606443,
+ 25.475145630210015
+ ],
+ [
+ -81.2281595449112,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ],
+ [
+ -81.18827222606443,
+ 25.5377966410534
+ ],
+ [
+ -81.20821588548782,
+ 25.56912214647509
+ ],
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ],
+ [
+ -81.20821588548782,
+ 25.56912214647509
+ ],
+ [
+ -81.24810320433457,
+ 25.56912214647509
+ ],
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ],
+ [
+ -81.24810320433457,
+ 25.56912214647509
+ ],
+ [
+ -81.26804686375796,
+ 25.5377966410534
+ ],
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ],
+ [
+ -81.26804686375796,
+ 25.5377966410534
+ ],
+ [
+ -81.24810320433457,
+ 25.50647113563171
+ ],
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ],
+ [
+ -81.24810320433457,
+ 25.50647113563171
+ ],
+ [
+ -81.20821588548782,
+ 25.50647113563171
+ ],
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ],
+ [
+ -81.20821588548782,
+ 25.50647113563171
+ ],
+ [
+ -81.18827222606443,
+ 25.5377966410534
+ ],
+ [
+ -81.2281595449112,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ],
+ [
+ -81.18827222606443,
+ 25.600447651896786
+ ],
+ [
+ -81.20821588548782,
+ 25.631773157318477
+ ],
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ],
+ [
+ -81.20821588548782,
+ 25.631773157318477
+ ],
+ [
+ -81.24810320433457,
+ 25.631773157318477
+ ],
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ],
+ [
+ -81.24810320433457,
+ 25.631773157318477
+ ],
+ [
+ -81.26804686375796,
+ 25.600447651896786
+ ],
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ],
+ [
+ -81.26804686375796,
+ 25.600447651896786
+ ],
+ [
+ -81.24810320433457,
+ 25.569122146475095
+ ],
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ],
+ [
+ -81.24810320433457,
+ 25.569122146475095
+ ],
+ [
+ -81.20821588548782,
+ 25.569122146475095
+ ],
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ],
+ [
+ -81.20821588548782,
+ 25.569122146475095
+ ],
+ [
+ -81.18827222606443,
+ 25.600447651896786
+ ],
+ [
+ -81.2281595449112,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ],
+ [
+ -81.18827222606443,
+ 25.663098662740172
+ ],
+ [
+ -81.20821588548782,
+ 25.694424168161863
+ ],
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ],
+ [
+ -81.20821588548782,
+ 25.694424168161863
+ ],
+ [
+ -81.24810320433457,
+ 25.694424168161863
+ ],
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ],
+ [
+ -81.24810320433457,
+ 25.694424168161863
+ ],
+ [
+ -81.26804686375796,
+ 25.663098662740172
+ ],
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ],
+ [
+ -81.26804686375796,
+ 25.663098662740172
+ ],
+ [
+ -81.24810320433457,
+ 25.63177315731848
+ ],
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ],
+ [
+ -81.24810320433457,
+ 25.63177315731848
+ ],
+ [
+ -81.20821588548782,
+ 25.63177315731848
+ ],
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ],
+ [
+ -81.20821588548782,
+ 25.63177315731848
+ ],
+ [
+ -81.18827222606443,
+ 25.663098662740172
+ ],
+ [
+ -81.2281595449112,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ],
+ [
+ -81.18827222606443,
+ 25.725749673583557
+ ],
+ [
+ -81.20821588548782,
+ 25.75707517900525
+ ],
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ],
+ [
+ -81.20821588548782,
+ 25.75707517900525
+ ],
+ [
+ -81.24810320433457,
+ 25.75707517900525
+ ],
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ],
+ [
+ -81.24810320433457,
+ 25.75707517900525
+ ],
+ [
+ -81.26804686375796,
+ 25.725749673583557
+ ],
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ],
+ [
+ -81.26804686375796,
+ 25.725749673583557
+ ],
+ [
+ -81.24810320433457,
+ 25.694424168161866
+ ],
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ],
+ [
+ -81.24810320433457,
+ 25.694424168161866
+ ],
+ [
+ -81.20821588548782,
+ 25.694424168161866
+ ],
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ],
+ [
+ -81.20821588548782,
+ 25.694424168161866
+ ],
+ [
+ -81.18827222606443,
+ 25.725749673583557
+ ],
+ [
+ -81.2281595449112,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ],
+ [
+ -81.18827222606443,
+ 25.788400684426943
+ ],
+ [
+ -81.20821588548782,
+ 25.819726189848634
+ ],
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ],
+ [
+ -81.20821588548782,
+ 25.819726189848634
+ ],
+ [
+ -81.24810320433457,
+ 25.819726189848634
+ ],
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ],
+ [
+ -81.24810320433457,
+ 25.819726189848634
+ ],
+ [
+ -81.26804686375796,
+ 25.788400684426943
+ ],
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ],
+ [
+ -81.26804686375796,
+ 25.788400684426943
+ ],
+ [
+ -81.24810320433457,
+ 25.757075179005252
+ ],
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ],
+ [
+ -81.24810320433457,
+ 25.757075179005252
+ ],
+ [
+ -81.20821588548782,
+ 25.757075179005252
+ ],
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ],
+ [
+ -81.20821588548782,
+ 25.757075179005252
+ ],
+ [
+ -81.18827222606443,
+ 25.788400684426943
+ ],
+ [
+ -81.2281595449112,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ],
+ [
+ -81.18827222606443,
+ 25.85105169527033
+ ],
+ [
+ -81.20821588548782,
+ 25.88237720069202
+ ],
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ],
+ [
+ -81.20821588548782,
+ 25.88237720069202
+ ],
+ [
+ -81.24810320433457,
+ 25.88237720069202
+ ],
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ],
+ [
+ -81.24810320433457,
+ 25.88237720069202
+ ],
+ [
+ -81.26804686375796,
+ 25.85105169527033
+ ],
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ],
+ [
+ -81.26804686375796,
+ 25.85105169527033
+ ],
+ [
+ -81.24810320433457,
+ 25.819726189848637
+ ],
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ],
+ [
+ -81.24810320433457,
+ 25.819726189848637
+ ],
+ [
+ -81.20821588548782,
+ 25.819726189848637
+ ],
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ],
+ [
+ -81.20821588548782,
+ 25.819726189848637
+ ],
+ [
+ -81.18827222606443,
+ 25.85105169527033
+ ],
+ [
+ -81.2281595449112,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ],
+ [
+ -81.18827222606443,
+ 25.913702706113714
+ ],
+ [
+ -81.20821588548782,
+ 25.945028211535405
+ ],
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ],
+ [
+ -81.20821588548782,
+ 25.945028211535405
+ ],
+ [
+ -81.24810320433457,
+ 25.945028211535405
+ ],
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ],
+ [
+ -81.24810320433457,
+ 25.945028211535405
+ ],
+ [
+ -81.26804686375796,
+ 25.913702706113714
+ ],
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ],
+ [
+ -81.26804686375796,
+ 25.913702706113714
+ ],
+ [
+ -81.24810320433457,
+ 25.882377200692023
+ ],
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ],
+ [
+ -81.24810320433457,
+ 25.882377200692023
+ ],
+ [
+ -81.20821588548782,
+ 25.882377200692023
+ ],
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ],
+ [
+ -81.20821588548782,
+ 25.882377200692023
+ ],
+ [
+ -81.18827222606443,
+ 25.913702706113714
+ ],
+ [
+ -81.2281595449112,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ],
+ [
+ -81.18827222606443,
+ 25.9763537169571
+ ],
+ [
+ -81.20821588548782,
+ 26.00767922237879
+ ],
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ],
+ [
+ -81.20821588548782,
+ 26.00767922237879
+ ],
+ [
+ -81.24810320433457,
+ 26.00767922237879
+ ],
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ],
+ [
+ -81.24810320433457,
+ 26.00767922237879
+ ],
+ [
+ -81.26804686375796,
+ 25.9763537169571
+ ],
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ],
+ [
+ -81.26804686375796,
+ 25.9763537169571
+ ],
+ [
+ -81.24810320433457,
+ 25.94502821153541
+ ],
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ],
+ [
+ -81.24810320433457,
+ 25.94502821153541
+ ],
+ [
+ -81.20821588548782,
+ 25.94502821153541
+ ],
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ],
+ [
+ -81.20821588548782,
+ 25.94502821153541
+ ],
+ [
+ -81.18827222606443,
+ 25.9763537169571
+ ],
+ [
+ -81.2281595449112,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ],
+ [
+ -81.18827222606443,
+ 26.039004727800485
+ ],
+ [
+ -81.20821588548782,
+ 26.070330233222176
+ ],
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ],
+ [
+ -81.20821588548782,
+ 26.070330233222176
+ ],
+ [
+ -81.24810320433457,
+ 26.070330233222176
+ ],
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ],
+ [
+ -81.24810320433457,
+ 26.070330233222176
+ ],
+ [
+ -81.26804686375796,
+ 26.039004727800485
+ ],
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ],
+ [
+ -81.26804686375796,
+ 26.039004727800485
+ ],
+ [
+ -81.24810320433457,
+ 26.007679222378794
+ ],
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ],
+ [
+ -81.24810320433457,
+ 26.007679222378794
+ ],
+ [
+ -81.20821588548782,
+ 26.007679222378794
+ ],
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ],
+ [
+ -81.20821588548782,
+ 26.007679222378794
+ ],
+ [
+ -81.18827222606443,
+ 26.039004727800485
+ ],
+ [
+ -81.2281595449112,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ],
+ [
+ -81.18827222606443,
+ 26.10165573864387
+ ],
+ [
+ -81.20821588548782,
+ 26.13298124406556
+ ],
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ],
+ [
+ -81.20821588548782,
+ 26.13298124406556
+ ],
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ],
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ],
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ],
+ [
+ -81.26804686375796,
+ 26.10165573864387
+ ],
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ],
+ [
+ -81.26804686375796,
+ 26.10165573864387
+ ],
+ [
+ -81.24810320433457,
+ 26.07033023322218
+ ],
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ],
+ [
+ -81.24810320433457,
+ 26.07033023322218
+ ],
+ [
+ -81.20821588548782,
+ 26.07033023322218
+ ],
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ],
+ [
+ -81.20821588548782,
+ 26.07033023322218
+ ],
+ [
+ -81.18827222606443,
+ 26.10165573864387
+ ],
+ [
+ -81.2281595449112,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ],
+ [
+ -81.18827222606443,
+ 26.164306749487253
+ ],
+ [
+ -81.20821588548782,
+ 26.195632254908944
+ ],
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ],
+ [
+ -81.20821588548782,
+ 26.195632254908944
+ ],
+ [
+ -81.24810320433457,
+ 26.195632254908944
+ ],
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ],
+ [
+ -81.24810320433457,
+ 26.195632254908944
+ ],
+ [
+ -81.26804686375796,
+ 26.164306749487253
+ ],
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ],
+ [
+ -81.26804686375796,
+ 26.164306749487253
+ ],
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ],
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ],
+ [
+ -81.24810320433457,
+ 26.13298124406556
+ ],
+ [
+ -81.20821588548782,
+ 26.13298124406556
+ ],
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ],
+ [
+ -81.20821588548782,
+ 26.13298124406556
+ ],
+ [
+ -81.18827222606443,
+ 26.164306749487253
+ ],
+ [
+ -81.2281595449112,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ],
+ [
+ -81.18827222606443,
+ 26.22695776033064
+ ],
+ [
+ -81.20821588548782,
+ 26.258283265752333
+ ],
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ],
+ [
+ -81.20821588548782,
+ 26.258283265752333
+ ],
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ],
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ],
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ],
+ [
+ -81.26804686375796,
+ 26.22695776033064
+ ],
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ],
+ [
+ -81.26804686375796,
+ 26.22695776033064
+ ],
+ [
+ -81.24810320433457,
+ 26.19563225490895
+ ],
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ],
+ [
+ -81.24810320433457,
+ 26.19563225490895
+ ],
+ [
+ -81.20821588548782,
+ 26.19563225490895
+ ],
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ],
+ [
+ -81.20821588548782,
+ 26.19563225490895
+ ],
+ [
+ -81.18827222606443,
+ 26.22695776033064
+ ],
+ [
+ -81.2281595449112,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ],
+ [
+ -81.18827222606443,
+ 26.289608771174024
+ ],
+ [
+ -81.20821588548782,
+ 26.320934276595715
+ ],
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ],
+ [
+ -81.20821588548782,
+ 26.320934276595715
+ ],
+ [
+ -81.24810320433457,
+ 26.320934276595715
+ ],
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ],
+ [
+ -81.24810320433457,
+ 26.320934276595715
+ ],
+ [
+ -81.26804686375796,
+ 26.289608771174024
+ ],
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ],
+ [
+ -81.26804686375796,
+ 26.289608771174024
+ ],
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ],
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ],
+ [
+ -81.24810320433457,
+ 26.258283265752333
+ ],
+ [
+ -81.20821588548782,
+ 26.258283265752333
+ ],
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ],
+ [
+ -81.20821588548782,
+ 26.258283265752333
+ ],
+ [
+ -81.18827222606443,
+ 26.289608771174024
+ ],
+ [
+ -81.2281595449112,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ],
+ [
+ -81.18827222606443,
+ 26.35225978201741
+ ],
+ [
+ -81.20821588548782,
+ 26.3835852874391
+ ],
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ],
+ [
+ -81.20821588548782,
+ 26.3835852874391
+ ],
+ [
+ -81.24810320433457,
+ 26.3835852874391
+ ],
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ],
+ [
+ -81.24810320433457,
+ 26.3835852874391
+ ],
+ [
+ -81.26804686375796,
+ 26.35225978201741
+ ],
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ],
+ [
+ -81.26804686375796,
+ 26.35225978201741
+ ],
+ [
+ -81.24810320433457,
+ 26.320934276595718
+ ],
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ],
+ [
+ -81.24810320433457,
+ 26.320934276595718
+ ],
+ [
+ -81.20821588548782,
+ 26.320934276595718
+ ],
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ],
+ [
+ -81.20821588548782,
+ 26.320934276595718
+ ],
+ [
+ -81.18827222606443,
+ 26.35225978201741
+ ],
+ [
+ -81.2281595449112,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ],
+ [
+ -81.18827222606443,
+ 26.414910792860795
+ ],
+ [
+ -81.20821588548782,
+ 26.446236298282486
+ ],
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ],
+ [
+ -81.20821588548782,
+ 26.446236298282486
+ ],
+ [
+ -81.24810320433457,
+ 26.446236298282486
+ ],
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ],
+ [
+ -81.24810320433457,
+ 26.446236298282486
+ ],
+ [
+ -81.26804686375796,
+ 26.414910792860795
+ ],
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ],
+ [
+ -81.26804686375796,
+ 26.414910792860795
+ ],
+ [
+ -81.24810320433457,
+ 26.383585287439104
+ ],
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ],
+ [
+ -81.24810320433457,
+ 26.383585287439104
+ ],
+ [
+ -81.20821588548782,
+ 26.383585287439104
+ ],
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ],
+ [
+ -81.20821588548782,
+ 26.383585287439104
+ ],
+ [
+ -81.18827222606443,
+ 26.414910792860795
+ ],
+ [
+ -81.2281595449112,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ],
+ [
+ -81.12844124779427,
+ 24.942612038041236
+ ],
+ [
+ -81.14838490721766,
+ 24.973937543462927
+ ],
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ],
+ [
+ -81.14838490721766,
+ 24.973937543462927
+ ],
+ [
+ -81.18827222606441,
+ 24.973937543462927
+ ],
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ],
+ [
+ -81.18827222606441,
+ 24.973937543462927
+ ],
+ [
+ -81.2082158854878,
+ 24.942612038041236
+ ],
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ],
+ [
+ -81.2082158854878,
+ 24.942612038041236
+ ],
+ [
+ -81.18827222606441,
+ 24.911286532619545
+ ],
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ],
+ [
+ -81.18827222606441,
+ 24.911286532619545
+ ],
+ [
+ -81.14838490721766,
+ 24.911286532619545
+ ],
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ],
+ [
+ -81.14838490721766,
+ 24.911286532619545
+ ],
+ [
+ -81.12844124779427,
+ 24.942612038041236
+ ],
+ [
+ -81.16832856664104,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ],
+ [
+ -81.12844124779427,
+ 25.005263048884622
+ ],
+ [
+ -81.14838490721766,
+ 25.036588554306313
+ ],
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ],
+ [
+ -81.14838490721766,
+ 25.036588554306313
+ ],
+ [
+ -81.18827222606441,
+ 25.036588554306313
+ ],
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ],
+ [
+ -81.18827222606441,
+ 25.036588554306313
+ ],
+ [
+ -81.2082158854878,
+ 25.005263048884622
+ ],
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ],
+ [
+ -81.2082158854878,
+ 25.005263048884622
+ ],
+ [
+ -81.18827222606441,
+ 24.97393754346293
+ ],
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ],
+ [
+ -81.18827222606441,
+ 24.97393754346293
+ ],
+ [
+ -81.14838490721766,
+ 24.97393754346293
+ ],
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ],
+ [
+ -81.14838490721766,
+ 24.97393754346293
+ ],
+ [
+ -81.12844124779427,
+ 25.005263048884622
+ ],
+ [
+ -81.16832856664104,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ],
+ [
+ -81.12844124779427,
+ 25.067914059728007
+ ],
+ [
+ -81.14838490721766,
+ 25.0992395651497
+ ],
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ],
+ [
+ -81.14838490721766,
+ 25.0992395651497
+ ],
+ [
+ -81.18827222606441,
+ 25.0992395651497
+ ],
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ],
+ [
+ -81.18827222606441,
+ 25.0992395651497
+ ],
+ [
+ -81.2082158854878,
+ 25.067914059728007
+ ],
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ],
+ [
+ -81.2082158854878,
+ 25.067914059728007
+ ],
+ [
+ -81.18827222606441,
+ 25.036588554306316
+ ],
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ],
+ [
+ -81.18827222606441,
+ 25.036588554306316
+ ],
+ [
+ -81.14838490721766,
+ 25.036588554306316
+ ],
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ],
+ [
+ -81.14838490721766,
+ 25.036588554306316
+ ],
+ [
+ -81.12844124779427,
+ 25.067914059728007
+ ],
+ [
+ -81.16832856664104,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ],
+ [
+ -81.12844124779427,
+ 25.130565070571393
+ ],
+ [
+ -81.14838490721766,
+ 25.161890575993084
+ ],
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ],
+ [
+ -81.14838490721766,
+ 25.161890575993084
+ ],
+ [
+ -81.18827222606441,
+ 25.161890575993084
+ ],
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ],
+ [
+ -81.18827222606441,
+ 25.161890575993084
+ ],
+ [
+ -81.2082158854878,
+ 25.130565070571393
+ ],
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ],
+ [
+ -81.2082158854878,
+ 25.130565070571393
+ ],
+ [
+ -81.18827222606441,
+ 25.099239565149702
+ ],
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ],
+ [
+ -81.18827222606441,
+ 25.099239565149702
+ ],
+ [
+ -81.14838490721766,
+ 25.099239565149702
+ ],
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ],
+ [
+ -81.14838490721766,
+ 25.099239565149702
+ ],
+ [
+ -81.12844124779427,
+ 25.130565070571393
+ ],
+ [
+ -81.16832856664104,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ],
+ [
+ -81.12844124779427,
+ 25.19321608141478
+ ],
+ [
+ -81.14838490721766,
+ 25.22454158683647
+ ],
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ],
+ [
+ -81.14838490721766,
+ 25.22454158683647
+ ],
+ [
+ -81.18827222606441,
+ 25.22454158683647
+ ],
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ],
+ [
+ -81.18827222606441,
+ 25.22454158683647
+ ],
+ [
+ -81.2082158854878,
+ 25.19321608141478
+ ],
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ],
+ [
+ -81.2082158854878,
+ 25.19321608141478
+ ],
+ [
+ -81.18827222606441,
+ 25.161890575993088
+ ],
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ],
+ [
+ -81.18827222606441,
+ 25.161890575993088
+ ],
+ [
+ -81.14838490721766,
+ 25.161890575993088
+ ],
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ],
+ [
+ -81.14838490721766,
+ 25.161890575993088
+ ],
+ [
+ -81.12844124779427,
+ 25.19321608141478
+ ],
+ [
+ -81.16832856664104,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ],
+ [
+ -81.12844124779427,
+ 25.255867092258164
+ ],
+ [
+ -81.14838490721766,
+ 25.287192597679855
+ ],
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ],
+ [
+ -81.14838490721766,
+ 25.287192597679855
+ ],
+ [
+ -81.18827222606441,
+ 25.287192597679855
+ ],
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ],
+ [
+ -81.18827222606441,
+ 25.287192597679855
+ ],
+ [
+ -81.2082158854878,
+ 25.255867092258164
+ ],
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ],
+ [
+ -81.2082158854878,
+ 25.255867092258164
+ ],
+ [
+ -81.18827222606441,
+ 25.224541586836473
+ ],
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ],
+ [
+ -81.18827222606441,
+ 25.224541586836473
+ ],
+ [
+ -81.14838490721766,
+ 25.224541586836473
+ ],
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ],
+ [
+ -81.14838490721766,
+ 25.224541586836473
+ ],
+ [
+ -81.12844124779427,
+ 25.255867092258164
+ ],
+ [
+ -81.16832856664104,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ],
+ [
+ -81.12844124779427,
+ 25.31851810310155
+ ],
+ [
+ -81.14838490721766,
+ 25.34984360852324
+ ],
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ],
+ [
+ -81.14838490721766,
+ 25.34984360852324
+ ],
+ [
+ -81.18827222606441,
+ 25.34984360852324
+ ],
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ],
+ [
+ -81.18827222606441,
+ 25.34984360852324
+ ],
+ [
+ -81.2082158854878,
+ 25.31851810310155
+ ],
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ],
+ [
+ -81.2082158854878,
+ 25.31851810310155
+ ],
+ [
+ -81.18827222606441,
+ 25.28719259767986
+ ],
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ],
+ [
+ -81.18827222606441,
+ 25.28719259767986
+ ],
+ [
+ -81.14838490721766,
+ 25.28719259767986
+ ],
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ],
+ [
+ -81.14838490721766,
+ 25.28719259767986
+ ],
+ [
+ -81.12844124779427,
+ 25.31851810310155
+ ],
+ [
+ -81.16832856664104,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ],
+ [
+ -81.12844124779427,
+ 25.381169113944935
+ ],
+ [
+ -81.14838490721766,
+ 25.412494619366626
+ ],
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ],
+ [
+ -81.14838490721766,
+ 25.412494619366626
+ ],
+ [
+ -81.18827222606441,
+ 25.412494619366626
+ ],
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ],
+ [
+ -81.18827222606441,
+ 25.412494619366626
+ ],
+ [
+ -81.2082158854878,
+ 25.381169113944935
+ ],
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ],
+ [
+ -81.2082158854878,
+ 25.381169113944935
+ ],
+ [
+ -81.18827222606441,
+ 25.349843608523244
+ ],
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ],
+ [
+ -81.18827222606441,
+ 25.349843608523244
+ ],
+ [
+ -81.14838490721766,
+ 25.349843608523244
+ ],
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ],
+ [
+ -81.14838490721766,
+ 25.349843608523244
+ ],
+ [
+ -81.12844124779427,
+ 25.381169113944935
+ ],
+ [
+ -81.16832856664104,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ],
+ [
+ -81.12844124779427,
+ 25.44382012478832
+ ],
+ [
+ -81.14838490721766,
+ 25.47514563021001
+ ],
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ],
+ [
+ -81.14838490721766,
+ 25.47514563021001
+ ],
+ [
+ -81.18827222606441,
+ 25.47514563021001
+ ],
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ],
+ [
+ -81.18827222606441,
+ 25.47514563021001
+ ],
+ [
+ -81.2082158854878,
+ 25.44382012478832
+ ],
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ],
+ [
+ -81.2082158854878,
+ 25.44382012478832
+ ],
+ [
+ -81.18827222606441,
+ 25.41249461936663
+ ],
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ],
+ [
+ -81.18827222606441,
+ 25.41249461936663
+ ],
+ [
+ -81.14838490721766,
+ 25.41249461936663
+ ],
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ],
+ [
+ -81.14838490721766,
+ 25.41249461936663
+ ],
+ [
+ -81.12844124779427,
+ 25.44382012478832
+ ],
+ [
+ -81.16832856664104,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ],
+ [
+ -81.12844124779427,
+ 25.506471135631706
+ ],
+ [
+ -81.14838490721766,
+ 25.537796641053397
+ ],
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ],
+ [
+ -81.14838490721766,
+ 25.537796641053397
+ ],
+ [
+ -81.18827222606441,
+ 25.537796641053397
+ ],
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ],
+ [
+ -81.18827222606441,
+ 25.537796641053397
+ ],
+ [
+ -81.2082158854878,
+ 25.506471135631706
+ ],
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ],
+ [
+ -81.2082158854878,
+ 25.506471135631706
+ ],
+ [
+ -81.18827222606441,
+ 25.475145630210015
+ ],
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ],
+ [
+ -81.18827222606441,
+ 25.475145630210015
+ ],
+ [
+ -81.14838490721766,
+ 25.475145630210015
+ ],
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ],
+ [
+ -81.14838490721766,
+ 25.475145630210015
+ ],
+ [
+ -81.12844124779427,
+ 25.506471135631706
+ ],
+ [
+ -81.16832856664104,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ],
+ [
+ -81.12844124779427,
+ 25.56912214647509
+ ],
+ [
+ -81.14838490721766,
+ 25.600447651896783
+ ],
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ],
+ [
+ -81.14838490721766,
+ 25.600447651896783
+ ],
+ [
+ -81.18827222606441,
+ 25.600447651896783
+ ],
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ],
+ [
+ -81.18827222606441,
+ 25.600447651896783
+ ],
+ [
+ -81.2082158854878,
+ 25.56912214647509
+ ],
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ],
+ [
+ -81.2082158854878,
+ 25.56912214647509
+ ],
+ [
+ -81.18827222606441,
+ 25.5377966410534
+ ],
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ],
+ [
+ -81.18827222606441,
+ 25.5377966410534
+ ],
+ [
+ -81.14838490721766,
+ 25.5377966410534
+ ],
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ],
+ [
+ -81.14838490721766,
+ 25.5377966410534
+ ],
+ [
+ -81.12844124779427,
+ 25.56912214647509
+ ],
+ [
+ -81.16832856664104,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ],
+ [
+ -81.12844124779427,
+ 25.631773157318477
+ ],
+ [
+ -81.14838490721766,
+ 25.66309866274017
+ ],
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ],
+ [
+ -81.14838490721766,
+ 25.66309866274017
+ ],
+ [
+ -81.18827222606441,
+ 25.66309866274017
+ ],
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ],
+ [
+ -81.18827222606441,
+ 25.66309866274017
+ ],
+ [
+ -81.2082158854878,
+ 25.631773157318477
+ ],
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ],
+ [
+ -81.2082158854878,
+ 25.631773157318477
+ ],
+ [
+ -81.18827222606441,
+ 25.600447651896786
+ ],
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ],
+ [
+ -81.18827222606441,
+ 25.600447651896786
+ ],
+ [
+ -81.14838490721766,
+ 25.600447651896786
+ ],
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ],
+ [
+ -81.14838490721766,
+ 25.600447651896786
+ ],
+ [
+ -81.12844124779427,
+ 25.631773157318477
+ ],
+ [
+ -81.16832856664104,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ],
+ [
+ -81.12844124779427,
+ 25.694424168161863
+ ],
+ [
+ -81.14838490721766,
+ 25.725749673583554
+ ],
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ],
+ [
+ -81.14838490721766,
+ 25.725749673583554
+ ],
+ [
+ -81.18827222606441,
+ 25.725749673583554
+ ],
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ],
+ [
+ -81.18827222606441,
+ 25.725749673583554
+ ],
+ [
+ -81.2082158854878,
+ 25.694424168161863
+ ],
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ],
+ [
+ -81.2082158854878,
+ 25.694424168161863
+ ],
+ [
+ -81.18827222606441,
+ 25.663098662740172
+ ],
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ],
+ [
+ -81.18827222606441,
+ 25.663098662740172
+ ],
+ [
+ -81.14838490721766,
+ 25.663098662740172
+ ],
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ],
+ [
+ -81.14838490721766,
+ 25.663098662740172
+ ],
+ [
+ -81.12844124779427,
+ 25.694424168161863
+ ],
+ [
+ -81.16832856664104,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ],
+ [
+ -81.12844124779427,
+ 25.75707517900525
+ ],
+ [
+ -81.14838490721766,
+ 25.78840068442694
+ ],
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ],
+ [
+ -81.14838490721766,
+ 25.78840068442694
+ ],
+ [
+ -81.18827222606441,
+ 25.78840068442694
+ ],
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ],
+ [
+ -81.18827222606441,
+ 25.78840068442694
+ ],
+ [
+ -81.2082158854878,
+ 25.75707517900525
+ ],
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ],
+ [
+ -81.2082158854878,
+ 25.75707517900525
+ ],
+ [
+ -81.18827222606441,
+ 25.725749673583557
+ ],
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ],
+ [
+ -81.18827222606441,
+ 25.725749673583557
+ ],
+ [
+ -81.14838490721766,
+ 25.725749673583557
+ ],
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ],
+ [
+ -81.14838490721766,
+ 25.725749673583557
+ ],
+ [
+ -81.12844124779427,
+ 25.75707517900525
+ ],
+ [
+ -81.16832856664104,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ],
+ [
+ -81.12844124779427,
+ 25.819726189848634
+ ],
+ [
+ -81.14838490721766,
+ 25.851051695270325
+ ],
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ],
+ [
+ -81.14838490721766,
+ 25.851051695270325
+ ],
+ [
+ -81.18827222606441,
+ 25.851051695270325
+ ],
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ],
+ [
+ -81.18827222606441,
+ 25.851051695270325
+ ],
+ [
+ -81.2082158854878,
+ 25.819726189848634
+ ],
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ],
+ [
+ -81.2082158854878,
+ 25.819726189848634
+ ],
+ [
+ -81.18827222606441,
+ 25.788400684426943
+ ],
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ],
+ [
+ -81.18827222606441,
+ 25.788400684426943
+ ],
+ [
+ -81.14838490721766,
+ 25.788400684426943
+ ],
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ],
+ [
+ -81.14838490721766,
+ 25.788400684426943
+ ],
+ [
+ -81.12844124779427,
+ 25.819726189848634
+ ],
+ [
+ -81.16832856664104,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ],
+ [
+ -81.12844124779427,
+ 25.88237720069202
+ ],
+ [
+ -81.14838490721766,
+ 25.91370270611371
+ ],
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ],
+ [
+ -81.14838490721766,
+ 25.91370270611371
+ ],
+ [
+ -81.18827222606441,
+ 25.91370270611371
+ ],
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ],
+ [
+ -81.18827222606441,
+ 25.91370270611371
+ ],
+ [
+ -81.2082158854878,
+ 25.88237720069202
+ ],
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ],
+ [
+ -81.2082158854878,
+ 25.88237720069202
+ ],
+ [
+ -81.18827222606441,
+ 25.85105169527033
+ ],
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ],
+ [
+ -81.18827222606441,
+ 25.85105169527033
+ ],
+ [
+ -81.14838490721766,
+ 25.85105169527033
+ ],
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ],
+ [
+ -81.14838490721766,
+ 25.85105169527033
+ ],
+ [
+ -81.12844124779427,
+ 25.88237720069202
+ ],
+ [
+ -81.16832856664104,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ],
+ [
+ -81.12844124779427,
+ 25.945028211535405
+ ],
+ [
+ -81.14838490721766,
+ 25.976353716957096
+ ],
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ],
+ [
+ -81.14838490721766,
+ 25.976353716957096
+ ],
+ [
+ -81.18827222606441,
+ 25.976353716957096
+ ],
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ],
+ [
+ -81.18827222606441,
+ 25.976353716957096
+ ],
+ [
+ -81.2082158854878,
+ 25.945028211535405
+ ],
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ],
+ [
+ -81.2082158854878,
+ 25.945028211535405
+ ],
+ [
+ -81.18827222606441,
+ 25.913702706113714
+ ],
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ],
+ [
+ -81.18827222606441,
+ 25.913702706113714
+ ],
+ [
+ -81.14838490721766,
+ 25.913702706113714
+ ],
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ],
+ [
+ -81.14838490721766,
+ 25.913702706113714
+ ],
+ [
+ -81.12844124779427,
+ 25.945028211535405
+ ],
+ [
+ -81.16832856664104,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ],
+ [
+ -81.12844124779427,
+ 26.00767922237879
+ ],
+ [
+ -81.14838490721766,
+ 26.03900472780048
+ ],
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ],
+ [
+ -81.14838490721766,
+ 26.03900472780048
+ ],
+ [
+ -81.18827222606441,
+ 26.03900472780048
+ ],
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ],
+ [
+ -81.18827222606441,
+ 26.03900472780048
+ ],
+ [
+ -81.2082158854878,
+ 26.00767922237879
+ ],
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ],
+ [
+ -81.2082158854878,
+ 26.00767922237879
+ ],
+ [
+ -81.18827222606441,
+ 25.9763537169571
+ ],
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ],
+ [
+ -81.18827222606441,
+ 25.9763537169571
+ ],
+ [
+ -81.14838490721766,
+ 25.9763537169571
+ ],
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ],
+ [
+ -81.14838490721766,
+ 25.9763537169571
+ ],
+ [
+ -81.12844124779427,
+ 26.00767922237879
+ ],
+ [
+ -81.16832856664104,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ],
+ [
+ -81.12844124779427,
+ 26.070330233222176
+ ],
+ [
+ -81.14838490721766,
+ 26.101655738643867
+ ],
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ],
+ [
+ -81.14838490721766,
+ 26.101655738643867
+ ],
+ [
+ -81.18827222606441,
+ 26.101655738643867
+ ],
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ],
+ [
+ -81.18827222606441,
+ 26.101655738643867
+ ],
+ [
+ -81.2082158854878,
+ 26.070330233222176
+ ],
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ],
+ [
+ -81.2082158854878,
+ 26.070330233222176
+ ],
+ [
+ -81.18827222606441,
+ 26.039004727800485
+ ],
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ],
+ [
+ -81.18827222606441,
+ 26.039004727800485
+ ],
+ [
+ -81.14838490721766,
+ 26.039004727800485
+ ],
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ],
+ [
+ -81.14838490721766,
+ 26.039004727800485
+ ],
+ [
+ -81.12844124779427,
+ 26.070330233222176
+ ],
+ [
+ -81.16832856664104,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ],
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ],
+ [
+ -81.14838490721766,
+ 26.164306749487253
+ ],
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ],
+ [
+ -81.14838490721766,
+ 26.164306749487253
+ ],
+ [
+ -81.18827222606441,
+ 26.164306749487253
+ ],
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ],
+ [
+ -81.18827222606441,
+ 26.164306749487253
+ ],
+ [
+ -81.2082158854878,
+ 26.13298124406556
+ ],
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ],
+ [
+ -81.2082158854878,
+ 26.13298124406556
+ ],
+ [
+ -81.18827222606441,
+ 26.10165573864387
+ ],
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ],
+ [
+ -81.18827222606441,
+ 26.10165573864387
+ ],
+ [
+ -81.14838490721766,
+ 26.10165573864387
+ ],
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ],
+ [
+ -81.14838490721766,
+ 26.10165573864387
+ ],
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ],
+ [
+ -81.16832856664104,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ],
+ [
+ -81.12844124779427,
+ 26.195632254908944
+ ],
+ [
+ -81.14838490721766,
+ 26.226957760330635
+ ],
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ],
+ [
+ -81.14838490721766,
+ 26.226957760330635
+ ],
+ [
+ -81.18827222606441,
+ 26.226957760330635
+ ],
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ],
+ [
+ -81.18827222606441,
+ 26.226957760330635
+ ],
+ [
+ -81.2082158854878,
+ 26.195632254908944
+ ],
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ],
+ [
+ -81.2082158854878,
+ 26.195632254908944
+ ],
+ [
+ -81.18827222606441,
+ 26.164306749487253
+ ],
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ],
+ [
+ -81.18827222606441,
+ 26.164306749487253
+ ],
+ [
+ -81.14838490721766,
+ 26.164306749487253
+ ],
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ],
+ [
+ -81.14838490721766,
+ 26.164306749487253
+ ],
+ [
+ -81.12844124779427,
+ 26.195632254908944
+ ],
+ [
+ -81.16832856664104,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ],
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ],
+ [
+ -81.14838490721766,
+ 26.289608771174024
+ ],
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ],
+ [
+ -81.14838490721766,
+ 26.289608771174024
+ ],
+ [
+ -81.18827222606441,
+ 26.289608771174024
+ ],
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ],
+ [
+ -81.18827222606441,
+ 26.289608771174024
+ ],
+ [
+ -81.2082158854878,
+ 26.258283265752333
+ ],
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ],
+ [
+ -81.2082158854878,
+ 26.258283265752333
+ ],
+ [
+ -81.18827222606441,
+ 26.22695776033064
+ ],
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ],
+ [
+ -81.18827222606441,
+ 26.22695776033064
+ ],
+ [
+ -81.14838490721766,
+ 26.22695776033064
+ ],
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ],
+ [
+ -81.14838490721766,
+ 26.22695776033064
+ ],
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ],
+ [
+ -81.16832856664104,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ],
+ [
+ -81.12844124779427,
+ 26.320934276595715
+ ],
+ [
+ -81.14838490721766,
+ 26.352259782017406
+ ],
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ],
+ [
+ -81.14838490721766,
+ 26.352259782017406
+ ],
+ [
+ -81.18827222606441,
+ 26.352259782017406
+ ],
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ],
+ [
+ -81.18827222606441,
+ 26.352259782017406
+ ],
+ [
+ -81.2082158854878,
+ 26.320934276595715
+ ],
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ],
+ [
+ -81.2082158854878,
+ 26.320934276595715
+ ],
+ [
+ -81.18827222606441,
+ 26.289608771174024
+ ],
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ],
+ [
+ -81.18827222606441,
+ 26.289608771174024
+ ],
+ [
+ -81.14838490721766,
+ 26.289608771174024
+ ],
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ],
+ [
+ -81.14838490721766,
+ 26.289608771174024
+ ],
+ [
+ -81.12844124779427,
+ 26.320934276595715
+ ],
+ [
+ -81.16832856664104,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ],
+ [
+ -81.12844124779427,
+ 26.3835852874391
+ ],
+ [
+ -81.14838490721766,
+ 26.41491079286079
+ ],
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ],
+ [
+ -81.14838490721766,
+ 26.41491079286079
+ ],
+ [
+ -81.18827222606441,
+ 26.41491079286079
+ ],
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ],
+ [
+ -81.18827222606441,
+ 26.41491079286079
+ ],
+ [
+ -81.2082158854878,
+ 26.3835852874391
+ ],
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ],
+ [
+ -81.2082158854878,
+ 26.3835852874391
+ ],
+ [
+ -81.18827222606441,
+ 26.35225978201741
+ ],
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ],
+ [
+ -81.18827222606441,
+ 26.35225978201741
+ ],
+ [
+ -81.14838490721766,
+ 26.35225978201741
+ ],
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ],
+ [
+ -81.14838490721766,
+ 26.35225978201741
+ ],
+ [
+ -81.12844124779427,
+ 26.3835852874391
+ ],
+ [
+ -81.16832856664104,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ],
+ [
+ -81.12844124779427,
+ 26.446236298282486
+ ],
+ [
+ -81.14838490721766,
+ 26.477561803704177
+ ],
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ],
+ [
+ -81.14838490721766,
+ 26.477561803704177
+ ],
+ [
+ -81.18827222606441,
+ 26.477561803704177
+ ],
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ],
+ [
+ -81.18827222606441,
+ 26.477561803704177
+ ],
+ [
+ -81.2082158854878,
+ 26.446236298282486
+ ],
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ],
+ [
+ -81.2082158854878,
+ 26.446236298282486
+ ],
+ [
+ -81.18827222606441,
+ 26.414910792860795
+ ],
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ],
+ [
+ -81.18827222606441,
+ 26.414910792860795
+ ],
+ [
+ -81.14838490721766,
+ 26.414910792860795
+ ],
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ],
+ [
+ -81.14838490721766,
+ 26.414910792860795
+ ],
+ [
+ -81.12844124779427,
+ 26.446236298282486
+ ],
+ [
+ -81.16832856664104,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ],
+ [
+ -81.06861026952413,
+ 24.911286532619545
+ ],
+ [
+ -81.08855392894752,
+ 24.942612038041236
+ ],
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ],
+ [
+ -81.08855392894752,
+ 24.942612038041236
+ ],
+ [
+ -81.12844124779427,
+ 24.942612038041236
+ ],
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ],
+ [
+ -81.12844124779427,
+ 24.942612038041236
+ ],
+ [
+ -81.14838490721766,
+ 24.911286532619545
+ ],
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ],
+ [
+ -81.14838490721766,
+ 24.911286532619545
+ ],
+ [
+ -81.12844124779427,
+ 24.879961027197854
+ ],
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ],
+ [
+ -81.12844124779427,
+ 24.879961027197854
+ ],
+ [
+ -81.08855392894752,
+ 24.879961027197854
+ ],
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ],
+ [
+ -81.08855392894752,
+ 24.879961027197854
+ ],
+ [
+ -81.06861026952413,
+ 24.911286532619545
+ ],
+ [
+ -81.1084975883709,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ],
+ [
+ -81.06861026952413,
+ 24.97393754346293
+ ],
+ [
+ -81.08855392894752,
+ 25.005263048884622
+ ],
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ],
+ [
+ -81.08855392894752,
+ 25.005263048884622
+ ],
+ [
+ -81.12844124779427,
+ 25.005263048884622
+ ],
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ],
+ [
+ -81.12844124779427,
+ 25.005263048884622
+ ],
+ [
+ -81.14838490721766,
+ 24.97393754346293
+ ],
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ],
+ [
+ -81.14838490721766,
+ 24.97393754346293
+ ],
+ [
+ -81.12844124779427,
+ 24.94261203804124
+ ],
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ],
+ [
+ -81.12844124779427,
+ 24.94261203804124
+ ],
+ [
+ -81.08855392894752,
+ 24.94261203804124
+ ],
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ],
+ [
+ -81.08855392894752,
+ 24.94261203804124
+ ],
+ [
+ -81.06861026952413,
+ 24.97393754346293
+ ],
+ [
+ -81.1084975883709,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ],
+ [
+ -81.06861026952413,
+ 25.036588554306316
+ ],
+ [
+ -81.08855392894752,
+ 25.067914059728007
+ ],
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ],
+ [
+ -81.08855392894752,
+ 25.067914059728007
+ ],
+ [
+ -81.12844124779427,
+ 25.067914059728007
+ ],
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ],
+ [
+ -81.12844124779427,
+ 25.067914059728007
+ ],
+ [
+ -81.14838490721766,
+ 25.036588554306316
+ ],
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ],
+ [
+ -81.14838490721766,
+ 25.036588554306316
+ ],
+ [
+ -81.12844124779427,
+ 25.005263048884625
+ ],
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ],
+ [
+ -81.12844124779427,
+ 25.005263048884625
+ ],
+ [
+ -81.08855392894752,
+ 25.005263048884625
+ ],
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ],
+ [
+ -81.08855392894752,
+ 25.005263048884625
+ ],
+ [
+ -81.06861026952413,
+ 25.036588554306316
+ ],
+ [
+ -81.1084975883709,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ],
+ [
+ -81.06861026952413,
+ 25.099239565149702
+ ],
+ [
+ -81.08855392894752,
+ 25.130565070571393
+ ],
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ],
+ [
+ -81.08855392894752,
+ 25.130565070571393
+ ],
+ [
+ -81.12844124779427,
+ 25.130565070571393
+ ],
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ],
+ [
+ -81.12844124779427,
+ 25.130565070571393
+ ],
+ [
+ -81.14838490721766,
+ 25.099239565149702
+ ],
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ],
+ [
+ -81.14838490721766,
+ 25.099239565149702
+ ],
+ [
+ -81.12844124779427,
+ 25.06791405972801
+ ],
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ],
+ [
+ -81.12844124779427,
+ 25.06791405972801
+ ],
+ [
+ -81.08855392894752,
+ 25.06791405972801
+ ],
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ],
+ [
+ -81.08855392894752,
+ 25.06791405972801
+ ],
+ [
+ -81.06861026952413,
+ 25.099239565149702
+ ],
+ [
+ -81.1084975883709,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ],
+ [
+ -81.06861026952413,
+ 25.161890575993088
+ ],
+ [
+ -81.08855392894752,
+ 25.19321608141478
+ ],
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ],
+ [
+ -81.08855392894752,
+ 25.19321608141478
+ ],
+ [
+ -81.12844124779427,
+ 25.19321608141478
+ ],
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ],
+ [
+ -81.12844124779427,
+ 25.19321608141478
+ ],
+ [
+ -81.14838490721766,
+ 25.161890575993088
+ ],
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ],
+ [
+ -81.14838490721766,
+ 25.161890575993088
+ ],
+ [
+ -81.12844124779427,
+ 25.130565070571397
+ ],
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ],
+ [
+ -81.12844124779427,
+ 25.130565070571397
+ ],
+ [
+ -81.08855392894752,
+ 25.130565070571397
+ ],
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ],
+ [
+ -81.08855392894752,
+ 25.130565070571397
+ ],
+ [
+ -81.06861026952413,
+ 25.161890575993088
+ ],
+ [
+ -81.1084975883709,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ],
+ [
+ -81.06861026952413,
+ 25.224541586836473
+ ],
+ [
+ -81.08855392894752,
+ 25.255867092258164
+ ],
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ],
+ [
+ -81.08855392894752,
+ 25.255867092258164
+ ],
+ [
+ -81.12844124779427,
+ 25.255867092258164
+ ],
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ],
+ [
+ -81.12844124779427,
+ 25.255867092258164
+ ],
+ [
+ -81.14838490721766,
+ 25.224541586836473
+ ],
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ],
+ [
+ -81.14838490721766,
+ 25.224541586836473
+ ],
+ [
+ -81.12844124779427,
+ 25.193216081414782
+ ],
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ],
+ [
+ -81.12844124779427,
+ 25.193216081414782
+ ],
+ [
+ -81.08855392894752,
+ 25.193216081414782
+ ],
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ],
+ [
+ -81.08855392894752,
+ 25.193216081414782
+ ],
+ [
+ -81.06861026952413,
+ 25.224541586836473
+ ],
+ [
+ -81.1084975883709,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ],
+ [
+ -81.06861026952413,
+ 25.28719259767986
+ ],
+ [
+ -81.08855392894752,
+ 25.31851810310155
+ ],
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ],
+ [
+ -81.08855392894752,
+ 25.31851810310155
+ ],
+ [
+ -81.12844124779427,
+ 25.31851810310155
+ ],
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ],
+ [
+ -81.12844124779427,
+ 25.31851810310155
+ ],
+ [
+ -81.14838490721766,
+ 25.28719259767986
+ ],
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ],
+ [
+ -81.14838490721766,
+ 25.28719259767986
+ ],
+ [
+ -81.12844124779427,
+ 25.255867092258168
+ ],
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ],
+ [
+ -81.12844124779427,
+ 25.255867092258168
+ ],
+ [
+ -81.08855392894752,
+ 25.255867092258168
+ ],
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ],
+ [
+ -81.08855392894752,
+ 25.255867092258168
+ ],
+ [
+ -81.06861026952413,
+ 25.28719259767986
+ ],
+ [
+ -81.1084975883709,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ],
+ [
+ -81.06861026952413,
+ 25.349843608523244
+ ],
+ [
+ -81.08855392894752,
+ 25.381169113944935
+ ],
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ],
+ [
+ -81.08855392894752,
+ 25.381169113944935
+ ],
+ [
+ -81.12844124779427,
+ 25.381169113944935
+ ],
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ],
+ [
+ -81.12844124779427,
+ 25.381169113944935
+ ],
+ [
+ -81.14838490721766,
+ 25.349843608523244
+ ],
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ],
+ [
+ -81.14838490721766,
+ 25.349843608523244
+ ],
+ [
+ -81.12844124779427,
+ 25.318518103101553
+ ],
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ],
+ [
+ -81.12844124779427,
+ 25.318518103101553
+ ],
+ [
+ -81.08855392894752,
+ 25.318518103101553
+ ],
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ],
+ [
+ -81.08855392894752,
+ 25.318518103101553
+ ],
+ [
+ -81.06861026952413,
+ 25.349843608523244
+ ],
+ [
+ -81.1084975883709,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ],
+ [
+ -81.06861026952413,
+ 25.41249461936663
+ ],
+ [
+ -81.08855392894752,
+ 25.44382012478832
+ ],
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ],
+ [
+ -81.08855392894752,
+ 25.44382012478832
+ ],
+ [
+ -81.12844124779427,
+ 25.44382012478832
+ ],
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ],
+ [
+ -81.12844124779427,
+ 25.44382012478832
+ ],
+ [
+ -81.14838490721766,
+ 25.41249461936663
+ ],
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ],
+ [
+ -81.14838490721766,
+ 25.41249461936663
+ ],
+ [
+ -81.12844124779427,
+ 25.38116911394494
+ ],
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ],
+ [
+ -81.12844124779427,
+ 25.38116911394494
+ ],
+ [
+ -81.08855392894752,
+ 25.38116911394494
+ ],
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ],
+ [
+ -81.08855392894752,
+ 25.38116911394494
+ ],
+ [
+ -81.06861026952413,
+ 25.41249461936663
+ ],
+ [
+ -81.1084975883709,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ],
+ [
+ -81.06861026952413,
+ 25.475145630210015
+ ],
+ [
+ -81.08855392894752,
+ 25.506471135631706
+ ],
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ],
+ [
+ -81.08855392894752,
+ 25.506471135631706
+ ],
+ [
+ -81.12844124779427,
+ 25.506471135631706
+ ],
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ],
+ [
+ -81.12844124779427,
+ 25.506471135631706
+ ],
+ [
+ -81.14838490721766,
+ 25.475145630210015
+ ],
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ],
+ [
+ -81.14838490721766,
+ 25.475145630210015
+ ],
+ [
+ -81.12844124779427,
+ 25.443820124788324
+ ],
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ],
+ [
+ -81.12844124779427,
+ 25.443820124788324
+ ],
+ [
+ -81.08855392894752,
+ 25.443820124788324
+ ],
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ],
+ [
+ -81.08855392894752,
+ 25.443820124788324
+ ],
+ [
+ -81.06861026952413,
+ 25.475145630210015
+ ],
+ [
+ -81.1084975883709,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ],
+ [
+ -81.06861026952413,
+ 25.5377966410534
+ ],
+ [
+ -81.08855392894752,
+ 25.56912214647509
+ ],
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ],
+ [
+ -81.08855392894752,
+ 25.56912214647509
+ ],
+ [
+ -81.12844124779427,
+ 25.56912214647509
+ ],
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ],
+ [
+ -81.12844124779427,
+ 25.56912214647509
+ ],
+ [
+ -81.14838490721766,
+ 25.5377966410534
+ ],
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ],
+ [
+ -81.14838490721766,
+ 25.5377966410534
+ ],
+ [
+ -81.12844124779427,
+ 25.50647113563171
+ ],
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ],
+ [
+ -81.12844124779427,
+ 25.50647113563171
+ ],
+ [
+ -81.08855392894752,
+ 25.50647113563171
+ ],
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ],
+ [
+ -81.08855392894752,
+ 25.50647113563171
+ ],
+ [
+ -81.06861026952413,
+ 25.5377966410534
+ ],
+ [
+ -81.1084975883709,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ],
+ [
+ -81.06861026952413,
+ 25.600447651896786
+ ],
+ [
+ -81.08855392894752,
+ 25.631773157318477
+ ],
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ],
+ [
+ -81.08855392894752,
+ 25.631773157318477
+ ],
+ [
+ -81.12844124779427,
+ 25.631773157318477
+ ],
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ],
+ [
+ -81.12844124779427,
+ 25.631773157318477
+ ],
+ [
+ -81.14838490721766,
+ 25.600447651896786
+ ],
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ],
+ [
+ -81.14838490721766,
+ 25.600447651896786
+ ],
+ [
+ -81.12844124779427,
+ 25.569122146475095
+ ],
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ],
+ [
+ -81.12844124779427,
+ 25.569122146475095
+ ],
+ [
+ -81.08855392894752,
+ 25.569122146475095
+ ],
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ],
+ [
+ -81.08855392894752,
+ 25.569122146475095
+ ],
+ [
+ -81.06861026952413,
+ 25.600447651896786
+ ],
+ [
+ -81.1084975883709,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ],
+ [
+ -81.06861026952413,
+ 25.663098662740172
+ ],
+ [
+ -81.08855392894752,
+ 25.694424168161863
+ ],
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ],
+ [
+ -81.08855392894752,
+ 25.694424168161863
+ ],
+ [
+ -81.12844124779427,
+ 25.694424168161863
+ ],
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ],
+ [
+ -81.12844124779427,
+ 25.694424168161863
+ ],
+ [
+ -81.14838490721766,
+ 25.663098662740172
+ ],
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ],
+ [
+ -81.14838490721766,
+ 25.663098662740172
+ ],
+ [
+ -81.12844124779427,
+ 25.63177315731848
+ ],
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ],
+ [
+ -81.12844124779427,
+ 25.63177315731848
+ ],
+ [
+ -81.08855392894752,
+ 25.63177315731848
+ ],
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ],
+ [
+ -81.08855392894752,
+ 25.63177315731848
+ ],
+ [
+ -81.06861026952413,
+ 25.663098662740172
+ ],
+ [
+ -81.1084975883709,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ],
+ [
+ -81.06861026952413,
+ 25.725749673583557
+ ],
+ [
+ -81.08855392894752,
+ 25.75707517900525
+ ],
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ],
+ [
+ -81.08855392894752,
+ 25.75707517900525
+ ],
+ [
+ -81.12844124779427,
+ 25.75707517900525
+ ],
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ],
+ [
+ -81.12844124779427,
+ 25.75707517900525
+ ],
+ [
+ -81.14838490721766,
+ 25.725749673583557
+ ],
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ],
+ [
+ -81.14838490721766,
+ 25.725749673583557
+ ],
+ [
+ -81.12844124779427,
+ 25.694424168161866
+ ],
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ],
+ [
+ -81.12844124779427,
+ 25.694424168161866
+ ],
+ [
+ -81.08855392894752,
+ 25.694424168161866
+ ],
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ],
+ [
+ -81.08855392894752,
+ 25.694424168161866
+ ],
+ [
+ -81.06861026952413,
+ 25.725749673583557
+ ],
+ [
+ -81.1084975883709,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ],
+ [
+ -81.06861026952413,
+ 25.788400684426943
+ ],
+ [
+ -81.08855392894752,
+ 25.819726189848634
+ ],
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ],
+ [
+ -81.08855392894752,
+ 25.819726189848634
+ ],
+ [
+ -81.12844124779427,
+ 25.819726189848634
+ ],
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ],
+ [
+ -81.12844124779427,
+ 25.819726189848634
+ ],
+ [
+ -81.14838490721766,
+ 25.788400684426943
+ ],
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ],
+ [
+ -81.14838490721766,
+ 25.788400684426943
+ ],
+ [
+ -81.12844124779427,
+ 25.757075179005252
+ ],
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ],
+ [
+ -81.12844124779427,
+ 25.757075179005252
+ ],
+ [
+ -81.08855392894752,
+ 25.757075179005252
+ ],
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ],
+ [
+ -81.08855392894752,
+ 25.757075179005252
+ ],
+ [
+ -81.06861026952413,
+ 25.788400684426943
+ ],
+ [
+ -81.1084975883709,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ],
+ [
+ -81.06861026952413,
+ 25.85105169527033
+ ],
+ [
+ -81.08855392894752,
+ 25.88237720069202
+ ],
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ],
+ [
+ -81.08855392894752,
+ 25.88237720069202
+ ],
+ [
+ -81.12844124779427,
+ 25.88237720069202
+ ],
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ],
+ [
+ -81.12844124779427,
+ 25.88237720069202
+ ],
+ [
+ -81.14838490721766,
+ 25.85105169527033
+ ],
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ],
+ [
+ -81.14838490721766,
+ 25.85105169527033
+ ],
+ [
+ -81.12844124779427,
+ 25.819726189848637
+ ],
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ],
+ [
+ -81.12844124779427,
+ 25.819726189848637
+ ],
+ [
+ -81.08855392894752,
+ 25.819726189848637
+ ],
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ],
+ [
+ -81.08855392894752,
+ 25.819726189848637
+ ],
+ [
+ -81.06861026952413,
+ 25.85105169527033
+ ],
+ [
+ -81.1084975883709,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ],
+ [
+ -81.06861026952413,
+ 25.913702706113714
+ ],
+ [
+ -81.08855392894752,
+ 25.945028211535405
+ ],
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ],
+ [
+ -81.08855392894752,
+ 25.945028211535405
+ ],
+ [
+ -81.12844124779427,
+ 25.945028211535405
+ ],
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ],
+ [
+ -81.12844124779427,
+ 25.945028211535405
+ ],
+ [
+ -81.14838490721766,
+ 25.913702706113714
+ ],
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ],
+ [
+ -81.14838490721766,
+ 25.913702706113714
+ ],
+ [
+ -81.12844124779427,
+ 25.882377200692023
+ ],
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ],
+ [
+ -81.12844124779427,
+ 25.882377200692023
+ ],
+ [
+ -81.08855392894752,
+ 25.882377200692023
+ ],
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ],
+ [
+ -81.08855392894752,
+ 25.882377200692023
+ ],
+ [
+ -81.06861026952413,
+ 25.913702706113714
+ ],
+ [
+ -81.1084975883709,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ],
+ [
+ -81.06861026952413,
+ 25.9763537169571
+ ],
+ [
+ -81.08855392894752,
+ 26.00767922237879
+ ],
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ],
+ [
+ -81.08855392894752,
+ 26.00767922237879
+ ],
+ [
+ -81.12844124779427,
+ 26.00767922237879
+ ],
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ],
+ [
+ -81.12844124779427,
+ 26.00767922237879
+ ],
+ [
+ -81.14838490721766,
+ 25.9763537169571
+ ],
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ],
+ [
+ -81.14838490721766,
+ 25.9763537169571
+ ],
+ [
+ -81.12844124779427,
+ 25.94502821153541
+ ],
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ],
+ [
+ -81.12844124779427,
+ 25.94502821153541
+ ],
+ [
+ -81.08855392894752,
+ 25.94502821153541
+ ],
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ],
+ [
+ -81.08855392894752,
+ 25.94502821153541
+ ],
+ [
+ -81.06861026952413,
+ 25.9763537169571
+ ],
+ [
+ -81.1084975883709,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ],
+ [
+ -81.06861026952413,
+ 26.039004727800485
+ ],
+ [
+ -81.08855392894752,
+ 26.070330233222176
+ ],
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ],
+ [
+ -81.08855392894752,
+ 26.070330233222176
+ ],
+ [
+ -81.12844124779427,
+ 26.070330233222176
+ ],
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ],
+ [
+ -81.12844124779427,
+ 26.070330233222176
+ ],
+ [
+ -81.14838490721766,
+ 26.039004727800485
+ ],
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ],
+ [
+ -81.14838490721766,
+ 26.039004727800485
+ ],
+ [
+ -81.12844124779427,
+ 26.007679222378794
+ ],
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ],
+ [
+ -81.12844124779427,
+ 26.007679222378794
+ ],
+ [
+ -81.08855392894752,
+ 26.007679222378794
+ ],
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ],
+ [
+ -81.08855392894752,
+ 26.007679222378794
+ ],
+ [
+ -81.06861026952413,
+ 26.039004727800485
+ ],
+ [
+ -81.1084975883709,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ],
+ [
+ -81.06861026952413,
+ 26.10165573864387
+ ],
+ [
+ -81.08855392894752,
+ 26.13298124406556
+ ],
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ],
+ [
+ -81.08855392894752,
+ 26.13298124406556
+ ],
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ],
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ],
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ],
+ [
+ -81.14838490721766,
+ 26.10165573864387
+ ],
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ],
+ [
+ -81.14838490721766,
+ 26.10165573864387
+ ],
+ [
+ -81.12844124779427,
+ 26.07033023322218
+ ],
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ],
+ [
+ -81.12844124779427,
+ 26.07033023322218
+ ],
+ [
+ -81.08855392894752,
+ 26.07033023322218
+ ],
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ],
+ [
+ -81.08855392894752,
+ 26.07033023322218
+ ],
+ [
+ -81.06861026952413,
+ 26.10165573864387
+ ],
+ [
+ -81.1084975883709,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ],
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ],
+ [
+ -81.08855392894752,
+ 26.195632254908944
+ ],
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ],
+ [
+ -81.08855392894752,
+ 26.195632254908944
+ ],
+ [
+ -81.12844124779427,
+ 26.195632254908944
+ ],
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ],
+ [
+ -81.12844124779427,
+ 26.195632254908944
+ ],
+ [
+ -81.14838490721766,
+ 26.164306749487253
+ ],
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ],
+ [
+ -81.14838490721766,
+ 26.164306749487253
+ ],
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ],
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ],
+ [
+ -81.12844124779427,
+ 26.13298124406556
+ ],
+ [
+ -81.08855392894752,
+ 26.13298124406556
+ ],
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ],
+ [
+ -81.08855392894752,
+ 26.13298124406556
+ ],
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ],
+ [
+ -81.1084975883709,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ],
+ [
+ -81.06861026952413,
+ 26.22695776033064
+ ],
+ [
+ -81.08855392894752,
+ 26.258283265752333
+ ],
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ],
+ [
+ -81.08855392894752,
+ 26.258283265752333
+ ],
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ],
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ],
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ],
+ [
+ -81.14838490721766,
+ 26.22695776033064
+ ],
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ],
+ [
+ -81.14838490721766,
+ 26.22695776033064
+ ],
+ [
+ -81.12844124779427,
+ 26.19563225490895
+ ],
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ],
+ [
+ -81.12844124779427,
+ 26.19563225490895
+ ],
+ [
+ -81.08855392894752,
+ 26.19563225490895
+ ],
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ],
+ [
+ -81.08855392894752,
+ 26.19563225490895
+ ],
+ [
+ -81.06861026952413,
+ 26.22695776033064
+ ],
+ [
+ -81.1084975883709,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ],
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ],
+ [
+ -81.08855392894752,
+ 26.320934276595715
+ ],
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ],
+ [
+ -81.08855392894752,
+ 26.320934276595715
+ ],
+ [
+ -81.12844124779427,
+ 26.320934276595715
+ ],
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ],
+ [
+ -81.12844124779427,
+ 26.320934276595715
+ ],
+ [
+ -81.14838490721766,
+ 26.289608771174024
+ ],
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ],
+ [
+ -81.14838490721766,
+ 26.289608771174024
+ ],
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ],
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ],
+ [
+ -81.12844124779427,
+ 26.258283265752333
+ ],
+ [
+ -81.08855392894752,
+ 26.258283265752333
+ ],
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ],
+ [
+ -81.08855392894752,
+ 26.258283265752333
+ ],
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ],
+ [
+ -81.1084975883709,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ],
+ [
+ -81.06861026952413,
+ 26.35225978201741
+ ],
+ [
+ -81.08855392894752,
+ 26.3835852874391
+ ],
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ],
+ [
+ -81.08855392894752,
+ 26.3835852874391
+ ],
+ [
+ -81.12844124779427,
+ 26.3835852874391
+ ],
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ],
+ [
+ -81.12844124779427,
+ 26.3835852874391
+ ],
+ [
+ -81.14838490721766,
+ 26.35225978201741
+ ],
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ],
+ [
+ -81.14838490721766,
+ 26.35225978201741
+ ],
+ [
+ -81.12844124779427,
+ 26.320934276595718
+ ],
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ],
+ [
+ -81.12844124779427,
+ 26.320934276595718
+ ],
+ [
+ -81.08855392894752,
+ 26.320934276595718
+ ],
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ],
+ [
+ -81.08855392894752,
+ 26.320934276595718
+ ],
+ [
+ -81.06861026952413,
+ 26.35225978201741
+ ],
+ [
+ -81.1084975883709,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ],
+ [
+ -81.06861026952413,
+ 26.414910792860795
+ ],
+ [
+ -81.08855392894752,
+ 26.446236298282486
+ ],
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ],
+ [
+ -81.08855392894752,
+ 26.446236298282486
+ ],
+ [
+ -81.12844124779427,
+ 26.446236298282486
+ ],
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ],
+ [
+ -81.12844124779427,
+ 26.446236298282486
+ ],
+ [
+ -81.14838490721766,
+ 26.414910792860795
+ ],
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ],
+ [
+ -81.14838490721766,
+ 26.414910792860795
+ ],
+ [
+ -81.12844124779427,
+ 26.383585287439104
+ ],
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ],
+ [
+ -81.12844124779427,
+ 26.383585287439104
+ ],
+ [
+ -81.08855392894752,
+ 26.383585287439104
+ ],
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ],
+ [
+ -81.08855392894752,
+ 26.383585287439104
+ ],
+ [
+ -81.06861026952413,
+ 26.414910792860795
+ ],
+ [
+ -81.1084975883709,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ],
+ [
+ -81.00877929125399,
+ 24.942612038041236
+ ],
+ [
+ -81.02872295067738,
+ 24.973937543462927
+ ],
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ],
+ [
+ -81.02872295067738,
+ 24.973937543462927
+ ],
+ [
+ -81.06861026952413,
+ 24.973937543462927
+ ],
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ],
+ [
+ -81.06861026952413,
+ 24.973937543462927
+ ],
+ [
+ -81.08855392894752,
+ 24.942612038041236
+ ],
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ],
+ [
+ -81.08855392894752,
+ 24.942612038041236
+ ],
+ [
+ -81.06861026952413,
+ 24.911286532619545
+ ],
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ],
+ [
+ -81.06861026952413,
+ 24.911286532619545
+ ],
+ [
+ -81.02872295067738,
+ 24.911286532619545
+ ],
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ],
+ [
+ -81.02872295067738,
+ 24.911286532619545
+ ],
+ [
+ -81.00877929125399,
+ 24.942612038041236
+ ],
+ [
+ -81.04866661010075,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ],
+ [
+ -81.00877929125399,
+ 25.005263048884622
+ ],
+ [
+ -81.02872295067738,
+ 25.036588554306313
+ ],
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ],
+ [
+ -81.02872295067738,
+ 25.036588554306313
+ ],
+ [
+ -81.06861026952413,
+ 25.036588554306313
+ ],
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ],
+ [
+ -81.06861026952413,
+ 25.036588554306313
+ ],
+ [
+ -81.08855392894752,
+ 25.005263048884622
+ ],
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ],
+ [
+ -81.08855392894752,
+ 25.005263048884622
+ ],
+ [
+ -81.06861026952413,
+ 24.97393754346293
+ ],
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ],
+ [
+ -81.06861026952413,
+ 24.97393754346293
+ ],
+ [
+ -81.02872295067738,
+ 24.97393754346293
+ ],
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ],
+ [
+ -81.02872295067738,
+ 24.97393754346293
+ ],
+ [
+ -81.00877929125399,
+ 25.005263048884622
+ ],
+ [
+ -81.04866661010075,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ],
+ [
+ -81.00877929125399,
+ 25.067914059728007
+ ],
+ [
+ -81.02872295067738,
+ 25.0992395651497
+ ],
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ],
+ [
+ -81.02872295067738,
+ 25.0992395651497
+ ],
+ [
+ -81.06861026952413,
+ 25.0992395651497
+ ],
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ],
+ [
+ -81.06861026952413,
+ 25.0992395651497
+ ],
+ [
+ -81.08855392894752,
+ 25.067914059728007
+ ],
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ],
+ [
+ -81.08855392894752,
+ 25.067914059728007
+ ],
+ [
+ -81.06861026952413,
+ 25.036588554306316
+ ],
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ],
+ [
+ -81.06861026952413,
+ 25.036588554306316
+ ],
+ [
+ -81.02872295067738,
+ 25.036588554306316
+ ],
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ],
+ [
+ -81.02872295067738,
+ 25.036588554306316
+ ],
+ [
+ -81.00877929125399,
+ 25.067914059728007
+ ],
+ [
+ -81.04866661010075,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ],
+ [
+ -81.00877929125399,
+ 25.130565070571393
+ ],
+ [
+ -81.02872295067738,
+ 25.161890575993084
+ ],
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ],
+ [
+ -81.02872295067738,
+ 25.161890575993084
+ ],
+ [
+ -81.06861026952413,
+ 25.161890575993084
+ ],
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ],
+ [
+ -81.06861026952413,
+ 25.161890575993084
+ ],
+ [
+ -81.08855392894752,
+ 25.130565070571393
+ ],
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ],
+ [
+ -81.08855392894752,
+ 25.130565070571393
+ ],
+ [
+ -81.06861026952413,
+ 25.099239565149702
+ ],
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ],
+ [
+ -81.06861026952413,
+ 25.099239565149702
+ ],
+ [
+ -81.02872295067738,
+ 25.099239565149702
+ ],
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ],
+ [
+ -81.02872295067738,
+ 25.099239565149702
+ ],
+ [
+ -81.00877929125399,
+ 25.130565070571393
+ ],
+ [
+ -81.04866661010075,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ],
+ [
+ -81.00877929125399,
+ 25.19321608141478
+ ],
+ [
+ -81.02872295067738,
+ 25.22454158683647
+ ],
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ],
+ [
+ -81.02872295067738,
+ 25.22454158683647
+ ],
+ [
+ -81.06861026952413,
+ 25.22454158683647
+ ],
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ],
+ [
+ -81.06861026952413,
+ 25.22454158683647
+ ],
+ [
+ -81.08855392894752,
+ 25.19321608141478
+ ],
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ],
+ [
+ -81.08855392894752,
+ 25.19321608141478
+ ],
+ [
+ -81.06861026952413,
+ 25.161890575993088
+ ],
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ],
+ [
+ -81.06861026952413,
+ 25.161890575993088
+ ],
+ [
+ -81.02872295067738,
+ 25.161890575993088
+ ],
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ],
+ [
+ -81.02872295067738,
+ 25.161890575993088
+ ],
+ [
+ -81.00877929125399,
+ 25.19321608141478
+ ],
+ [
+ -81.04866661010075,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ],
+ [
+ -81.00877929125399,
+ 25.255867092258164
+ ],
+ [
+ -81.02872295067738,
+ 25.287192597679855
+ ],
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ],
+ [
+ -81.02872295067738,
+ 25.287192597679855
+ ],
+ [
+ -81.06861026952413,
+ 25.287192597679855
+ ],
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ],
+ [
+ -81.06861026952413,
+ 25.287192597679855
+ ],
+ [
+ -81.08855392894752,
+ 25.255867092258164
+ ],
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ],
+ [
+ -81.08855392894752,
+ 25.255867092258164
+ ],
+ [
+ -81.06861026952413,
+ 25.224541586836473
+ ],
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ],
+ [
+ -81.06861026952413,
+ 25.224541586836473
+ ],
+ [
+ -81.02872295067738,
+ 25.224541586836473
+ ],
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ],
+ [
+ -81.02872295067738,
+ 25.224541586836473
+ ],
+ [
+ -81.00877929125399,
+ 25.255867092258164
+ ],
+ [
+ -81.04866661010075,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ],
+ [
+ -81.00877929125399,
+ 25.31851810310155
+ ],
+ [
+ -81.02872295067738,
+ 25.34984360852324
+ ],
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ],
+ [
+ -81.02872295067738,
+ 25.34984360852324
+ ],
+ [
+ -81.06861026952413,
+ 25.34984360852324
+ ],
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ],
+ [
+ -81.06861026952413,
+ 25.34984360852324
+ ],
+ [
+ -81.08855392894752,
+ 25.31851810310155
+ ],
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ],
+ [
+ -81.08855392894752,
+ 25.31851810310155
+ ],
+ [
+ -81.06861026952413,
+ 25.28719259767986
+ ],
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ],
+ [
+ -81.06861026952413,
+ 25.28719259767986
+ ],
+ [
+ -81.02872295067738,
+ 25.28719259767986
+ ],
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ],
+ [
+ -81.02872295067738,
+ 25.28719259767986
+ ],
+ [
+ -81.00877929125399,
+ 25.31851810310155
+ ],
+ [
+ -81.04866661010075,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ],
+ [
+ -81.00877929125399,
+ 25.381169113944935
+ ],
+ [
+ -81.02872295067738,
+ 25.412494619366626
+ ],
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ],
+ [
+ -81.02872295067738,
+ 25.412494619366626
+ ],
+ [
+ -81.06861026952413,
+ 25.412494619366626
+ ],
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ],
+ [
+ -81.06861026952413,
+ 25.412494619366626
+ ],
+ [
+ -81.08855392894752,
+ 25.381169113944935
+ ],
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ],
+ [
+ -81.08855392894752,
+ 25.381169113944935
+ ],
+ [
+ -81.06861026952413,
+ 25.349843608523244
+ ],
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ],
+ [
+ -81.06861026952413,
+ 25.349843608523244
+ ],
+ [
+ -81.02872295067738,
+ 25.349843608523244
+ ],
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ],
+ [
+ -81.02872295067738,
+ 25.349843608523244
+ ],
+ [
+ -81.00877929125399,
+ 25.381169113944935
+ ],
+ [
+ -81.04866661010075,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ],
+ [
+ -81.00877929125399,
+ 25.44382012478832
+ ],
+ [
+ -81.02872295067738,
+ 25.47514563021001
+ ],
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ],
+ [
+ -81.02872295067738,
+ 25.47514563021001
+ ],
+ [
+ -81.06861026952413,
+ 25.47514563021001
+ ],
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ],
+ [
+ -81.06861026952413,
+ 25.47514563021001
+ ],
+ [
+ -81.08855392894752,
+ 25.44382012478832
+ ],
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ],
+ [
+ -81.08855392894752,
+ 25.44382012478832
+ ],
+ [
+ -81.06861026952413,
+ 25.41249461936663
+ ],
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ],
+ [
+ -81.06861026952413,
+ 25.41249461936663
+ ],
+ [
+ -81.02872295067738,
+ 25.41249461936663
+ ],
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ],
+ [
+ -81.02872295067738,
+ 25.41249461936663
+ ],
+ [
+ -81.00877929125399,
+ 25.44382012478832
+ ],
+ [
+ -81.04866661010075,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ],
+ [
+ -81.00877929125399,
+ 25.506471135631706
+ ],
+ [
+ -81.02872295067738,
+ 25.537796641053397
+ ],
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ],
+ [
+ -81.02872295067738,
+ 25.537796641053397
+ ],
+ [
+ -81.06861026952413,
+ 25.537796641053397
+ ],
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ],
+ [
+ -81.06861026952413,
+ 25.537796641053397
+ ],
+ [
+ -81.08855392894752,
+ 25.506471135631706
+ ],
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ],
+ [
+ -81.08855392894752,
+ 25.506471135631706
+ ],
+ [
+ -81.06861026952413,
+ 25.475145630210015
+ ],
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ],
+ [
+ -81.06861026952413,
+ 25.475145630210015
+ ],
+ [
+ -81.02872295067738,
+ 25.475145630210015
+ ],
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ],
+ [
+ -81.02872295067738,
+ 25.475145630210015
+ ],
+ [
+ -81.00877929125399,
+ 25.506471135631706
+ ],
+ [
+ -81.04866661010075,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ],
+ [
+ -81.00877929125399,
+ 25.56912214647509
+ ],
+ [
+ -81.02872295067738,
+ 25.600447651896783
+ ],
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ],
+ [
+ -81.02872295067738,
+ 25.600447651896783
+ ],
+ [
+ -81.06861026952413,
+ 25.600447651896783
+ ],
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ],
+ [
+ -81.06861026952413,
+ 25.600447651896783
+ ],
+ [
+ -81.08855392894752,
+ 25.56912214647509
+ ],
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ],
+ [
+ -81.08855392894752,
+ 25.56912214647509
+ ],
+ [
+ -81.06861026952413,
+ 25.5377966410534
+ ],
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ],
+ [
+ -81.06861026952413,
+ 25.5377966410534
+ ],
+ [
+ -81.02872295067738,
+ 25.5377966410534
+ ],
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ],
+ [
+ -81.02872295067738,
+ 25.5377966410534
+ ],
+ [
+ -81.00877929125399,
+ 25.56912214647509
+ ],
+ [
+ -81.04866661010075,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ],
+ [
+ -81.00877929125399,
+ 25.631773157318477
+ ],
+ [
+ -81.02872295067738,
+ 25.66309866274017
+ ],
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ],
+ [
+ -81.02872295067738,
+ 25.66309866274017
+ ],
+ [
+ -81.06861026952413,
+ 25.66309866274017
+ ],
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ],
+ [
+ -81.06861026952413,
+ 25.66309866274017
+ ],
+ [
+ -81.08855392894752,
+ 25.631773157318477
+ ],
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ],
+ [
+ -81.08855392894752,
+ 25.631773157318477
+ ],
+ [
+ -81.06861026952413,
+ 25.600447651896786
+ ],
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ],
+ [
+ -81.06861026952413,
+ 25.600447651896786
+ ],
+ [
+ -81.02872295067738,
+ 25.600447651896786
+ ],
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ],
+ [
+ -81.02872295067738,
+ 25.600447651896786
+ ],
+ [
+ -81.00877929125399,
+ 25.631773157318477
+ ],
+ [
+ -81.04866661010075,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ],
+ [
+ -81.00877929125399,
+ 25.694424168161863
+ ],
+ [
+ -81.02872295067738,
+ 25.725749673583554
+ ],
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ],
+ [
+ -81.02872295067738,
+ 25.725749673583554
+ ],
+ [
+ -81.06861026952413,
+ 25.725749673583554
+ ],
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ],
+ [
+ -81.06861026952413,
+ 25.725749673583554
+ ],
+ [
+ -81.08855392894752,
+ 25.694424168161863
+ ],
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ],
+ [
+ -81.08855392894752,
+ 25.694424168161863
+ ],
+ [
+ -81.06861026952413,
+ 25.663098662740172
+ ],
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ],
+ [
+ -81.06861026952413,
+ 25.663098662740172
+ ],
+ [
+ -81.02872295067738,
+ 25.663098662740172
+ ],
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ],
+ [
+ -81.02872295067738,
+ 25.663098662740172
+ ],
+ [
+ -81.00877929125399,
+ 25.694424168161863
+ ],
+ [
+ -81.04866661010075,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ],
+ [
+ -81.00877929125399,
+ 25.75707517900525
+ ],
+ [
+ -81.02872295067738,
+ 25.78840068442694
+ ],
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ],
+ [
+ -81.02872295067738,
+ 25.78840068442694
+ ],
+ [
+ -81.06861026952413,
+ 25.78840068442694
+ ],
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ],
+ [
+ -81.06861026952413,
+ 25.78840068442694
+ ],
+ [
+ -81.08855392894752,
+ 25.75707517900525
+ ],
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ],
+ [
+ -81.08855392894752,
+ 25.75707517900525
+ ],
+ [
+ -81.06861026952413,
+ 25.725749673583557
+ ],
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ],
+ [
+ -81.06861026952413,
+ 25.725749673583557
+ ],
+ [
+ -81.02872295067738,
+ 25.725749673583557
+ ],
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ],
+ [
+ -81.02872295067738,
+ 25.725749673583557
+ ],
+ [
+ -81.00877929125399,
+ 25.75707517900525
+ ],
+ [
+ -81.04866661010075,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ],
+ [
+ -81.00877929125399,
+ 25.819726189848634
+ ],
+ [
+ -81.02872295067738,
+ 25.851051695270325
+ ],
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ],
+ [
+ -81.02872295067738,
+ 25.851051695270325
+ ],
+ [
+ -81.06861026952413,
+ 25.851051695270325
+ ],
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ],
+ [
+ -81.06861026952413,
+ 25.851051695270325
+ ],
+ [
+ -81.08855392894752,
+ 25.819726189848634
+ ],
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ],
+ [
+ -81.08855392894752,
+ 25.819726189848634
+ ],
+ [
+ -81.06861026952413,
+ 25.788400684426943
+ ],
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ],
+ [
+ -81.06861026952413,
+ 25.788400684426943
+ ],
+ [
+ -81.02872295067738,
+ 25.788400684426943
+ ],
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ],
+ [
+ -81.02872295067738,
+ 25.788400684426943
+ ],
+ [
+ -81.00877929125399,
+ 25.819726189848634
+ ],
+ [
+ -81.04866661010075,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ],
+ [
+ -81.00877929125399,
+ 25.88237720069202
+ ],
+ [
+ -81.02872295067738,
+ 25.91370270611371
+ ],
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ],
+ [
+ -81.02872295067738,
+ 25.91370270611371
+ ],
+ [
+ -81.06861026952413,
+ 25.91370270611371
+ ],
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ],
+ [
+ -81.06861026952413,
+ 25.91370270611371
+ ],
+ [
+ -81.08855392894752,
+ 25.88237720069202
+ ],
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ],
+ [
+ -81.08855392894752,
+ 25.88237720069202
+ ],
+ [
+ -81.06861026952413,
+ 25.85105169527033
+ ],
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ],
+ [
+ -81.06861026952413,
+ 25.85105169527033
+ ],
+ [
+ -81.02872295067738,
+ 25.85105169527033
+ ],
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ],
+ [
+ -81.02872295067738,
+ 25.85105169527033
+ ],
+ [
+ -81.00877929125399,
+ 25.88237720069202
+ ],
+ [
+ -81.04866661010075,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ],
+ [
+ -81.00877929125399,
+ 25.945028211535405
+ ],
+ [
+ -81.02872295067738,
+ 25.976353716957096
+ ],
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ],
+ [
+ -81.02872295067738,
+ 25.976353716957096
+ ],
+ [
+ -81.06861026952413,
+ 25.976353716957096
+ ],
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ],
+ [
+ -81.06861026952413,
+ 25.976353716957096
+ ],
+ [
+ -81.08855392894752,
+ 25.945028211535405
+ ],
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ],
+ [
+ -81.08855392894752,
+ 25.945028211535405
+ ],
+ [
+ -81.06861026952413,
+ 25.913702706113714
+ ],
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ],
+ [
+ -81.06861026952413,
+ 25.913702706113714
+ ],
+ [
+ -81.02872295067738,
+ 25.913702706113714
+ ],
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ],
+ [
+ -81.02872295067738,
+ 25.913702706113714
+ ],
+ [
+ -81.00877929125399,
+ 25.945028211535405
+ ],
+ [
+ -81.04866661010075,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ],
+ [
+ -81.00877929125399,
+ 26.00767922237879
+ ],
+ [
+ -81.02872295067738,
+ 26.03900472780048
+ ],
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ],
+ [
+ -81.02872295067738,
+ 26.03900472780048
+ ],
+ [
+ -81.06861026952413,
+ 26.03900472780048
+ ],
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ],
+ [
+ -81.06861026952413,
+ 26.03900472780048
+ ],
+ [
+ -81.08855392894752,
+ 26.00767922237879
+ ],
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ],
+ [
+ -81.08855392894752,
+ 26.00767922237879
+ ],
+ [
+ -81.06861026952413,
+ 25.9763537169571
+ ],
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ],
+ [
+ -81.06861026952413,
+ 25.9763537169571
+ ],
+ [
+ -81.02872295067738,
+ 25.9763537169571
+ ],
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ],
+ [
+ -81.02872295067738,
+ 25.9763537169571
+ ],
+ [
+ -81.00877929125399,
+ 26.00767922237879
+ ],
+ [
+ -81.04866661010075,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ],
+ [
+ -81.00877929125399,
+ 26.070330233222176
+ ],
+ [
+ -81.02872295067738,
+ 26.101655738643867
+ ],
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ],
+ [
+ -81.02872295067738,
+ 26.101655738643867
+ ],
+ [
+ -81.06861026952413,
+ 26.101655738643867
+ ],
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ],
+ [
+ -81.06861026952413,
+ 26.101655738643867
+ ],
+ [
+ -81.08855392894752,
+ 26.070330233222176
+ ],
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ],
+ [
+ -81.08855392894752,
+ 26.070330233222176
+ ],
+ [
+ -81.06861026952413,
+ 26.039004727800485
+ ],
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ],
+ [
+ -81.06861026952413,
+ 26.039004727800485
+ ],
+ [
+ -81.02872295067738,
+ 26.039004727800485
+ ],
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ],
+ [
+ -81.02872295067738,
+ 26.039004727800485
+ ],
+ [
+ -81.00877929125399,
+ 26.070330233222176
+ ],
+ [
+ -81.04866661010075,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ],
+ [
+ -81.00877929125399,
+ 26.13298124406556
+ ],
+ [
+ -81.02872295067738,
+ 26.164306749487253
+ ],
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ],
+ [
+ -81.02872295067738,
+ 26.164306749487253
+ ],
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ],
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ],
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ],
+ [
+ -81.08855392894752,
+ 26.13298124406556
+ ],
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ],
+ [
+ -81.08855392894752,
+ 26.13298124406556
+ ],
+ [
+ -81.06861026952413,
+ 26.10165573864387
+ ],
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ],
+ [
+ -81.06861026952413,
+ 26.10165573864387
+ ],
+ [
+ -81.02872295067738,
+ 26.10165573864387
+ ],
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ],
+ [
+ -81.02872295067738,
+ 26.10165573864387
+ ],
+ [
+ -81.00877929125399,
+ 26.13298124406556
+ ],
+ [
+ -81.04866661010075,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ],
+ [
+ -81.00877929125399,
+ 26.195632254908944
+ ],
+ [
+ -81.02872295067738,
+ 26.226957760330635
+ ],
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ],
+ [
+ -81.02872295067738,
+ 26.226957760330635
+ ],
+ [
+ -81.06861026952413,
+ 26.226957760330635
+ ],
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ],
+ [
+ -81.06861026952413,
+ 26.226957760330635
+ ],
+ [
+ -81.08855392894752,
+ 26.195632254908944
+ ],
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ],
+ [
+ -81.08855392894752,
+ 26.195632254908944
+ ],
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ],
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ],
+ [
+ -81.06861026952413,
+ 26.164306749487253
+ ],
+ [
+ -81.02872295067738,
+ 26.164306749487253
+ ],
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ],
+ [
+ -81.02872295067738,
+ 26.164306749487253
+ ],
+ [
+ -81.00877929125399,
+ 26.195632254908944
+ ],
+ [
+ -81.04866661010075,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ],
+ [
+ -81.00877929125399,
+ 26.258283265752333
+ ],
+ [
+ -81.02872295067738,
+ 26.289608771174024
+ ],
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ],
+ [
+ -81.02872295067738,
+ 26.289608771174024
+ ],
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ],
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ],
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ],
+ [
+ -81.08855392894752,
+ 26.258283265752333
+ ],
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ],
+ [
+ -81.08855392894752,
+ 26.258283265752333
+ ],
+ [
+ -81.06861026952413,
+ 26.22695776033064
+ ],
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ],
+ [
+ -81.06861026952413,
+ 26.22695776033064
+ ],
+ [
+ -81.02872295067738,
+ 26.22695776033064
+ ],
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ],
+ [
+ -81.02872295067738,
+ 26.22695776033064
+ ],
+ [
+ -81.00877929125399,
+ 26.258283265752333
+ ],
+ [
+ -81.04866661010075,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ],
+ [
+ -81.00877929125399,
+ 26.320934276595715
+ ],
+ [
+ -81.02872295067738,
+ 26.352259782017406
+ ],
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ],
+ [
+ -81.02872295067738,
+ 26.352259782017406
+ ],
+ [
+ -81.06861026952413,
+ 26.352259782017406
+ ],
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ],
+ [
+ -81.06861026952413,
+ 26.352259782017406
+ ],
+ [
+ -81.08855392894752,
+ 26.320934276595715
+ ],
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ],
+ [
+ -81.08855392894752,
+ 26.320934276595715
+ ],
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ],
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ],
+ [
+ -81.06861026952413,
+ 26.289608771174024
+ ],
+ [
+ -81.02872295067738,
+ 26.289608771174024
+ ],
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ],
+ [
+ -81.02872295067738,
+ 26.289608771174024
+ ],
+ [
+ -81.00877929125399,
+ 26.320934276595715
+ ],
+ [
+ -81.04866661010075,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ],
+ [
+ -81.00877929125399,
+ 26.3835852874391
+ ],
+ [
+ -81.02872295067738,
+ 26.41491079286079
+ ],
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ],
+ [
+ -81.02872295067738,
+ 26.41491079286079
+ ],
+ [
+ -81.06861026952413,
+ 26.41491079286079
+ ],
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ],
+ [
+ -81.06861026952413,
+ 26.41491079286079
+ ],
+ [
+ -81.08855392894752,
+ 26.3835852874391
+ ],
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ],
+ [
+ -81.08855392894752,
+ 26.3835852874391
+ ],
+ [
+ -81.06861026952413,
+ 26.35225978201741
+ ],
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ],
+ [
+ -81.06861026952413,
+ 26.35225978201741
+ ],
+ [
+ -81.02872295067738,
+ 26.35225978201741
+ ],
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ],
+ [
+ -81.02872295067738,
+ 26.35225978201741
+ ],
+ [
+ -81.00877929125399,
+ 26.3835852874391
+ ],
+ [
+ -81.04866661010075,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ],
+ [
+ -81.00877929125399,
+ 26.446236298282486
+ ],
+ [
+ -81.02872295067738,
+ 26.477561803704177
+ ],
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ],
+ [
+ -81.02872295067738,
+ 26.477561803704177
+ ],
+ [
+ -81.06861026952413,
+ 26.477561803704177
+ ],
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ],
+ [
+ -81.06861026952413,
+ 26.477561803704177
+ ],
+ [
+ -81.08855392894752,
+ 26.446236298282486
+ ],
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ],
+ [
+ -81.08855392894752,
+ 26.446236298282486
+ ],
+ [
+ -81.06861026952413,
+ 26.414910792860795
+ ],
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ],
+ [
+ -81.06861026952413,
+ 26.414910792860795
+ ],
+ [
+ -81.02872295067738,
+ 26.414910792860795
+ ],
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ],
+ [
+ -81.02872295067738,
+ 26.414910792860795
+ ],
+ [
+ -81.00877929125399,
+ 26.446236298282486
+ ],
+ [
+ -81.04866661010075,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ],
+ [
+ -80.94894831298383,
+ 24.911286532619545
+ ],
+ [
+ -80.96889197240722,
+ 24.942612038041236
+ ],
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ],
+ [
+ -80.96889197240722,
+ 24.942612038041236
+ ],
+ [
+ -81.00877929125397,
+ 24.942612038041236
+ ],
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ],
+ [
+ -81.00877929125397,
+ 24.942612038041236
+ ],
+ [
+ -81.02872295067736,
+ 24.911286532619545
+ ],
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ],
+ [
+ -81.02872295067736,
+ 24.911286532619545
+ ],
+ [
+ -81.00877929125397,
+ 24.879961027197854
+ ],
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ],
+ [
+ -81.00877929125397,
+ 24.879961027197854
+ ],
+ [
+ -80.96889197240722,
+ 24.879961027197854
+ ],
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ],
+ [
+ -80.96889197240722,
+ 24.879961027197854
+ ],
+ [
+ -80.94894831298383,
+ 24.911286532619545
+ ],
+ [
+ -80.9888356318306,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ],
+ [
+ -80.94894831298383,
+ 24.97393754346293
+ ],
+ [
+ -80.96889197240722,
+ 25.005263048884622
+ ],
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ],
+ [
+ -80.96889197240722,
+ 25.005263048884622
+ ],
+ [
+ -81.00877929125397,
+ 25.005263048884622
+ ],
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ],
+ [
+ -81.00877929125397,
+ 25.005263048884622
+ ],
+ [
+ -81.02872295067736,
+ 24.97393754346293
+ ],
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ],
+ [
+ -81.02872295067736,
+ 24.97393754346293
+ ],
+ [
+ -81.00877929125397,
+ 24.94261203804124
+ ],
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ],
+ [
+ -81.00877929125397,
+ 24.94261203804124
+ ],
+ [
+ -80.96889197240722,
+ 24.94261203804124
+ ],
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ],
+ [
+ -80.96889197240722,
+ 24.94261203804124
+ ],
+ [
+ -80.94894831298383,
+ 24.97393754346293
+ ],
+ [
+ -80.9888356318306,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ],
+ [
+ -80.94894831298383,
+ 25.036588554306316
+ ],
+ [
+ -80.96889197240722,
+ 25.067914059728007
+ ],
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ],
+ [
+ -80.96889197240722,
+ 25.067914059728007
+ ],
+ [
+ -81.00877929125397,
+ 25.067914059728007
+ ],
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ],
+ [
+ -81.00877929125397,
+ 25.067914059728007
+ ],
+ [
+ -81.02872295067736,
+ 25.036588554306316
+ ],
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ],
+ [
+ -81.02872295067736,
+ 25.036588554306316
+ ],
+ [
+ -81.00877929125397,
+ 25.005263048884625
+ ],
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ],
+ [
+ -81.00877929125397,
+ 25.005263048884625
+ ],
+ [
+ -80.96889197240722,
+ 25.005263048884625
+ ],
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ],
+ [
+ -80.96889197240722,
+ 25.005263048884625
+ ],
+ [
+ -80.94894831298383,
+ 25.036588554306316
+ ],
+ [
+ -80.9888356318306,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ],
+ [
+ -80.94894831298383,
+ 25.099239565149702
+ ],
+ [
+ -80.96889197240722,
+ 25.130565070571393
+ ],
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ],
+ [
+ -80.96889197240722,
+ 25.130565070571393
+ ],
+ [
+ -81.00877929125397,
+ 25.130565070571393
+ ],
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ],
+ [
+ -81.00877929125397,
+ 25.130565070571393
+ ],
+ [
+ -81.02872295067736,
+ 25.099239565149702
+ ],
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ],
+ [
+ -81.02872295067736,
+ 25.099239565149702
+ ],
+ [
+ -81.00877929125397,
+ 25.06791405972801
+ ],
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ],
+ [
+ -81.00877929125397,
+ 25.06791405972801
+ ],
+ [
+ -80.96889197240722,
+ 25.06791405972801
+ ],
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ],
+ [
+ -80.96889197240722,
+ 25.06791405972801
+ ],
+ [
+ -80.94894831298383,
+ 25.099239565149702
+ ],
+ [
+ -80.9888356318306,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ],
+ [
+ -80.94894831298383,
+ 25.161890575993088
+ ],
+ [
+ -80.96889197240722,
+ 25.19321608141478
+ ],
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ],
+ [
+ -80.96889197240722,
+ 25.19321608141478
+ ],
+ [
+ -81.00877929125397,
+ 25.19321608141478
+ ],
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ],
+ [
+ -81.00877929125397,
+ 25.19321608141478
+ ],
+ [
+ -81.02872295067736,
+ 25.161890575993088
+ ],
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ],
+ [
+ -81.02872295067736,
+ 25.161890575993088
+ ],
+ [
+ -81.00877929125397,
+ 25.130565070571397
+ ],
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ],
+ [
+ -81.00877929125397,
+ 25.130565070571397
+ ],
+ [
+ -80.96889197240722,
+ 25.130565070571397
+ ],
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ],
+ [
+ -80.96889197240722,
+ 25.130565070571397
+ ],
+ [
+ -80.94894831298383,
+ 25.161890575993088
+ ],
+ [
+ -80.9888356318306,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ],
+ [
+ -80.94894831298383,
+ 25.224541586836473
+ ],
+ [
+ -80.96889197240722,
+ 25.255867092258164
+ ],
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ],
+ [
+ -80.96889197240722,
+ 25.255867092258164
+ ],
+ [
+ -81.00877929125397,
+ 25.255867092258164
+ ],
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ],
+ [
+ -81.00877929125397,
+ 25.255867092258164
+ ],
+ [
+ -81.02872295067736,
+ 25.224541586836473
+ ],
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ],
+ [
+ -81.02872295067736,
+ 25.224541586836473
+ ],
+ [
+ -81.00877929125397,
+ 25.193216081414782
+ ],
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ],
+ [
+ -81.00877929125397,
+ 25.193216081414782
+ ],
+ [
+ -80.96889197240722,
+ 25.193216081414782
+ ],
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ],
+ [
+ -80.96889197240722,
+ 25.193216081414782
+ ],
+ [
+ -80.94894831298383,
+ 25.224541586836473
+ ],
+ [
+ -80.9888356318306,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ],
+ [
+ -80.94894831298383,
+ 25.28719259767986
+ ],
+ [
+ -80.96889197240722,
+ 25.31851810310155
+ ],
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ],
+ [
+ -80.96889197240722,
+ 25.31851810310155
+ ],
+ [
+ -81.00877929125397,
+ 25.31851810310155
+ ],
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ],
+ [
+ -81.00877929125397,
+ 25.31851810310155
+ ],
+ [
+ -81.02872295067736,
+ 25.28719259767986
+ ],
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ],
+ [
+ -81.02872295067736,
+ 25.28719259767986
+ ],
+ [
+ -81.00877929125397,
+ 25.255867092258168
+ ],
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ],
+ [
+ -81.00877929125397,
+ 25.255867092258168
+ ],
+ [
+ -80.96889197240722,
+ 25.255867092258168
+ ],
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ],
+ [
+ -80.96889197240722,
+ 25.255867092258168
+ ],
+ [
+ -80.94894831298383,
+ 25.28719259767986
+ ],
+ [
+ -80.9888356318306,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ],
+ [
+ -80.94894831298383,
+ 25.349843608523244
+ ],
+ [
+ -80.96889197240722,
+ 25.381169113944935
+ ],
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ],
+ [
+ -80.96889197240722,
+ 25.381169113944935
+ ],
+ [
+ -81.00877929125397,
+ 25.381169113944935
+ ],
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ],
+ [
+ -81.00877929125397,
+ 25.381169113944935
+ ],
+ [
+ -81.02872295067736,
+ 25.349843608523244
+ ],
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ],
+ [
+ -81.02872295067736,
+ 25.349843608523244
+ ],
+ [
+ -81.00877929125397,
+ 25.318518103101553
+ ],
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ],
+ [
+ -81.00877929125397,
+ 25.318518103101553
+ ],
+ [
+ -80.96889197240722,
+ 25.318518103101553
+ ],
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ],
+ [
+ -80.96889197240722,
+ 25.318518103101553
+ ],
+ [
+ -80.94894831298383,
+ 25.349843608523244
+ ],
+ [
+ -80.9888356318306,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ],
+ [
+ -80.94894831298383,
+ 25.41249461936663
+ ],
+ [
+ -80.96889197240722,
+ 25.44382012478832
+ ],
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ],
+ [
+ -80.96889197240722,
+ 25.44382012478832
+ ],
+ [
+ -81.00877929125397,
+ 25.44382012478832
+ ],
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ],
+ [
+ -81.00877929125397,
+ 25.44382012478832
+ ],
+ [
+ -81.02872295067736,
+ 25.41249461936663
+ ],
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ],
+ [
+ -81.02872295067736,
+ 25.41249461936663
+ ],
+ [
+ -81.00877929125397,
+ 25.38116911394494
+ ],
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ],
+ [
+ -81.00877929125397,
+ 25.38116911394494
+ ],
+ [
+ -80.96889197240722,
+ 25.38116911394494
+ ],
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ],
+ [
+ -80.96889197240722,
+ 25.38116911394494
+ ],
+ [
+ -80.94894831298383,
+ 25.41249461936663
+ ],
+ [
+ -80.9888356318306,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ],
+ [
+ -80.94894831298383,
+ 25.475145630210015
+ ],
+ [
+ -80.96889197240722,
+ 25.506471135631706
+ ],
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ],
+ [
+ -80.96889197240722,
+ 25.506471135631706
+ ],
+ [
+ -81.00877929125397,
+ 25.506471135631706
+ ],
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ],
+ [
+ -81.00877929125397,
+ 25.506471135631706
+ ],
+ [
+ -81.02872295067736,
+ 25.475145630210015
+ ],
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ],
+ [
+ -81.02872295067736,
+ 25.475145630210015
+ ],
+ [
+ -81.00877929125397,
+ 25.443820124788324
+ ],
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ],
+ [
+ -81.00877929125397,
+ 25.443820124788324
+ ],
+ [
+ -80.96889197240722,
+ 25.443820124788324
+ ],
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ],
+ [
+ -80.96889197240722,
+ 25.443820124788324
+ ],
+ [
+ -80.94894831298383,
+ 25.475145630210015
+ ],
+ [
+ -80.9888356318306,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ],
+ [
+ -80.94894831298383,
+ 25.5377966410534
+ ],
+ [
+ -80.96889197240722,
+ 25.56912214647509
+ ],
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ],
+ [
+ -80.96889197240722,
+ 25.56912214647509
+ ],
+ [
+ -81.00877929125397,
+ 25.56912214647509
+ ],
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ],
+ [
+ -81.00877929125397,
+ 25.56912214647509
+ ],
+ [
+ -81.02872295067736,
+ 25.5377966410534
+ ],
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ],
+ [
+ -81.02872295067736,
+ 25.5377966410534
+ ],
+ [
+ -81.00877929125397,
+ 25.50647113563171
+ ],
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ],
+ [
+ -81.00877929125397,
+ 25.50647113563171
+ ],
+ [
+ -80.96889197240722,
+ 25.50647113563171
+ ],
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ],
+ [
+ -80.96889197240722,
+ 25.50647113563171
+ ],
+ [
+ -80.94894831298383,
+ 25.5377966410534
+ ],
+ [
+ -80.9888356318306,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ],
+ [
+ -80.94894831298383,
+ 25.600447651896786
+ ],
+ [
+ -80.96889197240722,
+ 25.631773157318477
+ ],
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ],
+ [
+ -80.96889197240722,
+ 25.631773157318477
+ ],
+ [
+ -81.00877929125397,
+ 25.631773157318477
+ ],
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ],
+ [
+ -81.00877929125397,
+ 25.631773157318477
+ ],
+ [
+ -81.02872295067736,
+ 25.600447651896786
+ ],
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ],
+ [
+ -81.02872295067736,
+ 25.600447651896786
+ ],
+ [
+ -81.00877929125397,
+ 25.569122146475095
+ ],
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ],
+ [
+ -81.00877929125397,
+ 25.569122146475095
+ ],
+ [
+ -80.96889197240722,
+ 25.569122146475095
+ ],
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ],
+ [
+ -80.96889197240722,
+ 25.569122146475095
+ ],
+ [
+ -80.94894831298383,
+ 25.600447651896786
+ ],
+ [
+ -80.9888356318306,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ],
+ [
+ -80.94894831298383,
+ 25.663098662740172
+ ],
+ [
+ -80.96889197240722,
+ 25.694424168161863
+ ],
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ],
+ [
+ -80.96889197240722,
+ 25.694424168161863
+ ],
+ [
+ -81.00877929125397,
+ 25.694424168161863
+ ],
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ],
+ [
+ -81.00877929125397,
+ 25.694424168161863
+ ],
+ [
+ -81.02872295067736,
+ 25.663098662740172
+ ],
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ],
+ [
+ -81.02872295067736,
+ 25.663098662740172
+ ],
+ [
+ -81.00877929125397,
+ 25.63177315731848
+ ],
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ],
+ [
+ -81.00877929125397,
+ 25.63177315731848
+ ],
+ [
+ -80.96889197240722,
+ 25.63177315731848
+ ],
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ],
+ [
+ -80.96889197240722,
+ 25.63177315731848
+ ],
+ [
+ -80.94894831298383,
+ 25.663098662740172
+ ],
+ [
+ -80.9888356318306,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ],
+ [
+ -80.94894831298383,
+ 25.725749673583557
+ ],
+ [
+ -80.96889197240722,
+ 25.75707517900525
+ ],
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ],
+ [
+ -80.96889197240722,
+ 25.75707517900525
+ ],
+ [
+ -81.00877929125397,
+ 25.75707517900525
+ ],
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ],
+ [
+ -81.00877929125397,
+ 25.75707517900525
+ ],
+ [
+ -81.02872295067736,
+ 25.725749673583557
+ ],
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ],
+ [
+ -81.02872295067736,
+ 25.725749673583557
+ ],
+ [
+ -81.00877929125397,
+ 25.694424168161866
+ ],
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ],
+ [
+ -81.00877929125397,
+ 25.694424168161866
+ ],
+ [
+ -80.96889197240722,
+ 25.694424168161866
+ ],
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ],
+ [
+ -80.96889197240722,
+ 25.694424168161866
+ ],
+ [
+ -80.94894831298383,
+ 25.725749673583557
+ ],
+ [
+ -80.9888356318306,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ],
+ [
+ -80.94894831298383,
+ 25.788400684426943
+ ],
+ [
+ -80.96889197240722,
+ 25.819726189848634
+ ],
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ],
+ [
+ -80.96889197240722,
+ 25.819726189848634
+ ],
+ [
+ -81.00877929125397,
+ 25.819726189848634
+ ],
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ],
+ [
+ -81.00877929125397,
+ 25.819726189848634
+ ],
+ [
+ -81.02872295067736,
+ 25.788400684426943
+ ],
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ],
+ [
+ -81.02872295067736,
+ 25.788400684426943
+ ],
+ [
+ -81.00877929125397,
+ 25.757075179005252
+ ],
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ],
+ [
+ -81.00877929125397,
+ 25.757075179005252
+ ],
+ [
+ -80.96889197240722,
+ 25.757075179005252
+ ],
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ],
+ [
+ -80.96889197240722,
+ 25.757075179005252
+ ],
+ [
+ -80.94894831298383,
+ 25.788400684426943
+ ],
+ [
+ -80.9888356318306,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ],
+ [
+ -80.94894831298383,
+ 25.85105169527033
+ ],
+ [
+ -80.96889197240722,
+ 25.88237720069202
+ ],
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ],
+ [
+ -80.96889197240722,
+ 25.88237720069202
+ ],
+ [
+ -81.00877929125397,
+ 25.88237720069202
+ ],
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ],
+ [
+ -81.00877929125397,
+ 25.88237720069202
+ ],
+ [
+ -81.02872295067736,
+ 25.85105169527033
+ ],
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ],
+ [
+ -81.02872295067736,
+ 25.85105169527033
+ ],
+ [
+ -81.00877929125397,
+ 25.819726189848637
+ ],
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ],
+ [
+ -81.00877929125397,
+ 25.819726189848637
+ ],
+ [
+ -80.96889197240722,
+ 25.819726189848637
+ ],
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ],
+ [
+ -80.96889197240722,
+ 25.819726189848637
+ ],
+ [
+ -80.94894831298383,
+ 25.85105169527033
+ ],
+ [
+ -80.9888356318306,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ],
+ [
+ -80.94894831298383,
+ 25.913702706113714
+ ],
+ [
+ -80.96889197240722,
+ 25.945028211535405
+ ],
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ],
+ [
+ -80.96889197240722,
+ 25.945028211535405
+ ],
+ [
+ -81.00877929125397,
+ 25.945028211535405
+ ],
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ],
+ [
+ -81.00877929125397,
+ 25.945028211535405
+ ],
+ [
+ -81.02872295067736,
+ 25.913702706113714
+ ],
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ],
+ [
+ -81.02872295067736,
+ 25.913702706113714
+ ],
+ [
+ -81.00877929125397,
+ 25.882377200692023
+ ],
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ],
+ [
+ -81.00877929125397,
+ 25.882377200692023
+ ],
+ [
+ -80.96889197240722,
+ 25.882377200692023
+ ],
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ],
+ [
+ -80.96889197240722,
+ 25.882377200692023
+ ],
+ [
+ -80.94894831298383,
+ 25.913702706113714
+ ],
+ [
+ -80.9888356318306,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ],
+ [
+ -80.94894831298383,
+ 25.9763537169571
+ ],
+ [
+ -80.96889197240722,
+ 26.00767922237879
+ ],
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ],
+ [
+ -80.96889197240722,
+ 26.00767922237879
+ ],
+ [
+ -81.00877929125397,
+ 26.00767922237879
+ ],
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ],
+ [
+ -81.00877929125397,
+ 26.00767922237879
+ ],
+ [
+ -81.02872295067736,
+ 25.9763537169571
+ ],
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ],
+ [
+ -81.02872295067736,
+ 25.9763537169571
+ ],
+ [
+ -81.00877929125397,
+ 25.94502821153541
+ ],
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ],
+ [
+ -81.00877929125397,
+ 25.94502821153541
+ ],
+ [
+ -80.96889197240722,
+ 25.94502821153541
+ ],
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ],
+ [
+ -80.96889197240722,
+ 25.94502821153541
+ ],
+ [
+ -80.94894831298383,
+ 25.9763537169571
+ ],
+ [
+ -80.9888356318306,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ],
+ [
+ -80.94894831298383,
+ 26.039004727800485
+ ],
+ [
+ -80.96889197240722,
+ 26.070330233222176
+ ],
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ],
+ [
+ -80.96889197240722,
+ 26.070330233222176
+ ],
+ [
+ -81.00877929125397,
+ 26.070330233222176
+ ],
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ],
+ [
+ -81.00877929125397,
+ 26.070330233222176
+ ],
+ [
+ -81.02872295067736,
+ 26.039004727800485
+ ],
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ],
+ [
+ -81.02872295067736,
+ 26.039004727800485
+ ],
+ [
+ -81.00877929125397,
+ 26.007679222378794
+ ],
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ],
+ [
+ -81.00877929125397,
+ 26.007679222378794
+ ],
+ [
+ -80.96889197240722,
+ 26.007679222378794
+ ],
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ],
+ [
+ -80.96889197240722,
+ 26.007679222378794
+ ],
+ [
+ -80.94894831298383,
+ 26.039004727800485
+ ],
+ [
+ -80.9888356318306,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ],
+ [
+ -80.94894831298383,
+ 26.10165573864387
+ ],
+ [
+ -80.96889197240722,
+ 26.13298124406556
+ ],
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ],
+ [
+ -80.96889197240722,
+ 26.13298124406556
+ ],
+ [
+ -81.00877929125397,
+ 26.13298124406556
+ ],
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ],
+ [
+ -81.00877929125397,
+ 26.13298124406556
+ ],
+ [
+ -81.02872295067736,
+ 26.10165573864387
+ ],
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ],
+ [
+ -81.02872295067736,
+ 26.10165573864387
+ ],
+ [
+ -81.00877929125397,
+ 26.07033023322218
+ ],
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ],
+ [
+ -81.00877929125397,
+ 26.07033023322218
+ ],
+ [
+ -80.96889197240722,
+ 26.07033023322218
+ ],
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ],
+ [
+ -80.96889197240722,
+ 26.07033023322218
+ ],
+ [
+ -80.94894831298383,
+ 26.10165573864387
+ ],
+ [
+ -80.9888356318306,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ],
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ],
+ [
+ -80.96889197240722,
+ 26.195632254908944
+ ],
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ],
+ [
+ -80.96889197240722,
+ 26.195632254908944
+ ],
+ [
+ -81.00877929125397,
+ 26.195632254908944
+ ],
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ],
+ [
+ -81.00877929125397,
+ 26.195632254908944
+ ],
+ [
+ -81.02872295067736,
+ 26.164306749487253
+ ],
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ],
+ [
+ -81.02872295067736,
+ 26.164306749487253
+ ],
+ [
+ -81.00877929125397,
+ 26.13298124406556
+ ],
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ],
+ [
+ -81.00877929125397,
+ 26.13298124406556
+ ],
+ [
+ -80.96889197240722,
+ 26.13298124406556
+ ],
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ],
+ [
+ -80.96889197240722,
+ 26.13298124406556
+ ],
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ],
+ [
+ -80.9888356318306,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ],
+ [
+ -80.94894831298383,
+ 26.22695776033064
+ ],
+ [
+ -80.96889197240722,
+ 26.258283265752333
+ ],
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ],
+ [
+ -80.96889197240722,
+ 26.258283265752333
+ ],
+ [
+ -81.00877929125397,
+ 26.258283265752333
+ ],
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ],
+ [
+ -81.00877929125397,
+ 26.258283265752333
+ ],
+ [
+ -81.02872295067736,
+ 26.22695776033064
+ ],
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ],
+ [
+ -81.02872295067736,
+ 26.22695776033064
+ ],
+ [
+ -81.00877929125397,
+ 26.19563225490895
+ ],
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ],
+ [
+ -81.00877929125397,
+ 26.19563225490895
+ ],
+ [
+ -80.96889197240722,
+ 26.19563225490895
+ ],
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ],
+ [
+ -80.96889197240722,
+ 26.19563225490895
+ ],
+ [
+ -80.94894831298383,
+ 26.22695776033064
+ ],
+ [
+ -80.9888356318306,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ],
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ],
+ [
+ -80.96889197240722,
+ 26.320934276595715
+ ],
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ],
+ [
+ -80.96889197240722,
+ 26.320934276595715
+ ],
+ [
+ -81.00877929125397,
+ 26.320934276595715
+ ],
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ],
+ [
+ -81.00877929125397,
+ 26.320934276595715
+ ],
+ [
+ -81.02872295067736,
+ 26.289608771174024
+ ],
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ],
+ [
+ -81.02872295067736,
+ 26.289608771174024
+ ],
+ [
+ -81.00877929125397,
+ 26.258283265752333
+ ],
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ],
+ [
+ -81.00877929125397,
+ 26.258283265752333
+ ],
+ [
+ -80.96889197240722,
+ 26.258283265752333
+ ],
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ],
+ [
+ -80.96889197240722,
+ 26.258283265752333
+ ],
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ],
+ [
+ -80.9888356318306,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ],
+ [
+ -80.94894831298383,
+ 26.35225978201741
+ ],
+ [
+ -80.96889197240722,
+ 26.3835852874391
+ ],
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ],
+ [
+ -80.96889197240722,
+ 26.3835852874391
+ ],
+ [
+ -81.00877929125397,
+ 26.3835852874391
+ ],
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ],
+ [
+ -81.00877929125397,
+ 26.3835852874391
+ ],
+ [
+ -81.02872295067736,
+ 26.35225978201741
+ ],
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ],
+ [
+ -81.02872295067736,
+ 26.35225978201741
+ ],
+ [
+ -81.00877929125397,
+ 26.320934276595718
+ ],
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ],
+ [
+ -81.00877929125397,
+ 26.320934276595718
+ ],
+ [
+ -80.96889197240722,
+ 26.320934276595718
+ ],
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ],
+ [
+ -80.96889197240722,
+ 26.320934276595718
+ ],
+ [
+ -80.94894831298383,
+ 26.35225978201741
+ ],
+ [
+ -80.9888356318306,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ],
+ [
+ -80.94894831298383,
+ 26.414910792860795
+ ],
+ [
+ -80.96889197240722,
+ 26.446236298282486
+ ],
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ],
+ [
+ -80.96889197240722,
+ 26.446236298282486
+ ],
+ [
+ -81.00877929125397,
+ 26.446236298282486
+ ],
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ],
+ [
+ -81.00877929125397,
+ 26.446236298282486
+ ],
+ [
+ -81.02872295067736,
+ 26.414910792860795
+ ],
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ],
+ [
+ -81.02872295067736,
+ 26.414910792860795
+ ],
+ [
+ -81.00877929125397,
+ 26.383585287439104
+ ],
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ],
+ [
+ -81.00877929125397,
+ 26.383585287439104
+ ],
+ [
+ -80.96889197240722,
+ 26.383585287439104
+ ],
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ],
+ [
+ -80.96889197240722,
+ 26.383585287439104
+ ],
+ [
+ -80.94894831298383,
+ 26.414910792860795
+ ],
+ [
+ -80.9888356318306,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ],
+ [
+ -80.88911733471369,
+ 24.942612038041236
+ ],
+ [
+ -80.90906099413708,
+ 24.973937543462927
+ ],
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ],
+ [
+ -80.90906099413708,
+ 24.973937543462927
+ ],
+ [
+ -80.94894831298383,
+ 24.973937543462927
+ ],
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ],
+ [
+ -80.94894831298383,
+ 24.973937543462927
+ ],
+ [
+ -80.96889197240722,
+ 24.942612038041236
+ ],
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ],
+ [
+ -80.96889197240722,
+ 24.942612038041236
+ ],
+ [
+ -80.94894831298383,
+ 24.911286532619545
+ ],
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ],
+ [
+ -80.94894831298383,
+ 24.911286532619545
+ ],
+ [
+ -80.90906099413708,
+ 24.911286532619545
+ ],
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ],
+ [
+ -80.90906099413708,
+ 24.911286532619545
+ ],
+ [
+ -80.88911733471369,
+ 24.942612038041236
+ ],
+ [
+ -80.92900465356045,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ],
+ [
+ -80.88911733471369,
+ 25.005263048884622
+ ],
+ [
+ -80.90906099413708,
+ 25.036588554306313
+ ],
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ],
+ [
+ -80.90906099413708,
+ 25.036588554306313
+ ],
+ [
+ -80.94894831298383,
+ 25.036588554306313
+ ],
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ],
+ [
+ -80.94894831298383,
+ 25.036588554306313
+ ],
+ [
+ -80.96889197240722,
+ 25.005263048884622
+ ],
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ],
+ [
+ -80.96889197240722,
+ 25.005263048884622
+ ],
+ [
+ -80.94894831298383,
+ 24.97393754346293
+ ],
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ],
+ [
+ -80.94894831298383,
+ 24.97393754346293
+ ],
+ [
+ -80.90906099413708,
+ 24.97393754346293
+ ],
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ],
+ [
+ -80.90906099413708,
+ 24.97393754346293
+ ],
+ [
+ -80.88911733471369,
+ 25.005263048884622
+ ],
+ [
+ -80.92900465356045,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ],
+ [
+ -80.88911733471369,
+ 25.067914059728007
+ ],
+ [
+ -80.90906099413708,
+ 25.0992395651497
+ ],
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ],
+ [
+ -80.90906099413708,
+ 25.0992395651497
+ ],
+ [
+ -80.94894831298383,
+ 25.0992395651497
+ ],
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ],
+ [
+ -80.94894831298383,
+ 25.0992395651497
+ ],
+ [
+ -80.96889197240722,
+ 25.067914059728007
+ ],
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ],
+ [
+ -80.96889197240722,
+ 25.067914059728007
+ ],
+ [
+ -80.94894831298383,
+ 25.036588554306316
+ ],
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ],
+ [
+ -80.94894831298383,
+ 25.036588554306316
+ ],
+ [
+ -80.90906099413708,
+ 25.036588554306316
+ ],
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ],
+ [
+ -80.90906099413708,
+ 25.036588554306316
+ ],
+ [
+ -80.88911733471369,
+ 25.067914059728007
+ ],
+ [
+ -80.92900465356045,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ],
+ [
+ -80.88911733471369,
+ 25.130565070571393
+ ],
+ [
+ -80.90906099413708,
+ 25.161890575993084
+ ],
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ],
+ [
+ -80.90906099413708,
+ 25.161890575993084
+ ],
+ [
+ -80.94894831298383,
+ 25.161890575993084
+ ],
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ],
+ [
+ -80.94894831298383,
+ 25.161890575993084
+ ],
+ [
+ -80.96889197240722,
+ 25.130565070571393
+ ],
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ],
+ [
+ -80.96889197240722,
+ 25.130565070571393
+ ],
+ [
+ -80.94894831298383,
+ 25.099239565149702
+ ],
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ],
+ [
+ -80.94894831298383,
+ 25.099239565149702
+ ],
+ [
+ -80.90906099413708,
+ 25.099239565149702
+ ],
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ],
+ [
+ -80.90906099413708,
+ 25.099239565149702
+ ],
+ [
+ -80.88911733471369,
+ 25.130565070571393
+ ],
+ [
+ -80.92900465356045,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ],
+ [
+ -80.88911733471369,
+ 25.19321608141478
+ ],
+ [
+ -80.90906099413708,
+ 25.22454158683647
+ ],
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ],
+ [
+ -80.90906099413708,
+ 25.22454158683647
+ ],
+ [
+ -80.94894831298383,
+ 25.22454158683647
+ ],
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ],
+ [
+ -80.94894831298383,
+ 25.22454158683647
+ ],
+ [
+ -80.96889197240722,
+ 25.19321608141478
+ ],
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ],
+ [
+ -80.96889197240722,
+ 25.19321608141478
+ ],
+ [
+ -80.94894831298383,
+ 25.161890575993088
+ ],
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ],
+ [
+ -80.94894831298383,
+ 25.161890575993088
+ ],
+ [
+ -80.90906099413708,
+ 25.161890575993088
+ ],
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ],
+ [
+ -80.90906099413708,
+ 25.161890575993088
+ ],
+ [
+ -80.88911733471369,
+ 25.19321608141478
+ ],
+ [
+ -80.92900465356045,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ],
+ [
+ -80.88911733471369,
+ 25.255867092258164
+ ],
+ [
+ -80.90906099413708,
+ 25.287192597679855
+ ],
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ],
+ [
+ -80.90906099413708,
+ 25.287192597679855
+ ],
+ [
+ -80.94894831298383,
+ 25.287192597679855
+ ],
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ],
+ [
+ -80.94894831298383,
+ 25.287192597679855
+ ],
+ [
+ -80.96889197240722,
+ 25.255867092258164
+ ],
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ],
+ [
+ -80.96889197240722,
+ 25.255867092258164
+ ],
+ [
+ -80.94894831298383,
+ 25.224541586836473
+ ],
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ],
+ [
+ -80.94894831298383,
+ 25.224541586836473
+ ],
+ [
+ -80.90906099413708,
+ 25.224541586836473
+ ],
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ],
+ [
+ -80.90906099413708,
+ 25.224541586836473
+ ],
+ [
+ -80.88911733471369,
+ 25.255867092258164
+ ],
+ [
+ -80.92900465356045,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ],
+ [
+ -80.88911733471369,
+ 25.31851810310155
+ ],
+ [
+ -80.90906099413708,
+ 25.34984360852324
+ ],
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ],
+ [
+ -80.90906099413708,
+ 25.34984360852324
+ ],
+ [
+ -80.94894831298383,
+ 25.34984360852324
+ ],
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ],
+ [
+ -80.94894831298383,
+ 25.34984360852324
+ ],
+ [
+ -80.96889197240722,
+ 25.31851810310155
+ ],
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ],
+ [
+ -80.96889197240722,
+ 25.31851810310155
+ ],
+ [
+ -80.94894831298383,
+ 25.28719259767986
+ ],
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ],
+ [
+ -80.94894831298383,
+ 25.28719259767986
+ ],
+ [
+ -80.90906099413708,
+ 25.28719259767986
+ ],
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ],
+ [
+ -80.90906099413708,
+ 25.28719259767986
+ ],
+ [
+ -80.88911733471369,
+ 25.31851810310155
+ ],
+ [
+ -80.92900465356045,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ],
+ [
+ -80.88911733471369,
+ 25.381169113944935
+ ],
+ [
+ -80.90906099413708,
+ 25.412494619366626
+ ],
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ],
+ [
+ -80.90906099413708,
+ 25.412494619366626
+ ],
+ [
+ -80.94894831298383,
+ 25.412494619366626
+ ],
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ],
+ [
+ -80.94894831298383,
+ 25.412494619366626
+ ],
+ [
+ -80.96889197240722,
+ 25.381169113944935
+ ],
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ],
+ [
+ -80.96889197240722,
+ 25.381169113944935
+ ],
+ [
+ -80.94894831298383,
+ 25.349843608523244
+ ],
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ],
+ [
+ -80.94894831298383,
+ 25.349843608523244
+ ],
+ [
+ -80.90906099413708,
+ 25.349843608523244
+ ],
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ],
+ [
+ -80.90906099413708,
+ 25.349843608523244
+ ],
+ [
+ -80.88911733471369,
+ 25.381169113944935
+ ],
+ [
+ -80.92900465356045,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ],
+ [
+ -80.88911733471369,
+ 25.44382012478832
+ ],
+ [
+ -80.90906099413708,
+ 25.47514563021001
+ ],
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ],
+ [
+ -80.90906099413708,
+ 25.47514563021001
+ ],
+ [
+ -80.94894831298383,
+ 25.47514563021001
+ ],
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ],
+ [
+ -80.94894831298383,
+ 25.47514563021001
+ ],
+ [
+ -80.96889197240722,
+ 25.44382012478832
+ ],
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ],
+ [
+ -80.96889197240722,
+ 25.44382012478832
+ ],
+ [
+ -80.94894831298383,
+ 25.41249461936663
+ ],
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ],
+ [
+ -80.94894831298383,
+ 25.41249461936663
+ ],
+ [
+ -80.90906099413708,
+ 25.41249461936663
+ ],
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ],
+ [
+ -80.90906099413708,
+ 25.41249461936663
+ ],
+ [
+ -80.88911733471369,
+ 25.44382012478832
+ ],
+ [
+ -80.92900465356045,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ],
+ [
+ -80.88911733471369,
+ 25.506471135631706
+ ],
+ [
+ -80.90906099413708,
+ 25.537796641053397
+ ],
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ],
+ [
+ -80.90906099413708,
+ 25.537796641053397
+ ],
+ [
+ -80.94894831298383,
+ 25.537796641053397
+ ],
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ],
+ [
+ -80.94894831298383,
+ 25.537796641053397
+ ],
+ [
+ -80.96889197240722,
+ 25.506471135631706
+ ],
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ],
+ [
+ -80.96889197240722,
+ 25.506471135631706
+ ],
+ [
+ -80.94894831298383,
+ 25.475145630210015
+ ],
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ],
+ [
+ -80.94894831298383,
+ 25.475145630210015
+ ],
+ [
+ -80.90906099413708,
+ 25.475145630210015
+ ],
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ],
+ [
+ -80.90906099413708,
+ 25.475145630210015
+ ],
+ [
+ -80.88911733471369,
+ 25.506471135631706
+ ],
+ [
+ -80.92900465356045,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ],
+ [
+ -80.88911733471369,
+ 25.56912214647509
+ ],
+ [
+ -80.90906099413708,
+ 25.600447651896783
+ ],
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ],
+ [
+ -80.90906099413708,
+ 25.600447651896783
+ ],
+ [
+ -80.94894831298383,
+ 25.600447651896783
+ ],
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ],
+ [
+ -80.94894831298383,
+ 25.600447651896783
+ ],
+ [
+ -80.96889197240722,
+ 25.56912214647509
+ ],
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ],
+ [
+ -80.96889197240722,
+ 25.56912214647509
+ ],
+ [
+ -80.94894831298383,
+ 25.5377966410534
+ ],
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ],
+ [
+ -80.94894831298383,
+ 25.5377966410534
+ ],
+ [
+ -80.90906099413708,
+ 25.5377966410534
+ ],
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ],
+ [
+ -80.90906099413708,
+ 25.5377966410534
+ ],
+ [
+ -80.88911733471369,
+ 25.56912214647509
+ ],
+ [
+ -80.92900465356045,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ],
+ [
+ -80.88911733471369,
+ 25.631773157318477
+ ],
+ [
+ -80.90906099413708,
+ 25.66309866274017
+ ],
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ],
+ [
+ -80.90906099413708,
+ 25.66309866274017
+ ],
+ [
+ -80.94894831298383,
+ 25.66309866274017
+ ],
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ],
+ [
+ -80.94894831298383,
+ 25.66309866274017
+ ],
+ [
+ -80.96889197240722,
+ 25.631773157318477
+ ],
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ],
+ [
+ -80.96889197240722,
+ 25.631773157318477
+ ],
+ [
+ -80.94894831298383,
+ 25.600447651896786
+ ],
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ],
+ [
+ -80.94894831298383,
+ 25.600447651896786
+ ],
+ [
+ -80.90906099413708,
+ 25.600447651896786
+ ],
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ],
+ [
+ -80.90906099413708,
+ 25.600447651896786
+ ],
+ [
+ -80.88911733471369,
+ 25.631773157318477
+ ],
+ [
+ -80.92900465356045,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ],
+ [
+ -80.88911733471369,
+ 25.694424168161863
+ ],
+ [
+ -80.90906099413708,
+ 25.725749673583554
+ ],
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ],
+ [
+ -80.90906099413708,
+ 25.725749673583554
+ ],
+ [
+ -80.94894831298383,
+ 25.725749673583554
+ ],
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ],
+ [
+ -80.94894831298383,
+ 25.725749673583554
+ ],
+ [
+ -80.96889197240722,
+ 25.694424168161863
+ ],
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ],
+ [
+ -80.96889197240722,
+ 25.694424168161863
+ ],
+ [
+ -80.94894831298383,
+ 25.663098662740172
+ ],
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ],
+ [
+ -80.94894831298383,
+ 25.663098662740172
+ ],
+ [
+ -80.90906099413708,
+ 25.663098662740172
+ ],
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ],
+ [
+ -80.90906099413708,
+ 25.663098662740172
+ ],
+ [
+ -80.88911733471369,
+ 25.694424168161863
+ ],
+ [
+ -80.92900465356045,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ],
+ [
+ -80.88911733471369,
+ 25.75707517900525
+ ],
+ [
+ -80.90906099413708,
+ 25.78840068442694
+ ],
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ],
+ [
+ -80.90906099413708,
+ 25.78840068442694
+ ],
+ [
+ -80.94894831298383,
+ 25.78840068442694
+ ],
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ],
+ [
+ -80.94894831298383,
+ 25.78840068442694
+ ],
+ [
+ -80.96889197240722,
+ 25.75707517900525
+ ],
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ],
+ [
+ -80.96889197240722,
+ 25.75707517900525
+ ],
+ [
+ -80.94894831298383,
+ 25.725749673583557
+ ],
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ],
+ [
+ -80.94894831298383,
+ 25.725749673583557
+ ],
+ [
+ -80.90906099413708,
+ 25.725749673583557
+ ],
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ],
+ [
+ -80.90906099413708,
+ 25.725749673583557
+ ],
+ [
+ -80.88911733471369,
+ 25.75707517900525
+ ],
+ [
+ -80.92900465356045,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ],
+ [
+ -80.88911733471369,
+ 25.819726189848634
+ ],
+ [
+ -80.90906099413708,
+ 25.851051695270325
+ ],
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ],
+ [
+ -80.90906099413708,
+ 25.851051695270325
+ ],
+ [
+ -80.94894831298383,
+ 25.851051695270325
+ ],
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ],
+ [
+ -80.94894831298383,
+ 25.851051695270325
+ ],
+ [
+ -80.96889197240722,
+ 25.819726189848634
+ ],
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ],
+ [
+ -80.96889197240722,
+ 25.819726189848634
+ ],
+ [
+ -80.94894831298383,
+ 25.788400684426943
+ ],
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ],
+ [
+ -80.94894831298383,
+ 25.788400684426943
+ ],
+ [
+ -80.90906099413708,
+ 25.788400684426943
+ ],
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ],
+ [
+ -80.90906099413708,
+ 25.788400684426943
+ ],
+ [
+ -80.88911733471369,
+ 25.819726189848634
+ ],
+ [
+ -80.92900465356045,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ],
+ [
+ -80.88911733471369,
+ 25.88237720069202
+ ],
+ [
+ -80.90906099413708,
+ 25.91370270611371
+ ],
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ],
+ [
+ -80.90906099413708,
+ 25.91370270611371
+ ],
+ [
+ -80.94894831298383,
+ 25.91370270611371
+ ],
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ],
+ [
+ -80.94894831298383,
+ 25.91370270611371
+ ],
+ [
+ -80.96889197240722,
+ 25.88237720069202
+ ],
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ],
+ [
+ -80.96889197240722,
+ 25.88237720069202
+ ],
+ [
+ -80.94894831298383,
+ 25.85105169527033
+ ],
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ],
+ [
+ -80.94894831298383,
+ 25.85105169527033
+ ],
+ [
+ -80.90906099413708,
+ 25.85105169527033
+ ],
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ],
+ [
+ -80.90906099413708,
+ 25.85105169527033
+ ],
+ [
+ -80.88911733471369,
+ 25.88237720069202
+ ],
+ [
+ -80.92900465356045,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ],
+ [
+ -80.88911733471369,
+ 25.945028211535405
+ ],
+ [
+ -80.90906099413708,
+ 25.976353716957096
+ ],
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ],
+ [
+ -80.90906099413708,
+ 25.976353716957096
+ ],
+ [
+ -80.94894831298383,
+ 25.976353716957096
+ ],
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ],
+ [
+ -80.94894831298383,
+ 25.976353716957096
+ ],
+ [
+ -80.96889197240722,
+ 25.945028211535405
+ ],
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ],
+ [
+ -80.96889197240722,
+ 25.945028211535405
+ ],
+ [
+ -80.94894831298383,
+ 25.913702706113714
+ ],
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ],
+ [
+ -80.94894831298383,
+ 25.913702706113714
+ ],
+ [
+ -80.90906099413708,
+ 25.913702706113714
+ ],
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ],
+ [
+ -80.90906099413708,
+ 25.913702706113714
+ ],
+ [
+ -80.88911733471369,
+ 25.945028211535405
+ ],
+ [
+ -80.92900465356045,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ],
+ [
+ -80.88911733471369,
+ 26.00767922237879
+ ],
+ [
+ -80.90906099413708,
+ 26.03900472780048
+ ],
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ],
+ [
+ -80.90906099413708,
+ 26.03900472780048
+ ],
+ [
+ -80.94894831298383,
+ 26.03900472780048
+ ],
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ],
+ [
+ -80.94894831298383,
+ 26.03900472780048
+ ],
+ [
+ -80.96889197240722,
+ 26.00767922237879
+ ],
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ],
+ [
+ -80.96889197240722,
+ 26.00767922237879
+ ],
+ [
+ -80.94894831298383,
+ 25.9763537169571
+ ],
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ],
+ [
+ -80.94894831298383,
+ 25.9763537169571
+ ],
+ [
+ -80.90906099413708,
+ 25.9763537169571
+ ],
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ],
+ [
+ -80.90906099413708,
+ 25.9763537169571
+ ],
+ [
+ -80.88911733471369,
+ 26.00767922237879
+ ],
+ [
+ -80.92900465356045,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ],
+ [
+ -80.88911733471369,
+ 26.070330233222176
+ ],
+ [
+ -80.90906099413708,
+ 26.101655738643867
+ ],
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ],
+ [
+ -80.90906099413708,
+ 26.101655738643867
+ ],
+ [
+ -80.94894831298383,
+ 26.101655738643867
+ ],
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ],
+ [
+ -80.94894831298383,
+ 26.101655738643867
+ ],
+ [
+ -80.96889197240722,
+ 26.070330233222176
+ ],
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ],
+ [
+ -80.96889197240722,
+ 26.070330233222176
+ ],
+ [
+ -80.94894831298383,
+ 26.039004727800485
+ ],
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ],
+ [
+ -80.94894831298383,
+ 26.039004727800485
+ ],
+ [
+ -80.90906099413708,
+ 26.039004727800485
+ ],
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ],
+ [
+ -80.90906099413708,
+ 26.039004727800485
+ ],
+ [
+ -80.88911733471369,
+ 26.070330233222176
+ ],
+ [
+ -80.92900465356045,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ],
+ [
+ -80.88911733471369,
+ 26.13298124406556
+ ],
+ [
+ -80.90906099413708,
+ 26.164306749487253
+ ],
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ],
+ [
+ -80.90906099413708,
+ 26.164306749487253
+ ],
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ],
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ],
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ],
+ [
+ -80.96889197240722,
+ 26.13298124406556
+ ],
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ],
+ [
+ -80.96889197240722,
+ 26.13298124406556
+ ],
+ [
+ -80.94894831298383,
+ 26.10165573864387
+ ],
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ],
+ [
+ -80.94894831298383,
+ 26.10165573864387
+ ],
+ [
+ -80.90906099413708,
+ 26.10165573864387
+ ],
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ],
+ [
+ -80.90906099413708,
+ 26.10165573864387
+ ],
+ [
+ -80.88911733471369,
+ 26.13298124406556
+ ],
+ [
+ -80.92900465356045,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ],
+ [
+ -80.88911733471369,
+ 26.195632254908944
+ ],
+ [
+ -80.90906099413708,
+ 26.226957760330635
+ ],
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ],
+ [
+ -80.90906099413708,
+ 26.226957760330635
+ ],
+ [
+ -80.94894831298383,
+ 26.226957760330635
+ ],
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ],
+ [
+ -80.94894831298383,
+ 26.226957760330635
+ ],
+ [
+ -80.96889197240722,
+ 26.195632254908944
+ ],
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ],
+ [
+ -80.96889197240722,
+ 26.195632254908944
+ ],
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ],
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ],
+ [
+ -80.94894831298383,
+ 26.164306749487253
+ ],
+ [
+ -80.90906099413708,
+ 26.164306749487253
+ ],
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ],
+ [
+ -80.90906099413708,
+ 26.164306749487253
+ ],
+ [
+ -80.88911733471369,
+ 26.195632254908944
+ ],
+ [
+ -80.92900465356045,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ],
+ [
+ -80.88911733471369,
+ 26.258283265752333
+ ],
+ [
+ -80.90906099413708,
+ 26.289608771174024
+ ],
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ],
+ [
+ -80.90906099413708,
+ 26.289608771174024
+ ],
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ],
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ],
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ],
+ [
+ -80.96889197240722,
+ 26.258283265752333
+ ],
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ],
+ [
+ -80.96889197240722,
+ 26.258283265752333
+ ],
+ [
+ -80.94894831298383,
+ 26.22695776033064
+ ],
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ],
+ [
+ -80.94894831298383,
+ 26.22695776033064
+ ],
+ [
+ -80.90906099413708,
+ 26.22695776033064
+ ],
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ],
+ [
+ -80.90906099413708,
+ 26.22695776033064
+ ],
+ [
+ -80.88911733471369,
+ 26.258283265752333
+ ],
+ [
+ -80.92900465356045,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ],
+ [
+ -80.88911733471369,
+ 26.320934276595715
+ ],
+ [
+ -80.90906099413708,
+ 26.352259782017406
+ ],
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ],
+ [
+ -80.90906099413708,
+ 26.352259782017406
+ ],
+ [
+ -80.94894831298383,
+ 26.352259782017406
+ ],
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ],
+ [
+ -80.94894831298383,
+ 26.352259782017406
+ ],
+ [
+ -80.96889197240722,
+ 26.320934276595715
+ ],
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ],
+ [
+ -80.96889197240722,
+ 26.320934276595715
+ ],
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ],
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ],
+ [
+ -80.94894831298383,
+ 26.289608771174024
+ ],
+ [
+ -80.90906099413708,
+ 26.289608771174024
+ ],
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ],
+ [
+ -80.90906099413708,
+ 26.289608771174024
+ ],
+ [
+ -80.88911733471369,
+ 26.320934276595715
+ ],
+ [
+ -80.92900465356045,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ],
+ [
+ -80.88911733471369,
+ 26.3835852874391
+ ],
+ [
+ -80.90906099413708,
+ 26.41491079286079
+ ],
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ],
+ [
+ -80.90906099413708,
+ 26.41491079286079
+ ],
+ [
+ -80.94894831298383,
+ 26.41491079286079
+ ],
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ],
+ [
+ -80.94894831298383,
+ 26.41491079286079
+ ],
+ [
+ -80.96889197240722,
+ 26.3835852874391
+ ],
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ],
+ [
+ -80.96889197240722,
+ 26.3835852874391
+ ],
+ [
+ -80.94894831298383,
+ 26.35225978201741
+ ],
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ],
+ [
+ -80.94894831298383,
+ 26.35225978201741
+ ],
+ [
+ -80.90906099413708,
+ 26.35225978201741
+ ],
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ],
+ [
+ -80.90906099413708,
+ 26.35225978201741
+ ],
+ [
+ -80.88911733471369,
+ 26.3835852874391
+ ],
+ [
+ -80.92900465356045,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ],
+ [
+ -80.88911733471369,
+ 26.446236298282486
+ ],
+ [
+ -80.90906099413708,
+ 26.477561803704177
+ ],
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ],
+ [
+ -80.90906099413708,
+ 26.477561803704177
+ ],
+ [
+ -80.94894831298383,
+ 26.477561803704177
+ ],
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ],
+ [
+ -80.94894831298383,
+ 26.477561803704177
+ ],
+ [
+ -80.96889197240722,
+ 26.446236298282486
+ ],
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ],
+ [
+ -80.96889197240722,
+ 26.446236298282486
+ ],
+ [
+ -80.94894831298383,
+ 26.414910792860795
+ ],
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ],
+ [
+ -80.94894831298383,
+ 26.414910792860795
+ ],
+ [
+ -80.90906099413708,
+ 26.414910792860795
+ ],
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ],
+ [
+ -80.90906099413708,
+ 26.414910792860795
+ ],
+ [
+ -80.88911733471369,
+ 26.446236298282486
+ ],
+ [
+ -80.92900465356045,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ],
+ [
+ -80.82928635644353,
+ 24.911286532619545
+ ],
+ [
+ -80.84923001586692,
+ 24.942612038041236
+ ],
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ],
+ [
+ -80.84923001586692,
+ 24.942612038041236
+ ],
+ [
+ -80.88911733471367,
+ 24.942612038041236
+ ],
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ],
+ [
+ -80.88911733471367,
+ 24.942612038041236
+ ],
+ [
+ -80.90906099413706,
+ 24.911286532619545
+ ],
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ],
+ [
+ -80.90906099413706,
+ 24.911286532619545
+ ],
+ [
+ -80.88911733471367,
+ 24.879961027197854
+ ],
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ],
+ [
+ -80.88911733471367,
+ 24.879961027197854
+ ],
+ [
+ -80.84923001586692,
+ 24.879961027197854
+ ],
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ],
+ [
+ -80.84923001586692,
+ 24.879961027197854
+ ],
+ [
+ -80.82928635644353,
+ 24.911286532619545
+ ],
+ [
+ -80.8691736752903,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ],
+ [
+ -80.82928635644353,
+ 24.97393754346293
+ ],
+ [
+ -80.84923001586692,
+ 25.005263048884622
+ ],
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ],
+ [
+ -80.84923001586692,
+ 25.005263048884622
+ ],
+ [
+ -80.88911733471367,
+ 25.005263048884622
+ ],
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ],
+ [
+ -80.88911733471367,
+ 25.005263048884622
+ ],
+ [
+ -80.90906099413706,
+ 24.97393754346293
+ ],
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ],
+ [
+ -80.90906099413706,
+ 24.97393754346293
+ ],
+ [
+ -80.88911733471367,
+ 24.94261203804124
+ ],
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ],
+ [
+ -80.88911733471367,
+ 24.94261203804124
+ ],
+ [
+ -80.84923001586692,
+ 24.94261203804124
+ ],
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ],
+ [
+ -80.84923001586692,
+ 24.94261203804124
+ ],
+ [
+ -80.82928635644353,
+ 24.97393754346293
+ ],
+ [
+ -80.8691736752903,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ],
+ [
+ -80.82928635644353,
+ 25.036588554306316
+ ],
+ [
+ -80.84923001586692,
+ 25.067914059728007
+ ],
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ],
+ [
+ -80.84923001586692,
+ 25.067914059728007
+ ],
+ [
+ -80.88911733471367,
+ 25.067914059728007
+ ],
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ],
+ [
+ -80.88911733471367,
+ 25.067914059728007
+ ],
+ [
+ -80.90906099413706,
+ 25.036588554306316
+ ],
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ],
+ [
+ -80.90906099413706,
+ 25.036588554306316
+ ],
+ [
+ -80.88911733471367,
+ 25.005263048884625
+ ],
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ],
+ [
+ -80.88911733471367,
+ 25.005263048884625
+ ],
+ [
+ -80.84923001586692,
+ 25.005263048884625
+ ],
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ],
+ [
+ -80.84923001586692,
+ 25.005263048884625
+ ],
+ [
+ -80.82928635644353,
+ 25.036588554306316
+ ],
+ [
+ -80.8691736752903,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ],
+ [
+ -80.82928635644353,
+ 25.099239565149702
+ ],
+ [
+ -80.84923001586692,
+ 25.130565070571393
+ ],
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ],
+ [
+ -80.84923001586692,
+ 25.130565070571393
+ ],
+ [
+ -80.88911733471367,
+ 25.130565070571393
+ ],
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ],
+ [
+ -80.88911733471367,
+ 25.130565070571393
+ ],
+ [
+ -80.90906099413706,
+ 25.099239565149702
+ ],
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ],
+ [
+ -80.90906099413706,
+ 25.099239565149702
+ ],
+ [
+ -80.88911733471367,
+ 25.06791405972801
+ ],
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ],
+ [
+ -80.88911733471367,
+ 25.06791405972801
+ ],
+ [
+ -80.84923001586692,
+ 25.06791405972801
+ ],
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ],
+ [
+ -80.84923001586692,
+ 25.06791405972801
+ ],
+ [
+ -80.82928635644353,
+ 25.099239565149702
+ ],
+ [
+ -80.8691736752903,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ],
+ [
+ -80.82928635644353,
+ 25.161890575993088
+ ],
+ [
+ -80.84923001586692,
+ 25.19321608141478
+ ],
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ],
+ [
+ -80.84923001586692,
+ 25.19321608141478
+ ],
+ [
+ -80.88911733471367,
+ 25.19321608141478
+ ],
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ],
+ [
+ -80.88911733471367,
+ 25.19321608141478
+ ],
+ [
+ -80.90906099413706,
+ 25.161890575993088
+ ],
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ],
+ [
+ -80.90906099413706,
+ 25.161890575993088
+ ],
+ [
+ -80.88911733471367,
+ 25.130565070571397
+ ],
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ],
+ [
+ -80.88911733471367,
+ 25.130565070571397
+ ],
+ [
+ -80.84923001586692,
+ 25.130565070571397
+ ],
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ],
+ [
+ -80.84923001586692,
+ 25.130565070571397
+ ],
+ [
+ -80.82928635644353,
+ 25.161890575993088
+ ],
+ [
+ -80.8691736752903,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ],
+ [
+ -80.82928635644353,
+ 25.224541586836473
+ ],
+ [
+ -80.84923001586692,
+ 25.255867092258164
+ ],
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ],
+ [
+ -80.84923001586692,
+ 25.255867092258164
+ ],
+ [
+ -80.88911733471367,
+ 25.255867092258164
+ ],
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ],
+ [
+ -80.88911733471367,
+ 25.255867092258164
+ ],
+ [
+ -80.90906099413706,
+ 25.224541586836473
+ ],
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ],
+ [
+ -80.90906099413706,
+ 25.224541586836473
+ ],
+ [
+ -80.88911733471367,
+ 25.193216081414782
+ ],
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ],
+ [
+ -80.88911733471367,
+ 25.193216081414782
+ ],
+ [
+ -80.84923001586692,
+ 25.193216081414782
+ ],
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ],
+ [
+ -80.84923001586692,
+ 25.193216081414782
+ ],
+ [
+ -80.82928635644353,
+ 25.224541586836473
+ ],
+ [
+ -80.8691736752903,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ],
+ [
+ -80.82928635644353,
+ 25.28719259767986
+ ],
+ [
+ -80.84923001586692,
+ 25.31851810310155
+ ],
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ],
+ [
+ -80.84923001586692,
+ 25.31851810310155
+ ],
+ [
+ -80.88911733471367,
+ 25.31851810310155
+ ],
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ],
+ [
+ -80.88911733471367,
+ 25.31851810310155
+ ],
+ [
+ -80.90906099413706,
+ 25.28719259767986
+ ],
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ],
+ [
+ -80.90906099413706,
+ 25.28719259767986
+ ],
+ [
+ -80.88911733471367,
+ 25.255867092258168
+ ],
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ],
+ [
+ -80.88911733471367,
+ 25.255867092258168
+ ],
+ [
+ -80.84923001586692,
+ 25.255867092258168
+ ],
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ],
+ [
+ -80.84923001586692,
+ 25.255867092258168
+ ],
+ [
+ -80.82928635644353,
+ 25.28719259767986
+ ],
+ [
+ -80.8691736752903,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ],
+ [
+ -80.82928635644353,
+ 25.349843608523244
+ ],
+ [
+ -80.84923001586692,
+ 25.381169113944935
+ ],
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ],
+ [
+ -80.84923001586692,
+ 25.381169113944935
+ ],
+ [
+ -80.88911733471367,
+ 25.381169113944935
+ ],
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ],
+ [
+ -80.88911733471367,
+ 25.381169113944935
+ ],
+ [
+ -80.90906099413706,
+ 25.349843608523244
+ ],
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ],
+ [
+ -80.90906099413706,
+ 25.349843608523244
+ ],
+ [
+ -80.88911733471367,
+ 25.318518103101553
+ ],
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ],
+ [
+ -80.88911733471367,
+ 25.318518103101553
+ ],
+ [
+ -80.84923001586692,
+ 25.318518103101553
+ ],
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ],
+ [
+ -80.84923001586692,
+ 25.318518103101553
+ ],
+ [
+ -80.82928635644353,
+ 25.349843608523244
+ ],
+ [
+ -80.8691736752903,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ],
+ [
+ -80.82928635644353,
+ 25.41249461936663
+ ],
+ [
+ -80.84923001586692,
+ 25.44382012478832
+ ],
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ],
+ [
+ -80.84923001586692,
+ 25.44382012478832
+ ],
+ [
+ -80.88911733471367,
+ 25.44382012478832
+ ],
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ],
+ [
+ -80.88911733471367,
+ 25.44382012478832
+ ],
+ [
+ -80.90906099413706,
+ 25.41249461936663
+ ],
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ],
+ [
+ -80.90906099413706,
+ 25.41249461936663
+ ],
+ [
+ -80.88911733471367,
+ 25.38116911394494
+ ],
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ],
+ [
+ -80.88911733471367,
+ 25.38116911394494
+ ],
+ [
+ -80.84923001586692,
+ 25.38116911394494
+ ],
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ],
+ [
+ -80.84923001586692,
+ 25.38116911394494
+ ],
+ [
+ -80.82928635644353,
+ 25.41249461936663
+ ],
+ [
+ -80.8691736752903,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ],
+ [
+ -80.82928635644353,
+ 25.475145630210015
+ ],
+ [
+ -80.84923001586692,
+ 25.506471135631706
+ ],
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ],
+ [
+ -80.84923001586692,
+ 25.506471135631706
+ ],
+ [
+ -80.88911733471367,
+ 25.506471135631706
+ ],
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ],
+ [
+ -80.88911733471367,
+ 25.506471135631706
+ ],
+ [
+ -80.90906099413706,
+ 25.475145630210015
+ ],
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ],
+ [
+ -80.90906099413706,
+ 25.475145630210015
+ ],
+ [
+ -80.88911733471367,
+ 25.443820124788324
+ ],
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ],
+ [
+ -80.88911733471367,
+ 25.443820124788324
+ ],
+ [
+ -80.84923001586692,
+ 25.443820124788324
+ ],
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ],
+ [
+ -80.84923001586692,
+ 25.443820124788324
+ ],
+ [
+ -80.82928635644353,
+ 25.475145630210015
+ ],
+ [
+ -80.8691736752903,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ],
+ [
+ -80.82928635644353,
+ 25.5377966410534
+ ],
+ [
+ -80.84923001586692,
+ 25.56912214647509
+ ],
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ],
+ [
+ -80.84923001586692,
+ 25.56912214647509
+ ],
+ [
+ -80.88911733471367,
+ 25.56912214647509
+ ],
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ],
+ [
+ -80.88911733471367,
+ 25.56912214647509
+ ],
+ [
+ -80.90906099413706,
+ 25.5377966410534
+ ],
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ],
+ [
+ -80.90906099413706,
+ 25.5377966410534
+ ],
+ [
+ -80.88911733471367,
+ 25.50647113563171
+ ],
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ],
+ [
+ -80.88911733471367,
+ 25.50647113563171
+ ],
+ [
+ -80.84923001586692,
+ 25.50647113563171
+ ],
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ],
+ [
+ -80.84923001586692,
+ 25.50647113563171
+ ],
+ [
+ -80.82928635644353,
+ 25.5377966410534
+ ],
+ [
+ -80.8691736752903,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ],
+ [
+ -80.82928635644353,
+ 25.600447651896786
+ ],
+ [
+ -80.84923001586692,
+ 25.631773157318477
+ ],
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ],
+ [
+ -80.84923001586692,
+ 25.631773157318477
+ ],
+ [
+ -80.88911733471367,
+ 25.631773157318477
+ ],
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ],
+ [
+ -80.88911733471367,
+ 25.631773157318477
+ ],
+ [
+ -80.90906099413706,
+ 25.600447651896786
+ ],
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ],
+ [
+ -80.90906099413706,
+ 25.600447651896786
+ ],
+ [
+ -80.88911733471367,
+ 25.569122146475095
+ ],
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ],
+ [
+ -80.88911733471367,
+ 25.569122146475095
+ ],
+ [
+ -80.84923001586692,
+ 25.569122146475095
+ ],
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ],
+ [
+ -80.84923001586692,
+ 25.569122146475095
+ ],
+ [
+ -80.82928635644353,
+ 25.600447651896786
+ ],
+ [
+ -80.8691736752903,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ],
+ [
+ -80.82928635644353,
+ 25.663098662740172
+ ],
+ [
+ -80.84923001586692,
+ 25.694424168161863
+ ],
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ],
+ [
+ -80.84923001586692,
+ 25.694424168161863
+ ],
+ [
+ -80.88911733471367,
+ 25.694424168161863
+ ],
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ],
+ [
+ -80.88911733471367,
+ 25.694424168161863
+ ],
+ [
+ -80.90906099413706,
+ 25.663098662740172
+ ],
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ],
+ [
+ -80.90906099413706,
+ 25.663098662740172
+ ],
+ [
+ -80.88911733471367,
+ 25.63177315731848
+ ],
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ],
+ [
+ -80.88911733471367,
+ 25.63177315731848
+ ],
+ [
+ -80.84923001586692,
+ 25.63177315731848
+ ],
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ],
+ [
+ -80.84923001586692,
+ 25.63177315731848
+ ],
+ [
+ -80.82928635644353,
+ 25.663098662740172
+ ],
+ [
+ -80.8691736752903,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ],
+ [
+ -80.82928635644353,
+ 25.725749673583557
+ ],
+ [
+ -80.84923001586692,
+ 25.75707517900525
+ ],
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ],
+ [
+ -80.84923001586692,
+ 25.75707517900525
+ ],
+ [
+ -80.88911733471367,
+ 25.75707517900525
+ ],
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ],
+ [
+ -80.88911733471367,
+ 25.75707517900525
+ ],
+ [
+ -80.90906099413706,
+ 25.725749673583557
+ ],
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ],
+ [
+ -80.90906099413706,
+ 25.725749673583557
+ ],
+ [
+ -80.88911733471367,
+ 25.694424168161866
+ ],
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ],
+ [
+ -80.88911733471367,
+ 25.694424168161866
+ ],
+ [
+ -80.84923001586692,
+ 25.694424168161866
+ ],
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ],
+ [
+ -80.84923001586692,
+ 25.694424168161866
+ ],
+ [
+ -80.82928635644353,
+ 25.725749673583557
+ ],
+ [
+ -80.8691736752903,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ],
+ [
+ -80.82928635644353,
+ 25.788400684426943
+ ],
+ [
+ -80.84923001586692,
+ 25.819726189848634
+ ],
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ],
+ [
+ -80.84923001586692,
+ 25.819726189848634
+ ],
+ [
+ -80.88911733471367,
+ 25.819726189848634
+ ],
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ],
+ [
+ -80.88911733471367,
+ 25.819726189848634
+ ],
+ [
+ -80.90906099413706,
+ 25.788400684426943
+ ],
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ],
+ [
+ -80.90906099413706,
+ 25.788400684426943
+ ],
+ [
+ -80.88911733471367,
+ 25.757075179005252
+ ],
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ],
+ [
+ -80.88911733471367,
+ 25.757075179005252
+ ],
+ [
+ -80.84923001586692,
+ 25.757075179005252
+ ],
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ],
+ [
+ -80.84923001586692,
+ 25.757075179005252
+ ],
+ [
+ -80.82928635644353,
+ 25.788400684426943
+ ],
+ [
+ -80.8691736752903,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ],
+ [
+ -80.82928635644353,
+ 25.85105169527033
+ ],
+ [
+ -80.84923001586692,
+ 25.88237720069202
+ ],
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ],
+ [
+ -80.84923001586692,
+ 25.88237720069202
+ ],
+ [
+ -80.88911733471367,
+ 25.88237720069202
+ ],
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ],
+ [
+ -80.88911733471367,
+ 25.88237720069202
+ ],
+ [
+ -80.90906099413706,
+ 25.85105169527033
+ ],
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ],
+ [
+ -80.90906099413706,
+ 25.85105169527033
+ ],
+ [
+ -80.88911733471367,
+ 25.819726189848637
+ ],
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ],
+ [
+ -80.88911733471367,
+ 25.819726189848637
+ ],
+ [
+ -80.84923001586692,
+ 25.819726189848637
+ ],
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ],
+ [
+ -80.84923001586692,
+ 25.819726189848637
+ ],
+ [
+ -80.82928635644353,
+ 25.85105169527033
+ ],
+ [
+ -80.8691736752903,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ],
+ [
+ -80.82928635644353,
+ 25.913702706113714
+ ],
+ [
+ -80.84923001586692,
+ 25.945028211535405
+ ],
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ],
+ [
+ -80.84923001586692,
+ 25.945028211535405
+ ],
+ [
+ -80.88911733471367,
+ 25.945028211535405
+ ],
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ],
+ [
+ -80.88911733471367,
+ 25.945028211535405
+ ],
+ [
+ -80.90906099413706,
+ 25.913702706113714
+ ],
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ],
+ [
+ -80.90906099413706,
+ 25.913702706113714
+ ],
+ [
+ -80.88911733471367,
+ 25.882377200692023
+ ],
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ],
+ [
+ -80.88911733471367,
+ 25.882377200692023
+ ],
+ [
+ -80.84923001586692,
+ 25.882377200692023
+ ],
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ],
+ [
+ -80.84923001586692,
+ 25.882377200692023
+ ],
+ [
+ -80.82928635644353,
+ 25.913702706113714
+ ],
+ [
+ -80.8691736752903,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ],
+ [
+ -80.82928635644353,
+ 25.9763537169571
+ ],
+ [
+ -80.84923001586692,
+ 26.00767922237879
+ ],
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ],
+ [
+ -80.84923001586692,
+ 26.00767922237879
+ ],
+ [
+ -80.88911733471367,
+ 26.00767922237879
+ ],
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ],
+ [
+ -80.88911733471367,
+ 26.00767922237879
+ ],
+ [
+ -80.90906099413706,
+ 25.9763537169571
+ ],
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ],
+ [
+ -80.90906099413706,
+ 25.9763537169571
+ ],
+ [
+ -80.88911733471367,
+ 25.94502821153541
+ ],
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ],
+ [
+ -80.88911733471367,
+ 25.94502821153541
+ ],
+ [
+ -80.84923001586692,
+ 25.94502821153541
+ ],
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ],
+ [
+ -80.84923001586692,
+ 25.94502821153541
+ ],
+ [
+ -80.82928635644353,
+ 25.9763537169571
+ ],
+ [
+ -80.8691736752903,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ],
+ [
+ -80.82928635644353,
+ 26.039004727800485
+ ],
+ [
+ -80.84923001586692,
+ 26.070330233222176
+ ],
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ],
+ [
+ -80.84923001586692,
+ 26.070330233222176
+ ],
+ [
+ -80.88911733471367,
+ 26.070330233222176
+ ],
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ],
+ [
+ -80.88911733471367,
+ 26.070330233222176
+ ],
+ [
+ -80.90906099413706,
+ 26.039004727800485
+ ],
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ],
+ [
+ -80.90906099413706,
+ 26.039004727800485
+ ],
+ [
+ -80.88911733471367,
+ 26.007679222378794
+ ],
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ],
+ [
+ -80.88911733471367,
+ 26.007679222378794
+ ],
+ [
+ -80.84923001586692,
+ 26.007679222378794
+ ],
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ],
+ [
+ -80.84923001586692,
+ 26.007679222378794
+ ],
+ [
+ -80.82928635644353,
+ 26.039004727800485
+ ],
+ [
+ -80.8691736752903,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ],
+ [
+ -80.82928635644353,
+ 26.10165573864387
+ ],
+ [
+ -80.84923001586692,
+ 26.13298124406556
+ ],
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ],
+ [
+ -80.84923001586692,
+ 26.13298124406556
+ ],
+ [
+ -80.88911733471367,
+ 26.13298124406556
+ ],
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ],
+ [
+ -80.88911733471367,
+ 26.13298124406556
+ ],
+ [
+ -80.90906099413706,
+ 26.10165573864387
+ ],
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ],
+ [
+ -80.90906099413706,
+ 26.10165573864387
+ ],
+ [
+ -80.88911733471367,
+ 26.07033023322218
+ ],
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ],
+ [
+ -80.88911733471367,
+ 26.07033023322218
+ ],
+ [
+ -80.84923001586692,
+ 26.07033023322218
+ ],
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ],
+ [
+ -80.84923001586692,
+ 26.07033023322218
+ ],
+ [
+ -80.82928635644353,
+ 26.10165573864387
+ ],
+ [
+ -80.8691736752903,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ],
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ],
+ [
+ -80.84923001586692,
+ 26.195632254908944
+ ],
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ],
+ [
+ -80.84923001586692,
+ 26.195632254908944
+ ],
+ [
+ -80.88911733471367,
+ 26.195632254908944
+ ],
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ],
+ [
+ -80.88911733471367,
+ 26.195632254908944
+ ],
+ [
+ -80.90906099413706,
+ 26.164306749487253
+ ],
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ],
+ [
+ -80.90906099413706,
+ 26.164306749487253
+ ],
+ [
+ -80.88911733471367,
+ 26.13298124406556
+ ],
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ],
+ [
+ -80.88911733471367,
+ 26.13298124406556
+ ],
+ [
+ -80.84923001586692,
+ 26.13298124406556
+ ],
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ],
+ [
+ -80.84923001586692,
+ 26.13298124406556
+ ],
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ],
+ [
+ -80.8691736752903,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ],
+ [
+ -80.82928635644353,
+ 26.22695776033064
+ ],
+ [
+ -80.84923001586692,
+ 26.258283265752333
+ ],
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ],
+ [
+ -80.84923001586692,
+ 26.258283265752333
+ ],
+ [
+ -80.88911733471367,
+ 26.258283265752333
+ ],
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ],
+ [
+ -80.88911733471367,
+ 26.258283265752333
+ ],
+ [
+ -80.90906099413706,
+ 26.22695776033064
+ ],
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ],
+ [
+ -80.90906099413706,
+ 26.22695776033064
+ ],
+ [
+ -80.88911733471367,
+ 26.19563225490895
+ ],
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ],
+ [
+ -80.88911733471367,
+ 26.19563225490895
+ ],
+ [
+ -80.84923001586692,
+ 26.19563225490895
+ ],
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ],
+ [
+ -80.84923001586692,
+ 26.19563225490895
+ ],
+ [
+ -80.82928635644353,
+ 26.22695776033064
+ ],
+ [
+ -80.8691736752903,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ],
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ],
+ [
+ -80.84923001586692,
+ 26.320934276595715
+ ],
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ],
+ [
+ -80.84923001586692,
+ 26.320934276595715
+ ],
+ [
+ -80.88911733471367,
+ 26.320934276595715
+ ],
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ],
+ [
+ -80.88911733471367,
+ 26.320934276595715
+ ],
+ [
+ -80.90906099413706,
+ 26.289608771174024
+ ],
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ],
+ [
+ -80.90906099413706,
+ 26.289608771174024
+ ],
+ [
+ -80.88911733471367,
+ 26.258283265752333
+ ],
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ],
+ [
+ -80.88911733471367,
+ 26.258283265752333
+ ],
+ [
+ -80.84923001586692,
+ 26.258283265752333
+ ],
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ],
+ [
+ -80.84923001586692,
+ 26.258283265752333
+ ],
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ],
+ [
+ -80.8691736752903,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ],
+ [
+ -80.82928635644353,
+ 26.35225978201741
+ ],
+ [
+ -80.84923001586692,
+ 26.3835852874391
+ ],
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ],
+ [
+ -80.84923001586692,
+ 26.3835852874391
+ ],
+ [
+ -80.88911733471367,
+ 26.3835852874391
+ ],
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ],
+ [
+ -80.88911733471367,
+ 26.3835852874391
+ ],
+ [
+ -80.90906099413706,
+ 26.35225978201741
+ ],
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ],
+ [
+ -80.90906099413706,
+ 26.35225978201741
+ ],
+ [
+ -80.88911733471367,
+ 26.320934276595718
+ ],
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ],
+ [
+ -80.88911733471367,
+ 26.320934276595718
+ ],
+ [
+ -80.84923001586692,
+ 26.320934276595718
+ ],
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ],
+ [
+ -80.84923001586692,
+ 26.320934276595718
+ ],
+ [
+ -80.82928635644353,
+ 26.35225978201741
+ ],
+ [
+ -80.8691736752903,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ],
+ [
+ -80.82928635644353,
+ 26.414910792860795
+ ],
+ [
+ -80.84923001586692,
+ 26.446236298282486
+ ],
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ],
+ [
+ -80.84923001586692,
+ 26.446236298282486
+ ],
+ [
+ -80.88911733471367,
+ 26.446236298282486
+ ],
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ],
+ [
+ -80.88911733471367,
+ 26.446236298282486
+ ],
+ [
+ -80.90906099413706,
+ 26.414910792860795
+ ],
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ],
+ [
+ -80.90906099413706,
+ 26.414910792860795
+ ],
+ [
+ -80.88911733471367,
+ 26.383585287439104
+ ],
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ],
+ [
+ -80.88911733471367,
+ 26.383585287439104
+ ],
+ [
+ -80.84923001586692,
+ 26.383585287439104
+ ],
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ],
+ [
+ -80.84923001586692,
+ 26.383585287439104
+ ],
+ [
+ -80.82928635644353,
+ 26.414910792860795
+ ],
+ [
+ -80.8691736752903,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ],
+ [
+ -80.76945537817339,
+ 24.942612038041236
+ ],
+ [
+ -80.78939903759678,
+ 24.973937543462927
+ ],
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ],
+ [
+ -80.78939903759678,
+ 24.973937543462927
+ ],
+ [
+ -80.82928635644353,
+ 24.973937543462927
+ ],
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ],
+ [
+ -80.82928635644353,
+ 24.973937543462927
+ ],
+ [
+ -80.84923001586692,
+ 24.942612038041236
+ ],
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ],
+ [
+ -80.84923001586692,
+ 24.942612038041236
+ ],
+ [
+ -80.82928635644353,
+ 24.911286532619545
+ ],
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ],
+ [
+ -80.82928635644353,
+ 24.911286532619545
+ ],
+ [
+ -80.78939903759678,
+ 24.911286532619545
+ ],
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ],
+ [
+ -80.78939903759678,
+ 24.911286532619545
+ ],
+ [
+ -80.76945537817339,
+ 24.942612038041236
+ ],
+ [
+ -80.80934269702016,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ],
+ [
+ -80.76945537817339,
+ 25.005263048884622
+ ],
+ [
+ -80.78939903759678,
+ 25.036588554306313
+ ],
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ],
+ [
+ -80.78939903759678,
+ 25.036588554306313
+ ],
+ [
+ -80.82928635644353,
+ 25.036588554306313
+ ],
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ],
+ [
+ -80.82928635644353,
+ 25.036588554306313
+ ],
+ [
+ -80.84923001586692,
+ 25.005263048884622
+ ],
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ],
+ [
+ -80.84923001586692,
+ 25.005263048884622
+ ],
+ [
+ -80.82928635644353,
+ 24.97393754346293
+ ],
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ],
+ [
+ -80.82928635644353,
+ 24.97393754346293
+ ],
+ [
+ -80.78939903759678,
+ 24.97393754346293
+ ],
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ],
+ [
+ -80.78939903759678,
+ 24.97393754346293
+ ],
+ [
+ -80.76945537817339,
+ 25.005263048884622
+ ],
+ [
+ -80.80934269702016,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ],
+ [
+ -80.76945537817339,
+ 25.067914059728007
+ ],
+ [
+ -80.78939903759678,
+ 25.0992395651497
+ ],
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ],
+ [
+ -80.78939903759678,
+ 25.0992395651497
+ ],
+ [
+ -80.82928635644353,
+ 25.0992395651497
+ ],
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ],
+ [
+ -80.82928635644353,
+ 25.0992395651497
+ ],
+ [
+ -80.84923001586692,
+ 25.067914059728007
+ ],
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ],
+ [
+ -80.84923001586692,
+ 25.067914059728007
+ ],
+ [
+ -80.82928635644353,
+ 25.036588554306316
+ ],
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ],
+ [
+ -80.82928635644353,
+ 25.036588554306316
+ ],
+ [
+ -80.78939903759678,
+ 25.036588554306316
+ ],
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ],
+ [
+ -80.78939903759678,
+ 25.036588554306316
+ ],
+ [
+ -80.76945537817339,
+ 25.067914059728007
+ ],
+ [
+ -80.80934269702016,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ],
+ [
+ -80.76945537817339,
+ 25.130565070571393
+ ],
+ [
+ -80.78939903759678,
+ 25.161890575993084
+ ],
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ],
+ [
+ -80.78939903759678,
+ 25.161890575993084
+ ],
+ [
+ -80.82928635644353,
+ 25.161890575993084
+ ],
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ],
+ [
+ -80.82928635644353,
+ 25.161890575993084
+ ],
+ [
+ -80.84923001586692,
+ 25.130565070571393
+ ],
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ],
+ [
+ -80.84923001586692,
+ 25.130565070571393
+ ],
+ [
+ -80.82928635644353,
+ 25.099239565149702
+ ],
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ],
+ [
+ -80.82928635644353,
+ 25.099239565149702
+ ],
+ [
+ -80.78939903759678,
+ 25.099239565149702
+ ],
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ],
+ [
+ -80.78939903759678,
+ 25.099239565149702
+ ],
+ [
+ -80.76945537817339,
+ 25.130565070571393
+ ],
+ [
+ -80.80934269702016,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ],
+ [
+ -80.76945537817339,
+ 25.19321608141478
+ ],
+ [
+ -80.78939903759678,
+ 25.22454158683647
+ ],
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ],
+ [
+ -80.78939903759678,
+ 25.22454158683647
+ ],
+ [
+ -80.82928635644353,
+ 25.22454158683647
+ ],
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ],
+ [
+ -80.82928635644353,
+ 25.22454158683647
+ ],
+ [
+ -80.84923001586692,
+ 25.19321608141478
+ ],
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ],
+ [
+ -80.84923001586692,
+ 25.19321608141478
+ ],
+ [
+ -80.82928635644353,
+ 25.161890575993088
+ ],
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ],
+ [
+ -80.82928635644353,
+ 25.161890575993088
+ ],
+ [
+ -80.78939903759678,
+ 25.161890575993088
+ ],
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ],
+ [
+ -80.78939903759678,
+ 25.161890575993088
+ ],
+ [
+ -80.76945537817339,
+ 25.19321608141478
+ ],
+ [
+ -80.80934269702016,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ],
+ [
+ -80.76945537817339,
+ 25.255867092258164
+ ],
+ [
+ -80.78939903759678,
+ 25.287192597679855
+ ],
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ],
+ [
+ -80.78939903759678,
+ 25.287192597679855
+ ],
+ [
+ -80.82928635644353,
+ 25.287192597679855
+ ],
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ],
+ [
+ -80.82928635644353,
+ 25.287192597679855
+ ],
+ [
+ -80.84923001586692,
+ 25.255867092258164
+ ],
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ],
+ [
+ -80.84923001586692,
+ 25.255867092258164
+ ],
+ [
+ -80.82928635644353,
+ 25.224541586836473
+ ],
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ],
+ [
+ -80.82928635644353,
+ 25.224541586836473
+ ],
+ [
+ -80.78939903759678,
+ 25.224541586836473
+ ],
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ],
+ [
+ -80.78939903759678,
+ 25.224541586836473
+ ],
+ [
+ -80.76945537817339,
+ 25.255867092258164
+ ],
+ [
+ -80.80934269702016,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ],
+ [
+ -80.76945537817339,
+ 25.31851810310155
+ ],
+ [
+ -80.78939903759678,
+ 25.34984360852324
+ ],
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ],
+ [
+ -80.78939903759678,
+ 25.34984360852324
+ ],
+ [
+ -80.82928635644353,
+ 25.34984360852324
+ ],
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ],
+ [
+ -80.82928635644353,
+ 25.34984360852324
+ ],
+ [
+ -80.84923001586692,
+ 25.31851810310155
+ ],
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ],
+ [
+ -80.84923001586692,
+ 25.31851810310155
+ ],
+ [
+ -80.82928635644353,
+ 25.28719259767986
+ ],
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ],
+ [
+ -80.82928635644353,
+ 25.28719259767986
+ ],
+ [
+ -80.78939903759678,
+ 25.28719259767986
+ ],
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ],
+ [
+ -80.78939903759678,
+ 25.28719259767986
+ ],
+ [
+ -80.76945537817339,
+ 25.31851810310155
+ ],
+ [
+ -80.80934269702016,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ],
+ [
+ -80.76945537817339,
+ 25.381169113944935
+ ],
+ [
+ -80.78939903759678,
+ 25.412494619366626
+ ],
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ],
+ [
+ -80.78939903759678,
+ 25.412494619366626
+ ],
+ [
+ -80.82928635644353,
+ 25.412494619366626
+ ],
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ],
+ [
+ -80.82928635644353,
+ 25.412494619366626
+ ],
+ [
+ -80.84923001586692,
+ 25.381169113944935
+ ],
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ],
+ [
+ -80.84923001586692,
+ 25.381169113944935
+ ],
+ [
+ -80.82928635644353,
+ 25.349843608523244
+ ],
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ],
+ [
+ -80.82928635644353,
+ 25.349843608523244
+ ],
+ [
+ -80.78939903759678,
+ 25.349843608523244
+ ],
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ],
+ [
+ -80.78939903759678,
+ 25.349843608523244
+ ],
+ [
+ -80.76945537817339,
+ 25.381169113944935
+ ],
+ [
+ -80.80934269702016,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ],
+ [
+ -80.76945537817339,
+ 25.44382012478832
+ ],
+ [
+ -80.78939903759678,
+ 25.47514563021001
+ ],
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ],
+ [
+ -80.78939903759678,
+ 25.47514563021001
+ ],
+ [
+ -80.82928635644353,
+ 25.47514563021001
+ ],
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ],
+ [
+ -80.82928635644353,
+ 25.47514563021001
+ ],
+ [
+ -80.84923001586692,
+ 25.44382012478832
+ ],
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ],
+ [
+ -80.84923001586692,
+ 25.44382012478832
+ ],
+ [
+ -80.82928635644353,
+ 25.41249461936663
+ ],
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ],
+ [
+ -80.82928635644353,
+ 25.41249461936663
+ ],
+ [
+ -80.78939903759678,
+ 25.41249461936663
+ ],
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ],
+ [
+ -80.78939903759678,
+ 25.41249461936663
+ ],
+ [
+ -80.76945537817339,
+ 25.44382012478832
+ ],
+ [
+ -80.80934269702016,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ],
+ [
+ -80.76945537817339,
+ 25.506471135631706
+ ],
+ [
+ -80.78939903759678,
+ 25.537796641053397
+ ],
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ],
+ [
+ -80.78939903759678,
+ 25.537796641053397
+ ],
+ [
+ -80.82928635644353,
+ 25.537796641053397
+ ],
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ],
+ [
+ -80.82928635644353,
+ 25.537796641053397
+ ],
+ [
+ -80.84923001586692,
+ 25.506471135631706
+ ],
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ],
+ [
+ -80.84923001586692,
+ 25.506471135631706
+ ],
+ [
+ -80.82928635644353,
+ 25.475145630210015
+ ],
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ],
+ [
+ -80.82928635644353,
+ 25.475145630210015
+ ],
+ [
+ -80.78939903759678,
+ 25.475145630210015
+ ],
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ],
+ [
+ -80.78939903759678,
+ 25.475145630210015
+ ],
+ [
+ -80.76945537817339,
+ 25.506471135631706
+ ],
+ [
+ -80.80934269702016,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ],
+ [
+ -80.76945537817339,
+ 25.56912214647509
+ ],
+ [
+ -80.78939903759678,
+ 25.600447651896783
+ ],
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ],
+ [
+ -80.78939903759678,
+ 25.600447651896783
+ ],
+ [
+ -80.82928635644353,
+ 25.600447651896783
+ ],
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ],
+ [
+ -80.82928635644353,
+ 25.600447651896783
+ ],
+ [
+ -80.84923001586692,
+ 25.56912214647509
+ ],
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ],
+ [
+ -80.84923001586692,
+ 25.56912214647509
+ ],
+ [
+ -80.82928635644353,
+ 25.5377966410534
+ ],
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ],
+ [
+ -80.82928635644353,
+ 25.5377966410534
+ ],
+ [
+ -80.78939903759678,
+ 25.5377966410534
+ ],
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ],
+ [
+ -80.78939903759678,
+ 25.5377966410534
+ ],
+ [
+ -80.76945537817339,
+ 25.56912214647509
+ ],
+ [
+ -80.80934269702016,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ],
+ [
+ -80.76945537817339,
+ 25.631773157318477
+ ],
+ [
+ -80.78939903759678,
+ 25.66309866274017
+ ],
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ],
+ [
+ -80.78939903759678,
+ 25.66309866274017
+ ],
+ [
+ -80.82928635644353,
+ 25.66309866274017
+ ],
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ],
+ [
+ -80.82928635644353,
+ 25.66309866274017
+ ],
+ [
+ -80.84923001586692,
+ 25.631773157318477
+ ],
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ],
+ [
+ -80.84923001586692,
+ 25.631773157318477
+ ],
+ [
+ -80.82928635644353,
+ 25.600447651896786
+ ],
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ],
+ [
+ -80.82928635644353,
+ 25.600447651896786
+ ],
+ [
+ -80.78939903759678,
+ 25.600447651896786
+ ],
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ],
+ [
+ -80.78939903759678,
+ 25.600447651896786
+ ],
+ [
+ -80.76945537817339,
+ 25.631773157318477
+ ],
+ [
+ -80.80934269702016,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ],
+ [
+ -80.76945537817339,
+ 25.694424168161863
+ ],
+ [
+ -80.78939903759678,
+ 25.725749673583554
+ ],
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ],
+ [
+ -80.78939903759678,
+ 25.725749673583554
+ ],
+ [
+ -80.82928635644353,
+ 25.725749673583554
+ ],
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ],
+ [
+ -80.82928635644353,
+ 25.725749673583554
+ ],
+ [
+ -80.84923001586692,
+ 25.694424168161863
+ ],
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ],
+ [
+ -80.84923001586692,
+ 25.694424168161863
+ ],
+ [
+ -80.82928635644353,
+ 25.663098662740172
+ ],
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ],
+ [
+ -80.82928635644353,
+ 25.663098662740172
+ ],
+ [
+ -80.78939903759678,
+ 25.663098662740172
+ ],
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ],
+ [
+ -80.78939903759678,
+ 25.663098662740172
+ ],
+ [
+ -80.76945537817339,
+ 25.694424168161863
+ ],
+ [
+ -80.80934269702016,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ],
+ [
+ -80.76945537817339,
+ 25.75707517900525
+ ],
+ [
+ -80.78939903759678,
+ 25.78840068442694
+ ],
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ],
+ [
+ -80.78939903759678,
+ 25.78840068442694
+ ],
+ [
+ -80.82928635644353,
+ 25.78840068442694
+ ],
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ],
+ [
+ -80.82928635644353,
+ 25.78840068442694
+ ],
+ [
+ -80.84923001586692,
+ 25.75707517900525
+ ],
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ],
+ [
+ -80.84923001586692,
+ 25.75707517900525
+ ],
+ [
+ -80.82928635644353,
+ 25.725749673583557
+ ],
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ],
+ [
+ -80.82928635644353,
+ 25.725749673583557
+ ],
+ [
+ -80.78939903759678,
+ 25.725749673583557
+ ],
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ],
+ [
+ -80.78939903759678,
+ 25.725749673583557
+ ],
+ [
+ -80.76945537817339,
+ 25.75707517900525
+ ],
+ [
+ -80.80934269702016,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ],
+ [
+ -80.76945537817339,
+ 25.819726189848634
+ ],
+ [
+ -80.78939903759678,
+ 25.851051695270325
+ ],
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ],
+ [
+ -80.78939903759678,
+ 25.851051695270325
+ ],
+ [
+ -80.82928635644353,
+ 25.851051695270325
+ ],
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ],
+ [
+ -80.82928635644353,
+ 25.851051695270325
+ ],
+ [
+ -80.84923001586692,
+ 25.819726189848634
+ ],
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ],
+ [
+ -80.84923001586692,
+ 25.819726189848634
+ ],
+ [
+ -80.82928635644353,
+ 25.788400684426943
+ ],
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ],
+ [
+ -80.82928635644353,
+ 25.788400684426943
+ ],
+ [
+ -80.78939903759678,
+ 25.788400684426943
+ ],
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ],
+ [
+ -80.78939903759678,
+ 25.788400684426943
+ ],
+ [
+ -80.76945537817339,
+ 25.819726189848634
+ ],
+ [
+ -80.80934269702016,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ],
+ [
+ -80.76945537817339,
+ 25.88237720069202
+ ],
+ [
+ -80.78939903759678,
+ 25.91370270611371
+ ],
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ],
+ [
+ -80.78939903759678,
+ 25.91370270611371
+ ],
+ [
+ -80.82928635644353,
+ 25.91370270611371
+ ],
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ],
+ [
+ -80.82928635644353,
+ 25.91370270611371
+ ],
+ [
+ -80.84923001586692,
+ 25.88237720069202
+ ],
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ],
+ [
+ -80.84923001586692,
+ 25.88237720069202
+ ],
+ [
+ -80.82928635644353,
+ 25.85105169527033
+ ],
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ],
+ [
+ -80.82928635644353,
+ 25.85105169527033
+ ],
+ [
+ -80.78939903759678,
+ 25.85105169527033
+ ],
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ],
+ [
+ -80.78939903759678,
+ 25.85105169527033
+ ],
+ [
+ -80.76945537817339,
+ 25.88237720069202
+ ],
+ [
+ -80.80934269702016,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ],
+ [
+ -80.76945537817339,
+ 25.945028211535405
+ ],
+ [
+ -80.78939903759678,
+ 25.976353716957096
+ ],
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ],
+ [
+ -80.78939903759678,
+ 25.976353716957096
+ ],
+ [
+ -80.82928635644353,
+ 25.976353716957096
+ ],
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ],
+ [
+ -80.82928635644353,
+ 25.976353716957096
+ ],
+ [
+ -80.84923001586692,
+ 25.945028211535405
+ ],
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ],
+ [
+ -80.84923001586692,
+ 25.945028211535405
+ ],
+ [
+ -80.82928635644353,
+ 25.913702706113714
+ ],
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ],
+ [
+ -80.82928635644353,
+ 25.913702706113714
+ ],
+ [
+ -80.78939903759678,
+ 25.913702706113714
+ ],
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ],
+ [
+ -80.78939903759678,
+ 25.913702706113714
+ ],
+ [
+ -80.76945537817339,
+ 25.945028211535405
+ ],
+ [
+ -80.80934269702016,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ],
+ [
+ -80.76945537817339,
+ 26.00767922237879
+ ],
+ [
+ -80.78939903759678,
+ 26.03900472780048
+ ],
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ],
+ [
+ -80.78939903759678,
+ 26.03900472780048
+ ],
+ [
+ -80.82928635644353,
+ 26.03900472780048
+ ],
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ],
+ [
+ -80.82928635644353,
+ 26.03900472780048
+ ],
+ [
+ -80.84923001586692,
+ 26.00767922237879
+ ],
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ],
+ [
+ -80.84923001586692,
+ 26.00767922237879
+ ],
+ [
+ -80.82928635644353,
+ 25.9763537169571
+ ],
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ],
+ [
+ -80.82928635644353,
+ 25.9763537169571
+ ],
+ [
+ -80.78939903759678,
+ 25.9763537169571
+ ],
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ],
+ [
+ -80.78939903759678,
+ 25.9763537169571
+ ],
+ [
+ -80.76945537817339,
+ 26.00767922237879
+ ],
+ [
+ -80.80934269702016,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ],
+ [
+ -80.76945537817339,
+ 26.070330233222176
+ ],
+ [
+ -80.78939903759678,
+ 26.101655738643867
+ ],
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ],
+ [
+ -80.78939903759678,
+ 26.101655738643867
+ ],
+ [
+ -80.82928635644353,
+ 26.101655738643867
+ ],
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ],
+ [
+ -80.82928635644353,
+ 26.101655738643867
+ ],
+ [
+ -80.84923001586692,
+ 26.070330233222176
+ ],
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ],
+ [
+ -80.84923001586692,
+ 26.070330233222176
+ ],
+ [
+ -80.82928635644353,
+ 26.039004727800485
+ ],
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ],
+ [
+ -80.82928635644353,
+ 26.039004727800485
+ ],
+ [
+ -80.78939903759678,
+ 26.039004727800485
+ ],
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ],
+ [
+ -80.78939903759678,
+ 26.039004727800485
+ ],
+ [
+ -80.76945537817339,
+ 26.070330233222176
+ ],
+ [
+ -80.80934269702016,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ],
+ [
+ -80.76945537817339,
+ 26.13298124406556
+ ],
+ [
+ -80.78939903759678,
+ 26.164306749487253
+ ],
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ],
+ [
+ -80.78939903759678,
+ 26.164306749487253
+ ],
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ],
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ],
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ],
+ [
+ -80.84923001586692,
+ 26.13298124406556
+ ],
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ],
+ [
+ -80.84923001586692,
+ 26.13298124406556
+ ],
+ [
+ -80.82928635644353,
+ 26.10165573864387
+ ],
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ],
+ [
+ -80.82928635644353,
+ 26.10165573864387
+ ],
+ [
+ -80.78939903759678,
+ 26.10165573864387
+ ],
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ],
+ [
+ -80.78939903759678,
+ 26.10165573864387
+ ],
+ [
+ -80.76945537817339,
+ 26.13298124406556
+ ],
+ [
+ -80.80934269702016,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ],
+ [
+ -80.76945537817339,
+ 26.195632254908944
+ ],
+ [
+ -80.78939903759678,
+ 26.226957760330635
+ ],
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ],
+ [
+ -80.78939903759678,
+ 26.226957760330635
+ ],
+ [
+ -80.82928635644353,
+ 26.226957760330635
+ ],
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ],
+ [
+ -80.82928635644353,
+ 26.226957760330635
+ ],
+ [
+ -80.84923001586692,
+ 26.195632254908944
+ ],
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ],
+ [
+ -80.84923001586692,
+ 26.195632254908944
+ ],
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ],
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ],
+ [
+ -80.82928635644353,
+ 26.164306749487253
+ ],
+ [
+ -80.78939903759678,
+ 26.164306749487253
+ ],
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ],
+ [
+ -80.78939903759678,
+ 26.164306749487253
+ ],
+ [
+ -80.76945537817339,
+ 26.195632254908944
+ ],
+ [
+ -80.80934269702016,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ],
+ [
+ -80.76945537817339,
+ 26.258283265752333
+ ],
+ [
+ -80.78939903759678,
+ 26.289608771174024
+ ],
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ],
+ [
+ -80.78939903759678,
+ 26.289608771174024
+ ],
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ],
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ],
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ],
+ [
+ -80.84923001586692,
+ 26.258283265752333
+ ],
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ],
+ [
+ -80.84923001586692,
+ 26.258283265752333
+ ],
+ [
+ -80.82928635644353,
+ 26.22695776033064
+ ],
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ],
+ [
+ -80.82928635644353,
+ 26.22695776033064
+ ],
+ [
+ -80.78939903759678,
+ 26.22695776033064
+ ],
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ],
+ [
+ -80.78939903759678,
+ 26.22695776033064
+ ],
+ [
+ -80.76945537817339,
+ 26.258283265752333
+ ],
+ [
+ -80.80934269702016,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ],
+ [
+ -80.76945537817339,
+ 26.320934276595715
+ ],
+ [
+ -80.78939903759678,
+ 26.352259782017406
+ ],
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ],
+ [
+ -80.78939903759678,
+ 26.352259782017406
+ ],
+ [
+ -80.82928635644353,
+ 26.352259782017406
+ ],
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ],
+ [
+ -80.82928635644353,
+ 26.352259782017406
+ ],
+ [
+ -80.84923001586692,
+ 26.320934276595715
+ ],
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ],
+ [
+ -80.84923001586692,
+ 26.320934276595715
+ ],
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ],
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ],
+ [
+ -80.82928635644353,
+ 26.289608771174024
+ ],
+ [
+ -80.78939903759678,
+ 26.289608771174024
+ ],
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ],
+ [
+ -80.78939903759678,
+ 26.289608771174024
+ ],
+ [
+ -80.76945537817339,
+ 26.320934276595715
+ ],
+ [
+ -80.80934269702016,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ],
+ [
+ -80.76945537817339,
+ 26.3835852874391
+ ],
+ [
+ -80.78939903759678,
+ 26.41491079286079
+ ],
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ],
+ [
+ -80.78939903759678,
+ 26.41491079286079
+ ],
+ [
+ -80.82928635644353,
+ 26.41491079286079
+ ],
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ],
+ [
+ -80.82928635644353,
+ 26.41491079286079
+ ],
+ [
+ -80.84923001586692,
+ 26.3835852874391
+ ],
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ],
+ [
+ -80.84923001586692,
+ 26.3835852874391
+ ],
+ [
+ -80.82928635644353,
+ 26.35225978201741
+ ],
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ],
+ [
+ -80.82928635644353,
+ 26.35225978201741
+ ],
+ [
+ -80.78939903759678,
+ 26.35225978201741
+ ],
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ],
+ [
+ -80.78939903759678,
+ 26.35225978201741
+ ],
+ [
+ -80.76945537817339,
+ 26.3835852874391
+ ],
+ [
+ -80.80934269702016,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ],
+ [
+ -80.76945537817339,
+ 26.446236298282486
+ ],
+ [
+ -80.78939903759678,
+ 26.477561803704177
+ ],
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ],
+ [
+ -80.78939903759678,
+ 26.477561803704177
+ ],
+ [
+ -80.82928635644353,
+ 26.477561803704177
+ ],
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ],
+ [
+ -80.82928635644353,
+ 26.477561803704177
+ ],
+ [
+ -80.84923001586692,
+ 26.446236298282486
+ ],
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ],
+ [
+ -80.84923001586692,
+ 26.446236298282486
+ ],
+ [
+ -80.82928635644353,
+ 26.414910792860795
+ ],
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ],
+ [
+ -80.82928635644353,
+ 26.414910792860795
+ ],
+ [
+ -80.78939903759678,
+ 26.414910792860795
+ ],
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ],
+ [
+ -80.78939903759678,
+ 26.414910792860795
+ ],
+ [
+ -80.76945537817339,
+ 26.446236298282486
+ ],
+ [
+ -80.80934269702016,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ],
+ [
+ -80.70962439990323,
+ 24.911286532619545
+ ],
+ [
+ -80.72956805932662,
+ 24.942612038041236
+ ],
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ],
+ [
+ -80.72956805932662,
+ 24.942612038041236
+ ],
+ [
+ -80.76945537817338,
+ 24.942612038041236
+ ],
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ],
+ [
+ -80.76945537817338,
+ 24.942612038041236
+ ],
+ [
+ -80.78939903759677,
+ 24.911286532619545
+ ],
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ],
+ [
+ -80.78939903759677,
+ 24.911286532619545
+ ],
+ [
+ -80.76945537817338,
+ 24.879961027197854
+ ],
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ],
+ [
+ -80.76945537817338,
+ 24.879961027197854
+ ],
+ [
+ -80.72956805932662,
+ 24.879961027197854
+ ],
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ],
+ [
+ -80.72956805932662,
+ 24.879961027197854
+ ],
+ [
+ -80.70962439990323,
+ 24.911286532619545
+ ],
+ [
+ -80.74951171875,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ],
+ [
+ -80.70962439990323,
+ 24.97393754346293
+ ],
+ [
+ -80.72956805932662,
+ 25.005263048884622
+ ],
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ],
+ [
+ -80.72956805932662,
+ 25.005263048884622
+ ],
+ [
+ -80.76945537817338,
+ 25.005263048884622
+ ],
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ],
+ [
+ -80.76945537817338,
+ 25.005263048884622
+ ],
+ [
+ -80.78939903759677,
+ 24.97393754346293
+ ],
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ],
+ [
+ -80.78939903759677,
+ 24.97393754346293
+ ],
+ [
+ -80.76945537817338,
+ 24.94261203804124
+ ],
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ],
+ [
+ -80.76945537817338,
+ 24.94261203804124
+ ],
+ [
+ -80.72956805932662,
+ 24.94261203804124
+ ],
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ],
+ [
+ -80.72956805932662,
+ 24.94261203804124
+ ],
+ [
+ -80.70962439990323,
+ 24.97393754346293
+ ],
+ [
+ -80.74951171875,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ],
+ [
+ -80.70962439990323,
+ 25.036588554306316
+ ],
+ [
+ -80.72956805932662,
+ 25.067914059728007
+ ],
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ],
+ [
+ -80.72956805932662,
+ 25.067914059728007
+ ],
+ [
+ -80.76945537817338,
+ 25.067914059728007
+ ],
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ],
+ [
+ -80.76945537817338,
+ 25.067914059728007
+ ],
+ [
+ -80.78939903759677,
+ 25.036588554306316
+ ],
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ],
+ [
+ -80.78939903759677,
+ 25.036588554306316
+ ],
+ [
+ -80.76945537817338,
+ 25.005263048884625
+ ],
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ],
+ [
+ -80.76945537817338,
+ 25.005263048884625
+ ],
+ [
+ -80.72956805932662,
+ 25.005263048884625
+ ],
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ],
+ [
+ -80.72956805932662,
+ 25.005263048884625
+ ],
+ [
+ -80.70962439990323,
+ 25.036588554306316
+ ],
+ [
+ -80.74951171875,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ],
+ [
+ -80.70962439990323,
+ 25.099239565149702
+ ],
+ [
+ -80.72956805932662,
+ 25.130565070571393
+ ],
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ],
+ [
+ -80.72956805932662,
+ 25.130565070571393
+ ],
+ [
+ -80.76945537817338,
+ 25.130565070571393
+ ],
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ],
+ [
+ -80.76945537817338,
+ 25.130565070571393
+ ],
+ [
+ -80.78939903759677,
+ 25.099239565149702
+ ],
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ],
+ [
+ -80.78939903759677,
+ 25.099239565149702
+ ],
+ [
+ -80.76945537817338,
+ 25.06791405972801
+ ],
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ],
+ [
+ -80.76945537817338,
+ 25.06791405972801
+ ],
+ [
+ -80.72956805932662,
+ 25.06791405972801
+ ],
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ],
+ [
+ -80.72956805932662,
+ 25.06791405972801
+ ],
+ [
+ -80.70962439990323,
+ 25.099239565149702
+ ],
+ [
+ -80.74951171875,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ],
+ [
+ -80.70962439990323,
+ 25.161890575993088
+ ],
+ [
+ -80.72956805932662,
+ 25.19321608141478
+ ],
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ],
+ [
+ -80.72956805932662,
+ 25.19321608141478
+ ],
+ [
+ -80.76945537817338,
+ 25.19321608141478
+ ],
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ],
+ [
+ -80.76945537817338,
+ 25.19321608141478
+ ],
+ [
+ -80.78939903759677,
+ 25.161890575993088
+ ],
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ],
+ [
+ -80.78939903759677,
+ 25.161890575993088
+ ],
+ [
+ -80.76945537817338,
+ 25.130565070571397
+ ],
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ],
+ [
+ -80.76945537817338,
+ 25.130565070571397
+ ],
+ [
+ -80.72956805932662,
+ 25.130565070571397
+ ],
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ],
+ [
+ -80.72956805932662,
+ 25.130565070571397
+ ],
+ [
+ -80.70962439990323,
+ 25.161890575993088
+ ],
+ [
+ -80.74951171875,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ],
+ [
+ -80.70962439990323,
+ 25.224541586836473
+ ],
+ [
+ -80.72956805932662,
+ 25.255867092258164
+ ],
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ],
+ [
+ -80.72956805932662,
+ 25.255867092258164
+ ],
+ [
+ -80.76945537817338,
+ 25.255867092258164
+ ],
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ],
+ [
+ -80.76945537817338,
+ 25.255867092258164
+ ],
+ [
+ -80.78939903759677,
+ 25.224541586836473
+ ],
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ],
+ [
+ -80.78939903759677,
+ 25.224541586836473
+ ],
+ [
+ -80.76945537817338,
+ 25.193216081414782
+ ],
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ],
+ [
+ -80.76945537817338,
+ 25.193216081414782
+ ],
+ [
+ -80.72956805932662,
+ 25.193216081414782
+ ],
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ],
+ [
+ -80.72956805932662,
+ 25.193216081414782
+ ],
+ [
+ -80.70962439990323,
+ 25.224541586836473
+ ],
+ [
+ -80.74951171875,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ],
+ [
+ -80.70962439990323,
+ 25.28719259767986
+ ],
+ [
+ -80.72956805932662,
+ 25.31851810310155
+ ],
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ],
+ [
+ -80.72956805932662,
+ 25.31851810310155
+ ],
+ [
+ -80.76945537817338,
+ 25.31851810310155
+ ],
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ],
+ [
+ -80.76945537817338,
+ 25.31851810310155
+ ],
+ [
+ -80.78939903759677,
+ 25.28719259767986
+ ],
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ],
+ [
+ -80.78939903759677,
+ 25.28719259767986
+ ],
+ [
+ -80.76945537817338,
+ 25.255867092258168
+ ],
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ],
+ [
+ -80.76945537817338,
+ 25.255867092258168
+ ],
+ [
+ -80.72956805932662,
+ 25.255867092258168
+ ],
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ],
+ [
+ -80.72956805932662,
+ 25.255867092258168
+ ],
+ [
+ -80.70962439990323,
+ 25.28719259767986
+ ],
+ [
+ -80.74951171875,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ],
+ [
+ -80.70962439990323,
+ 25.349843608523244
+ ],
+ [
+ -80.72956805932662,
+ 25.381169113944935
+ ],
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ],
+ [
+ -80.72956805932662,
+ 25.381169113944935
+ ],
+ [
+ -80.76945537817338,
+ 25.381169113944935
+ ],
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ],
+ [
+ -80.76945537817338,
+ 25.381169113944935
+ ],
+ [
+ -80.78939903759677,
+ 25.349843608523244
+ ],
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ],
+ [
+ -80.78939903759677,
+ 25.349843608523244
+ ],
+ [
+ -80.76945537817338,
+ 25.318518103101553
+ ],
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ],
+ [
+ -80.76945537817338,
+ 25.318518103101553
+ ],
+ [
+ -80.72956805932662,
+ 25.318518103101553
+ ],
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ],
+ [
+ -80.72956805932662,
+ 25.318518103101553
+ ],
+ [
+ -80.70962439990323,
+ 25.349843608523244
+ ],
+ [
+ -80.74951171875,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ],
+ [
+ -80.70962439990323,
+ 25.41249461936663
+ ],
+ [
+ -80.72956805932662,
+ 25.44382012478832
+ ],
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ],
+ [
+ -80.72956805932662,
+ 25.44382012478832
+ ],
+ [
+ -80.76945537817338,
+ 25.44382012478832
+ ],
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ],
+ [
+ -80.76945537817338,
+ 25.44382012478832
+ ],
+ [
+ -80.78939903759677,
+ 25.41249461936663
+ ],
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ],
+ [
+ -80.78939903759677,
+ 25.41249461936663
+ ],
+ [
+ -80.76945537817338,
+ 25.38116911394494
+ ],
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ],
+ [
+ -80.76945537817338,
+ 25.38116911394494
+ ],
+ [
+ -80.72956805932662,
+ 25.38116911394494
+ ],
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ],
+ [
+ -80.72956805932662,
+ 25.38116911394494
+ ],
+ [
+ -80.70962439990323,
+ 25.41249461936663
+ ],
+ [
+ -80.74951171875,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ],
+ [
+ -80.70962439990323,
+ 25.475145630210015
+ ],
+ [
+ -80.72956805932662,
+ 25.506471135631706
+ ],
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ],
+ [
+ -80.72956805932662,
+ 25.506471135631706
+ ],
+ [
+ -80.76945537817338,
+ 25.506471135631706
+ ],
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ],
+ [
+ -80.76945537817338,
+ 25.506471135631706
+ ],
+ [
+ -80.78939903759677,
+ 25.475145630210015
+ ],
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ],
+ [
+ -80.78939903759677,
+ 25.475145630210015
+ ],
+ [
+ -80.76945537817338,
+ 25.443820124788324
+ ],
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ],
+ [
+ -80.76945537817338,
+ 25.443820124788324
+ ],
+ [
+ -80.72956805932662,
+ 25.443820124788324
+ ],
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ],
+ [
+ -80.72956805932662,
+ 25.443820124788324
+ ],
+ [
+ -80.70962439990323,
+ 25.475145630210015
+ ],
+ [
+ -80.74951171875,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ],
+ [
+ -80.70962439990323,
+ 25.5377966410534
+ ],
+ [
+ -80.72956805932662,
+ 25.56912214647509
+ ],
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ],
+ [
+ -80.72956805932662,
+ 25.56912214647509
+ ],
+ [
+ -80.76945537817338,
+ 25.56912214647509
+ ],
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ],
+ [
+ -80.76945537817338,
+ 25.56912214647509
+ ],
+ [
+ -80.78939903759677,
+ 25.5377966410534
+ ],
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ],
+ [
+ -80.78939903759677,
+ 25.5377966410534
+ ],
+ [
+ -80.76945537817338,
+ 25.50647113563171
+ ],
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ],
+ [
+ -80.76945537817338,
+ 25.50647113563171
+ ],
+ [
+ -80.72956805932662,
+ 25.50647113563171
+ ],
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ],
+ [
+ -80.72956805932662,
+ 25.50647113563171
+ ],
+ [
+ -80.70962439990323,
+ 25.5377966410534
+ ],
+ [
+ -80.74951171875,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ],
+ [
+ -80.70962439990323,
+ 25.600447651896786
+ ],
+ [
+ -80.72956805932662,
+ 25.631773157318477
+ ],
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ],
+ [
+ -80.72956805932662,
+ 25.631773157318477
+ ],
+ [
+ -80.76945537817338,
+ 25.631773157318477
+ ],
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ],
+ [
+ -80.76945537817338,
+ 25.631773157318477
+ ],
+ [
+ -80.78939903759677,
+ 25.600447651896786
+ ],
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ],
+ [
+ -80.78939903759677,
+ 25.600447651896786
+ ],
+ [
+ -80.76945537817338,
+ 25.569122146475095
+ ],
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ],
+ [
+ -80.76945537817338,
+ 25.569122146475095
+ ],
+ [
+ -80.72956805932662,
+ 25.569122146475095
+ ],
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ],
+ [
+ -80.72956805932662,
+ 25.569122146475095
+ ],
+ [
+ -80.70962439990323,
+ 25.600447651896786
+ ],
+ [
+ -80.74951171875,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ],
+ [
+ -80.70962439990323,
+ 25.663098662740172
+ ],
+ [
+ -80.72956805932662,
+ 25.694424168161863
+ ],
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ],
+ [
+ -80.72956805932662,
+ 25.694424168161863
+ ],
+ [
+ -80.76945537817338,
+ 25.694424168161863
+ ],
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ],
+ [
+ -80.76945537817338,
+ 25.694424168161863
+ ],
+ [
+ -80.78939903759677,
+ 25.663098662740172
+ ],
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ],
+ [
+ -80.78939903759677,
+ 25.663098662740172
+ ],
+ [
+ -80.76945537817338,
+ 25.63177315731848
+ ],
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ],
+ [
+ -80.76945537817338,
+ 25.63177315731848
+ ],
+ [
+ -80.72956805932662,
+ 25.63177315731848
+ ],
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ],
+ [
+ -80.72956805932662,
+ 25.63177315731848
+ ],
+ [
+ -80.70962439990323,
+ 25.663098662740172
+ ],
+ [
+ -80.74951171875,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ],
+ [
+ -80.70962439990323,
+ 25.725749673583557
+ ],
+ [
+ -80.72956805932662,
+ 25.75707517900525
+ ],
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ],
+ [
+ -80.72956805932662,
+ 25.75707517900525
+ ],
+ [
+ -80.76945537817338,
+ 25.75707517900525
+ ],
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ],
+ [
+ -80.76945537817338,
+ 25.75707517900525
+ ],
+ [
+ -80.78939903759677,
+ 25.725749673583557
+ ],
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ],
+ [
+ -80.78939903759677,
+ 25.725749673583557
+ ],
+ [
+ -80.76945537817338,
+ 25.694424168161866
+ ],
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ],
+ [
+ -80.76945537817338,
+ 25.694424168161866
+ ],
+ [
+ -80.72956805932662,
+ 25.694424168161866
+ ],
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ],
+ [
+ -80.72956805932662,
+ 25.694424168161866
+ ],
+ [
+ -80.70962439990323,
+ 25.725749673583557
+ ],
+ [
+ -80.74951171875,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ],
+ [
+ -80.70962439990323,
+ 25.788400684426943
+ ],
+ [
+ -80.72956805932662,
+ 25.819726189848634
+ ],
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ],
+ [
+ -80.72956805932662,
+ 25.819726189848634
+ ],
+ [
+ -80.76945537817338,
+ 25.819726189848634
+ ],
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ],
+ [
+ -80.76945537817338,
+ 25.819726189848634
+ ],
+ [
+ -80.78939903759677,
+ 25.788400684426943
+ ],
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ],
+ [
+ -80.78939903759677,
+ 25.788400684426943
+ ],
+ [
+ -80.76945537817338,
+ 25.757075179005252
+ ],
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ],
+ [
+ -80.76945537817338,
+ 25.757075179005252
+ ],
+ [
+ -80.72956805932662,
+ 25.757075179005252
+ ],
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ],
+ [
+ -80.72956805932662,
+ 25.757075179005252
+ ],
+ [
+ -80.70962439990323,
+ 25.788400684426943
+ ],
+ [
+ -80.74951171875,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ],
+ [
+ -80.70962439990323,
+ 25.85105169527033
+ ],
+ [
+ -80.72956805932662,
+ 25.88237720069202
+ ],
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ],
+ [
+ -80.72956805932662,
+ 25.88237720069202
+ ],
+ [
+ -80.76945537817338,
+ 25.88237720069202
+ ],
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ],
+ [
+ -80.76945537817338,
+ 25.88237720069202
+ ],
+ [
+ -80.78939903759677,
+ 25.85105169527033
+ ],
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ],
+ [
+ -80.78939903759677,
+ 25.85105169527033
+ ],
+ [
+ -80.76945537817338,
+ 25.819726189848637
+ ],
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ],
+ [
+ -80.76945537817338,
+ 25.819726189848637
+ ],
+ [
+ -80.72956805932662,
+ 25.819726189848637
+ ],
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ],
+ [
+ -80.72956805932662,
+ 25.819726189848637
+ ],
+ [
+ -80.70962439990323,
+ 25.85105169527033
+ ],
+ [
+ -80.74951171875,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ],
+ [
+ -80.70962439990323,
+ 25.913702706113714
+ ],
+ [
+ -80.72956805932662,
+ 25.945028211535405
+ ],
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ],
+ [
+ -80.72956805932662,
+ 25.945028211535405
+ ],
+ [
+ -80.76945537817338,
+ 25.945028211535405
+ ],
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ],
+ [
+ -80.76945537817338,
+ 25.945028211535405
+ ],
+ [
+ -80.78939903759677,
+ 25.913702706113714
+ ],
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ],
+ [
+ -80.78939903759677,
+ 25.913702706113714
+ ],
+ [
+ -80.76945537817338,
+ 25.882377200692023
+ ],
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ],
+ [
+ -80.76945537817338,
+ 25.882377200692023
+ ],
+ [
+ -80.72956805932662,
+ 25.882377200692023
+ ],
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ],
+ [
+ -80.72956805932662,
+ 25.882377200692023
+ ],
+ [
+ -80.70962439990323,
+ 25.913702706113714
+ ],
+ [
+ -80.74951171875,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ],
+ [
+ -80.70962439990323,
+ 25.9763537169571
+ ],
+ [
+ -80.72956805932662,
+ 26.00767922237879
+ ],
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ],
+ [
+ -80.72956805932662,
+ 26.00767922237879
+ ],
+ [
+ -80.76945537817338,
+ 26.00767922237879
+ ],
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ],
+ [
+ -80.76945537817338,
+ 26.00767922237879
+ ],
+ [
+ -80.78939903759677,
+ 25.9763537169571
+ ],
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ],
+ [
+ -80.78939903759677,
+ 25.9763537169571
+ ],
+ [
+ -80.76945537817338,
+ 25.94502821153541
+ ],
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ],
+ [
+ -80.76945537817338,
+ 25.94502821153541
+ ],
+ [
+ -80.72956805932662,
+ 25.94502821153541
+ ],
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ],
+ [
+ -80.72956805932662,
+ 25.94502821153541
+ ],
+ [
+ -80.70962439990323,
+ 25.9763537169571
+ ],
+ [
+ -80.74951171875,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ],
+ [
+ -80.70962439990323,
+ 26.039004727800485
+ ],
+ [
+ -80.72956805932662,
+ 26.070330233222176
+ ],
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ],
+ [
+ -80.72956805932662,
+ 26.070330233222176
+ ],
+ [
+ -80.76945537817338,
+ 26.070330233222176
+ ],
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ],
+ [
+ -80.76945537817338,
+ 26.070330233222176
+ ],
+ [
+ -80.78939903759677,
+ 26.039004727800485
+ ],
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ],
+ [
+ -80.78939903759677,
+ 26.039004727800485
+ ],
+ [
+ -80.76945537817338,
+ 26.007679222378794
+ ],
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ],
+ [
+ -80.76945537817338,
+ 26.007679222378794
+ ],
+ [
+ -80.72956805932662,
+ 26.007679222378794
+ ],
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ],
+ [
+ -80.72956805932662,
+ 26.007679222378794
+ ],
+ [
+ -80.70962439990323,
+ 26.039004727800485
+ ],
+ [
+ -80.74951171875,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ],
+ [
+ -80.70962439990323,
+ 26.10165573864387
+ ],
+ [
+ -80.72956805932662,
+ 26.13298124406556
+ ],
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ],
+ [
+ -80.72956805932662,
+ 26.13298124406556
+ ],
+ [
+ -80.76945537817338,
+ 26.13298124406556
+ ],
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ],
+ [
+ -80.76945537817338,
+ 26.13298124406556
+ ],
+ [
+ -80.78939903759677,
+ 26.10165573864387
+ ],
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ],
+ [
+ -80.78939903759677,
+ 26.10165573864387
+ ],
+ [
+ -80.76945537817338,
+ 26.07033023322218
+ ],
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ],
+ [
+ -80.76945537817338,
+ 26.07033023322218
+ ],
+ [
+ -80.72956805932662,
+ 26.07033023322218
+ ],
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ],
+ [
+ -80.72956805932662,
+ 26.07033023322218
+ ],
+ [
+ -80.70962439990323,
+ 26.10165573864387
+ ],
+ [
+ -80.74951171875,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ],
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ],
+ [
+ -80.72956805932662,
+ 26.195632254908944
+ ],
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ],
+ [
+ -80.72956805932662,
+ 26.195632254908944
+ ],
+ [
+ -80.76945537817338,
+ 26.195632254908944
+ ],
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ],
+ [
+ -80.76945537817338,
+ 26.195632254908944
+ ],
+ [
+ -80.78939903759677,
+ 26.164306749487253
+ ],
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ],
+ [
+ -80.78939903759677,
+ 26.164306749487253
+ ],
+ [
+ -80.76945537817338,
+ 26.13298124406556
+ ],
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ],
+ [
+ -80.76945537817338,
+ 26.13298124406556
+ ],
+ [
+ -80.72956805932662,
+ 26.13298124406556
+ ],
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ],
+ [
+ -80.72956805932662,
+ 26.13298124406556
+ ],
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ],
+ [
+ -80.74951171875,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ],
+ [
+ -80.70962439990323,
+ 26.22695776033064
+ ],
+ [
+ -80.72956805932662,
+ 26.258283265752333
+ ],
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ],
+ [
+ -80.72956805932662,
+ 26.258283265752333
+ ],
+ [
+ -80.76945537817338,
+ 26.258283265752333
+ ],
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ],
+ [
+ -80.76945537817338,
+ 26.258283265752333
+ ],
+ [
+ -80.78939903759677,
+ 26.22695776033064
+ ],
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ],
+ [
+ -80.78939903759677,
+ 26.22695776033064
+ ],
+ [
+ -80.76945537817338,
+ 26.19563225490895
+ ],
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ],
+ [
+ -80.76945537817338,
+ 26.19563225490895
+ ],
+ [
+ -80.72956805932662,
+ 26.19563225490895
+ ],
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ],
+ [
+ -80.72956805932662,
+ 26.19563225490895
+ ],
+ [
+ -80.70962439990323,
+ 26.22695776033064
+ ],
+ [
+ -80.74951171875,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ],
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ],
+ [
+ -80.72956805932662,
+ 26.320934276595715
+ ],
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ],
+ [
+ -80.72956805932662,
+ 26.320934276595715
+ ],
+ [
+ -80.76945537817338,
+ 26.320934276595715
+ ],
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ],
+ [
+ -80.76945537817338,
+ 26.320934276595715
+ ],
+ [
+ -80.78939903759677,
+ 26.289608771174024
+ ],
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ],
+ [
+ -80.78939903759677,
+ 26.289608771174024
+ ],
+ [
+ -80.76945537817338,
+ 26.258283265752333
+ ],
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ],
+ [
+ -80.76945537817338,
+ 26.258283265752333
+ ],
+ [
+ -80.72956805932662,
+ 26.258283265752333
+ ],
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ],
+ [
+ -80.72956805932662,
+ 26.258283265752333
+ ],
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ],
+ [
+ -80.74951171875,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ],
+ [
+ -80.70962439990323,
+ 26.35225978201741
+ ],
+ [
+ -80.72956805932662,
+ 26.3835852874391
+ ],
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ],
+ [
+ -80.72956805932662,
+ 26.3835852874391
+ ],
+ [
+ -80.76945537817338,
+ 26.3835852874391
+ ],
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ],
+ [
+ -80.76945537817338,
+ 26.3835852874391
+ ],
+ [
+ -80.78939903759677,
+ 26.35225978201741
+ ],
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ],
+ [
+ -80.78939903759677,
+ 26.35225978201741
+ ],
+ [
+ -80.76945537817338,
+ 26.320934276595718
+ ],
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ],
+ [
+ -80.76945537817338,
+ 26.320934276595718
+ ],
+ [
+ -80.72956805932662,
+ 26.320934276595718
+ ],
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ],
+ [
+ -80.72956805932662,
+ 26.320934276595718
+ ],
+ [
+ -80.70962439990323,
+ 26.35225978201741
+ ],
+ [
+ -80.74951171875,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ],
+ [
+ -80.70962439990323,
+ 26.414910792860795
+ ],
+ [
+ -80.72956805932662,
+ 26.446236298282486
+ ],
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ],
+ [
+ -80.72956805932662,
+ 26.446236298282486
+ ],
+ [
+ -80.76945537817338,
+ 26.446236298282486
+ ],
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ],
+ [
+ -80.76945537817338,
+ 26.446236298282486
+ ],
+ [
+ -80.78939903759677,
+ 26.414910792860795
+ ],
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ],
+ [
+ -80.78939903759677,
+ 26.414910792860795
+ ],
+ [
+ -80.76945537817338,
+ 26.383585287439104
+ ],
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ],
+ [
+ -80.76945537817338,
+ 26.383585287439104
+ ],
+ [
+ -80.72956805932662,
+ 26.383585287439104
+ ],
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ],
+ [
+ -80.72956805932662,
+ 26.383585287439104
+ ],
+ [
+ -80.70962439990323,
+ 26.414910792860795
+ ],
+ [
+ -80.74951171875,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ],
+ [
+ -80.64979342163309,
+ 24.942612038041236
+ ],
+ [
+ -80.66973708105648,
+ 24.973937543462927
+ ],
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ],
+ [
+ -80.66973708105648,
+ 24.973937543462927
+ ],
+ [
+ -80.70962439990323,
+ 24.973937543462927
+ ],
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ],
+ [
+ -80.70962439990323,
+ 24.973937543462927
+ ],
+ [
+ -80.72956805932662,
+ 24.942612038041236
+ ],
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ],
+ [
+ -80.72956805932662,
+ 24.942612038041236
+ ],
+ [
+ -80.70962439990323,
+ 24.911286532619545
+ ],
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ],
+ [
+ -80.70962439990323,
+ 24.911286532619545
+ ],
+ [
+ -80.66973708105648,
+ 24.911286532619545
+ ],
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ],
+ [
+ -80.66973708105648,
+ 24.911286532619545
+ ],
+ [
+ -80.64979342163309,
+ 24.942612038041236
+ ],
+ [
+ -80.68968074047986,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ],
+ [
+ -80.64979342163309,
+ 25.005263048884622
+ ],
+ [
+ -80.66973708105648,
+ 25.036588554306313
+ ],
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ],
+ [
+ -80.66973708105648,
+ 25.036588554306313
+ ],
+ [
+ -80.70962439990323,
+ 25.036588554306313
+ ],
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ],
+ [
+ -80.70962439990323,
+ 25.036588554306313
+ ],
+ [
+ -80.72956805932662,
+ 25.005263048884622
+ ],
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ],
+ [
+ -80.72956805932662,
+ 25.005263048884622
+ ],
+ [
+ -80.70962439990323,
+ 24.97393754346293
+ ],
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ],
+ [
+ -80.70962439990323,
+ 24.97393754346293
+ ],
+ [
+ -80.66973708105648,
+ 24.97393754346293
+ ],
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ],
+ [
+ -80.66973708105648,
+ 24.97393754346293
+ ],
+ [
+ -80.64979342163309,
+ 25.005263048884622
+ ],
+ [
+ -80.68968074047986,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ],
+ [
+ -80.64979342163309,
+ 25.067914059728007
+ ],
+ [
+ -80.66973708105648,
+ 25.0992395651497
+ ],
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ],
+ [
+ -80.66973708105648,
+ 25.0992395651497
+ ],
+ [
+ -80.70962439990323,
+ 25.0992395651497
+ ],
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ],
+ [
+ -80.70962439990323,
+ 25.0992395651497
+ ],
+ [
+ -80.72956805932662,
+ 25.067914059728007
+ ],
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ],
+ [
+ -80.72956805932662,
+ 25.067914059728007
+ ],
+ [
+ -80.70962439990323,
+ 25.036588554306316
+ ],
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ],
+ [
+ -80.70962439990323,
+ 25.036588554306316
+ ],
+ [
+ -80.66973708105648,
+ 25.036588554306316
+ ],
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ],
+ [
+ -80.66973708105648,
+ 25.036588554306316
+ ],
+ [
+ -80.64979342163309,
+ 25.067914059728007
+ ],
+ [
+ -80.68968074047986,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ],
+ [
+ -80.64979342163309,
+ 25.130565070571393
+ ],
+ [
+ -80.66973708105648,
+ 25.161890575993084
+ ],
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ],
+ [
+ -80.66973708105648,
+ 25.161890575993084
+ ],
+ [
+ -80.70962439990323,
+ 25.161890575993084
+ ],
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ],
+ [
+ -80.70962439990323,
+ 25.161890575993084
+ ],
+ [
+ -80.72956805932662,
+ 25.130565070571393
+ ],
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ],
+ [
+ -80.72956805932662,
+ 25.130565070571393
+ ],
+ [
+ -80.70962439990323,
+ 25.099239565149702
+ ],
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ],
+ [
+ -80.70962439990323,
+ 25.099239565149702
+ ],
+ [
+ -80.66973708105648,
+ 25.099239565149702
+ ],
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ],
+ [
+ -80.66973708105648,
+ 25.099239565149702
+ ],
+ [
+ -80.64979342163309,
+ 25.130565070571393
+ ],
+ [
+ -80.68968074047986,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ],
+ [
+ -80.64979342163309,
+ 25.19321608141478
+ ],
+ [
+ -80.66973708105648,
+ 25.22454158683647
+ ],
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ],
+ [
+ -80.66973708105648,
+ 25.22454158683647
+ ],
+ [
+ -80.70962439990323,
+ 25.22454158683647
+ ],
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ],
+ [
+ -80.70962439990323,
+ 25.22454158683647
+ ],
+ [
+ -80.72956805932662,
+ 25.19321608141478
+ ],
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ],
+ [
+ -80.72956805932662,
+ 25.19321608141478
+ ],
+ [
+ -80.70962439990323,
+ 25.161890575993088
+ ],
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ],
+ [
+ -80.70962439990323,
+ 25.161890575993088
+ ],
+ [
+ -80.66973708105648,
+ 25.161890575993088
+ ],
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ],
+ [
+ -80.66973708105648,
+ 25.161890575993088
+ ],
+ [
+ -80.64979342163309,
+ 25.19321608141478
+ ],
+ [
+ -80.68968074047986,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ],
+ [
+ -80.64979342163309,
+ 25.255867092258164
+ ],
+ [
+ -80.66973708105648,
+ 25.287192597679855
+ ],
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ],
+ [
+ -80.66973708105648,
+ 25.287192597679855
+ ],
+ [
+ -80.70962439990323,
+ 25.287192597679855
+ ],
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ],
+ [
+ -80.70962439990323,
+ 25.287192597679855
+ ],
+ [
+ -80.72956805932662,
+ 25.255867092258164
+ ],
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ],
+ [
+ -80.72956805932662,
+ 25.255867092258164
+ ],
+ [
+ -80.70962439990323,
+ 25.224541586836473
+ ],
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ],
+ [
+ -80.70962439990323,
+ 25.224541586836473
+ ],
+ [
+ -80.66973708105648,
+ 25.224541586836473
+ ],
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ],
+ [
+ -80.66973708105648,
+ 25.224541586836473
+ ],
+ [
+ -80.64979342163309,
+ 25.255867092258164
+ ],
+ [
+ -80.68968074047986,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ],
+ [
+ -80.64979342163309,
+ 25.31851810310155
+ ],
+ [
+ -80.66973708105648,
+ 25.34984360852324
+ ],
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ],
+ [
+ -80.66973708105648,
+ 25.34984360852324
+ ],
+ [
+ -80.70962439990323,
+ 25.34984360852324
+ ],
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ],
+ [
+ -80.70962439990323,
+ 25.34984360852324
+ ],
+ [
+ -80.72956805932662,
+ 25.31851810310155
+ ],
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ],
+ [
+ -80.72956805932662,
+ 25.31851810310155
+ ],
+ [
+ -80.70962439990323,
+ 25.28719259767986
+ ],
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ],
+ [
+ -80.70962439990323,
+ 25.28719259767986
+ ],
+ [
+ -80.66973708105648,
+ 25.28719259767986
+ ],
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ],
+ [
+ -80.66973708105648,
+ 25.28719259767986
+ ],
+ [
+ -80.64979342163309,
+ 25.31851810310155
+ ],
+ [
+ -80.68968074047986,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ],
+ [
+ -80.64979342163309,
+ 25.381169113944935
+ ],
+ [
+ -80.66973708105648,
+ 25.412494619366626
+ ],
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ],
+ [
+ -80.66973708105648,
+ 25.412494619366626
+ ],
+ [
+ -80.70962439990323,
+ 25.412494619366626
+ ],
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ],
+ [
+ -80.70962439990323,
+ 25.412494619366626
+ ],
+ [
+ -80.72956805932662,
+ 25.381169113944935
+ ],
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ],
+ [
+ -80.72956805932662,
+ 25.381169113944935
+ ],
+ [
+ -80.70962439990323,
+ 25.349843608523244
+ ],
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ],
+ [
+ -80.70962439990323,
+ 25.349843608523244
+ ],
+ [
+ -80.66973708105648,
+ 25.349843608523244
+ ],
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ],
+ [
+ -80.66973708105648,
+ 25.349843608523244
+ ],
+ [
+ -80.64979342163309,
+ 25.381169113944935
+ ],
+ [
+ -80.68968074047986,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ],
+ [
+ -80.64979342163309,
+ 25.44382012478832
+ ],
+ [
+ -80.66973708105648,
+ 25.47514563021001
+ ],
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ],
+ [
+ -80.66973708105648,
+ 25.47514563021001
+ ],
+ [
+ -80.70962439990323,
+ 25.47514563021001
+ ],
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ],
+ [
+ -80.70962439990323,
+ 25.47514563021001
+ ],
+ [
+ -80.72956805932662,
+ 25.44382012478832
+ ],
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ],
+ [
+ -80.72956805932662,
+ 25.44382012478832
+ ],
+ [
+ -80.70962439990323,
+ 25.41249461936663
+ ],
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ],
+ [
+ -80.70962439990323,
+ 25.41249461936663
+ ],
+ [
+ -80.66973708105648,
+ 25.41249461936663
+ ],
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ],
+ [
+ -80.66973708105648,
+ 25.41249461936663
+ ],
+ [
+ -80.64979342163309,
+ 25.44382012478832
+ ],
+ [
+ -80.68968074047986,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ],
+ [
+ -80.64979342163309,
+ 25.506471135631706
+ ],
+ [
+ -80.66973708105648,
+ 25.537796641053397
+ ],
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ],
+ [
+ -80.66973708105648,
+ 25.537796641053397
+ ],
+ [
+ -80.70962439990323,
+ 25.537796641053397
+ ],
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ],
+ [
+ -80.70962439990323,
+ 25.537796641053397
+ ],
+ [
+ -80.72956805932662,
+ 25.506471135631706
+ ],
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ],
+ [
+ -80.72956805932662,
+ 25.506471135631706
+ ],
+ [
+ -80.70962439990323,
+ 25.475145630210015
+ ],
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ],
+ [
+ -80.70962439990323,
+ 25.475145630210015
+ ],
+ [
+ -80.66973708105648,
+ 25.475145630210015
+ ],
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ],
+ [
+ -80.66973708105648,
+ 25.475145630210015
+ ],
+ [
+ -80.64979342163309,
+ 25.506471135631706
+ ],
+ [
+ -80.68968074047986,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ],
+ [
+ -80.64979342163309,
+ 25.56912214647509
+ ],
+ [
+ -80.66973708105648,
+ 25.600447651896783
+ ],
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ],
+ [
+ -80.66973708105648,
+ 25.600447651896783
+ ],
+ [
+ -80.70962439990323,
+ 25.600447651896783
+ ],
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ],
+ [
+ -80.70962439990323,
+ 25.600447651896783
+ ],
+ [
+ -80.72956805932662,
+ 25.56912214647509
+ ],
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ],
+ [
+ -80.72956805932662,
+ 25.56912214647509
+ ],
+ [
+ -80.70962439990323,
+ 25.5377966410534
+ ],
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ],
+ [
+ -80.70962439990323,
+ 25.5377966410534
+ ],
+ [
+ -80.66973708105648,
+ 25.5377966410534
+ ],
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ],
+ [
+ -80.66973708105648,
+ 25.5377966410534
+ ],
+ [
+ -80.64979342163309,
+ 25.56912214647509
+ ],
+ [
+ -80.68968074047986,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ],
+ [
+ -80.64979342163309,
+ 25.631773157318477
+ ],
+ [
+ -80.66973708105648,
+ 25.66309866274017
+ ],
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ],
+ [
+ -80.66973708105648,
+ 25.66309866274017
+ ],
+ [
+ -80.70962439990323,
+ 25.66309866274017
+ ],
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ],
+ [
+ -80.70962439990323,
+ 25.66309866274017
+ ],
+ [
+ -80.72956805932662,
+ 25.631773157318477
+ ],
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ],
+ [
+ -80.72956805932662,
+ 25.631773157318477
+ ],
+ [
+ -80.70962439990323,
+ 25.600447651896786
+ ],
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ],
+ [
+ -80.70962439990323,
+ 25.600447651896786
+ ],
+ [
+ -80.66973708105648,
+ 25.600447651896786
+ ],
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ],
+ [
+ -80.66973708105648,
+ 25.600447651896786
+ ],
+ [
+ -80.64979342163309,
+ 25.631773157318477
+ ],
+ [
+ -80.68968074047986,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ],
+ [
+ -80.64979342163309,
+ 25.694424168161863
+ ],
+ [
+ -80.66973708105648,
+ 25.725749673583554
+ ],
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ],
+ [
+ -80.66973708105648,
+ 25.725749673583554
+ ],
+ [
+ -80.70962439990323,
+ 25.725749673583554
+ ],
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ],
+ [
+ -80.70962439990323,
+ 25.725749673583554
+ ],
+ [
+ -80.72956805932662,
+ 25.694424168161863
+ ],
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ],
+ [
+ -80.72956805932662,
+ 25.694424168161863
+ ],
+ [
+ -80.70962439990323,
+ 25.663098662740172
+ ],
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ],
+ [
+ -80.70962439990323,
+ 25.663098662740172
+ ],
+ [
+ -80.66973708105648,
+ 25.663098662740172
+ ],
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ],
+ [
+ -80.66973708105648,
+ 25.663098662740172
+ ],
+ [
+ -80.64979342163309,
+ 25.694424168161863
+ ],
+ [
+ -80.68968074047986,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ],
+ [
+ -80.64979342163309,
+ 25.75707517900525
+ ],
+ [
+ -80.66973708105648,
+ 25.78840068442694
+ ],
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ],
+ [
+ -80.66973708105648,
+ 25.78840068442694
+ ],
+ [
+ -80.70962439990323,
+ 25.78840068442694
+ ],
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ],
+ [
+ -80.70962439990323,
+ 25.78840068442694
+ ],
+ [
+ -80.72956805932662,
+ 25.75707517900525
+ ],
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ],
+ [
+ -80.72956805932662,
+ 25.75707517900525
+ ],
+ [
+ -80.70962439990323,
+ 25.725749673583557
+ ],
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ],
+ [
+ -80.70962439990323,
+ 25.725749673583557
+ ],
+ [
+ -80.66973708105648,
+ 25.725749673583557
+ ],
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ],
+ [
+ -80.66973708105648,
+ 25.725749673583557
+ ],
+ [
+ -80.64979342163309,
+ 25.75707517900525
+ ],
+ [
+ -80.68968074047986,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ],
+ [
+ -80.64979342163309,
+ 25.819726189848634
+ ],
+ [
+ -80.66973708105648,
+ 25.851051695270325
+ ],
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ],
+ [
+ -80.66973708105648,
+ 25.851051695270325
+ ],
+ [
+ -80.70962439990323,
+ 25.851051695270325
+ ],
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ],
+ [
+ -80.70962439990323,
+ 25.851051695270325
+ ],
+ [
+ -80.72956805932662,
+ 25.819726189848634
+ ],
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ],
+ [
+ -80.72956805932662,
+ 25.819726189848634
+ ],
+ [
+ -80.70962439990323,
+ 25.788400684426943
+ ],
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ],
+ [
+ -80.70962439990323,
+ 25.788400684426943
+ ],
+ [
+ -80.66973708105648,
+ 25.788400684426943
+ ],
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ],
+ [
+ -80.66973708105648,
+ 25.788400684426943
+ ],
+ [
+ -80.64979342163309,
+ 25.819726189848634
+ ],
+ [
+ -80.68968074047986,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ],
+ [
+ -80.64979342163309,
+ 25.88237720069202
+ ],
+ [
+ -80.66973708105648,
+ 25.91370270611371
+ ],
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ],
+ [
+ -80.66973708105648,
+ 25.91370270611371
+ ],
+ [
+ -80.70962439990323,
+ 25.91370270611371
+ ],
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ],
+ [
+ -80.70962439990323,
+ 25.91370270611371
+ ],
+ [
+ -80.72956805932662,
+ 25.88237720069202
+ ],
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ],
+ [
+ -80.72956805932662,
+ 25.88237720069202
+ ],
+ [
+ -80.70962439990323,
+ 25.85105169527033
+ ],
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ],
+ [
+ -80.70962439990323,
+ 25.85105169527033
+ ],
+ [
+ -80.66973708105648,
+ 25.85105169527033
+ ],
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ],
+ [
+ -80.66973708105648,
+ 25.85105169527033
+ ],
+ [
+ -80.64979342163309,
+ 25.88237720069202
+ ],
+ [
+ -80.68968074047986,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ],
+ [
+ -80.64979342163309,
+ 25.945028211535405
+ ],
+ [
+ -80.66973708105648,
+ 25.976353716957096
+ ],
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ],
+ [
+ -80.66973708105648,
+ 25.976353716957096
+ ],
+ [
+ -80.70962439990323,
+ 25.976353716957096
+ ],
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ],
+ [
+ -80.70962439990323,
+ 25.976353716957096
+ ],
+ [
+ -80.72956805932662,
+ 25.945028211535405
+ ],
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ],
+ [
+ -80.72956805932662,
+ 25.945028211535405
+ ],
+ [
+ -80.70962439990323,
+ 25.913702706113714
+ ],
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ],
+ [
+ -80.70962439990323,
+ 25.913702706113714
+ ],
+ [
+ -80.66973708105648,
+ 25.913702706113714
+ ],
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ],
+ [
+ -80.66973708105648,
+ 25.913702706113714
+ ],
+ [
+ -80.64979342163309,
+ 25.945028211535405
+ ],
+ [
+ -80.68968074047986,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ],
+ [
+ -80.64979342163309,
+ 26.00767922237879
+ ],
+ [
+ -80.66973708105648,
+ 26.03900472780048
+ ],
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ],
+ [
+ -80.66973708105648,
+ 26.03900472780048
+ ],
+ [
+ -80.70962439990323,
+ 26.03900472780048
+ ],
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ],
+ [
+ -80.70962439990323,
+ 26.03900472780048
+ ],
+ [
+ -80.72956805932662,
+ 26.00767922237879
+ ],
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ],
+ [
+ -80.72956805932662,
+ 26.00767922237879
+ ],
+ [
+ -80.70962439990323,
+ 25.9763537169571
+ ],
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ],
+ [
+ -80.70962439990323,
+ 25.9763537169571
+ ],
+ [
+ -80.66973708105648,
+ 25.9763537169571
+ ],
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ],
+ [
+ -80.66973708105648,
+ 25.9763537169571
+ ],
+ [
+ -80.64979342163309,
+ 26.00767922237879
+ ],
+ [
+ -80.68968074047986,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ],
+ [
+ -80.64979342163309,
+ 26.070330233222176
+ ],
+ [
+ -80.66973708105648,
+ 26.101655738643867
+ ],
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ],
+ [
+ -80.66973708105648,
+ 26.101655738643867
+ ],
+ [
+ -80.70962439990323,
+ 26.101655738643867
+ ],
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ],
+ [
+ -80.70962439990323,
+ 26.101655738643867
+ ],
+ [
+ -80.72956805932662,
+ 26.070330233222176
+ ],
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ],
+ [
+ -80.72956805932662,
+ 26.070330233222176
+ ],
+ [
+ -80.70962439990323,
+ 26.039004727800485
+ ],
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ],
+ [
+ -80.70962439990323,
+ 26.039004727800485
+ ],
+ [
+ -80.66973708105648,
+ 26.039004727800485
+ ],
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ],
+ [
+ -80.66973708105648,
+ 26.039004727800485
+ ],
+ [
+ -80.64979342163309,
+ 26.070330233222176
+ ],
+ [
+ -80.68968074047986,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ],
+ [
+ -80.64979342163309,
+ 26.13298124406556
+ ],
+ [
+ -80.66973708105648,
+ 26.164306749487253
+ ],
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ],
+ [
+ -80.66973708105648,
+ 26.164306749487253
+ ],
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ],
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ],
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ],
+ [
+ -80.72956805932662,
+ 26.13298124406556
+ ],
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ],
+ [
+ -80.72956805932662,
+ 26.13298124406556
+ ],
+ [
+ -80.70962439990323,
+ 26.10165573864387
+ ],
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ],
+ [
+ -80.70962439990323,
+ 26.10165573864387
+ ],
+ [
+ -80.66973708105648,
+ 26.10165573864387
+ ],
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ],
+ [
+ -80.66973708105648,
+ 26.10165573864387
+ ],
+ [
+ -80.64979342163309,
+ 26.13298124406556
+ ],
+ [
+ -80.68968074047986,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ],
+ [
+ -80.64979342163309,
+ 26.195632254908944
+ ],
+ [
+ -80.66973708105648,
+ 26.226957760330635
+ ],
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ],
+ [
+ -80.66973708105648,
+ 26.226957760330635
+ ],
+ [
+ -80.70962439990323,
+ 26.226957760330635
+ ],
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ],
+ [
+ -80.70962439990323,
+ 26.226957760330635
+ ],
+ [
+ -80.72956805932662,
+ 26.195632254908944
+ ],
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ],
+ [
+ -80.72956805932662,
+ 26.195632254908944
+ ],
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ],
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ],
+ [
+ -80.70962439990323,
+ 26.164306749487253
+ ],
+ [
+ -80.66973708105648,
+ 26.164306749487253
+ ],
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ],
+ [
+ -80.66973708105648,
+ 26.164306749487253
+ ],
+ [
+ -80.64979342163309,
+ 26.195632254908944
+ ],
+ [
+ -80.68968074047986,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ],
+ [
+ -80.64979342163309,
+ 26.258283265752333
+ ],
+ [
+ -80.66973708105648,
+ 26.289608771174024
+ ],
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ],
+ [
+ -80.66973708105648,
+ 26.289608771174024
+ ],
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ],
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ],
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ],
+ [
+ -80.72956805932662,
+ 26.258283265752333
+ ],
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ],
+ [
+ -80.72956805932662,
+ 26.258283265752333
+ ],
+ [
+ -80.70962439990323,
+ 26.22695776033064
+ ],
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ],
+ [
+ -80.70962439990323,
+ 26.22695776033064
+ ],
+ [
+ -80.66973708105648,
+ 26.22695776033064
+ ],
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ],
+ [
+ -80.66973708105648,
+ 26.22695776033064
+ ],
+ [
+ -80.64979342163309,
+ 26.258283265752333
+ ],
+ [
+ -80.68968074047986,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ],
+ [
+ -80.64979342163309,
+ 26.320934276595715
+ ],
+ [
+ -80.66973708105648,
+ 26.352259782017406
+ ],
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ],
+ [
+ -80.66973708105648,
+ 26.352259782017406
+ ],
+ [
+ -80.70962439990323,
+ 26.352259782017406
+ ],
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ],
+ [
+ -80.70962439990323,
+ 26.352259782017406
+ ],
+ [
+ -80.72956805932662,
+ 26.320934276595715
+ ],
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ],
+ [
+ -80.72956805932662,
+ 26.320934276595715
+ ],
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ],
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ],
+ [
+ -80.70962439990323,
+ 26.289608771174024
+ ],
+ [
+ -80.66973708105648,
+ 26.289608771174024
+ ],
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ],
+ [
+ -80.66973708105648,
+ 26.289608771174024
+ ],
+ [
+ -80.64979342163309,
+ 26.320934276595715
+ ],
+ [
+ -80.68968074047986,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ],
+ [
+ -80.64979342163309,
+ 26.3835852874391
+ ],
+ [
+ -80.66973708105648,
+ 26.41491079286079
+ ],
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ],
+ [
+ -80.66973708105648,
+ 26.41491079286079
+ ],
+ [
+ -80.70962439990323,
+ 26.41491079286079
+ ],
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ],
+ [
+ -80.70962439990323,
+ 26.41491079286079
+ ],
+ [
+ -80.72956805932662,
+ 26.3835852874391
+ ],
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ],
+ [
+ -80.72956805932662,
+ 26.3835852874391
+ ],
+ [
+ -80.70962439990323,
+ 26.35225978201741
+ ],
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ],
+ [
+ -80.70962439990323,
+ 26.35225978201741
+ ],
+ [
+ -80.66973708105648,
+ 26.35225978201741
+ ],
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ],
+ [
+ -80.66973708105648,
+ 26.35225978201741
+ ],
+ [
+ -80.64979342163309,
+ 26.3835852874391
+ ],
+ [
+ -80.68968074047986,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ],
+ [
+ -80.64979342163309,
+ 26.446236298282486
+ ],
+ [
+ -80.66973708105648,
+ 26.477561803704177
+ ],
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ],
+ [
+ -80.66973708105648,
+ 26.477561803704177
+ ],
+ [
+ -80.70962439990323,
+ 26.477561803704177
+ ],
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ],
+ [
+ -80.70962439990323,
+ 26.477561803704177
+ ],
+ [
+ -80.72956805932662,
+ 26.446236298282486
+ ],
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ],
+ [
+ -80.72956805932662,
+ 26.446236298282486
+ ],
+ [
+ -80.70962439990323,
+ 26.414910792860795
+ ],
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ],
+ [
+ -80.70962439990323,
+ 26.414910792860795
+ ],
+ [
+ -80.66973708105648,
+ 26.414910792860795
+ ],
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ],
+ [
+ -80.66973708105648,
+ 26.414910792860795
+ ],
+ [
+ -80.64979342163309,
+ 26.446236298282486
+ ],
+ [
+ -80.68968074047986,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ],
+ [
+ -80.58996244336294,
+ 24.911286532619545
+ ],
+ [
+ -80.60990610278633,
+ 24.942612038041236
+ ],
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ],
+ [
+ -80.60990610278633,
+ 24.942612038041236
+ ],
+ [
+ -80.64979342163308,
+ 24.942612038041236
+ ],
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ],
+ [
+ -80.64979342163308,
+ 24.942612038041236
+ ],
+ [
+ -80.66973708105647,
+ 24.911286532619545
+ ],
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ],
+ [
+ -80.66973708105647,
+ 24.911286532619545
+ ],
+ [
+ -80.64979342163308,
+ 24.879961027197854
+ ],
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ],
+ [
+ -80.64979342163308,
+ 24.879961027197854
+ ],
+ [
+ -80.60990610278633,
+ 24.879961027197854
+ ],
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ],
+ [
+ -80.60990610278633,
+ 24.879961027197854
+ ],
+ [
+ -80.58996244336294,
+ 24.911286532619545
+ ],
+ [
+ -80.6298497622097,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ],
+ [
+ -80.58996244336294,
+ 24.97393754346293
+ ],
+ [
+ -80.60990610278633,
+ 25.005263048884622
+ ],
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ],
+ [
+ -80.60990610278633,
+ 25.005263048884622
+ ],
+ [
+ -80.64979342163308,
+ 25.005263048884622
+ ],
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ],
+ [
+ -80.64979342163308,
+ 25.005263048884622
+ ],
+ [
+ -80.66973708105647,
+ 24.97393754346293
+ ],
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ],
+ [
+ -80.66973708105647,
+ 24.97393754346293
+ ],
+ [
+ -80.64979342163308,
+ 24.94261203804124
+ ],
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ],
+ [
+ -80.64979342163308,
+ 24.94261203804124
+ ],
+ [
+ -80.60990610278633,
+ 24.94261203804124
+ ],
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ],
+ [
+ -80.60990610278633,
+ 24.94261203804124
+ ],
+ [
+ -80.58996244336294,
+ 24.97393754346293
+ ],
+ [
+ -80.6298497622097,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ],
+ [
+ -80.58996244336294,
+ 25.036588554306316
+ ],
+ [
+ -80.60990610278633,
+ 25.067914059728007
+ ],
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ],
+ [
+ -80.60990610278633,
+ 25.067914059728007
+ ],
+ [
+ -80.64979342163308,
+ 25.067914059728007
+ ],
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ],
+ [
+ -80.64979342163308,
+ 25.067914059728007
+ ],
+ [
+ -80.66973708105647,
+ 25.036588554306316
+ ],
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ],
+ [
+ -80.66973708105647,
+ 25.036588554306316
+ ],
+ [
+ -80.64979342163308,
+ 25.005263048884625
+ ],
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ],
+ [
+ -80.64979342163308,
+ 25.005263048884625
+ ],
+ [
+ -80.60990610278633,
+ 25.005263048884625
+ ],
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ],
+ [
+ -80.60990610278633,
+ 25.005263048884625
+ ],
+ [
+ -80.58996244336294,
+ 25.036588554306316
+ ],
+ [
+ -80.6298497622097,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ],
+ [
+ -80.58996244336294,
+ 25.099239565149702
+ ],
+ [
+ -80.60990610278633,
+ 25.130565070571393
+ ],
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ],
+ [
+ -80.60990610278633,
+ 25.130565070571393
+ ],
+ [
+ -80.64979342163308,
+ 25.130565070571393
+ ],
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ],
+ [
+ -80.64979342163308,
+ 25.130565070571393
+ ],
+ [
+ -80.66973708105647,
+ 25.099239565149702
+ ],
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ],
+ [
+ -80.66973708105647,
+ 25.099239565149702
+ ],
+ [
+ -80.64979342163308,
+ 25.06791405972801
+ ],
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ],
+ [
+ -80.64979342163308,
+ 25.06791405972801
+ ],
+ [
+ -80.60990610278633,
+ 25.06791405972801
+ ],
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ],
+ [
+ -80.60990610278633,
+ 25.06791405972801
+ ],
+ [
+ -80.58996244336294,
+ 25.099239565149702
+ ],
+ [
+ -80.6298497622097,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ],
+ [
+ -80.58996244336294,
+ 25.161890575993088
+ ],
+ [
+ -80.60990610278633,
+ 25.19321608141478
+ ],
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ],
+ [
+ -80.60990610278633,
+ 25.19321608141478
+ ],
+ [
+ -80.64979342163308,
+ 25.19321608141478
+ ],
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ],
+ [
+ -80.64979342163308,
+ 25.19321608141478
+ ],
+ [
+ -80.66973708105647,
+ 25.161890575993088
+ ],
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ],
+ [
+ -80.66973708105647,
+ 25.161890575993088
+ ],
+ [
+ -80.64979342163308,
+ 25.130565070571397
+ ],
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ],
+ [
+ -80.64979342163308,
+ 25.130565070571397
+ ],
+ [
+ -80.60990610278633,
+ 25.130565070571397
+ ],
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ],
+ [
+ -80.60990610278633,
+ 25.130565070571397
+ ],
+ [
+ -80.58996244336294,
+ 25.161890575993088
+ ],
+ [
+ -80.6298497622097,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ],
+ [
+ -80.58996244336294,
+ 25.224541586836473
+ ],
+ [
+ -80.60990610278633,
+ 25.255867092258164
+ ],
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ],
+ [
+ -80.60990610278633,
+ 25.255867092258164
+ ],
+ [
+ -80.64979342163308,
+ 25.255867092258164
+ ],
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ],
+ [
+ -80.64979342163308,
+ 25.255867092258164
+ ],
+ [
+ -80.66973708105647,
+ 25.224541586836473
+ ],
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ],
+ [
+ -80.66973708105647,
+ 25.224541586836473
+ ],
+ [
+ -80.64979342163308,
+ 25.193216081414782
+ ],
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ],
+ [
+ -80.64979342163308,
+ 25.193216081414782
+ ],
+ [
+ -80.60990610278633,
+ 25.193216081414782
+ ],
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ],
+ [
+ -80.60990610278633,
+ 25.193216081414782
+ ],
+ [
+ -80.58996244336294,
+ 25.224541586836473
+ ],
+ [
+ -80.6298497622097,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ],
+ [
+ -80.58996244336294,
+ 25.28719259767986
+ ],
+ [
+ -80.60990610278633,
+ 25.31851810310155
+ ],
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ],
+ [
+ -80.60990610278633,
+ 25.31851810310155
+ ],
+ [
+ -80.64979342163308,
+ 25.31851810310155
+ ],
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ],
+ [
+ -80.64979342163308,
+ 25.31851810310155
+ ],
+ [
+ -80.66973708105647,
+ 25.28719259767986
+ ],
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ],
+ [
+ -80.66973708105647,
+ 25.28719259767986
+ ],
+ [
+ -80.64979342163308,
+ 25.255867092258168
+ ],
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ],
+ [
+ -80.64979342163308,
+ 25.255867092258168
+ ],
+ [
+ -80.60990610278633,
+ 25.255867092258168
+ ],
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ],
+ [
+ -80.60990610278633,
+ 25.255867092258168
+ ],
+ [
+ -80.58996244336294,
+ 25.28719259767986
+ ],
+ [
+ -80.6298497622097,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ],
+ [
+ -80.58996244336294,
+ 25.349843608523244
+ ],
+ [
+ -80.60990610278633,
+ 25.381169113944935
+ ],
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ],
+ [
+ -80.60990610278633,
+ 25.381169113944935
+ ],
+ [
+ -80.64979342163308,
+ 25.381169113944935
+ ],
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ],
+ [
+ -80.64979342163308,
+ 25.381169113944935
+ ],
+ [
+ -80.66973708105647,
+ 25.349843608523244
+ ],
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ],
+ [
+ -80.66973708105647,
+ 25.349843608523244
+ ],
+ [
+ -80.64979342163308,
+ 25.318518103101553
+ ],
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ],
+ [
+ -80.64979342163308,
+ 25.318518103101553
+ ],
+ [
+ -80.60990610278633,
+ 25.318518103101553
+ ],
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ],
+ [
+ -80.60990610278633,
+ 25.318518103101553
+ ],
+ [
+ -80.58996244336294,
+ 25.349843608523244
+ ],
+ [
+ -80.6298497622097,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ],
+ [
+ -80.58996244336294,
+ 25.41249461936663
+ ],
+ [
+ -80.60990610278633,
+ 25.44382012478832
+ ],
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ],
+ [
+ -80.60990610278633,
+ 25.44382012478832
+ ],
+ [
+ -80.64979342163308,
+ 25.44382012478832
+ ],
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ],
+ [
+ -80.64979342163308,
+ 25.44382012478832
+ ],
+ [
+ -80.66973708105647,
+ 25.41249461936663
+ ],
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ],
+ [
+ -80.66973708105647,
+ 25.41249461936663
+ ],
+ [
+ -80.64979342163308,
+ 25.38116911394494
+ ],
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ],
+ [
+ -80.64979342163308,
+ 25.38116911394494
+ ],
+ [
+ -80.60990610278633,
+ 25.38116911394494
+ ],
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ],
+ [
+ -80.60990610278633,
+ 25.38116911394494
+ ],
+ [
+ -80.58996244336294,
+ 25.41249461936663
+ ],
+ [
+ -80.6298497622097,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ],
+ [
+ -80.58996244336294,
+ 25.475145630210015
+ ],
+ [
+ -80.60990610278633,
+ 25.506471135631706
+ ],
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ],
+ [
+ -80.60990610278633,
+ 25.506471135631706
+ ],
+ [
+ -80.64979342163308,
+ 25.506471135631706
+ ],
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ],
+ [
+ -80.64979342163308,
+ 25.506471135631706
+ ],
+ [
+ -80.66973708105647,
+ 25.475145630210015
+ ],
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ],
+ [
+ -80.66973708105647,
+ 25.475145630210015
+ ],
+ [
+ -80.64979342163308,
+ 25.443820124788324
+ ],
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ],
+ [
+ -80.64979342163308,
+ 25.443820124788324
+ ],
+ [
+ -80.60990610278633,
+ 25.443820124788324
+ ],
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ],
+ [
+ -80.60990610278633,
+ 25.443820124788324
+ ],
+ [
+ -80.58996244336294,
+ 25.475145630210015
+ ],
+ [
+ -80.6298497622097,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ],
+ [
+ -80.58996244336294,
+ 25.5377966410534
+ ],
+ [
+ -80.60990610278633,
+ 25.56912214647509
+ ],
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ],
+ [
+ -80.60990610278633,
+ 25.56912214647509
+ ],
+ [
+ -80.64979342163308,
+ 25.56912214647509
+ ],
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ],
+ [
+ -80.64979342163308,
+ 25.56912214647509
+ ],
+ [
+ -80.66973708105647,
+ 25.5377966410534
+ ],
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ],
+ [
+ -80.66973708105647,
+ 25.5377966410534
+ ],
+ [
+ -80.64979342163308,
+ 25.50647113563171
+ ],
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ],
+ [
+ -80.64979342163308,
+ 25.50647113563171
+ ],
+ [
+ -80.60990610278633,
+ 25.50647113563171
+ ],
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ],
+ [
+ -80.60990610278633,
+ 25.50647113563171
+ ],
+ [
+ -80.58996244336294,
+ 25.5377966410534
+ ],
+ [
+ -80.6298497622097,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ],
+ [
+ -80.58996244336294,
+ 25.600447651896786
+ ],
+ [
+ -80.60990610278633,
+ 25.631773157318477
+ ],
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ],
+ [
+ -80.60990610278633,
+ 25.631773157318477
+ ],
+ [
+ -80.64979342163308,
+ 25.631773157318477
+ ],
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ],
+ [
+ -80.64979342163308,
+ 25.631773157318477
+ ],
+ [
+ -80.66973708105647,
+ 25.600447651896786
+ ],
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ],
+ [
+ -80.66973708105647,
+ 25.600447651896786
+ ],
+ [
+ -80.64979342163308,
+ 25.569122146475095
+ ],
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ],
+ [
+ -80.64979342163308,
+ 25.569122146475095
+ ],
+ [
+ -80.60990610278633,
+ 25.569122146475095
+ ],
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ],
+ [
+ -80.60990610278633,
+ 25.569122146475095
+ ],
+ [
+ -80.58996244336294,
+ 25.600447651896786
+ ],
+ [
+ -80.6298497622097,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ],
+ [
+ -80.58996244336294,
+ 25.663098662740172
+ ],
+ [
+ -80.60990610278633,
+ 25.694424168161863
+ ],
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ],
+ [
+ -80.60990610278633,
+ 25.694424168161863
+ ],
+ [
+ -80.64979342163308,
+ 25.694424168161863
+ ],
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ],
+ [
+ -80.64979342163308,
+ 25.694424168161863
+ ],
+ [
+ -80.66973708105647,
+ 25.663098662740172
+ ],
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ],
+ [
+ -80.66973708105647,
+ 25.663098662740172
+ ],
+ [
+ -80.64979342163308,
+ 25.63177315731848
+ ],
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ],
+ [
+ -80.64979342163308,
+ 25.63177315731848
+ ],
+ [
+ -80.60990610278633,
+ 25.63177315731848
+ ],
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ],
+ [
+ -80.60990610278633,
+ 25.63177315731848
+ ],
+ [
+ -80.58996244336294,
+ 25.663098662740172
+ ],
+ [
+ -80.6298497622097,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ],
+ [
+ -80.58996244336294,
+ 25.725749673583557
+ ],
+ [
+ -80.60990610278633,
+ 25.75707517900525
+ ],
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ],
+ [
+ -80.60990610278633,
+ 25.75707517900525
+ ],
+ [
+ -80.64979342163308,
+ 25.75707517900525
+ ],
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ],
+ [
+ -80.64979342163308,
+ 25.75707517900525
+ ],
+ [
+ -80.66973708105647,
+ 25.725749673583557
+ ],
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ],
+ [
+ -80.66973708105647,
+ 25.725749673583557
+ ],
+ [
+ -80.64979342163308,
+ 25.694424168161866
+ ],
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ],
+ [
+ -80.64979342163308,
+ 25.694424168161866
+ ],
+ [
+ -80.60990610278633,
+ 25.694424168161866
+ ],
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ],
+ [
+ -80.60990610278633,
+ 25.694424168161866
+ ],
+ [
+ -80.58996244336294,
+ 25.725749673583557
+ ],
+ [
+ -80.6298497622097,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ],
+ [
+ -80.58996244336294,
+ 25.788400684426943
+ ],
+ [
+ -80.60990610278633,
+ 25.819726189848634
+ ],
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ],
+ [
+ -80.60990610278633,
+ 25.819726189848634
+ ],
+ [
+ -80.64979342163308,
+ 25.819726189848634
+ ],
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ],
+ [
+ -80.64979342163308,
+ 25.819726189848634
+ ],
+ [
+ -80.66973708105647,
+ 25.788400684426943
+ ],
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ],
+ [
+ -80.66973708105647,
+ 25.788400684426943
+ ],
+ [
+ -80.64979342163308,
+ 25.757075179005252
+ ],
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ],
+ [
+ -80.64979342163308,
+ 25.757075179005252
+ ],
+ [
+ -80.60990610278633,
+ 25.757075179005252
+ ],
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ],
+ [
+ -80.60990610278633,
+ 25.757075179005252
+ ],
+ [
+ -80.58996244336294,
+ 25.788400684426943
+ ],
+ [
+ -80.6298497622097,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ],
+ [
+ -80.58996244336294,
+ 25.85105169527033
+ ],
+ [
+ -80.60990610278633,
+ 25.88237720069202
+ ],
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ],
+ [
+ -80.60990610278633,
+ 25.88237720069202
+ ],
+ [
+ -80.64979342163308,
+ 25.88237720069202
+ ],
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ],
+ [
+ -80.64979342163308,
+ 25.88237720069202
+ ],
+ [
+ -80.66973708105647,
+ 25.85105169527033
+ ],
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ],
+ [
+ -80.66973708105647,
+ 25.85105169527033
+ ],
+ [
+ -80.64979342163308,
+ 25.819726189848637
+ ],
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ],
+ [
+ -80.64979342163308,
+ 25.819726189848637
+ ],
+ [
+ -80.60990610278633,
+ 25.819726189848637
+ ],
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ],
+ [
+ -80.60990610278633,
+ 25.819726189848637
+ ],
+ [
+ -80.58996244336294,
+ 25.85105169527033
+ ],
+ [
+ -80.6298497622097,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ],
+ [
+ -80.58996244336294,
+ 25.913702706113714
+ ],
+ [
+ -80.60990610278633,
+ 25.945028211535405
+ ],
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ],
+ [
+ -80.60990610278633,
+ 25.945028211535405
+ ],
+ [
+ -80.64979342163308,
+ 25.945028211535405
+ ],
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ],
+ [
+ -80.64979342163308,
+ 25.945028211535405
+ ],
+ [
+ -80.66973708105647,
+ 25.913702706113714
+ ],
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ],
+ [
+ -80.66973708105647,
+ 25.913702706113714
+ ],
+ [
+ -80.64979342163308,
+ 25.882377200692023
+ ],
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ],
+ [
+ -80.64979342163308,
+ 25.882377200692023
+ ],
+ [
+ -80.60990610278633,
+ 25.882377200692023
+ ],
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ],
+ [
+ -80.60990610278633,
+ 25.882377200692023
+ ],
+ [
+ -80.58996244336294,
+ 25.913702706113714
+ ],
+ [
+ -80.6298497622097,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ],
+ [
+ -80.58996244336294,
+ 25.9763537169571
+ ],
+ [
+ -80.60990610278633,
+ 26.00767922237879
+ ],
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ],
+ [
+ -80.60990610278633,
+ 26.00767922237879
+ ],
+ [
+ -80.64979342163308,
+ 26.00767922237879
+ ],
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ],
+ [
+ -80.64979342163308,
+ 26.00767922237879
+ ],
+ [
+ -80.66973708105647,
+ 25.9763537169571
+ ],
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ],
+ [
+ -80.66973708105647,
+ 25.9763537169571
+ ],
+ [
+ -80.64979342163308,
+ 25.94502821153541
+ ],
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ],
+ [
+ -80.64979342163308,
+ 25.94502821153541
+ ],
+ [
+ -80.60990610278633,
+ 25.94502821153541
+ ],
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ],
+ [
+ -80.60990610278633,
+ 25.94502821153541
+ ],
+ [
+ -80.58996244336294,
+ 25.9763537169571
+ ],
+ [
+ -80.6298497622097,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ],
+ [
+ -80.58996244336294,
+ 26.039004727800485
+ ],
+ [
+ -80.60990610278633,
+ 26.070330233222176
+ ],
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ],
+ [
+ -80.60990610278633,
+ 26.070330233222176
+ ],
+ [
+ -80.64979342163308,
+ 26.070330233222176
+ ],
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ],
+ [
+ -80.64979342163308,
+ 26.070330233222176
+ ],
+ [
+ -80.66973708105647,
+ 26.039004727800485
+ ],
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ],
+ [
+ -80.66973708105647,
+ 26.039004727800485
+ ],
+ [
+ -80.64979342163308,
+ 26.007679222378794
+ ],
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ],
+ [
+ -80.64979342163308,
+ 26.007679222378794
+ ],
+ [
+ -80.60990610278633,
+ 26.007679222378794
+ ],
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ],
+ [
+ -80.60990610278633,
+ 26.007679222378794
+ ],
+ [
+ -80.58996244336294,
+ 26.039004727800485
+ ],
+ [
+ -80.6298497622097,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ],
+ [
+ -80.58996244336294,
+ 26.10165573864387
+ ],
+ [
+ -80.60990610278633,
+ 26.13298124406556
+ ],
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ],
+ [
+ -80.60990610278633,
+ 26.13298124406556
+ ],
+ [
+ -80.64979342163308,
+ 26.13298124406556
+ ],
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ],
+ [
+ -80.64979342163308,
+ 26.13298124406556
+ ],
+ [
+ -80.66973708105647,
+ 26.10165573864387
+ ],
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ],
+ [
+ -80.66973708105647,
+ 26.10165573864387
+ ],
+ [
+ -80.64979342163308,
+ 26.07033023322218
+ ],
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ],
+ [
+ -80.64979342163308,
+ 26.07033023322218
+ ],
+ [
+ -80.60990610278633,
+ 26.07033023322218
+ ],
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ],
+ [
+ -80.60990610278633,
+ 26.07033023322218
+ ],
+ [
+ -80.58996244336294,
+ 26.10165573864387
+ ],
+ [
+ -80.6298497622097,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ],
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ],
+ [
+ -80.60990610278633,
+ 26.195632254908944
+ ],
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ],
+ [
+ -80.60990610278633,
+ 26.195632254908944
+ ],
+ [
+ -80.64979342163308,
+ 26.195632254908944
+ ],
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ],
+ [
+ -80.64979342163308,
+ 26.195632254908944
+ ],
+ [
+ -80.66973708105647,
+ 26.164306749487253
+ ],
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ],
+ [
+ -80.66973708105647,
+ 26.164306749487253
+ ],
+ [
+ -80.64979342163308,
+ 26.13298124406556
+ ],
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ],
+ [
+ -80.64979342163308,
+ 26.13298124406556
+ ],
+ [
+ -80.60990610278633,
+ 26.13298124406556
+ ],
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ],
+ [
+ -80.60990610278633,
+ 26.13298124406556
+ ],
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ],
+ [
+ -80.6298497622097,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ],
+ [
+ -80.58996244336294,
+ 26.22695776033064
+ ],
+ [
+ -80.60990610278633,
+ 26.258283265752333
+ ],
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ],
+ [
+ -80.60990610278633,
+ 26.258283265752333
+ ],
+ [
+ -80.64979342163308,
+ 26.258283265752333
+ ],
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ],
+ [
+ -80.64979342163308,
+ 26.258283265752333
+ ],
+ [
+ -80.66973708105647,
+ 26.22695776033064
+ ],
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ],
+ [
+ -80.66973708105647,
+ 26.22695776033064
+ ],
+ [
+ -80.64979342163308,
+ 26.19563225490895
+ ],
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ],
+ [
+ -80.64979342163308,
+ 26.19563225490895
+ ],
+ [
+ -80.60990610278633,
+ 26.19563225490895
+ ],
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ],
+ [
+ -80.60990610278633,
+ 26.19563225490895
+ ],
+ [
+ -80.58996244336294,
+ 26.22695776033064
+ ],
+ [
+ -80.6298497622097,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ],
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ],
+ [
+ -80.60990610278633,
+ 26.320934276595715
+ ],
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ],
+ [
+ -80.60990610278633,
+ 26.320934276595715
+ ],
+ [
+ -80.64979342163308,
+ 26.320934276595715
+ ],
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ],
+ [
+ -80.64979342163308,
+ 26.320934276595715
+ ],
+ [
+ -80.66973708105647,
+ 26.289608771174024
+ ],
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ],
+ [
+ -80.66973708105647,
+ 26.289608771174024
+ ],
+ [
+ -80.64979342163308,
+ 26.258283265752333
+ ],
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ],
+ [
+ -80.64979342163308,
+ 26.258283265752333
+ ],
+ [
+ -80.60990610278633,
+ 26.258283265752333
+ ],
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ],
+ [
+ -80.60990610278633,
+ 26.258283265752333
+ ],
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ],
+ [
+ -80.6298497622097,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ],
+ [
+ -80.58996244336294,
+ 26.35225978201741
+ ],
+ [
+ -80.60990610278633,
+ 26.3835852874391
+ ],
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ],
+ [
+ -80.60990610278633,
+ 26.3835852874391
+ ],
+ [
+ -80.64979342163308,
+ 26.3835852874391
+ ],
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ],
+ [
+ -80.64979342163308,
+ 26.3835852874391
+ ],
+ [
+ -80.66973708105647,
+ 26.35225978201741
+ ],
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ],
+ [
+ -80.66973708105647,
+ 26.35225978201741
+ ],
+ [
+ -80.64979342163308,
+ 26.320934276595718
+ ],
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ],
+ [
+ -80.64979342163308,
+ 26.320934276595718
+ ],
+ [
+ -80.60990610278633,
+ 26.320934276595718
+ ],
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ],
+ [
+ -80.60990610278633,
+ 26.320934276595718
+ ],
+ [
+ -80.58996244336294,
+ 26.35225978201741
+ ],
+ [
+ -80.6298497622097,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ],
+ [
+ -80.58996244336294,
+ 26.414910792860795
+ ],
+ [
+ -80.60990610278633,
+ 26.446236298282486
+ ],
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ],
+ [
+ -80.60990610278633,
+ 26.446236298282486
+ ],
+ [
+ -80.64979342163308,
+ 26.446236298282486
+ ],
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ],
+ [
+ -80.64979342163308,
+ 26.446236298282486
+ ],
+ [
+ -80.66973708105647,
+ 26.414910792860795
+ ],
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ],
+ [
+ -80.66973708105647,
+ 26.414910792860795
+ ],
+ [
+ -80.64979342163308,
+ 26.383585287439104
+ ],
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ],
+ [
+ -80.64979342163308,
+ 26.383585287439104
+ ],
+ [
+ -80.60990610278633,
+ 26.383585287439104
+ ],
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ],
+ [
+ -80.60990610278633,
+ 26.383585287439104
+ ],
+ [
+ -80.58996244336294,
+ 26.414910792860795
+ ],
+ [
+ -80.6298497622097,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ],
+ [
+ -80.5301314650928,
+ 24.942612038041236
+ ],
+ [
+ -80.55007512451618,
+ 24.973937543462927
+ ],
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ],
+ [
+ -80.55007512451618,
+ 24.973937543462927
+ ],
+ [
+ -80.58996244336294,
+ 24.973937543462927
+ ],
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ],
+ [
+ -80.58996244336294,
+ 24.973937543462927
+ ],
+ [
+ -80.60990610278633,
+ 24.942612038041236
+ ],
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ],
+ [
+ -80.60990610278633,
+ 24.942612038041236
+ ],
+ [
+ -80.58996244336294,
+ 24.911286532619545
+ ],
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ],
+ [
+ -80.58996244336294,
+ 24.911286532619545
+ ],
+ [
+ -80.55007512451618,
+ 24.911286532619545
+ ],
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ],
+ [
+ -80.55007512451618,
+ 24.911286532619545
+ ],
+ [
+ -80.5301314650928,
+ 24.942612038041236
+ ],
+ [
+ -80.57001878393956,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ],
+ [
+ -80.5301314650928,
+ 25.005263048884622
+ ],
+ [
+ -80.55007512451618,
+ 25.036588554306313
+ ],
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ],
+ [
+ -80.55007512451618,
+ 25.036588554306313
+ ],
+ [
+ -80.58996244336294,
+ 25.036588554306313
+ ],
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ],
+ [
+ -80.58996244336294,
+ 25.036588554306313
+ ],
+ [
+ -80.60990610278633,
+ 25.005263048884622
+ ],
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ],
+ [
+ -80.60990610278633,
+ 25.005263048884622
+ ],
+ [
+ -80.58996244336294,
+ 24.97393754346293
+ ],
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ],
+ [
+ -80.58996244336294,
+ 24.97393754346293
+ ],
+ [
+ -80.55007512451618,
+ 24.97393754346293
+ ],
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ],
+ [
+ -80.55007512451618,
+ 24.97393754346293
+ ],
+ [
+ -80.5301314650928,
+ 25.005263048884622
+ ],
+ [
+ -80.57001878393956,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ],
+ [
+ -80.5301314650928,
+ 25.067914059728007
+ ],
+ [
+ -80.55007512451618,
+ 25.0992395651497
+ ],
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ],
+ [
+ -80.55007512451618,
+ 25.0992395651497
+ ],
+ [
+ -80.58996244336294,
+ 25.0992395651497
+ ],
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ],
+ [
+ -80.58996244336294,
+ 25.0992395651497
+ ],
+ [
+ -80.60990610278633,
+ 25.067914059728007
+ ],
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ],
+ [
+ -80.60990610278633,
+ 25.067914059728007
+ ],
+ [
+ -80.58996244336294,
+ 25.036588554306316
+ ],
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ],
+ [
+ -80.58996244336294,
+ 25.036588554306316
+ ],
+ [
+ -80.55007512451618,
+ 25.036588554306316
+ ],
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ],
+ [
+ -80.55007512451618,
+ 25.036588554306316
+ ],
+ [
+ -80.5301314650928,
+ 25.067914059728007
+ ],
+ [
+ -80.57001878393956,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ],
+ [
+ -80.5301314650928,
+ 25.130565070571393
+ ],
+ [
+ -80.55007512451618,
+ 25.161890575993084
+ ],
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ],
+ [
+ -80.55007512451618,
+ 25.161890575993084
+ ],
+ [
+ -80.58996244336294,
+ 25.161890575993084
+ ],
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ],
+ [
+ -80.58996244336294,
+ 25.161890575993084
+ ],
+ [
+ -80.60990610278633,
+ 25.130565070571393
+ ],
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ],
+ [
+ -80.60990610278633,
+ 25.130565070571393
+ ],
+ [
+ -80.58996244336294,
+ 25.099239565149702
+ ],
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ],
+ [
+ -80.58996244336294,
+ 25.099239565149702
+ ],
+ [
+ -80.55007512451618,
+ 25.099239565149702
+ ],
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ],
+ [
+ -80.55007512451618,
+ 25.099239565149702
+ ],
+ [
+ -80.5301314650928,
+ 25.130565070571393
+ ],
+ [
+ -80.57001878393956,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ],
+ [
+ -80.5301314650928,
+ 25.19321608141478
+ ],
+ [
+ -80.55007512451618,
+ 25.22454158683647
+ ],
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ],
+ [
+ -80.55007512451618,
+ 25.22454158683647
+ ],
+ [
+ -80.58996244336294,
+ 25.22454158683647
+ ],
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ],
+ [
+ -80.58996244336294,
+ 25.22454158683647
+ ],
+ [
+ -80.60990610278633,
+ 25.19321608141478
+ ],
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ],
+ [
+ -80.60990610278633,
+ 25.19321608141478
+ ],
+ [
+ -80.58996244336294,
+ 25.161890575993088
+ ],
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ],
+ [
+ -80.58996244336294,
+ 25.161890575993088
+ ],
+ [
+ -80.55007512451618,
+ 25.161890575993088
+ ],
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ],
+ [
+ -80.55007512451618,
+ 25.161890575993088
+ ],
+ [
+ -80.5301314650928,
+ 25.19321608141478
+ ],
+ [
+ -80.57001878393956,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ],
+ [
+ -80.5301314650928,
+ 25.255867092258164
+ ],
+ [
+ -80.55007512451618,
+ 25.287192597679855
+ ],
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ],
+ [
+ -80.55007512451618,
+ 25.287192597679855
+ ],
+ [
+ -80.58996244336294,
+ 25.287192597679855
+ ],
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ],
+ [
+ -80.58996244336294,
+ 25.287192597679855
+ ],
+ [
+ -80.60990610278633,
+ 25.255867092258164
+ ],
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ],
+ [
+ -80.60990610278633,
+ 25.255867092258164
+ ],
+ [
+ -80.58996244336294,
+ 25.224541586836473
+ ],
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ],
+ [
+ -80.58996244336294,
+ 25.224541586836473
+ ],
+ [
+ -80.55007512451618,
+ 25.224541586836473
+ ],
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ],
+ [
+ -80.55007512451618,
+ 25.224541586836473
+ ],
+ [
+ -80.5301314650928,
+ 25.255867092258164
+ ],
+ [
+ -80.57001878393956,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ],
+ [
+ -80.5301314650928,
+ 25.31851810310155
+ ],
+ [
+ -80.55007512451618,
+ 25.34984360852324
+ ],
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ],
+ [
+ -80.55007512451618,
+ 25.34984360852324
+ ],
+ [
+ -80.58996244336294,
+ 25.34984360852324
+ ],
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ],
+ [
+ -80.58996244336294,
+ 25.34984360852324
+ ],
+ [
+ -80.60990610278633,
+ 25.31851810310155
+ ],
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ],
+ [
+ -80.60990610278633,
+ 25.31851810310155
+ ],
+ [
+ -80.58996244336294,
+ 25.28719259767986
+ ],
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ],
+ [
+ -80.58996244336294,
+ 25.28719259767986
+ ],
+ [
+ -80.55007512451618,
+ 25.28719259767986
+ ],
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ],
+ [
+ -80.55007512451618,
+ 25.28719259767986
+ ],
+ [
+ -80.5301314650928,
+ 25.31851810310155
+ ],
+ [
+ -80.57001878393956,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ],
+ [
+ -80.5301314650928,
+ 25.381169113944935
+ ],
+ [
+ -80.55007512451618,
+ 25.412494619366626
+ ],
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ],
+ [
+ -80.55007512451618,
+ 25.412494619366626
+ ],
+ [
+ -80.58996244336294,
+ 25.412494619366626
+ ],
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ],
+ [
+ -80.58996244336294,
+ 25.412494619366626
+ ],
+ [
+ -80.60990610278633,
+ 25.381169113944935
+ ],
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ],
+ [
+ -80.60990610278633,
+ 25.381169113944935
+ ],
+ [
+ -80.58996244336294,
+ 25.349843608523244
+ ],
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ],
+ [
+ -80.58996244336294,
+ 25.349843608523244
+ ],
+ [
+ -80.55007512451618,
+ 25.349843608523244
+ ],
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ],
+ [
+ -80.55007512451618,
+ 25.349843608523244
+ ],
+ [
+ -80.5301314650928,
+ 25.381169113944935
+ ],
+ [
+ -80.57001878393956,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ],
+ [
+ -80.5301314650928,
+ 25.44382012478832
+ ],
+ [
+ -80.55007512451618,
+ 25.47514563021001
+ ],
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ],
+ [
+ -80.55007512451618,
+ 25.47514563021001
+ ],
+ [
+ -80.58996244336294,
+ 25.47514563021001
+ ],
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ],
+ [
+ -80.58996244336294,
+ 25.47514563021001
+ ],
+ [
+ -80.60990610278633,
+ 25.44382012478832
+ ],
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ],
+ [
+ -80.60990610278633,
+ 25.44382012478832
+ ],
+ [
+ -80.58996244336294,
+ 25.41249461936663
+ ],
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ],
+ [
+ -80.58996244336294,
+ 25.41249461936663
+ ],
+ [
+ -80.55007512451618,
+ 25.41249461936663
+ ],
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ],
+ [
+ -80.55007512451618,
+ 25.41249461936663
+ ],
+ [
+ -80.5301314650928,
+ 25.44382012478832
+ ],
+ [
+ -80.57001878393956,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ],
+ [
+ -80.5301314650928,
+ 25.506471135631706
+ ],
+ [
+ -80.55007512451618,
+ 25.537796641053397
+ ],
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ],
+ [
+ -80.55007512451618,
+ 25.537796641053397
+ ],
+ [
+ -80.58996244336294,
+ 25.537796641053397
+ ],
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ],
+ [
+ -80.58996244336294,
+ 25.537796641053397
+ ],
+ [
+ -80.60990610278633,
+ 25.506471135631706
+ ],
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ],
+ [
+ -80.60990610278633,
+ 25.506471135631706
+ ],
+ [
+ -80.58996244336294,
+ 25.475145630210015
+ ],
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ],
+ [
+ -80.58996244336294,
+ 25.475145630210015
+ ],
+ [
+ -80.55007512451618,
+ 25.475145630210015
+ ],
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ],
+ [
+ -80.55007512451618,
+ 25.475145630210015
+ ],
+ [
+ -80.5301314650928,
+ 25.506471135631706
+ ],
+ [
+ -80.57001878393956,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ],
+ [
+ -80.5301314650928,
+ 25.56912214647509
+ ],
+ [
+ -80.55007512451618,
+ 25.600447651896783
+ ],
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ],
+ [
+ -80.55007512451618,
+ 25.600447651896783
+ ],
+ [
+ -80.58996244336294,
+ 25.600447651896783
+ ],
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ],
+ [
+ -80.58996244336294,
+ 25.600447651896783
+ ],
+ [
+ -80.60990610278633,
+ 25.56912214647509
+ ],
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ],
+ [
+ -80.60990610278633,
+ 25.56912214647509
+ ],
+ [
+ -80.58996244336294,
+ 25.5377966410534
+ ],
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ],
+ [
+ -80.58996244336294,
+ 25.5377966410534
+ ],
+ [
+ -80.55007512451618,
+ 25.5377966410534
+ ],
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ],
+ [
+ -80.55007512451618,
+ 25.5377966410534
+ ],
+ [
+ -80.5301314650928,
+ 25.56912214647509
+ ],
+ [
+ -80.57001878393956,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ],
+ [
+ -80.5301314650928,
+ 25.631773157318477
+ ],
+ [
+ -80.55007512451618,
+ 25.66309866274017
+ ],
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ],
+ [
+ -80.55007512451618,
+ 25.66309866274017
+ ],
+ [
+ -80.58996244336294,
+ 25.66309866274017
+ ],
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ],
+ [
+ -80.58996244336294,
+ 25.66309866274017
+ ],
+ [
+ -80.60990610278633,
+ 25.631773157318477
+ ],
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ],
+ [
+ -80.60990610278633,
+ 25.631773157318477
+ ],
+ [
+ -80.58996244336294,
+ 25.600447651896786
+ ],
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ],
+ [
+ -80.58996244336294,
+ 25.600447651896786
+ ],
+ [
+ -80.55007512451618,
+ 25.600447651896786
+ ],
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ],
+ [
+ -80.55007512451618,
+ 25.600447651896786
+ ],
+ [
+ -80.5301314650928,
+ 25.631773157318477
+ ],
+ [
+ -80.57001878393956,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ],
+ [
+ -80.5301314650928,
+ 25.694424168161863
+ ],
+ [
+ -80.55007512451618,
+ 25.725749673583554
+ ],
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ],
+ [
+ -80.55007512451618,
+ 25.725749673583554
+ ],
+ [
+ -80.58996244336294,
+ 25.725749673583554
+ ],
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ],
+ [
+ -80.58996244336294,
+ 25.725749673583554
+ ],
+ [
+ -80.60990610278633,
+ 25.694424168161863
+ ],
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ],
+ [
+ -80.60990610278633,
+ 25.694424168161863
+ ],
+ [
+ -80.58996244336294,
+ 25.663098662740172
+ ],
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ],
+ [
+ -80.58996244336294,
+ 25.663098662740172
+ ],
+ [
+ -80.55007512451618,
+ 25.663098662740172
+ ],
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ],
+ [
+ -80.55007512451618,
+ 25.663098662740172
+ ],
+ [
+ -80.5301314650928,
+ 25.694424168161863
+ ],
+ [
+ -80.57001878393956,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ],
+ [
+ -80.5301314650928,
+ 25.75707517900525
+ ],
+ [
+ -80.55007512451618,
+ 25.78840068442694
+ ],
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ],
+ [
+ -80.55007512451618,
+ 25.78840068442694
+ ],
+ [
+ -80.58996244336294,
+ 25.78840068442694
+ ],
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ],
+ [
+ -80.58996244336294,
+ 25.78840068442694
+ ],
+ [
+ -80.60990610278633,
+ 25.75707517900525
+ ],
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ],
+ [
+ -80.60990610278633,
+ 25.75707517900525
+ ],
+ [
+ -80.58996244336294,
+ 25.725749673583557
+ ],
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ],
+ [
+ -80.58996244336294,
+ 25.725749673583557
+ ],
+ [
+ -80.55007512451618,
+ 25.725749673583557
+ ],
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ],
+ [
+ -80.55007512451618,
+ 25.725749673583557
+ ],
+ [
+ -80.5301314650928,
+ 25.75707517900525
+ ],
+ [
+ -80.57001878393956,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ],
+ [
+ -80.5301314650928,
+ 25.819726189848634
+ ],
+ [
+ -80.55007512451618,
+ 25.851051695270325
+ ],
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ],
+ [
+ -80.55007512451618,
+ 25.851051695270325
+ ],
+ [
+ -80.58996244336294,
+ 25.851051695270325
+ ],
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ],
+ [
+ -80.58996244336294,
+ 25.851051695270325
+ ],
+ [
+ -80.60990610278633,
+ 25.819726189848634
+ ],
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ],
+ [
+ -80.60990610278633,
+ 25.819726189848634
+ ],
+ [
+ -80.58996244336294,
+ 25.788400684426943
+ ],
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ],
+ [
+ -80.58996244336294,
+ 25.788400684426943
+ ],
+ [
+ -80.55007512451618,
+ 25.788400684426943
+ ],
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ],
+ [
+ -80.55007512451618,
+ 25.788400684426943
+ ],
+ [
+ -80.5301314650928,
+ 25.819726189848634
+ ],
+ [
+ -80.57001878393956,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ],
+ [
+ -80.5301314650928,
+ 25.88237720069202
+ ],
+ [
+ -80.55007512451618,
+ 25.91370270611371
+ ],
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ],
+ [
+ -80.55007512451618,
+ 25.91370270611371
+ ],
+ [
+ -80.58996244336294,
+ 25.91370270611371
+ ],
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ],
+ [
+ -80.58996244336294,
+ 25.91370270611371
+ ],
+ [
+ -80.60990610278633,
+ 25.88237720069202
+ ],
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ],
+ [
+ -80.60990610278633,
+ 25.88237720069202
+ ],
+ [
+ -80.58996244336294,
+ 25.85105169527033
+ ],
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ],
+ [
+ -80.58996244336294,
+ 25.85105169527033
+ ],
+ [
+ -80.55007512451618,
+ 25.85105169527033
+ ],
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ],
+ [
+ -80.55007512451618,
+ 25.85105169527033
+ ],
+ [
+ -80.5301314650928,
+ 25.88237720069202
+ ],
+ [
+ -80.57001878393956,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ],
+ [
+ -80.5301314650928,
+ 25.945028211535405
+ ],
+ [
+ -80.55007512451618,
+ 25.976353716957096
+ ],
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ],
+ [
+ -80.55007512451618,
+ 25.976353716957096
+ ],
+ [
+ -80.58996244336294,
+ 25.976353716957096
+ ],
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ],
+ [
+ -80.58996244336294,
+ 25.976353716957096
+ ],
+ [
+ -80.60990610278633,
+ 25.945028211535405
+ ],
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ],
+ [
+ -80.60990610278633,
+ 25.945028211535405
+ ],
+ [
+ -80.58996244336294,
+ 25.913702706113714
+ ],
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ],
+ [
+ -80.58996244336294,
+ 25.913702706113714
+ ],
+ [
+ -80.55007512451618,
+ 25.913702706113714
+ ],
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ],
+ [
+ -80.55007512451618,
+ 25.913702706113714
+ ],
+ [
+ -80.5301314650928,
+ 25.945028211535405
+ ],
+ [
+ -80.57001878393956,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ],
+ [
+ -80.5301314650928,
+ 26.00767922237879
+ ],
+ [
+ -80.55007512451618,
+ 26.03900472780048
+ ],
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ],
+ [
+ -80.55007512451618,
+ 26.03900472780048
+ ],
+ [
+ -80.58996244336294,
+ 26.03900472780048
+ ],
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ],
+ [
+ -80.58996244336294,
+ 26.03900472780048
+ ],
+ [
+ -80.60990610278633,
+ 26.00767922237879
+ ],
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ],
+ [
+ -80.60990610278633,
+ 26.00767922237879
+ ],
+ [
+ -80.58996244336294,
+ 25.9763537169571
+ ],
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ],
+ [
+ -80.58996244336294,
+ 25.9763537169571
+ ],
+ [
+ -80.55007512451618,
+ 25.9763537169571
+ ],
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ],
+ [
+ -80.55007512451618,
+ 25.9763537169571
+ ],
+ [
+ -80.5301314650928,
+ 26.00767922237879
+ ],
+ [
+ -80.57001878393956,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ],
+ [
+ -80.5301314650928,
+ 26.070330233222176
+ ],
+ [
+ -80.55007512451618,
+ 26.101655738643867
+ ],
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ],
+ [
+ -80.55007512451618,
+ 26.101655738643867
+ ],
+ [
+ -80.58996244336294,
+ 26.101655738643867
+ ],
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ],
+ [
+ -80.58996244336294,
+ 26.101655738643867
+ ],
+ [
+ -80.60990610278633,
+ 26.070330233222176
+ ],
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ],
+ [
+ -80.60990610278633,
+ 26.070330233222176
+ ],
+ [
+ -80.58996244336294,
+ 26.039004727800485
+ ],
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ],
+ [
+ -80.58996244336294,
+ 26.039004727800485
+ ],
+ [
+ -80.55007512451618,
+ 26.039004727800485
+ ],
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ],
+ [
+ -80.55007512451618,
+ 26.039004727800485
+ ],
+ [
+ -80.5301314650928,
+ 26.070330233222176
+ ],
+ [
+ -80.57001878393956,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ],
+ [
+ -80.5301314650928,
+ 26.13298124406556
+ ],
+ [
+ -80.55007512451618,
+ 26.164306749487253
+ ],
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ],
+ [
+ -80.55007512451618,
+ 26.164306749487253
+ ],
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ],
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ],
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ],
+ [
+ -80.60990610278633,
+ 26.13298124406556
+ ],
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ],
+ [
+ -80.60990610278633,
+ 26.13298124406556
+ ],
+ [
+ -80.58996244336294,
+ 26.10165573864387
+ ],
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ],
+ [
+ -80.58996244336294,
+ 26.10165573864387
+ ],
+ [
+ -80.55007512451618,
+ 26.10165573864387
+ ],
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ],
+ [
+ -80.55007512451618,
+ 26.10165573864387
+ ],
+ [
+ -80.5301314650928,
+ 26.13298124406556
+ ],
+ [
+ -80.57001878393956,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ],
+ [
+ -80.5301314650928,
+ 26.195632254908944
+ ],
+ [
+ -80.55007512451618,
+ 26.226957760330635
+ ],
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ],
+ [
+ -80.55007512451618,
+ 26.226957760330635
+ ],
+ [
+ -80.58996244336294,
+ 26.226957760330635
+ ],
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ],
+ [
+ -80.58996244336294,
+ 26.226957760330635
+ ],
+ [
+ -80.60990610278633,
+ 26.195632254908944
+ ],
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ],
+ [
+ -80.60990610278633,
+ 26.195632254908944
+ ],
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ],
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ],
+ [
+ -80.58996244336294,
+ 26.164306749487253
+ ],
+ [
+ -80.55007512451618,
+ 26.164306749487253
+ ],
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ],
+ [
+ -80.55007512451618,
+ 26.164306749487253
+ ],
+ [
+ -80.5301314650928,
+ 26.195632254908944
+ ],
+ [
+ -80.57001878393956,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ],
+ [
+ -80.5301314650928,
+ 26.258283265752333
+ ],
+ [
+ -80.55007512451618,
+ 26.289608771174024
+ ],
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ],
+ [
+ -80.55007512451618,
+ 26.289608771174024
+ ],
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ],
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ],
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ],
+ [
+ -80.60990610278633,
+ 26.258283265752333
+ ],
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ],
+ [
+ -80.60990610278633,
+ 26.258283265752333
+ ],
+ [
+ -80.58996244336294,
+ 26.22695776033064
+ ],
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ],
+ [
+ -80.58996244336294,
+ 26.22695776033064
+ ],
+ [
+ -80.55007512451618,
+ 26.22695776033064
+ ],
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ],
+ [
+ -80.55007512451618,
+ 26.22695776033064
+ ],
+ [
+ -80.5301314650928,
+ 26.258283265752333
+ ],
+ [
+ -80.57001878393956,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ],
+ [
+ -80.5301314650928,
+ 26.320934276595715
+ ],
+ [
+ -80.55007512451618,
+ 26.352259782017406
+ ],
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ],
+ [
+ -80.55007512451618,
+ 26.352259782017406
+ ],
+ [
+ -80.58996244336294,
+ 26.352259782017406
+ ],
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ],
+ [
+ -80.58996244336294,
+ 26.352259782017406
+ ],
+ [
+ -80.60990610278633,
+ 26.320934276595715
+ ],
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ],
+ [
+ -80.60990610278633,
+ 26.320934276595715
+ ],
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ],
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ],
+ [
+ -80.58996244336294,
+ 26.289608771174024
+ ],
+ [
+ -80.55007512451618,
+ 26.289608771174024
+ ],
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ],
+ [
+ -80.55007512451618,
+ 26.289608771174024
+ ],
+ [
+ -80.5301314650928,
+ 26.320934276595715
+ ],
+ [
+ -80.57001878393956,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ],
+ [
+ -80.5301314650928,
+ 26.3835852874391
+ ],
+ [
+ -80.55007512451618,
+ 26.41491079286079
+ ],
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ],
+ [
+ -80.55007512451618,
+ 26.41491079286079
+ ],
+ [
+ -80.58996244336294,
+ 26.41491079286079
+ ],
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ],
+ [
+ -80.58996244336294,
+ 26.41491079286079
+ ],
+ [
+ -80.60990610278633,
+ 26.3835852874391
+ ],
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ],
+ [
+ -80.60990610278633,
+ 26.3835852874391
+ ],
+ [
+ -80.58996244336294,
+ 26.35225978201741
+ ],
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ],
+ [
+ -80.58996244336294,
+ 26.35225978201741
+ ],
+ [
+ -80.55007512451618,
+ 26.35225978201741
+ ],
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ],
+ [
+ -80.55007512451618,
+ 26.35225978201741
+ ],
+ [
+ -80.5301314650928,
+ 26.3835852874391
+ ],
+ [
+ -80.57001878393956,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ],
+ [
+ -80.5301314650928,
+ 26.446236298282486
+ ],
+ [
+ -80.55007512451618,
+ 26.477561803704177
+ ],
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ],
+ [
+ -80.55007512451618,
+ 26.477561803704177
+ ],
+ [
+ -80.58996244336294,
+ 26.477561803704177
+ ],
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ],
+ [
+ -80.58996244336294,
+ 26.477561803704177
+ ],
+ [
+ -80.60990610278633,
+ 26.446236298282486
+ ],
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ],
+ [
+ -80.60990610278633,
+ 26.446236298282486
+ ],
+ [
+ -80.58996244336294,
+ 26.414910792860795
+ ],
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ],
+ [
+ -80.58996244336294,
+ 26.414910792860795
+ ],
+ [
+ -80.55007512451618,
+ 26.414910792860795
+ ],
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ],
+ [
+ -80.55007512451618,
+ 26.414910792860795
+ ],
+ [
+ -80.5301314650928,
+ 26.446236298282486
+ ],
+ [
+ -80.57001878393956,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ],
+ [
+ -80.47030048682264,
+ 24.911286532619545
+ ],
+ [
+ -80.49024414624603,
+ 24.942612038041236
+ ],
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ],
+ [
+ -80.49024414624603,
+ 24.942612038041236
+ ],
+ [
+ -80.53013146509278,
+ 24.942612038041236
+ ],
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ],
+ [
+ -80.53013146509278,
+ 24.942612038041236
+ ],
+ [
+ -80.55007512451617,
+ 24.911286532619545
+ ],
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ],
+ [
+ -80.55007512451617,
+ 24.911286532619545
+ ],
+ [
+ -80.53013146509278,
+ 24.879961027197854
+ ],
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ],
+ [
+ -80.53013146509278,
+ 24.879961027197854
+ ],
+ [
+ -80.49024414624603,
+ 24.879961027197854
+ ],
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ],
+ [
+ -80.49024414624603,
+ 24.879961027197854
+ ],
+ [
+ -80.47030048682264,
+ 24.911286532619545
+ ],
+ [
+ -80.5101878056694,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ],
+ [
+ -80.47030048682264,
+ 24.97393754346293
+ ],
+ [
+ -80.49024414624603,
+ 25.005263048884622
+ ],
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ],
+ [
+ -80.49024414624603,
+ 25.005263048884622
+ ],
+ [
+ -80.53013146509278,
+ 25.005263048884622
+ ],
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ],
+ [
+ -80.53013146509278,
+ 25.005263048884622
+ ],
+ [
+ -80.55007512451617,
+ 24.97393754346293
+ ],
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ],
+ [
+ -80.55007512451617,
+ 24.97393754346293
+ ],
+ [
+ -80.53013146509278,
+ 24.94261203804124
+ ],
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ],
+ [
+ -80.53013146509278,
+ 24.94261203804124
+ ],
+ [
+ -80.49024414624603,
+ 24.94261203804124
+ ],
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ],
+ [
+ -80.49024414624603,
+ 24.94261203804124
+ ],
+ [
+ -80.47030048682264,
+ 24.97393754346293
+ ],
+ [
+ -80.5101878056694,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ],
+ [
+ -80.47030048682264,
+ 25.036588554306316
+ ],
+ [
+ -80.49024414624603,
+ 25.067914059728007
+ ],
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ],
+ [
+ -80.49024414624603,
+ 25.067914059728007
+ ],
+ [
+ -80.53013146509278,
+ 25.067914059728007
+ ],
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ],
+ [
+ -80.53013146509278,
+ 25.067914059728007
+ ],
+ [
+ -80.55007512451617,
+ 25.036588554306316
+ ],
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ],
+ [
+ -80.55007512451617,
+ 25.036588554306316
+ ],
+ [
+ -80.53013146509278,
+ 25.005263048884625
+ ],
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ],
+ [
+ -80.53013146509278,
+ 25.005263048884625
+ ],
+ [
+ -80.49024414624603,
+ 25.005263048884625
+ ],
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ],
+ [
+ -80.49024414624603,
+ 25.005263048884625
+ ],
+ [
+ -80.47030048682264,
+ 25.036588554306316
+ ],
+ [
+ -80.5101878056694,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ],
+ [
+ -80.47030048682264,
+ 25.099239565149702
+ ],
+ [
+ -80.49024414624603,
+ 25.130565070571393
+ ],
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ],
+ [
+ -80.49024414624603,
+ 25.130565070571393
+ ],
+ [
+ -80.53013146509278,
+ 25.130565070571393
+ ],
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ],
+ [
+ -80.53013146509278,
+ 25.130565070571393
+ ],
+ [
+ -80.55007512451617,
+ 25.099239565149702
+ ],
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ],
+ [
+ -80.55007512451617,
+ 25.099239565149702
+ ],
+ [
+ -80.53013146509278,
+ 25.06791405972801
+ ],
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ],
+ [
+ -80.53013146509278,
+ 25.06791405972801
+ ],
+ [
+ -80.49024414624603,
+ 25.06791405972801
+ ],
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ],
+ [
+ -80.49024414624603,
+ 25.06791405972801
+ ],
+ [
+ -80.47030048682264,
+ 25.099239565149702
+ ],
+ [
+ -80.5101878056694,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ],
+ [
+ -80.47030048682264,
+ 25.161890575993088
+ ],
+ [
+ -80.49024414624603,
+ 25.19321608141478
+ ],
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ],
+ [
+ -80.49024414624603,
+ 25.19321608141478
+ ],
+ [
+ -80.53013146509278,
+ 25.19321608141478
+ ],
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ],
+ [
+ -80.53013146509278,
+ 25.19321608141478
+ ],
+ [
+ -80.55007512451617,
+ 25.161890575993088
+ ],
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ],
+ [
+ -80.55007512451617,
+ 25.161890575993088
+ ],
+ [
+ -80.53013146509278,
+ 25.130565070571397
+ ],
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ],
+ [
+ -80.53013146509278,
+ 25.130565070571397
+ ],
+ [
+ -80.49024414624603,
+ 25.130565070571397
+ ],
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ],
+ [
+ -80.49024414624603,
+ 25.130565070571397
+ ],
+ [
+ -80.47030048682264,
+ 25.161890575993088
+ ],
+ [
+ -80.5101878056694,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ],
+ [
+ -80.47030048682264,
+ 25.224541586836473
+ ],
+ [
+ -80.49024414624603,
+ 25.255867092258164
+ ],
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ],
+ [
+ -80.49024414624603,
+ 25.255867092258164
+ ],
+ [
+ -80.53013146509278,
+ 25.255867092258164
+ ],
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ],
+ [
+ -80.53013146509278,
+ 25.255867092258164
+ ],
+ [
+ -80.55007512451617,
+ 25.224541586836473
+ ],
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ],
+ [
+ -80.55007512451617,
+ 25.224541586836473
+ ],
+ [
+ -80.53013146509278,
+ 25.193216081414782
+ ],
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ],
+ [
+ -80.53013146509278,
+ 25.193216081414782
+ ],
+ [
+ -80.49024414624603,
+ 25.193216081414782
+ ],
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ],
+ [
+ -80.49024414624603,
+ 25.193216081414782
+ ],
+ [
+ -80.47030048682264,
+ 25.224541586836473
+ ],
+ [
+ -80.5101878056694,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ],
+ [
+ -80.47030048682264,
+ 25.28719259767986
+ ],
+ [
+ -80.49024414624603,
+ 25.31851810310155
+ ],
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ],
+ [
+ -80.49024414624603,
+ 25.31851810310155
+ ],
+ [
+ -80.53013146509278,
+ 25.31851810310155
+ ],
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ],
+ [
+ -80.53013146509278,
+ 25.31851810310155
+ ],
+ [
+ -80.55007512451617,
+ 25.28719259767986
+ ],
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ],
+ [
+ -80.55007512451617,
+ 25.28719259767986
+ ],
+ [
+ -80.53013146509278,
+ 25.255867092258168
+ ],
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ],
+ [
+ -80.53013146509278,
+ 25.255867092258168
+ ],
+ [
+ -80.49024414624603,
+ 25.255867092258168
+ ],
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ],
+ [
+ -80.49024414624603,
+ 25.255867092258168
+ ],
+ [
+ -80.47030048682264,
+ 25.28719259767986
+ ],
+ [
+ -80.5101878056694,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ],
+ [
+ -80.47030048682264,
+ 25.349843608523244
+ ],
+ [
+ -80.49024414624603,
+ 25.381169113944935
+ ],
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ],
+ [
+ -80.49024414624603,
+ 25.381169113944935
+ ],
+ [
+ -80.53013146509278,
+ 25.381169113944935
+ ],
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ],
+ [
+ -80.53013146509278,
+ 25.381169113944935
+ ],
+ [
+ -80.55007512451617,
+ 25.349843608523244
+ ],
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ],
+ [
+ -80.55007512451617,
+ 25.349843608523244
+ ],
+ [
+ -80.53013146509278,
+ 25.318518103101553
+ ],
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ],
+ [
+ -80.53013146509278,
+ 25.318518103101553
+ ],
+ [
+ -80.49024414624603,
+ 25.318518103101553
+ ],
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ],
+ [
+ -80.49024414624603,
+ 25.318518103101553
+ ],
+ [
+ -80.47030048682264,
+ 25.349843608523244
+ ],
+ [
+ -80.5101878056694,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ],
+ [
+ -80.47030048682264,
+ 25.41249461936663
+ ],
+ [
+ -80.49024414624603,
+ 25.44382012478832
+ ],
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ],
+ [
+ -80.49024414624603,
+ 25.44382012478832
+ ],
+ [
+ -80.53013146509278,
+ 25.44382012478832
+ ],
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ],
+ [
+ -80.53013146509278,
+ 25.44382012478832
+ ],
+ [
+ -80.55007512451617,
+ 25.41249461936663
+ ],
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ],
+ [
+ -80.55007512451617,
+ 25.41249461936663
+ ],
+ [
+ -80.53013146509278,
+ 25.38116911394494
+ ],
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ],
+ [
+ -80.53013146509278,
+ 25.38116911394494
+ ],
+ [
+ -80.49024414624603,
+ 25.38116911394494
+ ],
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ],
+ [
+ -80.49024414624603,
+ 25.38116911394494
+ ],
+ [
+ -80.47030048682264,
+ 25.41249461936663
+ ],
+ [
+ -80.5101878056694,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ],
+ [
+ -80.47030048682264,
+ 25.475145630210015
+ ],
+ [
+ -80.49024414624603,
+ 25.506471135631706
+ ],
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ],
+ [
+ -80.49024414624603,
+ 25.506471135631706
+ ],
+ [
+ -80.53013146509278,
+ 25.506471135631706
+ ],
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ],
+ [
+ -80.53013146509278,
+ 25.506471135631706
+ ],
+ [
+ -80.55007512451617,
+ 25.475145630210015
+ ],
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ],
+ [
+ -80.55007512451617,
+ 25.475145630210015
+ ],
+ [
+ -80.53013146509278,
+ 25.443820124788324
+ ],
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ],
+ [
+ -80.53013146509278,
+ 25.443820124788324
+ ],
+ [
+ -80.49024414624603,
+ 25.443820124788324
+ ],
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ],
+ [
+ -80.49024414624603,
+ 25.443820124788324
+ ],
+ [
+ -80.47030048682264,
+ 25.475145630210015
+ ],
+ [
+ -80.5101878056694,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ],
+ [
+ -80.47030048682264,
+ 25.5377966410534
+ ],
+ [
+ -80.49024414624603,
+ 25.56912214647509
+ ],
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ],
+ [
+ -80.49024414624603,
+ 25.56912214647509
+ ],
+ [
+ -80.53013146509278,
+ 25.56912214647509
+ ],
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ],
+ [
+ -80.53013146509278,
+ 25.56912214647509
+ ],
+ [
+ -80.55007512451617,
+ 25.5377966410534
+ ],
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ],
+ [
+ -80.55007512451617,
+ 25.5377966410534
+ ],
+ [
+ -80.53013146509278,
+ 25.50647113563171
+ ],
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ],
+ [
+ -80.53013146509278,
+ 25.50647113563171
+ ],
+ [
+ -80.49024414624603,
+ 25.50647113563171
+ ],
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ],
+ [
+ -80.49024414624603,
+ 25.50647113563171
+ ],
+ [
+ -80.47030048682264,
+ 25.5377966410534
+ ],
+ [
+ -80.5101878056694,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ],
+ [
+ -80.47030048682264,
+ 25.600447651896786
+ ],
+ [
+ -80.49024414624603,
+ 25.631773157318477
+ ],
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ],
+ [
+ -80.49024414624603,
+ 25.631773157318477
+ ],
+ [
+ -80.53013146509278,
+ 25.631773157318477
+ ],
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ],
+ [
+ -80.53013146509278,
+ 25.631773157318477
+ ],
+ [
+ -80.55007512451617,
+ 25.600447651896786
+ ],
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ],
+ [
+ -80.55007512451617,
+ 25.600447651896786
+ ],
+ [
+ -80.53013146509278,
+ 25.569122146475095
+ ],
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ],
+ [
+ -80.53013146509278,
+ 25.569122146475095
+ ],
+ [
+ -80.49024414624603,
+ 25.569122146475095
+ ],
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ],
+ [
+ -80.49024414624603,
+ 25.569122146475095
+ ],
+ [
+ -80.47030048682264,
+ 25.600447651896786
+ ],
+ [
+ -80.5101878056694,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ],
+ [
+ -80.47030048682264,
+ 25.663098662740172
+ ],
+ [
+ -80.49024414624603,
+ 25.694424168161863
+ ],
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ],
+ [
+ -80.49024414624603,
+ 25.694424168161863
+ ],
+ [
+ -80.53013146509278,
+ 25.694424168161863
+ ],
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ],
+ [
+ -80.53013146509278,
+ 25.694424168161863
+ ],
+ [
+ -80.55007512451617,
+ 25.663098662740172
+ ],
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ],
+ [
+ -80.55007512451617,
+ 25.663098662740172
+ ],
+ [
+ -80.53013146509278,
+ 25.63177315731848
+ ],
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ],
+ [
+ -80.53013146509278,
+ 25.63177315731848
+ ],
+ [
+ -80.49024414624603,
+ 25.63177315731848
+ ],
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ],
+ [
+ -80.49024414624603,
+ 25.63177315731848
+ ],
+ [
+ -80.47030048682264,
+ 25.663098662740172
+ ],
+ [
+ -80.5101878056694,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ],
+ [
+ -80.47030048682264,
+ 25.725749673583557
+ ],
+ [
+ -80.49024414624603,
+ 25.75707517900525
+ ],
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ],
+ [
+ -80.49024414624603,
+ 25.75707517900525
+ ],
+ [
+ -80.53013146509278,
+ 25.75707517900525
+ ],
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ],
+ [
+ -80.53013146509278,
+ 25.75707517900525
+ ],
+ [
+ -80.55007512451617,
+ 25.725749673583557
+ ],
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ],
+ [
+ -80.55007512451617,
+ 25.725749673583557
+ ],
+ [
+ -80.53013146509278,
+ 25.694424168161866
+ ],
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ],
+ [
+ -80.53013146509278,
+ 25.694424168161866
+ ],
+ [
+ -80.49024414624603,
+ 25.694424168161866
+ ],
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ],
+ [
+ -80.49024414624603,
+ 25.694424168161866
+ ],
+ [
+ -80.47030048682264,
+ 25.725749673583557
+ ],
+ [
+ -80.5101878056694,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ],
+ [
+ -80.47030048682264,
+ 25.788400684426943
+ ],
+ [
+ -80.49024414624603,
+ 25.819726189848634
+ ],
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ],
+ [
+ -80.49024414624603,
+ 25.819726189848634
+ ],
+ [
+ -80.53013146509278,
+ 25.819726189848634
+ ],
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ],
+ [
+ -80.53013146509278,
+ 25.819726189848634
+ ],
+ [
+ -80.55007512451617,
+ 25.788400684426943
+ ],
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ],
+ [
+ -80.55007512451617,
+ 25.788400684426943
+ ],
+ [
+ -80.53013146509278,
+ 25.757075179005252
+ ],
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ],
+ [
+ -80.53013146509278,
+ 25.757075179005252
+ ],
+ [
+ -80.49024414624603,
+ 25.757075179005252
+ ],
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ],
+ [
+ -80.49024414624603,
+ 25.757075179005252
+ ],
+ [
+ -80.47030048682264,
+ 25.788400684426943
+ ],
+ [
+ -80.5101878056694,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ],
+ [
+ -80.47030048682264,
+ 25.85105169527033
+ ],
+ [
+ -80.49024414624603,
+ 25.88237720069202
+ ],
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ],
+ [
+ -80.49024414624603,
+ 25.88237720069202
+ ],
+ [
+ -80.53013146509278,
+ 25.88237720069202
+ ],
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ],
+ [
+ -80.53013146509278,
+ 25.88237720069202
+ ],
+ [
+ -80.55007512451617,
+ 25.85105169527033
+ ],
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ],
+ [
+ -80.55007512451617,
+ 25.85105169527033
+ ],
+ [
+ -80.53013146509278,
+ 25.819726189848637
+ ],
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ],
+ [
+ -80.53013146509278,
+ 25.819726189848637
+ ],
+ [
+ -80.49024414624603,
+ 25.819726189848637
+ ],
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ],
+ [
+ -80.49024414624603,
+ 25.819726189848637
+ ],
+ [
+ -80.47030048682264,
+ 25.85105169527033
+ ],
+ [
+ -80.5101878056694,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ],
+ [
+ -80.47030048682264,
+ 25.913702706113714
+ ],
+ [
+ -80.49024414624603,
+ 25.945028211535405
+ ],
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ],
+ [
+ -80.49024414624603,
+ 25.945028211535405
+ ],
+ [
+ -80.53013146509278,
+ 25.945028211535405
+ ],
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ],
+ [
+ -80.53013146509278,
+ 25.945028211535405
+ ],
+ [
+ -80.55007512451617,
+ 25.913702706113714
+ ],
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ],
+ [
+ -80.55007512451617,
+ 25.913702706113714
+ ],
+ [
+ -80.53013146509278,
+ 25.882377200692023
+ ],
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ],
+ [
+ -80.53013146509278,
+ 25.882377200692023
+ ],
+ [
+ -80.49024414624603,
+ 25.882377200692023
+ ],
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ],
+ [
+ -80.49024414624603,
+ 25.882377200692023
+ ],
+ [
+ -80.47030048682264,
+ 25.913702706113714
+ ],
+ [
+ -80.5101878056694,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ],
+ [
+ -80.47030048682264,
+ 25.9763537169571
+ ],
+ [
+ -80.49024414624603,
+ 26.00767922237879
+ ],
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ],
+ [
+ -80.49024414624603,
+ 26.00767922237879
+ ],
+ [
+ -80.53013146509278,
+ 26.00767922237879
+ ],
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ],
+ [
+ -80.53013146509278,
+ 26.00767922237879
+ ],
+ [
+ -80.55007512451617,
+ 25.9763537169571
+ ],
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ],
+ [
+ -80.55007512451617,
+ 25.9763537169571
+ ],
+ [
+ -80.53013146509278,
+ 25.94502821153541
+ ],
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ],
+ [
+ -80.53013146509278,
+ 25.94502821153541
+ ],
+ [
+ -80.49024414624603,
+ 25.94502821153541
+ ],
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ],
+ [
+ -80.49024414624603,
+ 25.94502821153541
+ ],
+ [
+ -80.47030048682264,
+ 25.9763537169571
+ ],
+ [
+ -80.5101878056694,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ],
+ [
+ -80.47030048682264,
+ 26.039004727800485
+ ],
+ [
+ -80.49024414624603,
+ 26.070330233222176
+ ],
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ],
+ [
+ -80.49024414624603,
+ 26.070330233222176
+ ],
+ [
+ -80.53013146509278,
+ 26.070330233222176
+ ],
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ],
+ [
+ -80.53013146509278,
+ 26.070330233222176
+ ],
+ [
+ -80.55007512451617,
+ 26.039004727800485
+ ],
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ],
+ [
+ -80.55007512451617,
+ 26.039004727800485
+ ],
+ [
+ -80.53013146509278,
+ 26.007679222378794
+ ],
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ],
+ [
+ -80.53013146509278,
+ 26.007679222378794
+ ],
+ [
+ -80.49024414624603,
+ 26.007679222378794
+ ],
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ],
+ [
+ -80.49024414624603,
+ 26.007679222378794
+ ],
+ [
+ -80.47030048682264,
+ 26.039004727800485
+ ],
+ [
+ -80.5101878056694,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ],
+ [
+ -80.47030048682264,
+ 26.10165573864387
+ ],
+ [
+ -80.49024414624603,
+ 26.13298124406556
+ ],
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ],
+ [
+ -80.49024414624603,
+ 26.13298124406556
+ ],
+ [
+ -80.53013146509278,
+ 26.13298124406556
+ ],
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ],
+ [
+ -80.53013146509278,
+ 26.13298124406556
+ ],
+ [
+ -80.55007512451617,
+ 26.10165573864387
+ ],
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ],
+ [
+ -80.55007512451617,
+ 26.10165573864387
+ ],
+ [
+ -80.53013146509278,
+ 26.07033023322218
+ ],
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ],
+ [
+ -80.53013146509278,
+ 26.07033023322218
+ ],
+ [
+ -80.49024414624603,
+ 26.07033023322218
+ ],
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ],
+ [
+ -80.49024414624603,
+ 26.07033023322218
+ ],
+ [
+ -80.47030048682264,
+ 26.10165573864387
+ ],
+ [
+ -80.5101878056694,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ],
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ],
+ [
+ -80.49024414624603,
+ 26.195632254908944
+ ],
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ],
+ [
+ -80.49024414624603,
+ 26.195632254908944
+ ],
+ [
+ -80.53013146509278,
+ 26.195632254908944
+ ],
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ],
+ [
+ -80.53013146509278,
+ 26.195632254908944
+ ],
+ [
+ -80.55007512451617,
+ 26.164306749487253
+ ],
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ],
+ [
+ -80.55007512451617,
+ 26.164306749487253
+ ],
+ [
+ -80.53013146509278,
+ 26.13298124406556
+ ],
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ],
+ [
+ -80.53013146509278,
+ 26.13298124406556
+ ],
+ [
+ -80.49024414624603,
+ 26.13298124406556
+ ],
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ],
+ [
+ -80.49024414624603,
+ 26.13298124406556
+ ],
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ],
+ [
+ -80.5101878056694,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ],
+ [
+ -80.47030048682264,
+ 26.22695776033064
+ ],
+ [
+ -80.49024414624603,
+ 26.258283265752333
+ ],
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ],
+ [
+ -80.49024414624603,
+ 26.258283265752333
+ ],
+ [
+ -80.53013146509278,
+ 26.258283265752333
+ ],
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ],
+ [
+ -80.53013146509278,
+ 26.258283265752333
+ ],
+ [
+ -80.55007512451617,
+ 26.22695776033064
+ ],
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ],
+ [
+ -80.55007512451617,
+ 26.22695776033064
+ ],
+ [
+ -80.53013146509278,
+ 26.19563225490895
+ ],
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ],
+ [
+ -80.53013146509278,
+ 26.19563225490895
+ ],
+ [
+ -80.49024414624603,
+ 26.19563225490895
+ ],
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ],
+ [
+ -80.49024414624603,
+ 26.19563225490895
+ ],
+ [
+ -80.47030048682264,
+ 26.22695776033064
+ ],
+ [
+ -80.5101878056694,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ],
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ],
+ [
+ -80.49024414624603,
+ 26.320934276595715
+ ],
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ],
+ [
+ -80.49024414624603,
+ 26.320934276595715
+ ],
+ [
+ -80.53013146509278,
+ 26.320934276595715
+ ],
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ],
+ [
+ -80.53013146509278,
+ 26.320934276595715
+ ],
+ [
+ -80.55007512451617,
+ 26.289608771174024
+ ],
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ],
+ [
+ -80.55007512451617,
+ 26.289608771174024
+ ],
+ [
+ -80.53013146509278,
+ 26.258283265752333
+ ],
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ],
+ [
+ -80.53013146509278,
+ 26.258283265752333
+ ],
+ [
+ -80.49024414624603,
+ 26.258283265752333
+ ],
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ],
+ [
+ -80.49024414624603,
+ 26.258283265752333
+ ],
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ],
+ [
+ -80.5101878056694,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ],
+ [
+ -80.47030048682264,
+ 26.35225978201741
+ ],
+ [
+ -80.49024414624603,
+ 26.3835852874391
+ ],
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ],
+ [
+ -80.49024414624603,
+ 26.3835852874391
+ ],
+ [
+ -80.53013146509278,
+ 26.3835852874391
+ ],
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ],
+ [
+ -80.53013146509278,
+ 26.3835852874391
+ ],
+ [
+ -80.55007512451617,
+ 26.35225978201741
+ ],
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ],
+ [
+ -80.55007512451617,
+ 26.35225978201741
+ ],
+ [
+ -80.53013146509278,
+ 26.320934276595718
+ ],
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ],
+ [
+ -80.53013146509278,
+ 26.320934276595718
+ ],
+ [
+ -80.49024414624603,
+ 26.320934276595718
+ ],
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ],
+ [
+ -80.49024414624603,
+ 26.320934276595718
+ ],
+ [
+ -80.47030048682264,
+ 26.35225978201741
+ ],
+ [
+ -80.5101878056694,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ],
+ [
+ -80.47030048682264,
+ 26.414910792860795
+ ],
+ [
+ -80.49024414624603,
+ 26.446236298282486
+ ],
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ],
+ [
+ -80.49024414624603,
+ 26.446236298282486
+ ],
+ [
+ -80.53013146509278,
+ 26.446236298282486
+ ],
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ],
+ [
+ -80.53013146509278,
+ 26.446236298282486
+ ],
+ [
+ -80.55007512451617,
+ 26.414910792860795
+ ],
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ],
+ [
+ -80.55007512451617,
+ 26.414910792860795
+ ],
+ [
+ -80.53013146509278,
+ 26.383585287439104
+ ],
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ],
+ [
+ -80.53013146509278,
+ 26.383585287439104
+ ],
+ [
+ -80.49024414624603,
+ 26.383585287439104
+ ],
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ],
+ [
+ -80.49024414624603,
+ 26.383585287439104
+ ],
+ [
+ -80.47030048682264,
+ 26.414910792860795
+ ],
+ [
+ -80.5101878056694,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ],
+ [
+ -80.4104695085525,
+ 24.942612038041236
+ ],
+ [
+ -80.43041316797589,
+ 24.973937543462927
+ ],
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ],
+ [
+ -80.43041316797589,
+ 24.973937543462927
+ ],
+ [
+ -80.47030048682264,
+ 24.973937543462927
+ ],
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ],
+ [
+ -80.47030048682264,
+ 24.973937543462927
+ ],
+ [
+ -80.49024414624603,
+ 24.942612038041236
+ ],
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ],
+ [
+ -80.49024414624603,
+ 24.942612038041236
+ ],
+ [
+ -80.47030048682264,
+ 24.911286532619545
+ ],
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ],
+ [
+ -80.47030048682264,
+ 24.911286532619545
+ ],
+ [
+ -80.43041316797589,
+ 24.911286532619545
+ ],
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ],
+ [
+ -80.43041316797589,
+ 24.911286532619545
+ ],
+ [
+ -80.4104695085525,
+ 24.942612038041236
+ ],
+ [
+ -80.45035682739926,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ],
+ [
+ -80.4104695085525,
+ 25.005263048884622
+ ],
+ [
+ -80.43041316797589,
+ 25.036588554306313
+ ],
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ],
+ [
+ -80.43041316797589,
+ 25.036588554306313
+ ],
+ [
+ -80.47030048682264,
+ 25.036588554306313
+ ],
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ],
+ [
+ -80.47030048682264,
+ 25.036588554306313
+ ],
+ [
+ -80.49024414624603,
+ 25.005263048884622
+ ],
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ],
+ [
+ -80.49024414624603,
+ 25.005263048884622
+ ],
+ [
+ -80.47030048682264,
+ 24.97393754346293
+ ],
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ],
+ [
+ -80.47030048682264,
+ 24.97393754346293
+ ],
+ [
+ -80.43041316797589,
+ 24.97393754346293
+ ],
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ],
+ [
+ -80.43041316797589,
+ 24.97393754346293
+ ],
+ [
+ -80.4104695085525,
+ 25.005263048884622
+ ],
+ [
+ -80.45035682739926,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ],
+ [
+ -80.4104695085525,
+ 25.067914059728007
+ ],
+ [
+ -80.43041316797589,
+ 25.0992395651497
+ ],
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ],
+ [
+ -80.43041316797589,
+ 25.0992395651497
+ ],
+ [
+ -80.47030048682264,
+ 25.0992395651497
+ ],
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ],
+ [
+ -80.47030048682264,
+ 25.0992395651497
+ ],
+ [
+ -80.49024414624603,
+ 25.067914059728007
+ ],
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ],
+ [
+ -80.49024414624603,
+ 25.067914059728007
+ ],
+ [
+ -80.47030048682264,
+ 25.036588554306316
+ ],
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ],
+ [
+ -80.47030048682264,
+ 25.036588554306316
+ ],
+ [
+ -80.43041316797589,
+ 25.036588554306316
+ ],
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ],
+ [
+ -80.43041316797589,
+ 25.036588554306316
+ ],
+ [
+ -80.4104695085525,
+ 25.067914059728007
+ ],
+ [
+ -80.45035682739926,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ],
+ [
+ -80.4104695085525,
+ 25.130565070571393
+ ],
+ [
+ -80.43041316797589,
+ 25.161890575993084
+ ],
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ],
+ [
+ -80.43041316797589,
+ 25.161890575993084
+ ],
+ [
+ -80.47030048682264,
+ 25.161890575993084
+ ],
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ],
+ [
+ -80.47030048682264,
+ 25.161890575993084
+ ],
+ [
+ -80.49024414624603,
+ 25.130565070571393
+ ],
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ],
+ [
+ -80.49024414624603,
+ 25.130565070571393
+ ],
+ [
+ -80.47030048682264,
+ 25.099239565149702
+ ],
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ],
+ [
+ -80.47030048682264,
+ 25.099239565149702
+ ],
+ [
+ -80.43041316797589,
+ 25.099239565149702
+ ],
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ],
+ [
+ -80.43041316797589,
+ 25.099239565149702
+ ],
+ [
+ -80.4104695085525,
+ 25.130565070571393
+ ],
+ [
+ -80.45035682739926,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ],
+ [
+ -80.4104695085525,
+ 25.19321608141478
+ ],
+ [
+ -80.43041316797589,
+ 25.22454158683647
+ ],
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ],
+ [
+ -80.43041316797589,
+ 25.22454158683647
+ ],
+ [
+ -80.47030048682264,
+ 25.22454158683647
+ ],
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ],
+ [
+ -80.47030048682264,
+ 25.22454158683647
+ ],
+ [
+ -80.49024414624603,
+ 25.19321608141478
+ ],
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ],
+ [
+ -80.49024414624603,
+ 25.19321608141478
+ ],
+ [
+ -80.47030048682264,
+ 25.161890575993088
+ ],
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ],
+ [
+ -80.47030048682264,
+ 25.161890575993088
+ ],
+ [
+ -80.43041316797589,
+ 25.161890575993088
+ ],
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ],
+ [
+ -80.43041316797589,
+ 25.161890575993088
+ ],
+ [
+ -80.4104695085525,
+ 25.19321608141478
+ ],
+ [
+ -80.45035682739926,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ],
+ [
+ -80.4104695085525,
+ 25.255867092258164
+ ],
+ [
+ -80.43041316797589,
+ 25.287192597679855
+ ],
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ],
+ [
+ -80.43041316797589,
+ 25.287192597679855
+ ],
+ [
+ -80.47030048682264,
+ 25.287192597679855
+ ],
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ],
+ [
+ -80.47030048682264,
+ 25.287192597679855
+ ],
+ [
+ -80.49024414624603,
+ 25.255867092258164
+ ],
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ],
+ [
+ -80.49024414624603,
+ 25.255867092258164
+ ],
+ [
+ -80.47030048682264,
+ 25.224541586836473
+ ],
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ],
+ [
+ -80.47030048682264,
+ 25.224541586836473
+ ],
+ [
+ -80.43041316797589,
+ 25.224541586836473
+ ],
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ],
+ [
+ -80.43041316797589,
+ 25.224541586836473
+ ],
+ [
+ -80.4104695085525,
+ 25.255867092258164
+ ],
+ [
+ -80.45035682739926,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ],
+ [
+ -80.4104695085525,
+ 25.31851810310155
+ ],
+ [
+ -80.43041316797589,
+ 25.34984360852324
+ ],
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ],
+ [
+ -80.43041316797589,
+ 25.34984360852324
+ ],
+ [
+ -80.47030048682264,
+ 25.34984360852324
+ ],
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ],
+ [
+ -80.47030048682264,
+ 25.34984360852324
+ ],
+ [
+ -80.49024414624603,
+ 25.31851810310155
+ ],
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ],
+ [
+ -80.49024414624603,
+ 25.31851810310155
+ ],
+ [
+ -80.47030048682264,
+ 25.28719259767986
+ ],
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ],
+ [
+ -80.47030048682264,
+ 25.28719259767986
+ ],
+ [
+ -80.43041316797589,
+ 25.28719259767986
+ ],
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ],
+ [
+ -80.43041316797589,
+ 25.28719259767986
+ ],
+ [
+ -80.4104695085525,
+ 25.31851810310155
+ ],
+ [
+ -80.45035682739926,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ],
+ [
+ -80.4104695085525,
+ 25.381169113944935
+ ],
+ [
+ -80.43041316797589,
+ 25.412494619366626
+ ],
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ],
+ [
+ -80.43041316797589,
+ 25.412494619366626
+ ],
+ [
+ -80.47030048682264,
+ 25.412494619366626
+ ],
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ],
+ [
+ -80.47030048682264,
+ 25.412494619366626
+ ],
+ [
+ -80.49024414624603,
+ 25.381169113944935
+ ],
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ],
+ [
+ -80.49024414624603,
+ 25.381169113944935
+ ],
+ [
+ -80.47030048682264,
+ 25.349843608523244
+ ],
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ],
+ [
+ -80.47030048682264,
+ 25.349843608523244
+ ],
+ [
+ -80.43041316797589,
+ 25.349843608523244
+ ],
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ],
+ [
+ -80.43041316797589,
+ 25.349843608523244
+ ],
+ [
+ -80.4104695085525,
+ 25.381169113944935
+ ],
+ [
+ -80.45035682739926,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ],
+ [
+ -80.4104695085525,
+ 25.44382012478832
+ ],
+ [
+ -80.43041316797589,
+ 25.47514563021001
+ ],
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ],
+ [
+ -80.43041316797589,
+ 25.47514563021001
+ ],
+ [
+ -80.47030048682264,
+ 25.47514563021001
+ ],
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ],
+ [
+ -80.47030048682264,
+ 25.47514563021001
+ ],
+ [
+ -80.49024414624603,
+ 25.44382012478832
+ ],
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ],
+ [
+ -80.49024414624603,
+ 25.44382012478832
+ ],
+ [
+ -80.47030048682264,
+ 25.41249461936663
+ ],
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ],
+ [
+ -80.47030048682264,
+ 25.41249461936663
+ ],
+ [
+ -80.43041316797589,
+ 25.41249461936663
+ ],
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ],
+ [
+ -80.43041316797589,
+ 25.41249461936663
+ ],
+ [
+ -80.4104695085525,
+ 25.44382012478832
+ ],
+ [
+ -80.45035682739926,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ],
+ [
+ -80.4104695085525,
+ 25.506471135631706
+ ],
+ [
+ -80.43041316797589,
+ 25.537796641053397
+ ],
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ],
+ [
+ -80.43041316797589,
+ 25.537796641053397
+ ],
+ [
+ -80.47030048682264,
+ 25.537796641053397
+ ],
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ],
+ [
+ -80.47030048682264,
+ 25.537796641053397
+ ],
+ [
+ -80.49024414624603,
+ 25.506471135631706
+ ],
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ],
+ [
+ -80.49024414624603,
+ 25.506471135631706
+ ],
+ [
+ -80.47030048682264,
+ 25.475145630210015
+ ],
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ],
+ [
+ -80.47030048682264,
+ 25.475145630210015
+ ],
+ [
+ -80.43041316797589,
+ 25.475145630210015
+ ],
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ],
+ [
+ -80.43041316797589,
+ 25.475145630210015
+ ],
+ [
+ -80.4104695085525,
+ 25.506471135631706
+ ],
+ [
+ -80.45035682739926,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ],
+ [
+ -80.4104695085525,
+ 25.56912214647509
+ ],
+ [
+ -80.43041316797589,
+ 25.600447651896783
+ ],
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ],
+ [
+ -80.43041316797589,
+ 25.600447651896783
+ ],
+ [
+ -80.47030048682264,
+ 25.600447651896783
+ ],
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ],
+ [
+ -80.47030048682264,
+ 25.600447651896783
+ ],
+ [
+ -80.49024414624603,
+ 25.56912214647509
+ ],
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ],
+ [
+ -80.49024414624603,
+ 25.56912214647509
+ ],
+ [
+ -80.47030048682264,
+ 25.5377966410534
+ ],
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ],
+ [
+ -80.47030048682264,
+ 25.5377966410534
+ ],
+ [
+ -80.43041316797589,
+ 25.5377966410534
+ ],
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ],
+ [
+ -80.43041316797589,
+ 25.5377966410534
+ ],
+ [
+ -80.4104695085525,
+ 25.56912214647509
+ ],
+ [
+ -80.45035682739926,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ],
+ [
+ -80.4104695085525,
+ 25.631773157318477
+ ],
+ [
+ -80.43041316797589,
+ 25.66309866274017
+ ],
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ],
+ [
+ -80.43041316797589,
+ 25.66309866274017
+ ],
+ [
+ -80.47030048682264,
+ 25.66309866274017
+ ],
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ],
+ [
+ -80.47030048682264,
+ 25.66309866274017
+ ],
+ [
+ -80.49024414624603,
+ 25.631773157318477
+ ],
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ],
+ [
+ -80.49024414624603,
+ 25.631773157318477
+ ],
+ [
+ -80.47030048682264,
+ 25.600447651896786
+ ],
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ],
+ [
+ -80.47030048682264,
+ 25.600447651896786
+ ],
+ [
+ -80.43041316797589,
+ 25.600447651896786
+ ],
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ],
+ [
+ -80.43041316797589,
+ 25.600447651896786
+ ],
+ [
+ -80.4104695085525,
+ 25.631773157318477
+ ],
+ [
+ -80.45035682739926,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ],
+ [
+ -80.4104695085525,
+ 25.694424168161863
+ ],
+ [
+ -80.43041316797589,
+ 25.725749673583554
+ ],
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ],
+ [
+ -80.43041316797589,
+ 25.725749673583554
+ ],
+ [
+ -80.47030048682264,
+ 25.725749673583554
+ ],
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ],
+ [
+ -80.47030048682264,
+ 25.725749673583554
+ ],
+ [
+ -80.49024414624603,
+ 25.694424168161863
+ ],
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ],
+ [
+ -80.49024414624603,
+ 25.694424168161863
+ ],
+ [
+ -80.47030048682264,
+ 25.663098662740172
+ ],
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ],
+ [
+ -80.47030048682264,
+ 25.663098662740172
+ ],
+ [
+ -80.43041316797589,
+ 25.663098662740172
+ ],
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ],
+ [
+ -80.43041316797589,
+ 25.663098662740172
+ ],
+ [
+ -80.4104695085525,
+ 25.694424168161863
+ ],
+ [
+ -80.45035682739926,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ],
+ [
+ -80.4104695085525,
+ 25.75707517900525
+ ],
+ [
+ -80.43041316797589,
+ 25.78840068442694
+ ],
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ],
+ [
+ -80.43041316797589,
+ 25.78840068442694
+ ],
+ [
+ -80.47030048682264,
+ 25.78840068442694
+ ],
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ],
+ [
+ -80.47030048682264,
+ 25.78840068442694
+ ],
+ [
+ -80.49024414624603,
+ 25.75707517900525
+ ],
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ],
+ [
+ -80.49024414624603,
+ 25.75707517900525
+ ],
+ [
+ -80.47030048682264,
+ 25.725749673583557
+ ],
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ],
+ [
+ -80.47030048682264,
+ 25.725749673583557
+ ],
+ [
+ -80.43041316797589,
+ 25.725749673583557
+ ],
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ],
+ [
+ -80.43041316797589,
+ 25.725749673583557
+ ],
+ [
+ -80.4104695085525,
+ 25.75707517900525
+ ],
+ [
+ -80.45035682739926,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ],
+ [
+ -80.4104695085525,
+ 25.819726189848634
+ ],
+ [
+ -80.43041316797589,
+ 25.851051695270325
+ ],
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ],
+ [
+ -80.43041316797589,
+ 25.851051695270325
+ ],
+ [
+ -80.47030048682264,
+ 25.851051695270325
+ ],
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ],
+ [
+ -80.47030048682264,
+ 25.851051695270325
+ ],
+ [
+ -80.49024414624603,
+ 25.819726189848634
+ ],
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ],
+ [
+ -80.49024414624603,
+ 25.819726189848634
+ ],
+ [
+ -80.47030048682264,
+ 25.788400684426943
+ ],
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ],
+ [
+ -80.47030048682264,
+ 25.788400684426943
+ ],
+ [
+ -80.43041316797589,
+ 25.788400684426943
+ ],
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ],
+ [
+ -80.43041316797589,
+ 25.788400684426943
+ ],
+ [
+ -80.4104695085525,
+ 25.819726189848634
+ ],
+ [
+ -80.45035682739926,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ],
+ [
+ -80.4104695085525,
+ 25.88237720069202
+ ],
+ [
+ -80.43041316797589,
+ 25.91370270611371
+ ],
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ],
+ [
+ -80.43041316797589,
+ 25.91370270611371
+ ],
+ [
+ -80.47030048682264,
+ 25.91370270611371
+ ],
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ],
+ [
+ -80.47030048682264,
+ 25.91370270611371
+ ],
+ [
+ -80.49024414624603,
+ 25.88237720069202
+ ],
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ],
+ [
+ -80.49024414624603,
+ 25.88237720069202
+ ],
+ [
+ -80.47030048682264,
+ 25.85105169527033
+ ],
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ],
+ [
+ -80.47030048682264,
+ 25.85105169527033
+ ],
+ [
+ -80.43041316797589,
+ 25.85105169527033
+ ],
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ],
+ [
+ -80.43041316797589,
+ 25.85105169527033
+ ],
+ [
+ -80.4104695085525,
+ 25.88237720069202
+ ],
+ [
+ -80.45035682739926,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ],
+ [
+ -80.4104695085525,
+ 25.945028211535405
+ ],
+ [
+ -80.43041316797589,
+ 25.976353716957096
+ ],
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ],
+ [
+ -80.43041316797589,
+ 25.976353716957096
+ ],
+ [
+ -80.47030048682264,
+ 25.976353716957096
+ ],
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ],
+ [
+ -80.47030048682264,
+ 25.976353716957096
+ ],
+ [
+ -80.49024414624603,
+ 25.945028211535405
+ ],
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ],
+ [
+ -80.49024414624603,
+ 25.945028211535405
+ ],
+ [
+ -80.47030048682264,
+ 25.913702706113714
+ ],
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ],
+ [
+ -80.47030048682264,
+ 25.913702706113714
+ ],
+ [
+ -80.43041316797589,
+ 25.913702706113714
+ ],
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ],
+ [
+ -80.43041316797589,
+ 25.913702706113714
+ ],
+ [
+ -80.4104695085525,
+ 25.945028211535405
+ ],
+ [
+ -80.45035682739926,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ],
+ [
+ -80.4104695085525,
+ 26.00767922237879
+ ],
+ [
+ -80.43041316797589,
+ 26.03900472780048
+ ],
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ],
+ [
+ -80.43041316797589,
+ 26.03900472780048
+ ],
+ [
+ -80.47030048682264,
+ 26.03900472780048
+ ],
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ],
+ [
+ -80.47030048682264,
+ 26.03900472780048
+ ],
+ [
+ -80.49024414624603,
+ 26.00767922237879
+ ],
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ],
+ [
+ -80.49024414624603,
+ 26.00767922237879
+ ],
+ [
+ -80.47030048682264,
+ 25.9763537169571
+ ],
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ],
+ [
+ -80.47030048682264,
+ 25.9763537169571
+ ],
+ [
+ -80.43041316797589,
+ 25.9763537169571
+ ],
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ],
+ [
+ -80.43041316797589,
+ 25.9763537169571
+ ],
+ [
+ -80.4104695085525,
+ 26.00767922237879
+ ],
+ [
+ -80.45035682739926,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ],
+ [
+ -80.4104695085525,
+ 26.070330233222176
+ ],
+ [
+ -80.43041316797589,
+ 26.101655738643867
+ ],
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ],
+ [
+ -80.43041316797589,
+ 26.101655738643867
+ ],
+ [
+ -80.47030048682264,
+ 26.101655738643867
+ ],
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ],
+ [
+ -80.47030048682264,
+ 26.101655738643867
+ ],
+ [
+ -80.49024414624603,
+ 26.070330233222176
+ ],
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ],
+ [
+ -80.49024414624603,
+ 26.070330233222176
+ ],
+ [
+ -80.47030048682264,
+ 26.039004727800485
+ ],
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ],
+ [
+ -80.47030048682264,
+ 26.039004727800485
+ ],
+ [
+ -80.43041316797589,
+ 26.039004727800485
+ ],
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ],
+ [
+ -80.43041316797589,
+ 26.039004727800485
+ ],
+ [
+ -80.4104695085525,
+ 26.070330233222176
+ ],
+ [
+ -80.45035682739926,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ],
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ],
+ [
+ -80.43041316797589,
+ 26.164306749487253
+ ],
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ],
+ [
+ -80.43041316797589,
+ 26.164306749487253
+ ],
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ],
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ],
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ],
+ [
+ -80.49024414624603,
+ 26.13298124406556
+ ],
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ],
+ [
+ -80.49024414624603,
+ 26.13298124406556
+ ],
+ [
+ -80.47030048682264,
+ 26.10165573864387
+ ],
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ],
+ [
+ -80.47030048682264,
+ 26.10165573864387
+ ],
+ [
+ -80.43041316797589,
+ 26.10165573864387
+ ],
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ],
+ [
+ -80.43041316797589,
+ 26.10165573864387
+ ],
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ],
+ [
+ -80.45035682739926,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ],
+ [
+ -80.4104695085525,
+ 26.195632254908944
+ ],
+ [
+ -80.43041316797589,
+ 26.226957760330635
+ ],
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ],
+ [
+ -80.43041316797589,
+ 26.226957760330635
+ ],
+ [
+ -80.47030048682264,
+ 26.226957760330635
+ ],
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ],
+ [
+ -80.47030048682264,
+ 26.226957760330635
+ ],
+ [
+ -80.49024414624603,
+ 26.195632254908944
+ ],
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ],
+ [
+ -80.49024414624603,
+ 26.195632254908944
+ ],
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ],
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ],
+ [
+ -80.47030048682264,
+ 26.164306749487253
+ ],
+ [
+ -80.43041316797589,
+ 26.164306749487253
+ ],
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ],
+ [
+ -80.43041316797589,
+ 26.164306749487253
+ ],
+ [
+ -80.4104695085525,
+ 26.195632254908944
+ ],
+ [
+ -80.45035682739926,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ],
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ],
+ [
+ -80.43041316797589,
+ 26.289608771174024
+ ],
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ],
+ [
+ -80.43041316797589,
+ 26.289608771174024
+ ],
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ],
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ],
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ],
+ [
+ -80.49024414624603,
+ 26.258283265752333
+ ],
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ],
+ [
+ -80.49024414624603,
+ 26.258283265752333
+ ],
+ [
+ -80.47030048682264,
+ 26.22695776033064
+ ],
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ],
+ [
+ -80.47030048682264,
+ 26.22695776033064
+ ],
+ [
+ -80.43041316797589,
+ 26.22695776033064
+ ],
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ],
+ [
+ -80.43041316797589,
+ 26.22695776033064
+ ],
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ],
+ [
+ -80.45035682739926,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ],
+ [
+ -80.4104695085525,
+ 26.320934276595715
+ ],
+ [
+ -80.43041316797589,
+ 26.352259782017406
+ ],
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ],
+ [
+ -80.43041316797589,
+ 26.352259782017406
+ ],
+ [
+ -80.47030048682264,
+ 26.352259782017406
+ ],
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ],
+ [
+ -80.47030048682264,
+ 26.352259782017406
+ ],
+ [
+ -80.49024414624603,
+ 26.320934276595715
+ ],
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ],
+ [
+ -80.49024414624603,
+ 26.320934276595715
+ ],
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ],
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ],
+ [
+ -80.47030048682264,
+ 26.289608771174024
+ ],
+ [
+ -80.43041316797589,
+ 26.289608771174024
+ ],
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ],
+ [
+ -80.43041316797589,
+ 26.289608771174024
+ ],
+ [
+ -80.4104695085525,
+ 26.320934276595715
+ ],
+ [
+ -80.45035682739926,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ],
+ [
+ -80.4104695085525,
+ 26.3835852874391
+ ],
+ [
+ -80.43041316797589,
+ 26.41491079286079
+ ],
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ],
+ [
+ -80.43041316797589,
+ 26.41491079286079
+ ],
+ [
+ -80.47030048682264,
+ 26.41491079286079
+ ],
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ],
+ [
+ -80.47030048682264,
+ 26.41491079286079
+ ],
+ [
+ -80.49024414624603,
+ 26.3835852874391
+ ],
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ],
+ [
+ -80.49024414624603,
+ 26.3835852874391
+ ],
+ [
+ -80.47030048682264,
+ 26.35225978201741
+ ],
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ],
+ [
+ -80.47030048682264,
+ 26.35225978201741
+ ],
+ [
+ -80.43041316797589,
+ 26.35225978201741
+ ],
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ],
+ [
+ -80.43041316797589,
+ 26.35225978201741
+ ],
+ [
+ -80.4104695085525,
+ 26.3835852874391
+ ],
+ [
+ -80.45035682739926,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ],
+ [
+ -80.4104695085525,
+ 26.446236298282486
+ ],
+ [
+ -80.43041316797589,
+ 26.477561803704177
+ ],
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ],
+ [
+ -80.43041316797589,
+ 26.477561803704177
+ ],
+ [
+ -80.47030048682264,
+ 26.477561803704177
+ ],
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ],
+ [
+ -80.47030048682264,
+ 26.477561803704177
+ ],
+ [
+ -80.49024414624603,
+ 26.446236298282486
+ ],
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ],
+ [
+ -80.49024414624603,
+ 26.446236298282486
+ ],
+ [
+ -80.47030048682264,
+ 26.414910792860795
+ ],
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ],
+ [
+ -80.47030048682264,
+ 26.414910792860795
+ ],
+ [
+ -80.43041316797589,
+ 26.414910792860795
+ ],
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ],
+ [
+ -80.43041316797589,
+ 26.414910792860795
+ ],
+ [
+ -80.4104695085525,
+ 26.446236298282486
+ ],
+ [
+ -80.45035682739926,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ],
+ [
+ -80.35063853028235,
+ 24.911286532619545
+ ],
+ [
+ -80.37058218970574,
+ 24.942612038041236
+ ],
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ],
+ [
+ -80.37058218970574,
+ 24.942612038041236
+ ],
+ [
+ -80.4104695085525,
+ 24.942612038041236
+ ],
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ],
+ [
+ -80.4104695085525,
+ 24.942612038041236
+ ],
+ [
+ -80.43041316797589,
+ 24.911286532619545
+ ],
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ],
+ [
+ -80.43041316797589,
+ 24.911286532619545
+ ],
+ [
+ -80.4104695085525,
+ 24.879961027197854
+ ],
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ],
+ [
+ -80.4104695085525,
+ 24.879961027197854
+ ],
+ [
+ -80.37058218970574,
+ 24.879961027197854
+ ],
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ],
+ [
+ -80.37058218970574,
+ 24.879961027197854
+ ],
+ [
+ -80.35063853028235,
+ 24.911286532619545
+ ],
+ [
+ -80.39052584912912,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ],
+ [
+ -80.35063853028235,
+ 24.97393754346293
+ ],
+ [
+ -80.37058218970574,
+ 25.005263048884622
+ ],
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ],
+ [
+ -80.37058218970574,
+ 25.005263048884622
+ ],
+ [
+ -80.4104695085525,
+ 25.005263048884622
+ ],
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ],
+ [
+ -80.4104695085525,
+ 25.005263048884622
+ ],
+ [
+ -80.43041316797589,
+ 24.97393754346293
+ ],
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ],
+ [
+ -80.43041316797589,
+ 24.97393754346293
+ ],
+ [
+ -80.4104695085525,
+ 24.94261203804124
+ ],
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ],
+ [
+ -80.4104695085525,
+ 24.94261203804124
+ ],
+ [
+ -80.37058218970574,
+ 24.94261203804124
+ ],
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ],
+ [
+ -80.37058218970574,
+ 24.94261203804124
+ ],
+ [
+ -80.35063853028235,
+ 24.97393754346293
+ ],
+ [
+ -80.39052584912912,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ],
+ [
+ -80.35063853028235,
+ 25.036588554306316
+ ],
+ [
+ -80.37058218970574,
+ 25.067914059728007
+ ],
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ],
+ [
+ -80.37058218970574,
+ 25.067914059728007
+ ],
+ [
+ -80.4104695085525,
+ 25.067914059728007
+ ],
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ],
+ [
+ -80.4104695085525,
+ 25.067914059728007
+ ],
+ [
+ -80.43041316797589,
+ 25.036588554306316
+ ],
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ],
+ [
+ -80.43041316797589,
+ 25.036588554306316
+ ],
+ [
+ -80.4104695085525,
+ 25.005263048884625
+ ],
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ],
+ [
+ -80.4104695085525,
+ 25.005263048884625
+ ],
+ [
+ -80.37058218970574,
+ 25.005263048884625
+ ],
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ],
+ [
+ -80.37058218970574,
+ 25.005263048884625
+ ],
+ [
+ -80.35063853028235,
+ 25.036588554306316
+ ],
+ [
+ -80.39052584912912,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ],
+ [
+ -80.35063853028235,
+ 25.099239565149702
+ ],
+ [
+ -80.37058218970574,
+ 25.130565070571393
+ ],
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ],
+ [
+ -80.37058218970574,
+ 25.130565070571393
+ ],
+ [
+ -80.4104695085525,
+ 25.130565070571393
+ ],
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ],
+ [
+ -80.4104695085525,
+ 25.130565070571393
+ ],
+ [
+ -80.43041316797589,
+ 25.099239565149702
+ ],
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ],
+ [
+ -80.43041316797589,
+ 25.099239565149702
+ ],
+ [
+ -80.4104695085525,
+ 25.06791405972801
+ ],
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ],
+ [
+ -80.4104695085525,
+ 25.06791405972801
+ ],
+ [
+ -80.37058218970574,
+ 25.06791405972801
+ ],
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ],
+ [
+ -80.37058218970574,
+ 25.06791405972801
+ ],
+ [
+ -80.35063853028235,
+ 25.099239565149702
+ ],
+ [
+ -80.39052584912912,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ],
+ [
+ -80.35063853028235,
+ 25.161890575993088
+ ],
+ [
+ -80.37058218970574,
+ 25.19321608141478
+ ],
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ],
+ [
+ -80.37058218970574,
+ 25.19321608141478
+ ],
+ [
+ -80.4104695085525,
+ 25.19321608141478
+ ],
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ],
+ [
+ -80.4104695085525,
+ 25.19321608141478
+ ],
+ [
+ -80.43041316797589,
+ 25.161890575993088
+ ],
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ],
+ [
+ -80.43041316797589,
+ 25.161890575993088
+ ],
+ [
+ -80.4104695085525,
+ 25.130565070571397
+ ],
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ],
+ [
+ -80.4104695085525,
+ 25.130565070571397
+ ],
+ [
+ -80.37058218970574,
+ 25.130565070571397
+ ],
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ],
+ [
+ -80.37058218970574,
+ 25.130565070571397
+ ],
+ [
+ -80.35063853028235,
+ 25.161890575993088
+ ],
+ [
+ -80.39052584912912,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ],
+ [
+ -80.35063853028235,
+ 25.224541586836473
+ ],
+ [
+ -80.37058218970574,
+ 25.255867092258164
+ ],
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ],
+ [
+ -80.37058218970574,
+ 25.255867092258164
+ ],
+ [
+ -80.4104695085525,
+ 25.255867092258164
+ ],
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ],
+ [
+ -80.4104695085525,
+ 25.255867092258164
+ ],
+ [
+ -80.43041316797589,
+ 25.224541586836473
+ ],
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ],
+ [
+ -80.43041316797589,
+ 25.224541586836473
+ ],
+ [
+ -80.4104695085525,
+ 25.193216081414782
+ ],
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ],
+ [
+ -80.4104695085525,
+ 25.193216081414782
+ ],
+ [
+ -80.37058218970574,
+ 25.193216081414782
+ ],
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ],
+ [
+ -80.37058218970574,
+ 25.193216081414782
+ ],
+ [
+ -80.35063853028235,
+ 25.224541586836473
+ ],
+ [
+ -80.39052584912912,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ],
+ [
+ -80.35063853028235,
+ 25.28719259767986
+ ],
+ [
+ -80.37058218970574,
+ 25.31851810310155
+ ],
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ],
+ [
+ -80.37058218970574,
+ 25.31851810310155
+ ],
+ [
+ -80.4104695085525,
+ 25.31851810310155
+ ],
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ],
+ [
+ -80.4104695085525,
+ 25.31851810310155
+ ],
+ [
+ -80.43041316797589,
+ 25.28719259767986
+ ],
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ],
+ [
+ -80.43041316797589,
+ 25.28719259767986
+ ],
+ [
+ -80.4104695085525,
+ 25.255867092258168
+ ],
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ],
+ [
+ -80.4104695085525,
+ 25.255867092258168
+ ],
+ [
+ -80.37058218970574,
+ 25.255867092258168
+ ],
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ],
+ [
+ -80.37058218970574,
+ 25.255867092258168
+ ],
+ [
+ -80.35063853028235,
+ 25.28719259767986
+ ],
+ [
+ -80.39052584912912,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ],
+ [
+ -80.35063853028235,
+ 25.349843608523244
+ ],
+ [
+ -80.37058218970574,
+ 25.381169113944935
+ ],
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ],
+ [
+ -80.37058218970574,
+ 25.381169113944935
+ ],
+ [
+ -80.4104695085525,
+ 25.381169113944935
+ ],
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ],
+ [
+ -80.4104695085525,
+ 25.381169113944935
+ ],
+ [
+ -80.43041316797589,
+ 25.349843608523244
+ ],
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ],
+ [
+ -80.43041316797589,
+ 25.349843608523244
+ ],
+ [
+ -80.4104695085525,
+ 25.318518103101553
+ ],
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ],
+ [
+ -80.4104695085525,
+ 25.318518103101553
+ ],
+ [
+ -80.37058218970574,
+ 25.318518103101553
+ ],
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ],
+ [
+ -80.37058218970574,
+ 25.318518103101553
+ ],
+ [
+ -80.35063853028235,
+ 25.349843608523244
+ ],
+ [
+ -80.39052584912912,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ],
+ [
+ -80.35063853028235,
+ 25.41249461936663
+ ],
+ [
+ -80.37058218970574,
+ 25.44382012478832
+ ],
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ],
+ [
+ -80.37058218970574,
+ 25.44382012478832
+ ],
+ [
+ -80.4104695085525,
+ 25.44382012478832
+ ],
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ],
+ [
+ -80.4104695085525,
+ 25.44382012478832
+ ],
+ [
+ -80.43041316797589,
+ 25.41249461936663
+ ],
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ],
+ [
+ -80.43041316797589,
+ 25.41249461936663
+ ],
+ [
+ -80.4104695085525,
+ 25.38116911394494
+ ],
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ],
+ [
+ -80.4104695085525,
+ 25.38116911394494
+ ],
+ [
+ -80.37058218970574,
+ 25.38116911394494
+ ],
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ],
+ [
+ -80.37058218970574,
+ 25.38116911394494
+ ],
+ [
+ -80.35063853028235,
+ 25.41249461936663
+ ],
+ [
+ -80.39052584912912,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ],
+ [
+ -80.35063853028235,
+ 25.475145630210015
+ ],
+ [
+ -80.37058218970574,
+ 25.506471135631706
+ ],
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ],
+ [
+ -80.37058218970574,
+ 25.506471135631706
+ ],
+ [
+ -80.4104695085525,
+ 25.506471135631706
+ ],
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ],
+ [
+ -80.4104695085525,
+ 25.506471135631706
+ ],
+ [
+ -80.43041316797589,
+ 25.475145630210015
+ ],
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ],
+ [
+ -80.43041316797589,
+ 25.475145630210015
+ ],
+ [
+ -80.4104695085525,
+ 25.443820124788324
+ ],
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ],
+ [
+ -80.4104695085525,
+ 25.443820124788324
+ ],
+ [
+ -80.37058218970574,
+ 25.443820124788324
+ ],
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ],
+ [
+ -80.37058218970574,
+ 25.443820124788324
+ ],
+ [
+ -80.35063853028235,
+ 25.475145630210015
+ ],
+ [
+ -80.39052584912912,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ],
+ [
+ -80.35063853028235,
+ 25.5377966410534
+ ],
+ [
+ -80.37058218970574,
+ 25.56912214647509
+ ],
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ],
+ [
+ -80.37058218970574,
+ 25.56912214647509
+ ],
+ [
+ -80.4104695085525,
+ 25.56912214647509
+ ],
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ],
+ [
+ -80.4104695085525,
+ 25.56912214647509
+ ],
+ [
+ -80.43041316797589,
+ 25.5377966410534
+ ],
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ],
+ [
+ -80.43041316797589,
+ 25.5377966410534
+ ],
+ [
+ -80.4104695085525,
+ 25.50647113563171
+ ],
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ],
+ [
+ -80.4104695085525,
+ 25.50647113563171
+ ],
+ [
+ -80.37058218970574,
+ 25.50647113563171
+ ],
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ],
+ [
+ -80.37058218970574,
+ 25.50647113563171
+ ],
+ [
+ -80.35063853028235,
+ 25.5377966410534
+ ],
+ [
+ -80.39052584912912,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ],
+ [
+ -80.35063853028235,
+ 25.600447651896786
+ ],
+ [
+ -80.37058218970574,
+ 25.631773157318477
+ ],
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ],
+ [
+ -80.37058218970574,
+ 25.631773157318477
+ ],
+ [
+ -80.4104695085525,
+ 25.631773157318477
+ ],
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ],
+ [
+ -80.4104695085525,
+ 25.631773157318477
+ ],
+ [
+ -80.43041316797589,
+ 25.600447651896786
+ ],
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ],
+ [
+ -80.43041316797589,
+ 25.600447651896786
+ ],
+ [
+ -80.4104695085525,
+ 25.569122146475095
+ ],
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ],
+ [
+ -80.4104695085525,
+ 25.569122146475095
+ ],
+ [
+ -80.37058218970574,
+ 25.569122146475095
+ ],
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ],
+ [
+ -80.37058218970574,
+ 25.569122146475095
+ ],
+ [
+ -80.35063853028235,
+ 25.600447651896786
+ ],
+ [
+ -80.39052584912912,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ],
+ [
+ -80.35063853028235,
+ 25.663098662740172
+ ],
+ [
+ -80.37058218970574,
+ 25.694424168161863
+ ],
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ],
+ [
+ -80.37058218970574,
+ 25.694424168161863
+ ],
+ [
+ -80.4104695085525,
+ 25.694424168161863
+ ],
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ],
+ [
+ -80.4104695085525,
+ 25.694424168161863
+ ],
+ [
+ -80.43041316797589,
+ 25.663098662740172
+ ],
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ],
+ [
+ -80.43041316797589,
+ 25.663098662740172
+ ],
+ [
+ -80.4104695085525,
+ 25.63177315731848
+ ],
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ],
+ [
+ -80.4104695085525,
+ 25.63177315731848
+ ],
+ [
+ -80.37058218970574,
+ 25.63177315731848
+ ],
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ],
+ [
+ -80.37058218970574,
+ 25.63177315731848
+ ],
+ [
+ -80.35063853028235,
+ 25.663098662740172
+ ],
+ [
+ -80.39052584912912,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ],
+ [
+ -80.35063853028235,
+ 25.725749673583557
+ ],
+ [
+ -80.37058218970574,
+ 25.75707517900525
+ ],
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ],
+ [
+ -80.37058218970574,
+ 25.75707517900525
+ ],
+ [
+ -80.4104695085525,
+ 25.75707517900525
+ ],
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ],
+ [
+ -80.4104695085525,
+ 25.75707517900525
+ ],
+ [
+ -80.43041316797589,
+ 25.725749673583557
+ ],
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ],
+ [
+ -80.43041316797589,
+ 25.725749673583557
+ ],
+ [
+ -80.4104695085525,
+ 25.694424168161866
+ ],
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ],
+ [
+ -80.4104695085525,
+ 25.694424168161866
+ ],
+ [
+ -80.37058218970574,
+ 25.694424168161866
+ ],
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ],
+ [
+ -80.37058218970574,
+ 25.694424168161866
+ ],
+ [
+ -80.35063853028235,
+ 25.725749673583557
+ ],
+ [
+ -80.39052584912912,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ],
+ [
+ -80.35063853028235,
+ 25.788400684426943
+ ],
+ [
+ -80.37058218970574,
+ 25.819726189848634
+ ],
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ],
+ [
+ -80.37058218970574,
+ 25.819726189848634
+ ],
+ [
+ -80.4104695085525,
+ 25.819726189848634
+ ],
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ],
+ [
+ -80.4104695085525,
+ 25.819726189848634
+ ],
+ [
+ -80.43041316797589,
+ 25.788400684426943
+ ],
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ],
+ [
+ -80.43041316797589,
+ 25.788400684426943
+ ],
+ [
+ -80.4104695085525,
+ 25.757075179005252
+ ],
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ],
+ [
+ -80.4104695085525,
+ 25.757075179005252
+ ],
+ [
+ -80.37058218970574,
+ 25.757075179005252
+ ],
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ],
+ [
+ -80.37058218970574,
+ 25.757075179005252
+ ],
+ [
+ -80.35063853028235,
+ 25.788400684426943
+ ],
+ [
+ -80.39052584912912,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ],
+ [
+ -80.35063853028235,
+ 25.85105169527033
+ ],
+ [
+ -80.37058218970574,
+ 25.88237720069202
+ ],
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ],
+ [
+ -80.37058218970574,
+ 25.88237720069202
+ ],
+ [
+ -80.4104695085525,
+ 25.88237720069202
+ ],
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ],
+ [
+ -80.4104695085525,
+ 25.88237720069202
+ ],
+ [
+ -80.43041316797589,
+ 25.85105169527033
+ ],
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ],
+ [
+ -80.43041316797589,
+ 25.85105169527033
+ ],
+ [
+ -80.4104695085525,
+ 25.819726189848637
+ ],
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ],
+ [
+ -80.4104695085525,
+ 25.819726189848637
+ ],
+ [
+ -80.37058218970574,
+ 25.819726189848637
+ ],
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ],
+ [
+ -80.37058218970574,
+ 25.819726189848637
+ ],
+ [
+ -80.35063853028235,
+ 25.85105169527033
+ ],
+ [
+ -80.39052584912912,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ],
+ [
+ -80.35063853028235,
+ 25.913702706113714
+ ],
+ [
+ -80.37058218970574,
+ 25.945028211535405
+ ],
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ],
+ [
+ -80.37058218970574,
+ 25.945028211535405
+ ],
+ [
+ -80.4104695085525,
+ 25.945028211535405
+ ],
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ],
+ [
+ -80.4104695085525,
+ 25.945028211535405
+ ],
+ [
+ -80.43041316797589,
+ 25.913702706113714
+ ],
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ],
+ [
+ -80.43041316797589,
+ 25.913702706113714
+ ],
+ [
+ -80.4104695085525,
+ 25.882377200692023
+ ],
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ],
+ [
+ -80.4104695085525,
+ 25.882377200692023
+ ],
+ [
+ -80.37058218970574,
+ 25.882377200692023
+ ],
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ],
+ [
+ -80.37058218970574,
+ 25.882377200692023
+ ],
+ [
+ -80.35063853028235,
+ 25.913702706113714
+ ],
+ [
+ -80.39052584912912,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ],
+ [
+ -80.35063853028235,
+ 25.9763537169571
+ ],
+ [
+ -80.37058218970574,
+ 26.00767922237879
+ ],
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ],
+ [
+ -80.37058218970574,
+ 26.00767922237879
+ ],
+ [
+ -80.4104695085525,
+ 26.00767922237879
+ ],
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ],
+ [
+ -80.4104695085525,
+ 26.00767922237879
+ ],
+ [
+ -80.43041316797589,
+ 25.9763537169571
+ ],
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ],
+ [
+ -80.43041316797589,
+ 25.9763537169571
+ ],
+ [
+ -80.4104695085525,
+ 25.94502821153541
+ ],
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ],
+ [
+ -80.4104695085525,
+ 25.94502821153541
+ ],
+ [
+ -80.37058218970574,
+ 25.94502821153541
+ ],
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ],
+ [
+ -80.37058218970574,
+ 25.94502821153541
+ ],
+ [
+ -80.35063853028235,
+ 25.9763537169571
+ ],
+ [
+ -80.39052584912912,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ],
+ [
+ -80.35063853028235,
+ 26.039004727800485
+ ],
+ [
+ -80.37058218970574,
+ 26.070330233222176
+ ],
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ],
+ [
+ -80.37058218970574,
+ 26.070330233222176
+ ],
+ [
+ -80.4104695085525,
+ 26.070330233222176
+ ],
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ],
+ [
+ -80.4104695085525,
+ 26.070330233222176
+ ],
+ [
+ -80.43041316797589,
+ 26.039004727800485
+ ],
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ],
+ [
+ -80.43041316797589,
+ 26.039004727800485
+ ],
+ [
+ -80.4104695085525,
+ 26.007679222378794
+ ],
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ],
+ [
+ -80.4104695085525,
+ 26.007679222378794
+ ],
+ [
+ -80.37058218970574,
+ 26.007679222378794
+ ],
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ],
+ [
+ -80.37058218970574,
+ 26.007679222378794
+ ],
+ [
+ -80.35063853028235,
+ 26.039004727800485
+ ],
+ [
+ -80.39052584912912,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ],
+ [
+ -80.35063853028235,
+ 26.10165573864387
+ ],
+ [
+ -80.37058218970574,
+ 26.13298124406556
+ ],
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ],
+ [
+ -80.37058218970574,
+ 26.13298124406556
+ ],
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ],
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ],
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ],
+ [
+ -80.43041316797589,
+ 26.10165573864387
+ ],
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ],
+ [
+ -80.43041316797589,
+ 26.10165573864387
+ ],
+ [
+ -80.4104695085525,
+ 26.07033023322218
+ ],
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ],
+ [
+ -80.4104695085525,
+ 26.07033023322218
+ ],
+ [
+ -80.37058218970574,
+ 26.07033023322218
+ ],
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ],
+ [
+ -80.37058218970574,
+ 26.07033023322218
+ ],
+ [
+ -80.35063853028235,
+ 26.10165573864387
+ ],
+ [
+ -80.39052584912912,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ],
+ [
+ -80.35063853028235,
+ 26.164306749487253
+ ],
+ [
+ -80.37058218970574,
+ 26.195632254908944
+ ],
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ],
+ [
+ -80.37058218970574,
+ 26.195632254908944
+ ],
+ [
+ -80.4104695085525,
+ 26.195632254908944
+ ],
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ],
+ [
+ -80.4104695085525,
+ 26.195632254908944
+ ],
+ [
+ -80.43041316797589,
+ 26.164306749487253
+ ],
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ],
+ [
+ -80.43041316797589,
+ 26.164306749487253
+ ],
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ],
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ],
+ [
+ -80.4104695085525,
+ 26.13298124406556
+ ],
+ [
+ -80.37058218970574,
+ 26.13298124406556
+ ],
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ],
+ [
+ -80.37058218970574,
+ 26.13298124406556
+ ],
+ [
+ -80.35063853028235,
+ 26.164306749487253
+ ],
+ [
+ -80.39052584912912,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ],
+ [
+ -80.35063853028235,
+ 26.22695776033064
+ ],
+ [
+ -80.37058218970574,
+ 26.258283265752333
+ ],
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ],
+ [
+ -80.37058218970574,
+ 26.258283265752333
+ ],
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ],
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ],
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ],
+ [
+ -80.43041316797589,
+ 26.22695776033064
+ ],
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ],
+ [
+ -80.43041316797589,
+ 26.22695776033064
+ ],
+ [
+ -80.4104695085525,
+ 26.19563225490895
+ ],
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ],
+ [
+ -80.4104695085525,
+ 26.19563225490895
+ ],
+ [
+ -80.37058218970574,
+ 26.19563225490895
+ ],
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ],
+ [
+ -80.37058218970574,
+ 26.19563225490895
+ ],
+ [
+ -80.35063853028235,
+ 26.22695776033064
+ ],
+ [
+ -80.39052584912912,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ],
+ [
+ -80.35063853028235,
+ 26.289608771174024
+ ],
+ [
+ -80.37058218970574,
+ 26.320934276595715
+ ],
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ],
+ [
+ -80.37058218970574,
+ 26.320934276595715
+ ],
+ [
+ -80.4104695085525,
+ 26.320934276595715
+ ],
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ],
+ [
+ -80.4104695085525,
+ 26.320934276595715
+ ],
+ [
+ -80.43041316797589,
+ 26.289608771174024
+ ],
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ],
+ [
+ -80.43041316797589,
+ 26.289608771174024
+ ],
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ],
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ],
+ [
+ -80.4104695085525,
+ 26.258283265752333
+ ],
+ [
+ -80.37058218970574,
+ 26.258283265752333
+ ],
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ],
+ [
+ -80.37058218970574,
+ 26.258283265752333
+ ],
+ [
+ -80.35063853028235,
+ 26.289608771174024
+ ],
+ [
+ -80.39052584912912,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ],
+ [
+ -80.35063853028235,
+ 26.35225978201741
+ ],
+ [
+ -80.37058218970574,
+ 26.3835852874391
+ ],
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ],
+ [
+ -80.37058218970574,
+ 26.3835852874391
+ ],
+ [
+ -80.4104695085525,
+ 26.3835852874391
+ ],
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ],
+ [
+ -80.4104695085525,
+ 26.3835852874391
+ ],
+ [
+ -80.43041316797589,
+ 26.35225978201741
+ ],
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ],
+ [
+ -80.43041316797589,
+ 26.35225978201741
+ ],
+ [
+ -80.4104695085525,
+ 26.320934276595718
+ ],
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ],
+ [
+ -80.4104695085525,
+ 26.320934276595718
+ ],
+ [
+ -80.37058218970574,
+ 26.320934276595718
+ ],
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ],
+ [
+ -80.37058218970574,
+ 26.320934276595718
+ ],
+ [
+ -80.35063853028235,
+ 26.35225978201741
+ ],
+ [
+ -80.39052584912912,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ],
+ [
+ -80.35063853028235,
+ 26.414910792860795
+ ],
+ [
+ -80.37058218970574,
+ 26.446236298282486
+ ],
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ],
+ [
+ -80.37058218970574,
+ 26.446236298282486
+ ],
+ [
+ -80.4104695085525,
+ 26.446236298282486
+ ],
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ],
+ [
+ -80.4104695085525,
+ 26.446236298282486
+ ],
+ [
+ -80.43041316797589,
+ 26.414910792860795
+ ],
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ],
+ [
+ -80.43041316797589,
+ 26.414910792860795
+ ],
+ [
+ -80.4104695085525,
+ 26.383585287439104
+ ],
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ],
+ [
+ -80.4104695085525,
+ 26.383585287439104
+ ],
+ [
+ -80.37058218970574,
+ 26.383585287439104
+ ],
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ],
+ [
+ -80.37058218970574,
+ 26.383585287439104
+ ],
+ [
+ -80.35063853028235,
+ 26.414910792860795
+ ],
+ [
+ -80.39052584912912,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ],
+ [
+ -80.2908075520122,
+ 24.942612038041236
+ ],
+ [
+ -80.31075121143559,
+ 24.973937543462927
+ ],
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ],
+ [
+ -80.31075121143559,
+ 24.973937543462927
+ ],
+ [
+ -80.35063853028234,
+ 24.973937543462927
+ ],
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ],
+ [
+ -80.35063853028234,
+ 24.973937543462927
+ ],
+ [
+ -80.37058218970573,
+ 24.942612038041236
+ ],
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ],
+ [
+ -80.37058218970573,
+ 24.942612038041236
+ ],
+ [
+ -80.35063853028234,
+ 24.911286532619545
+ ],
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ],
+ [
+ -80.35063853028234,
+ 24.911286532619545
+ ],
+ [
+ -80.31075121143559,
+ 24.911286532619545
+ ],
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ],
+ [
+ -80.31075121143559,
+ 24.911286532619545
+ ],
+ [
+ -80.2908075520122,
+ 24.942612038041236
+ ],
+ [
+ -80.33069487085896,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ],
+ [
+ -80.2908075520122,
+ 25.005263048884622
+ ],
+ [
+ -80.31075121143559,
+ 25.036588554306313
+ ],
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ],
+ [
+ -80.31075121143559,
+ 25.036588554306313
+ ],
+ [
+ -80.35063853028234,
+ 25.036588554306313
+ ],
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ],
+ [
+ -80.35063853028234,
+ 25.036588554306313
+ ],
+ [
+ -80.37058218970573,
+ 25.005263048884622
+ ],
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ],
+ [
+ -80.37058218970573,
+ 25.005263048884622
+ ],
+ [
+ -80.35063853028234,
+ 24.97393754346293
+ ],
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ],
+ [
+ -80.35063853028234,
+ 24.97393754346293
+ ],
+ [
+ -80.31075121143559,
+ 24.97393754346293
+ ],
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ],
+ [
+ -80.31075121143559,
+ 24.97393754346293
+ ],
+ [
+ -80.2908075520122,
+ 25.005263048884622
+ ],
+ [
+ -80.33069487085896,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ],
+ [
+ -80.2908075520122,
+ 25.067914059728007
+ ],
+ [
+ -80.31075121143559,
+ 25.0992395651497
+ ],
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ],
+ [
+ -80.31075121143559,
+ 25.0992395651497
+ ],
+ [
+ -80.35063853028234,
+ 25.0992395651497
+ ],
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ],
+ [
+ -80.35063853028234,
+ 25.0992395651497
+ ],
+ [
+ -80.37058218970573,
+ 25.067914059728007
+ ],
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ],
+ [
+ -80.37058218970573,
+ 25.067914059728007
+ ],
+ [
+ -80.35063853028234,
+ 25.036588554306316
+ ],
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ],
+ [
+ -80.35063853028234,
+ 25.036588554306316
+ ],
+ [
+ -80.31075121143559,
+ 25.036588554306316
+ ],
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ],
+ [
+ -80.31075121143559,
+ 25.036588554306316
+ ],
+ [
+ -80.2908075520122,
+ 25.067914059728007
+ ],
+ [
+ -80.33069487085896,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ],
+ [
+ -80.2908075520122,
+ 25.130565070571393
+ ],
+ [
+ -80.31075121143559,
+ 25.161890575993084
+ ],
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ],
+ [
+ -80.31075121143559,
+ 25.161890575993084
+ ],
+ [
+ -80.35063853028234,
+ 25.161890575993084
+ ],
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ],
+ [
+ -80.35063853028234,
+ 25.161890575993084
+ ],
+ [
+ -80.37058218970573,
+ 25.130565070571393
+ ],
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ],
+ [
+ -80.37058218970573,
+ 25.130565070571393
+ ],
+ [
+ -80.35063853028234,
+ 25.099239565149702
+ ],
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ],
+ [
+ -80.35063853028234,
+ 25.099239565149702
+ ],
+ [
+ -80.31075121143559,
+ 25.099239565149702
+ ],
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ],
+ [
+ -80.31075121143559,
+ 25.099239565149702
+ ],
+ [
+ -80.2908075520122,
+ 25.130565070571393
+ ],
+ [
+ -80.33069487085896,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ],
+ [
+ -80.2908075520122,
+ 25.19321608141478
+ ],
+ [
+ -80.31075121143559,
+ 25.22454158683647
+ ],
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ],
+ [
+ -80.31075121143559,
+ 25.22454158683647
+ ],
+ [
+ -80.35063853028234,
+ 25.22454158683647
+ ],
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ],
+ [
+ -80.35063853028234,
+ 25.22454158683647
+ ],
+ [
+ -80.37058218970573,
+ 25.19321608141478
+ ],
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ],
+ [
+ -80.37058218970573,
+ 25.19321608141478
+ ],
+ [
+ -80.35063853028234,
+ 25.161890575993088
+ ],
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ],
+ [
+ -80.35063853028234,
+ 25.161890575993088
+ ],
+ [
+ -80.31075121143559,
+ 25.161890575993088
+ ],
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ],
+ [
+ -80.31075121143559,
+ 25.161890575993088
+ ],
+ [
+ -80.2908075520122,
+ 25.19321608141478
+ ],
+ [
+ -80.33069487085896,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ],
+ [
+ -80.2908075520122,
+ 25.255867092258164
+ ],
+ [
+ -80.31075121143559,
+ 25.287192597679855
+ ],
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ],
+ [
+ -80.31075121143559,
+ 25.287192597679855
+ ],
+ [
+ -80.35063853028234,
+ 25.287192597679855
+ ],
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ],
+ [
+ -80.35063853028234,
+ 25.287192597679855
+ ],
+ [
+ -80.37058218970573,
+ 25.255867092258164
+ ],
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ],
+ [
+ -80.37058218970573,
+ 25.255867092258164
+ ],
+ [
+ -80.35063853028234,
+ 25.224541586836473
+ ],
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ],
+ [
+ -80.35063853028234,
+ 25.224541586836473
+ ],
+ [
+ -80.31075121143559,
+ 25.224541586836473
+ ],
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ],
+ [
+ -80.31075121143559,
+ 25.224541586836473
+ ],
+ [
+ -80.2908075520122,
+ 25.255867092258164
+ ],
+ [
+ -80.33069487085896,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ],
+ [
+ -80.2908075520122,
+ 25.31851810310155
+ ],
+ [
+ -80.31075121143559,
+ 25.34984360852324
+ ],
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ],
+ [
+ -80.31075121143559,
+ 25.34984360852324
+ ],
+ [
+ -80.35063853028234,
+ 25.34984360852324
+ ],
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ],
+ [
+ -80.35063853028234,
+ 25.34984360852324
+ ],
+ [
+ -80.37058218970573,
+ 25.31851810310155
+ ],
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ],
+ [
+ -80.37058218970573,
+ 25.31851810310155
+ ],
+ [
+ -80.35063853028234,
+ 25.28719259767986
+ ],
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ],
+ [
+ -80.35063853028234,
+ 25.28719259767986
+ ],
+ [
+ -80.31075121143559,
+ 25.28719259767986
+ ],
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ],
+ [
+ -80.31075121143559,
+ 25.28719259767986
+ ],
+ [
+ -80.2908075520122,
+ 25.31851810310155
+ ],
+ [
+ -80.33069487085896,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ],
+ [
+ -80.2908075520122,
+ 25.381169113944935
+ ],
+ [
+ -80.31075121143559,
+ 25.412494619366626
+ ],
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ],
+ [
+ -80.31075121143559,
+ 25.412494619366626
+ ],
+ [
+ -80.35063853028234,
+ 25.412494619366626
+ ],
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ],
+ [
+ -80.35063853028234,
+ 25.412494619366626
+ ],
+ [
+ -80.37058218970573,
+ 25.381169113944935
+ ],
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ],
+ [
+ -80.37058218970573,
+ 25.381169113944935
+ ],
+ [
+ -80.35063853028234,
+ 25.349843608523244
+ ],
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ],
+ [
+ -80.35063853028234,
+ 25.349843608523244
+ ],
+ [
+ -80.31075121143559,
+ 25.349843608523244
+ ],
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ],
+ [
+ -80.31075121143559,
+ 25.349843608523244
+ ],
+ [
+ -80.2908075520122,
+ 25.381169113944935
+ ],
+ [
+ -80.33069487085896,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ],
+ [
+ -80.2908075520122,
+ 25.44382012478832
+ ],
+ [
+ -80.31075121143559,
+ 25.47514563021001
+ ],
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ],
+ [
+ -80.31075121143559,
+ 25.47514563021001
+ ],
+ [
+ -80.35063853028234,
+ 25.47514563021001
+ ],
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ],
+ [
+ -80.35063853028234,
+ 25.47514563021001
+ ],
+ [
+ -80.37058218970573,
+ 25.44382012478832
+ ],
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ],
+ [
+ -80.37058218970573,
+ 25.44382012478832
+ ],
+ [
+ -80.35063853028234,
+ 25.41249461936663
+ ],
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ],
+ [
+ -80.35063853028234,
+ 25.41249461936663
+ ],
+ [
+ -80.31075121143559,
+ 25.41249461936663
+ ],
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ],
+ [
+ -80.31075121143559,
+ 25.41249461936663
+ ],
+ [
+ -80.2908075520122,
+ 25.44382012478832
+ ],
+ [
+ -80.33069487085896,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ],
+ [
+ -80.2908075520122,
+ 25.506471135631706
+ ],
+ [
+ -80.31075121143559,
+ 25.537796641053397
+ ],
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ],
+ [
+ -80.31075121143559,
+ 25.537796641053397
+ ],
+ [
+ -80.35063853028234,
+ 25.537796641053397
+ ],
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ],
+ [
+ -80.35063853028234,
+ 25.537796641053397
+ ],
+ [
+ -80.37058218970573,
+ 25.506471135631706
+ ],
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ],
+ [
+ -80.37058218970573,
+ 25.506471135631706
+ ],
+ [
+ -80.35063853028234,
+ 25.475145630210015
+ ],
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ],
+ [
+ -80.35063853028234,
+ 25.475145630210015
+ ],
+ [
+ -80.31075121143559,
+ 25.475145630210015
+ ],
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ],
+ [
+ -80.31075121143559,
+ 25.475145630210015
+ ],
+ [
+ -80.2908075520122,
+ 25.506471135631706
+ ],
+ [
+ -80.33069487085896,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ],
+ [
+ -80.2908075520122,
+ 25.56912214647509
+ ],
+ [
+ -80.31075121143559,
+ 25.600447651896783
+ ],
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ],
+ [
+ -80.31075121143559,
+ 25.600447651896783
+ ],
+ [
+ -80.35063853028234,
+ 25.600447651896783
+ ],
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ],
+ [
+ -80.35063853028234,
+ 25.600447651896783
+ ],
+ [
+ -80.37058218970573,
+ 25.56912214647509
+ ],
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ],
+ [
+ -80.37058218970573,
+ 25.56912214647509
+ ],
+ [
+ -80.35063853028234,
+ 25.5377966410534
+ ],
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ],
+ [
+ -80.35063853028234,
+ 25.5377966410534
+ ],
+ [
+ -80.31075121143559,
+ 25.5377966410534
+ ],
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ],
+ [
+ -80.31075121143559,
+ 25.5377966410534
+ ],
+ [
+ -80.2908075520122,
+ 25.56912214647509
+ ],
+ [
+ -80.33069487085896,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ],
+ [
+ -80.2908075520122,
+ 25.631773157318477
+ ],
+ [
+ -80.31075121143559,
+ 25.66309866274017
+ ],
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ],
+ [
+ -80.31075121143559,
+ 25.66309866274017
+ ],
+ [
+ -80.35063853028234,
+ 25.66309866274017
+ ],
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ],
+ [
+ -80.35063853028234,
+ 25.66309866274017
+ ],
+ [
+ -80.37058218970573,
+ 25.631773157318477
+ ],
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ],
+ [
+ -80.37058218970573,
+ 25.631773157318477
+ ],
+ [
+ -80.35063853028234,
+ 25.600447651896786
+ ],
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ],
+ [
+ -80.35063853028234,
+ 25.600447651896786
+ ],
+ [
+ -80.31075121143559,
+ 25.600447651896786
+ ],
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ],
+ [
+ -80.31075121143559,
+ 25.600447651896786
+ ],
+ [
+ -80.2908075520122,
+ 25.631773157318477
+ ],
+ [
+ -80.33069487085896,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ],
+ [
+ -80.2908075520122,
+ 25.694424168161863
+ ],
+ [
+ -80.31075121143559,
+ 25.725749673583554
+ ],
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ],
+ [
+ -80.31075121143559,
+ 25.725749673583554
+ ],
+ [
+ -80.35063853028234,
+ 25.725749673583554
+ ],
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ],
+ [
+ -80.35063853028234,
+ 25.725749673583554
+ ],
+ [
+ -80.37058218970573,
+ 25.694424168161863
+ ],
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ],
+ [
+ -80.37058218970573,
+ 25.694424168161863
+ ],
+ [
+ -80.35063853028234,
+ 25.663098662740172
+ ],
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ],
+ [
+ -80.35063853028234,
+ 25.663098662740172
+ ],
+ [
+ -80.31075121143559,
+ 25.663098662740172
+ ],
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ],
+ [
+ -80.31075121143559,
+ 25.663098662740172
+ ],
+ [
+ -80.2908075520122,
+ 25.694424168161863
+ ],
+ [
+ -80.33069487085896,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ],
+ [
+ -80.2908075520122,
+ 25.75707517900525
+ ],
+ [
+ -80.31075121143559,
+ 25.78840068442694
+ ],
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ],
+ [
+ -80.31075121143559,
+ 25.78840068442694
+ ],
+ [
+ -80.35063853028234,
+ 25.78840068442694
+ ],
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ],
+ [
+ -80.35063853028234,
+ 25.78840068442694
+ ],
+ [
+ -80.37058218970573,
+ 25.75707517900525
+ ],
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ],
+ [
+ -80.37058218970573,
+ 25.75707517900525
+ ],
+ [
+ -80.35063853028234,
+ 25.725749673583557
+ ],
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ],
+ [
+ -80.35063853028234,
+ 25.725749673583557
+ ],
+ [
+ -80.31075121143559,
+ 25.725749673583557
+ ],
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ],
+ [
+ -80.31075121143559,
+ 25.725749673583557
+ ],
+ [
+ -80.2908075520122,
+ 25.75707517900525
+ ],
+ [
+ -80.33069487085896,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ],
+ [
+ -80.2908075520122,
+ 25.819726189848634
+ ],
+ [
+ -80.31075121143559,
+ 25.851051695270325
+ ],
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ],
+ [
+ -80.31075121143559,
+ 25.851051695270325
+ ],
+ [
+ -80.35063853028234,
+ 25.851051695270325
+ ],
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ],
+ [
+ -80.35063853028234,
+ 25.851051695270325
+ ],
+ [
+ -80.37058218970573,
+ 25.819726189848634
+ ],
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ],
+ [
+ -80.37058218970573,
+ 25.819726189848634
+ ],
+ [
+ -80.35063853028234,
+ 25.788400684426943
+ ],
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ],
+ [
+ -80.35063853028234,
+ 25.788400684426943
+ ],
+ [
+ -80.31075121143559,
+ 25.788400684426943
+ ],
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ],
+ [
+ -80.31075121143559,
+ 25.788400684426943
+ ],
+ [
+ -80.2908075520122,
+ 25.819726189848634
+ ],
+ [
+ -80.33069487085896,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ],
+ [
+ -80.2908075520122,
+ 25.88237720069202
+ ],
+ [
+ -80.31075121143559,
+ 25.91370270611371
+ ],
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ],
+ [
+ -80.31075121143559,
+ 25.91370270611371
+ ],
+ [
+ -80.35063853028234,
+ 25.91370270611371
+ ],
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ],
+ [
+ -80.35063853028234,
+ 25.91370270611371
+ ],
+ [
+ -80.37058218970573,
+ 25.88237720069202
+ ],
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ],
+ [
+ -80.37058218970573,
+ 25.88237720069202
+ ],
+ [
+ -80.35063853028234,
+ 25.85105169527033
+ ],
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ],
+ [
+ -80.35063853028234,
+ 25.85105169527033
+ ],
+ [
+ -80.31075121143559,
+ 25.85105169527033
+ ],
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ],
+ [
+ -80.31075121143559,
+ 25.85105169527033
+ ],
+ [
+ -80.2908075520122,
+ 25.88237720069202
+ ],
+ [
+ -80.33069487085896,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ],
+ [
+ -80.2908075520122,
+ 25.945028211535405
+ ],
+ [
+ -80.31075121143559,
+ 25.976353716957096
+ ],
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ],
+ [
+ -80.31075121143559,
+ 25.976353716957096
+ ],
+ [
+ -80.35063853028234,
+ 25.976353716957096
+ ],
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ],
+ [
+ -80.35063853028234,
+ 25.976353716957096
+ ],
+ [
+ -80.37058218970573,
+ 25.945028211535405
+ ],
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ],
+ [
+ -80.37058218970573,
+ 25.945028211535405
+ ],
+ [
+ -80.35063853028234,
+ 25.913702706113714
+ ],
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ],
+ [
+ -80.35063853028234,
+ 25.913702706113714
+ ],
+ [
+ -80.31075121143559,
+ 25.913702706113714
+ ],
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ],
+ [
+ -80.31075121143559,
+ 25.913702706113714
+ ],
+ [
+ -80.2908075520122,
+ 25.945028211535405
+ ],
+ [
+ -80.33069487085896,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ],
+ [
+ -80.2908075520122,
+ 26.00767922237879
+ ],
+ [
+ -80.31075121143559,
+ 26.03900472780048
+ ],
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ],
+ [
+ -80.31075121143559,
+ 26.03900472780048
+ ],
+ [
+ -80.35063853028234,
+ 26.03900472780048
+ ],
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ],
+ [
+ -80.35063853028234,
+ 26.03900472780048
+ ],
+ [
+ -80.37058218970573,
+ 26.00767922237879
+ ],
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ],
+ [
+ -80.37058218970573,
+ 26.00767922237879
+ ],
+ [
+ -80.35063853028234,
+ 25.9763537169571
+ ],
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ],
+ [
+ -80.35063853028234,
+ 25.9763537169571
+ ],
+ [
+ -80.31075121143559,
+ 25.9763537169571
+ ],
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ],
+ [
+ -80.31075121143559,
+ 25.9763537169571
+ ],
+ [
+ -80.2908075520122,
+ 26.00767922237879
+ ],
+ [
+ -80.33069487085896,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ],
+ [
+ -80.2908075520122,
+ 26.070330233222176
+ ],
+ [
+ -80.31075121143559,
+ 26.101655738643867
+ ],
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ],
+ [
+ -80.31075121143559,
+ 26.101655738643867
+ ],
+ [
+ -80.35063853028234,
+ 26.101655738643867
+ ],
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ],
+ [
+ -80.35063853028234,
+ 26.101655738643867
+ ],
+ [
+ -80.37058218970573,
+ 26.070330233222176
+ ],
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ],
+ [
+ -80.37058218970573,
+ 26.070330233222176
+ ],
+ [
+ -80.35063853028234,
+ 26.039004727800485
+ ],
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ],
+ [
+ -80.35063853028234,
+ 26.039004727800485
+ ],
+ [
+ -80.31075121143559,
+ 26.039004727800485
+ ],
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ],
+ [
+ -80.31075121143559,
+ 26.039004727800485
+ ],
+ [
+ -80.2908075520122,
+ 26.070330233222176
+ ],
+ [
+ -80.33069487085896,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ],
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ],
+ [
+ -80.31075121143559,
+ 26.164306749487253
+ ],
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ],
+ [
+ -80.31075121143559,
+ 26.164306749487253
+ ],
+ [
+ -80.35063853028234,
+ 26.164306749487253
+ ],
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ],
+ [
+ -80.35063853028234,
+ 26.164306749487253
+ ],
+ [
+ -80.37058218970573,
+ 26.13298124406556
+ ],
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ],
+ [
+ -80.37058218970573,
+ 26.13298124406556
+ ],
+ [
+ -80.35063853028234,
+ 26.10165573864387
+ ],
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ],
+ [
+ -80.35063853028234,
+ 26.10165573864387
+ ],
+ [
+ -80.31075121143559,
+ 26.10165573864387
+ ],
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ],
+ [
+ -80.31075121143559,
+ 26.10165573864387
+ ],
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ],
+ [
+ -80.33069487085896,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ],
+ [
+ -80.2908075520122,
+ 26.195632254908944
+ ],
+ [
+ -80.31075121143559,
+ 26.226957760330635
+ ],
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ],
+ [
+ -80.31075121143559,
+ 26.226957760330635
+ ],
+ [
+ -80.35063853028234,
+ 26.226957760330635
+ ],
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ],
+ [
+ -80.35063853028234,
+ 26.226957760330635
+ ],
+ [
+ -80.37058218970573,
+ 26.195632254908944
+ ],
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ],
+ [
+ -80.37058218970573,
+ 26.195632254908944
+ ],
+ [
+ -80.35063853028234,
+ 26.164306749487253
+ ],
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ],
+ [
+ -80.35063853028234,
+ 26.164306749487253
+ ],
+ [
+ -80.31075121143559,
+ 26.164306749487253
+ ],
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ],
+ [
+ -80.31075121143559,
+ 26.164306749487253
+ ],
+ [
+ -80.2908075520122,
+ 26.195632254908944
+ ],
+ [
+ -80.33069487085896,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ],
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ],
+ [
+ -80.31075121143559,
+ 26.289608771174024
+ ],
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ],
+ [
+ -80.31075121143559,
+ 26.289608771174024
+ ],
+ [
+ -80.35063853028234,
+ 26.289608771174024
+ ],
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ],
+ [
+ -80.35063853028234,
+ 26.289608771174024
+ ],
+ [
+ -80.37058218970573,
+ 26.258283265752333
+ ],
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ],
+ [
+ -80.37058218970573,
+ 26.258283265752333
+ ],
+ [
+ -80.35063853028234,
+ 26.22695776033064
+ ],
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ],
+ [
+ -80.35063853028234,
+ 26.22695776033064
+ ],
+ [
+ -80.31075121143559,
+ 26.22695776033064
+ ],
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ],
+ [
+ -80.31075121143559,
+ 26.22695776033064
+ ],
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ],
+ [
+ -80.33069487085896,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ],
+ [
+ -80.2908075520122,
+ 26.320934276595715
+ ],
+ [
+ -80.31075121143559,
+ 26.352259782017406
+ ],
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ],
+ [
+ -80.31075121143559,
+ 26.352259782017406
+ ],
+ [
+ -80.35063853028234,
+ 26.352259782017406
+ ],
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ],
+ [
+ -80.35063853028234,
+ 26.352259782017406
+ ],
+ [
+ -80.37058218970573,
+ 26.320934276595715
+ ],
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ],
+ [
+ -80.37058218970573,
+ 26.320934276595715
+ ],
+ [
+ -80.35063853028234,
+ 26.289608771174024
+ ],
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ],
+ [
+ -80.35063853028234,
+ 26.289608771174024
+ ],
+ [
+ -80.31075121143559,
+ 26.289608771174024
+ ],
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ],
+ [
+ -80.31075121143559,
+ 26.289608771174024
+ ],
+ [
+ -80.2908075520122,
+ 26.320934276595715
+ ],
+ [
+ -80.33069487085896,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ],
+ [
+ -80.2908075520122,
+ 26.3835852874391
+ ],
+ [
+ -80.31075121143559,
+ 26.41491079286079
+ ],
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ],
+ [
+ -80.31075121143559,
+ 26.41491079286079
+ ],
+ [
+ -80.35063853028234,
+ 26.41491079286079
+ ],
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ],
+ [
+ -80.35063853028234,
+ 26.41491079286079
+ ],
+ [
+ -80.37058218970573,
+ 26.3835852874391
+ ],
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ],
+ [
+ -80.37058218970573,
+ 26.3835852874391
+ ],
+ [
+ -80.35063853028234,
+ 26.35225978201741
+ ],
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ],
+ [
+ -80.35063853028234,
+ 26.35225978201741
+ ],
+ [
+ -80.31075121143559,
+ 26.35225978201741
+ ],
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ],
+ [
+ -80.31075121143559,
+ 26.35225978201741
+ ],
+ [
+ -80.2908075520122,
+ 26.3835852874391
+ ],
+ [
+ -80.33069487085896,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ],
+ [
+ -80.2908075520122,
+ 26.446236298282486
+ ],
+ [
+ -80.31075121143559,
+ 26.477561803704177
+ ],
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ],
+ [
+ -80.31075121143559,
+ 26.477561803704177
+ ],
+ [
+ -80.35063853028234,
+ 26.477561803704177
+ ],
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ],
+ [
+ -80.35063853028234,
+ 26.477561803704177
+ ],
+ [
+ -80.37058218970573,
+ 26.446236298282486
+ ],
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ],
+ [
+ -80.37058218970573,
+ 26.446236298282486
+ ],
+ [
+ -80.35063853028234,
+ 26.414910792860795
+ ],
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ],
+ [
+ -80.35063853028234,
+ 26.414910792860795
+ ],
+ [
+ -80.31075121143559,
+ 26.414910792860795
+ ],
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ],
+ [
+ -80.31075121143559,
+ 26.414910792860795
+ ],
+ [
+ -80.2908075520122,
+ 26.446236298282486
+ ],
+ [
+ -80.33069487085896,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ],
+ [
+ -80.23097657374205,
+ 24.911286532619545
+ ],
+ [
+ -80.25092023316544,
+ 24.942612038041236
+ ],
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ],
+ [
+ -80.25092023316544,
+ 24.942612038041236
+ ],
+ [
+ -80.2908075520122,
+ 24.942612038041236
+ ],
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ],
+ [
+ -80.2908075520122,
+ 24.942612038041236
+ ],
+ [
+ -80.31075121143559,
+ 24.911286532619545
+ ],
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ],
+ [
+ -80.31075121143559,
+ 24.911286532619545
+ ],
+ [
+ -80.2908075520122,
+ 24.879961027197854
+ ],
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ],
+ [
+ -80.2908075520122,
+ 24.879961027197854
+ ],
+ [
+ -80.25092023316544,
+ 24.879961027197854
+ ],
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ],
+ [
+ -80.25092023316544,
+ 24.879961027197854
+ ],
+ [
+ -80.23097657374205,
+ 24.911286532619545
+ ],
+ [
+ -80.27086389258882,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ],
+ [
+ -80.23097657374205,
+ 24.97393754346293
+ ],
+ [
+ -80.25092023316544,
+ 25.005263048884622
+ ],
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ],
+ [
+ -80.25092023316544,
+ 25.005263048884622
+ ],
+ [
+ -80.2908075520122,
+ 25.005263048884622
+ ],
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ],
+ [
+ -80.2908075520122,
+ 25.005263048884622
+ ],
+ [
+ -80.31075121143559,
+ 24.97393754346293
+ ],
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ],
+ [
+ -80.31075121143559,
+ 24.97393754346293
+ ],
+ [
+ -80.2908075520122,
+ 24.94261203804124
+ ],
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ],
+ [
+ -80.2908075520122,
+ 24.94261203804124
+ ],
+ [
+ -80.25092023316544,
+ 24.94261203804124
+ ],
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ],
+ [
+ -80.25092023316544,
+ 24.94261203804124
+ ],
+ [
+ -80.23097657374205,
+ 24.97393754346293
+ ],
+ [
+ -80.27086389258882,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ],
+ [
+ -80.23097657374205,
+ 25.036588554306316
+ ],
+ [
+ -80.25092023316544,
+ 25.067914059728007
+ ],
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ],
+ [
+ -80.25092023316544,
+ 25.067914059728007
+ ],
+ [
+ -80.2908075520122,
+ 25.067914059728007
+ ],
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ],
+ [
+ -80.2908075520122,
+ 25.067914059728007
+ ],
+ [
+ -80.31075121143559,
+ 25.036588554306316
+ ],
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ],
+ [
+ -80.31075121143559,
+ 25.036588554306316
+ ],
+ [
+ -80.2908075520122,
+ 25.005263048884625
+ ],
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ],
+ [
+ -80.2908075520122,
+ 25.005263048884625
+ ],
+ [
+ -80.25092023316544,
+ 25.005263048884625
+ ],
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ],
+ [
+ -80.25092023316544,
+ 25.005263048884625
+ ],
+ [
+ -80.23097657374205,
+ 25.036588554306316
+ ],
+ [
+ -80.27086389258882,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ],
+ [
+ -80.23097657374205,
+ 25.099239565149702
+ ],
+ [
+ -80.25092023316544,
+ 25.130565070571393
+ ],
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ],
+ [
+ -80.25092023316544,
+ 25.130565070571393
+ ],
+ [
+ -80.2908075520122,
+ 25.130565070571393
+ ],
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ],
+ [
+ -80.2908075520122,
+ 25.130565070571393
+ ],
+ [
+ -80.31075121143559,
+ 25.099239565149702
+ ],
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ],
+ [
+ -80.31075121143559,
+ 25.099239565149702
+ ],
+ [
+ -80.2908075520122,
+ 25.06791405972801
+ ],
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ],
+ [
+ -80.2908075520122,
+ 25.06791405972801
+ ],
+ [
+ -80.25092023316544,
+ 25.06791405972801
+ ],
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ],
+ [
+ -80.25092023316544,
+ 25.06791405972801
+ ],
+ [
+ -80.23097657374205,
+ 25.099239565149702
+ ],
+ [
+ -80.27086389258882,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ],
+ [
+ -80.23097657374205,
+ 25.161890575993088
+ ],
+ [
+ -80.25092023316544,
+ 25.19321608141478
+ ],
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ],
+ [
+ -80.25092023316544,
+ 25.19321608141478
+ ],
+ [
+ -80.2908075520122,
+ 25.19321608141478
+ ],
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ],
+ [
+ -80.2908075520122,
+ 25.19321608141478
+ ],
+ [
+ -80.31075121143559,
+ 25.161890575993088
+ ],
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ],
+ [
+ -80.31075121143559,
+ 25.161890575993088
+ ],
+ [
+ -80.2908075520122,
+ 25.130565070571397
+ ],
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ],
+ [
+ -80.2908075520122,
+ 25.130565070571397
+ ],
+ [
+ -80.25092023316544,
+ 25.130565070571397
+ ],
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ],
+ [
+ -80.25092023316544,
+ 25.130565070571397
+ ],
+ [
+ -80.23097657374205,
+ 25.161890575993088
+ ],
+ [
+ -80.27086389258882,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ],
+ [
+ -80.23097657374205,
+ 25.224541586836473
+ ],
+ [
+ -80.25092023316544,
+ 25.255867092258164
+ ],
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ],
+ [
+ -80.25092023316544,
+ 25.255867092258164
+ ],
+ [
+ -80.2908075520122,
+ 25.255867092258164
+ ],
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ],
+ [
+ -80.2908075520122,
+ 25.255867092258164
+ ],
+ [
+ -80.31075121143559,
+ 25.224541586836473
+ ],
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ],
+ [
+ -80.31075121143559,
+ 25.224541586836473
+ ],
+ [
+ -80.2908075520122,
+ 25.193216081414782
+ ],
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ],
+ [
+ -80.2908075520122,
+ 25.193216081414782
+ ],
+ [
+ -80.25092023316544,
+ 25.193216081414782
+ ],
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ],
+ [
+ -80.25092023316544,
+ 25.193216081414782
+ ],
+ [
+ -80.23097657374205,
+ 25.224541586836473
+ ],
+ [
+ -80.27086389258882,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ],
+ [
+ -80.23097657374205,
+ 25.28719259767986
+ ],
+ [
+ -80.25092023316544,
+ 25.31851810310155
+ ],
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ],
+ [
+ -80.25092023316544,
+ 25.31851810310155
+ ],
+ [
+ -80.2908075520122,
+ 25.31851810310155
+ ],
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ],
+ [
+ -80.2908075520122,
+ 25.31851810310155
+ ],
+ [
+ -80.31075121143559,
+ 25.28719259767986
+ ],
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ],
+ [
+ -80.31075121143559,
+ 25.28719259767986
+ ],
+ [
+ -80.2908075520122,
+ 25.255867092258168
+ ],
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ],
+ [
+ -80.2908075520122,
+ 25.255867092258168
+ ],
+ [
+ -80.25092023316544,
+ 25.255867092258168
+ ],
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ],
+ [
+ -80.25092023316544,
+ 25.255867092258168
+ ],
+ [
+ -80.23097657374205,
+ 25.28719259767986
+ ],
+ [
+ -80.27086389258882,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ],
+ [
+ -80.23097657374205,
+ 25.349843608523244
+ ],
+ [
+ -80.25092023316544,
+ 25.381169113944935
+ ],
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ],
+ [
+ -80.25092023316544,
+ 25.381169113944935
+ ],
+ [
+ -80.2908075520122,
+ 25.381169113944935
+ ],
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ],
+ [
+ -80.2908075520122,
+ 25.381169113944935
+ ],
+ [
+ -80.31075121143559,
+ 25.349843608523244
+ ],
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ],
+ [
+ -80.31075121143559,
+ 25.349843608523244
+ ],
+ [
+ -80.2908075520122,
+ 25.318518103101553
+ ],
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ],
+ [
+ -80.2908075520122,
+ 25.318518103101553
+ ],
+ [
+ -80.25092023316544,
+ 25.318518103101553
+ ],
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ],
+ [
+ -80.25092023316544,
+ 25.318518103101553
+ ],
+ [
+ -80.23097657374205,
+ 25.349843608523244
+ ],
+ [
+ -80.27086389258882,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ],
+ [
+ -80.23097657374205,
+ 25.41249461936663
+ ],
+ [
+ -80.25092023316544,
+ 25.44382012478832
+ ],
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ],
+ [
+ -80.25092023316544,
+ 25.44382012478832
+ ],
+ [
+ -80.2908075520122,
+ 25.44382012478832
+ ],
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ],
+ [
+ -80.2908075520122,
+ 25.44382012478832
+ ],
+ [
+ -80.31075121143559,
+ 25.41249461936663
+ ],
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ],
+ [
+ -80.31075121143559,
+ 25.41249461936663
+ ],
+ [
+ -80.2908075520122,
+ 25.38116911394494
+ ],
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ],
+ [
+ -80.2908075520122,
+ 25.38116911394494
+ ],
+ [
+ -80.25092023316544,
+ 25.38116911394494
+ ],
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ],
+ [
+ -80.25092023316544,
+ 25.38116911394494
+ ],
+ [
+ -80.23097657374205,
+ 25.41249461936663
+ ],
+ [
+ -80.27086389258882,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ],
+ [
+ -80.23097657374205,
+ 25.475145630210015
+ ],
+ [
+ -80.25092023316544,
+ 25.506471135631706
+ ],
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ],
+ [
+ -80.25092023316544,
+ 25.506471135631706
+ ],
+ [
+ -80.2908075520122,
+ 25.506471135631706
+ ],
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ],
+ [
+ -80.2908075520122,
+ 25.506471135631706
+ ],
+ [
+ -80.31075121143559,
+ 25.475145630210015
+ ],
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ],
+ [
+ -80.31075121143559,
+ 25.475145630210015
+ ],
+ [
+ -80.2908075520122,
+ 25.443820124788324
+ ],
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ],
+ [
+ -80.2908075520122,
+ 25.443820124788324
+ ],
+ [
+ -80.25092023316544,
+ 25.443820124788324
+ ],
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ],
+ [
+ -80.25092023316544,
+ 25.443820124788324
+ ],
+ [
+ -80.23097657374205,
+ 25.475145630210015
+ ],
+ [
+ -80.27086389258882,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ],
+ [
+ -80.23097657374205,
+ 25.5377966410534
+ ],
+ [
+ -80.25092023316544,
+ 25.56912214647509
+ ],
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ],
+ [
+ -80.25092023316544,
+ 25.56912214647509
+ ],
+ [
+ -80.2908075520122,
+ 25.56912214647509
+ ],
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ],
+ [
+ -80.2908075520122,
+ 25.56912214647509
+ ],
+ [
+ -80.31075121143559,
+ 25.5377966410534
+ ],
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ],
+ [
+ -80.31075121143559,
+ 25.5377966410534
+ ],
+ [
+ -80.2908075520122,
+ 25.50647113563171
+ ],
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ],
+ [
+ -80.2908075520122,
+ 25.50647113563171
+ ],
+ [
+ -80.25092023316544,
+ 25.50647113563171
+ ],
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ],
+ [
+ -80.25092023316544,
+ 25.50647113563171
+ ],
+ [
+ -80.23097657374205,
+ 25.5377966410534
+ ],
+ [
+ -80.27086389258882,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ],
+ [
+ -80.23097657374205,
+ 25.600447651896786
+ ],
+ [
+ -80.25092023316544,
+ 25.631773157318477
+ ],
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ],
+ [
+ -80.25092023316544,
+ 25.631773157318477
+ ],
+ [
+ -80.2908075520122,
+ 25.631773157318477
+ ],
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ],
+ [
+ -80.2908075520122,
+ 25.631773157318477
+ ],
+ [
+ -80.31075121143559,
+ 25.600447651896786
+ ],
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ],
+ [
+ -80.31075121143559,
+ 25.600447651896786
+ ],
+ [
+ -80.2908075520122,
+ 25.569122146475095
+ ],
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ],
+ [
+ -80.2908075520122,
+ 25.569122146475095
+ ],
+ [
+ -80.25092023316544,
+ 25.569122146475095
+ ],
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ],
+ [
+ -80.25092023316544,
+ 25.569122146475095
+ ],
+ [
+ -80.23097657374205,
+ 25.600447651896786
+ ],
+ [
+ -80.27086389258882,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ],
+ [
+ -80.23097657374205,
+ 25.663098662740172
+ ],
+ [
+ -80.25092023316544,
+ 25.694424168161863
+ ],
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ],
+ [
+ -80.25092023316544,
+ 25.694424168161863
+ ],
+ [
+ -80.2908075520122,
+ 25.694424168161863
+ ],
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ],
+ [
+ -80.2908075520122,
+ 25.694424168161863
+ ],
+ [
+ -80.31075121143559,
+ 25.663098662740172
+ ],
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ],
+ [
+ -80.31075121143559,
+ 25.663098662740172
+ ],
+ [
+ -80.2908075520122,
+ 25.63177315731848
+ ],
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ],
+ [
+ -80.2908075520122,
+ 25.63177315731848
+ ],
+ [
+ -80.25092023316544,
+ 25.63177315731848
+ ],
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ],
+ [
+ -80.25092023316544,
+ 25.63177315731848
+ ],
+ [
+ -80.23097657374205,
+ 25.663098662740172
+ ],
+ [
+ -80.27086389258882,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ],
+ [
+ -80.23097657374205,
+ 25.725749673583557
+ ],
+ [
+ -80.25092023316544,
+ 25.75707517900525
+ ],
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ],
+ [
+ -80.25092023316544,
+ 25.75707517900525
+ ],
+ [
+ -80.2908075520122,
+ 25.75707517900525
+ ],
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ],
+ [
+ -80.2908075520122,
+ 25.75707517900525
+ ],
+ [
+ -80.31075121143559,
+ 25.725749673583557
+ ],
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ],
+ [
+ -80.31075121143559,
+ 25.725749673583557
+ ],
+ [
+ -80.2908075520122,
+ 25.694424168161866
+ ],
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ],
+ [
+ -80.2908075520122,
+ 25.694424168161866
+ ],
+ [
+ -80.25092023316544,
+ 25.694424168161866
+ ],
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ],
+ [
+ -80.25092023316544,
+ 25.694424168161866
+ ],
+ [
+ -80.23097657374205,
+ 25.725749673583557
+ ],
+ [
+ -80.27086389258882,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ],
+ [
+ -80.23097657374205,
+ 25.788400684426943
+ ],
+ [
+ -80.25092023316544,
+ 25.819726189848634
+ ],
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ],
+ [
+ -80.25092023316544,
+ 25.819726189848634
+ ],
+ [
+ -80.2908075520122,
+ 25.819726189848634
+ ],
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ],
+ [
+ -80.2908075520122,
+ 25.819726189848634
+ ],
+ [
+ -80.31075121143559,
+ 25.788400684426943
+ ],
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ],
+ [
+ -80.31075121143559,
+ 25.788400684426943
+ ],
+ [
+ -80.2908075520122,
+ 25.757075179005252
+ ],
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ],
+ [
+ -80.2908075520122,
+ 25.757075179005252
+ ],
+ [
+ -80.25092023316544,
+ 25.757075179005252
+ ],
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ],
+ [
+ -80.25092023316544,
+ 25.757075179005252
+ ],
+ [
+ -80.23097657374205,
+ 25.788400684426943
+ ],
+ [
+ -80.27086389258882,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ],
+ [
+ -80.23097657374205,
+ 25.85105169527033
+ ],
+ [
+ -80.25092023316544,
+ 25.88237720069202
+ ],
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ],
+ [
+ -80.25092023316544,
+ 25.88237720069202
+ ],
+ [
+ -80.2908075520122,
+ 25.88237720069202
+ ],
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ],
+ [
+ -80.2908075520122,
+ 25.88237720069202
+ ],
+ [
+ -80.31075121143559,
+ 25.85105169527033
+ ],
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ],
+ [
+ -80.31075121143559,
+ 25.85105169527033
+ ],
+ [
+ -80.2908075520122,
+ 25.819726189848637
+ ],
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ],
+ [
+ -80.2908075520122,
+ 25.819726189848637
+ ],
+ [
+ -80.25092023316544,
+ 25.819726189848637
+ ],
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ],
+ [
+ -80.25092023316544,
+ 25.819726189848637
+ ],
+ [
+ -80.23097657374205,
+ 25.85105169527033
+ ],
+ [
+ -80.27086389258882,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ],
+ [
+ -80.23097657374205,
+ 25.913702706113714
+ ],
+ [
+ -80.25092023316544,
+ 25.945028211535405
+ ],
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ],
+ [
+ -80.25092023316544,
+ 25.945028211535405
+ ],
+ [
+ -80.2908075520122,
+ 25.945028211535405
+ ],
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ],
+ [
+ -80.2908075520122,
+ 25.945028211535405
+ ],
+ [
+ -80.31075121143559,
+ 25.913702706113714
+ ],
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ],
+ [
+ -80.31075121143559,
+ 25.913702706113714
+ ],
+ [
+ -80.2908075520122,
+ 25.882377200692023
+ ],
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ],
+ [
+ -80.2908075520122,
+ 25.882377200692023
+ ],
+ [
+ -80.25092023316544,
+ 25.882377200692023
+ ],
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ],
+ [
+ -80.25092023316544,
+ 25.882377200692023
+ ],
+ [
+ -80.23097657374205,
+ 25.913702706113714
+ ],
+ [
+ -80.27086389258882,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ],
+ [
+ -80.23097657374205,
+ 25.9763537169571
+ ],
+ [
+ -80.25092023316544,
+ 26.00767922237879
+ ],
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ],
+ [
+ -80.25092023316544,
+ 26.00767922237879
+ ],
+ [
+ -80.2908075520122,
+ 26.00767922237879
+ ],
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ],
+ [
+ -80.2908075520122,
+ 26.00767922237879
+ ],
+ [
+ -80.31075121143559,
+ 25.9763537169571
+ ],
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ],
+ [
+ -80.31075121143559,
+ 25.9763537169571
+ ],
+ [
+ -80.2908075520122,
+ 25.94502821153541
+ ],
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ],
+ [
+ -80.2908075520122,
+ 25.94502821153541
+ ],
+ [
+ -80.25092023316544,
+ 25.94502821153541
+ ],
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ],
+ [
+ -80.25092023316544,
+ 25.94502821153541
+ ],
+ [
+ -80.23097657374205,
+ 25.9763537169571
+ ],
+ [
+ -80.27086389258882,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ],
+ [
+ -80.23097657374205,
+ 26.039004727800485
+ ],
+ [
+ -80.25092023316544,
+ 26.070330233222176
+ ],
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ],
+ [
+ -80.25092023316544,
+ 26.070330233222176
+ ],
+ [
+ -80.2908075520122,
+ 26.070330233222176
+ ],
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ],
+ [
+ -80.2908075520122,
+ 26.070330233222176
+ ],
+ [
+ -80.31075121143559,
+ 26.039004727800485
+ ],
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ],
+ [
+ -80.31075121143559,
+ 26.039004727800485
+ ],
+ [
+ -80.2908075520122,
+ 26.007679222378794
+ ],
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ],
+ [
+ -80.2908075520122,
+ 26.007679222378794
+ ],
+ [
+ -80.25092023316544,
+ 26.007679222378794
+ ],
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ],
+ [
+ -80.25092023316544,
+ 26.007679222378794
+ ],
+ [
+ -80.23097657374205,
+ 26.039004727800485
+ ],
+ [
+ -80.27086389258882,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ],
+ [
+ -80.23097657374205,
+ 26.10165573864387
+ ],
+ [
+ -80.25092023316544,
+ 26.13298124406556
+ ],
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ],
+ [
+ -80.25092023316544,
+ 26.13298124406556
+ ],
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ],
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ],
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ],
+ [
+ -80.31075121143559,
+ 26.10165573864387
+ ],
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ],
+ [
+ -80.31075121143559,
+ 26.10165573864387
+ ],
+ [
+ -80.2908075520122,
+ 26.07033023322218
+ ],
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ],
+ [
+ -80.2908075520122,
+ 26.07033023322218
+ ],
+ [
+ -80.25092023316544,
+ 26.07033023322218
+ ],
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ],
+ [
+ -80.25092023316544,
+ 26.07033023322218
+ ],
+ [
+ -80.23097657374205,
+ 26.10165573864387
+ ],
+ [
+ -80.27086389258882,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ],
+ [
+ -80.23097657374205,
+ 26.164306749487253
+ ],
+ [
+ -80.25092023316544,
+ 26.195632254908944
+ ],
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ],
+ [
+ -80.25092023316544,
+ 26.195632254908944
+ ],
+ [
+ -80.2908075520122,
+ 26.195632254908944
+ ],
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ],
+ [
+ -80.2908075520122,
+ 26.195632254908944
+ ],
+ [
+ -80.31075121143559,
+ 26.164306749487253
+ ],
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ],
+ [
+ -80.31075121143559,
+ 26.164306749487253
+ ],
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ],
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ],
+ [
+ -80.2908075520122,
+ 26.13298124406556
+ ],
+ [
+ -80.25092023316544,
+ 26.13298124406556
+ ],
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ],
+ [
+ -80.25092023316544,
+ 26.13298124406556
+ ],
+ [
+ -80.23097657374205,
+ 26.164306749487253
+ ],
+ [
+ -80.27086389258882,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ],
+ [
+ -80.23097657374205,
+ 26.22695776033064
+ ],
+ [
+ -80.25092023316544,
+ 26.258283265752333
+ ],
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ],
+ [
+ -80.25092023316544,
+ 26.258283265752333
+ ],
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ],
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ],
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ],
+ [
+ -80.31075121143559,
+ 26.22695776033064
+ ],
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ],
+ [
+ -80.31075121143559,
+ 26.22695776033064
+ ],
+ [
+ -80.2908075520122,
+ 26.19563225490895
+ ],
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ],
+ [
+ -80.2908075520122,
+ 26.19563225490895
+ ],
+ [
+ -80.25092023316544,
+ 26.19563225490895
+ ],
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ],
+ [
+ -80.25092023316544,
+ 26.19563225490895
+ ],
+ [
+ -80.23097657374205,
+ 26.22695776033064
+ ],
+ [
+ -80.27086389258882,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ],
+ [
+ -80.23097657374205,
+ 26.289608771174024
+ ],
+ [
+ -80.25092023316544,
+ 26.320934276595715
+ ],
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ],
+ [
+ -80.25092023316544,
+ 26.320934276595715
+ ],
+ [
+ -80.2908075520122,
+ 26.320934276595715
+ ],
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ],
+ [
+ -80.2908075520122,
+ 26.320934276595715
+ ],
+ [
+ -80.31075121143559,
+ 26.289608771174024
+ ],
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ],
+ [
+ -80.31075121143559,
+ 26.289608771174024
+ ],
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ],
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ],
+ [
+ -80.2908075520122,
+ 26.258283265752333
+ ],
+ [
+ -80.25092023316544,
+ 26.258283265752333
+ ],
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ],
+ [
+ -80.25092023316544,
+ 26.258283265752333
+ ],
+ [
+ -80.23097657374205,
+ 26.289608771174024
+ ],
+ [
+ -80.27086389258882,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ],
+ [
+ -80.23097657374205,
+ 26.35225978201741
+ ],
+ [
+ -80.25092023316544,
+ 26.3835852874391
+ ],
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ],
+ [
+ -80.25092023316544,
+ 26.3835852874391
+ ],
+ [
+ -80.2908075520122,
+ 26.3835852874391
+ ],
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ],
+ [
+ -80.2908075520122,
+ 26.3835852874391
+ ],
+ [
+ -80.31075121143559,
+ 26.35225978201741
+ ],
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ],
+ [
+ -80.31075121143559,
+ 26.35225978201741
+ ],
+ [
+ -80.2908075520122,
+ 26.320934276595718
+ ],
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ],
+ [
+ -80.2908075520122,
+ 26.320934276595718
+ ],
+ [
+ -80.25092023316544,
+ 26.320934276595718
+ ],
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ],
+ [
+ -80.25092023316544,
+ 26.320934276595718
+ ],
+ [
+ -80.23097657374205,
+ 26.35225978201741
+ ],
+ [
+ -80.27086389258882,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ],
+ [
+ -80.23097657374205,
+ 26.414910792860795
+ ],
+ [
+ -80.25092023316544,
+ 26.446236298282486
+ ],
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ],
+ [
+ -80.25092023316544,
+ 26.446236298282486
+ ],
+ [
+ -80.2908075520122,
+ 26.446236298282486
+ ],
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ],
+ [
+ -80.2908075520122,
+ 26.446236298282486
+ ],
+ [
+ -80.31075121143559,
+ 26.414910792860795
+ ],
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ],
+ [
+ -80.31075121143559,
+ 26.414910792860795
+ ],
+ [
+ -80.2908075520122,
+ 26.383585287439104
+ ],
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ],
+ [
+ -80.2908075520122,
+ 26.383585287439104
+ ],
+ [
+ -80.25092023316544,
+ 26.383585287439104
+ ],
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ],
+ [
+ -80.25092023316544,
+ 26.383585287439104
+ ],
+ [
+ -80.23097657374205,
+ 26.414910792860795
+ ],
+ [
+ -80.27086389258882,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ],
+ [
+ -80.1711455954719,
+ 24.942612038041236
+ ],
+ [
+ -80.19108925489529,
+ 24.973937543462927
+ ],
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ],
+ [
+ -80.19108925489529,
+ 24.973937543462927
+ ],
+ [
+ -80.23097657374204,
+ 24.973937543462927
+ ],
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ],
+ [
+ -80.23097657374204,
+ 24.973937543462927
+ ],
+ [
+ -80.25092023316543,
+ 24.942612038041236
+ ],
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ],
+ [
+ -80.25092023316543,
+ 24.942612038041236
+ ],
+ [
+ -80.23097657374204,
+ 24.911286532619545
+ ],
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ],
+ [
+ -80.23097657374204,
+ 24.911286532619545
+ ],
+ [
+ -80.19108925489529,
+ 24.911286532619545
+ ],
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ],
+ [
+ -80.19108925489529,
+ 24.911286532619545
+ ],
+ [
+ -80.1711455954719,
+ 24.942612038041236
+ ],
+ [
+ -80.21103291431866,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ],
+ [
+ -80.1711455954719,
+ 25.005263048884622
+ ],
+ [
+ -80.19108925489529,
+ 25.036588554306313
+ ],
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ],
+ [
+ -80.19108925489529,
+ 25.036588554306313
+ ],
+ [
+ -80.23097657374204,
+ 25.036588554306313
+ ],
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ],
+ [
+ -80.23097657374204,
+ 25.036588554306313
+ ],
+ [
+ -80.25092023316543,
+ 25.005263048884622
+ ],
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ],
+ [
+ -80.25092023316543,
+ 25.005263048884622
+ ],
+ [
+ -80.23097657374204,
+ 24.97393754346293
+ ],
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ],
+ [
+ -80.23097657374204,
+ 24.97393754346293
+ ],
+ [
+ -80.19108925489529,
+ 24.97393754346293
+ ],
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ],
+ [
+ -80.19108925489529,
+ 24.97393754346293
+ ],
+ [
+ -80.1711455954719,
+ 25.005263048884622
+ ],
+ [
+ -80.21103291431866,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ],
+ [
+ -80.1711455954719,
+ 25.067914059728007
+ ],
+ [
+ -80.19108925489529,
+ 25.0992395651497
+ ],
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ],
+ [
+ -80.19108925489529,
+ 25.0992395651497
+ ],
+ [
+ -80.23097657374204,
+ 25.0992395651497
+ ],
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ],
+ [
+ -80.23097657374204,
+ 25.0992395651497
+ ],
+ [
+ -80.25092023316543,
+ 25.067914059728007
+ ],
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ],
+ [
+ -80.25092023316543,
+ 25.067914059728007
+ ],
+ [
+ -80.23097657374204,
+ 25.036588554306316
+ ],
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ],
+ [
+ -80.23097657374204,
+ 25.036588554306316
+ ],
+ [
+ -80.19108925489529,
+ 25.036588554306316
+ ],
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ],
+ [
+ -80.19108925489529,
+ 25.036588554306316
+ ],
+ [
+ -80.1711455954719,
+ 25.067914059728007
+ ],
+ [
+ -80.21103291431866,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ],
+ [
+ -80.1711455954719,
+ 25.130565070571393
+ ],
+ [
+ -80.19108925489529,
+ 25.161890575993084
+ ],
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ],
+ [
+ -80.19108925489529,
+ 25.161890575993084
+ ],
+ [
+ -80.23097657374204,
+ 25.161890575993084
+ ],
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ],
+ [
+ -80.23097657374204,
+ 25.161890575993084
+ ],
+ [
+ -80.25092023316543,
+ 25.130565070571393
+ ],
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ],
+ [
+ -80.25092023316543,
+ 25.130565070571393
+ ],
+ [
+ -80.23097657374204,
+ 25.099239565149702
+ ],
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ],
+ [
+ -80.23097657374204,
+ 25.099239565149702
+ ],
+ [
+ -80.19108925489529,
+ 25.099239565149702
+ ],
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ],
+ [
+ -80.19108925489529,
+ 25.099239565149702
+ ],
+ [
+ -80.1711455954719,
+ 25.130565070571393
+ ],
+ [
+ -80.21103291431866,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ],
+ [
+ -80.1711455954719,
+ 25.19321608141478
+ ],
+ [
+ -80.19108925489529,
+ 25.22454158683647
+ ],
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ],
+ [
+ -80.19108925489529,
+ 25.22454158683647
+ ],
+ [
+ -80.23097657374204,
+ 25.22454158683647
+ ],
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ],
+ [
+ -80.23097657374204,
+ 25.22454158683647
+ ],
+ [
+ -80.25092023316543,
+ 25.19321608141478
+ ],
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ],
+ [
+ -80.25092023316543,
+ 25.19321608141478
+ ],
+ [
+ -80.23097657374204,
+ 25.161890575993088
+ ],
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ],
+ [
+ -80.23097657374204,
+ 25.161890575993088
+ ],
+ [
+ -80.19108925489529,
+ 25.161890575993088
+ ],
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ],
+ [
+ -80.19108925489529,
+ 25.161890575993088
+ ],
+ [
+ -80.1711455954719,
+ 25.19321608141478
+ ],
+ [
+ -80.21103291431866,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ],
+ [
+ -80.1711455954719,
+ 25.255867092258164
+ ],
+ [
+ -80.19108925489529,
+ 25.287192597679855
+ ],
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ],
+ [
+ -80.19108925489529,
+ 25.287192597679855
+ ],
+ [
+ -80.23097657374204,
+ 25.287192597679855
+ ],
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ],
+ [
+ -80.23097657374204,
+ 25.287192597679855
+ ],
+ [
+ -80.25092023316543,
+ 25.255867092258164
+ ],
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ],
+ [
+ -80.25092023316543,
+ 25.255867092258164
+ ],
+ [
+ -80.23097657374204,
+ 25.224541586836473
+ ],
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ],
+ [
+ -80.23097657374204,
+ 25.224541586836473
+ ],
+ [
+ -80.19108925489529,
+ 25.224541586836473
+ ],
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ],
+ [
+ -80.19108925489529,
+ 25.224541586836473
+ ],
+ [
+ -80.1711455954719,
+ 25.255867092258164
+ ],
+ [
+ -80.21103291431866,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ],
+ [
+ -80.1711455954719,
+ 25.31851810310155
+ ],
+ [
+ -80.19108925489529,
+ 25.34984360852324
+ ],
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ],
+ [
+ -80.19108925489529,
+ 25.34984360852324
+ ],
+ [
+ -80.23097657374204,
+ 25.34984360852324
+ ],
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ],
+ [
+ -80.23097657374204,
+ 25.34984360852324
+ ],
+ [
+ -80.25092023316543,
+ 25.31851810310155
+ ],
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ],
+ [
+ -80.25092023316543,
+ 25.31851810310155
+ ],
+ [
+ -80.23097657374204,
+ 25.28719259767986
+ ],
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ],
+ [
+ -80.23097657374204,
+ 25.28719259767986
+ ],
+ [
+ -80.19108925489529,
+ 25.28719259767986
+ ],
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ],
+ [
+ -80.19108925489529,
+ 25.28719259767986
+ ],
+ [
+ -80.1711455954719,
+ 25.31851810310155
+ ],
+ [
+ -80.21103291431866,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ],
+ [
+ -80.1711455954719,
+ 25.381169113944935
+ ],
+ [
+ -80.19108925489529,
+ 25.412494619366626
+ ],
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ],
+ [
+ -80.19108925489529,
+ 25.412494619366626
+ ],
+ [
+ -80.23097657374204,
+ 25.412494619366626
+ ],
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ],
+ [
+ -80.23097657374204,
+ 25.412494619366626
+ ],
+ [
+ -80.25092023316543,
+ 25.381169113944935
+ ],
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ],
+ [
+ -80.25092023316543,
+ 25.381169113944935
+ ],
+ [
+ -80.23097657374204,
+ 25.349843608523244
+ ],
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ],
+ [
+ -80.23097657374204,
+ 25.349843608523244
+ ],
+ [
+ -80.19108925489529,
+ 25.349843608523244
+ ],
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ],
+ [
+ -80.19108925489529,
+ 25.349843608523244
+ ],
+ [
+ -80.1711455954719,
+ 25.381169113944935
+ ],
+ [
+ -80.21103291431866,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ],
+ [
+ -80.1711455954719,
+ 25.44382012478832
+ ],
+ [
+ -80.19108925489529,
+ 25.47514563021001
+ ],
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ],
+ [
+ -80.19108925489529,
+ 25.47514563021001
+ ],
+ [
+ -80.23097657374204,
+ 25.47514563021001
+ ],
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ],
+ [
+ -80.23097657374204,
+ 25.47514563021001
+ ],
+ [
+ -80.25092023316543,
+ 25.44382012478832
+ ],
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ],
+ [
+ -80.25092023316543,
+ 25.44382012478832
+ ],
+ [
+ -80.23097657374204,
+ 25.41249461936663
+ ],
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ],
+ [
+ -80.23097657374204,
+ 25.41249461936663
+ ],
+ [
+ -80.19108925489529,
+ 25.41249461936663
+ ],
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ],
+ [
+ -80.19108925489529,
+ 25.41249461936663
+ ],
+ [
+ -80.1711455954719,
+ 25.44382012478832
+ ],
+ [
+ -80.21103291431866,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ],
+ [
+ -80.1711455954719,
+ 25.506471135631706
+ ],
+ [
+ -80.19108925489529,
+ 25.537796641053397
+ ],
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ],
+ [
+ -80.19108925489529,
+ 25.537796641053397
+ ],
+ [
+ -80.23097657374204,
+ 25.537796641053397
+ ],
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ],
+ [
+ -80.23097657374204,
+ 25.537796641053397
+ ],
+ [
+ -80.25092023316543,
+ 25.506471135631706
+ ],
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ],
+ [
+ -80.25092023316543,
+ 25.506471135631706
+ ],
+ [
+ -80.23097657374204,
+ 25.475145630210015
+ ],
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ],
+ [
+ -80.23097657374204,
+ 25.475145630210015
+ ],
+ [
+ -80.19108925489529,
+ 25.475145630210015
+ ],
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ],
+ [
+ -80.19108925489529,
+ 25.475145630210015
+ ],
+ [
+ -80.1711455954719,
+ 25.506471135631706
+ ],
+ [
+ -80.21103291431866,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ],
+ [
+ -80.1711455954719,
+ 25.56912214647509
+ ],
+ [
+ -80.19108925489529,
+ 25.600447651896783
+ ],
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ],
+ [
+ -80.19108925489529,
+ 25.600447651896783
+ ],
+ [
+ -80.23097657374204,
+ 25.600447651896783
+ ],
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ],
+ [
+ -80.23097657374204,
+ 25.600447651896783
+ ],
+ [
+ -80.25092023316543,
+ 25.56912214647509
+ ],
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ],
+ [
+ -80.25092023316543,
+ 25.56912214647509
+ ],
+ [
+ -80.23097657374204,
+ 25.5377966410534
+ ],
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ],
+ [
+ -80.23097657374204,
+ 25.5377966410534
+ ],
+ [
+ -80.19108925489529,
+ 25.5377966410534
+ ],
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ],
+ [
+ -80.19108925489529,
+ 25.5377966410534
+ ],
+ [
+ -80.1711455954719,
+ 25.56912214647509
+ ],
+ [
+ -80.21103291431866,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ],
+ [
+ -80.1711455954719,
+ 25.631773157318477
+ ],
+ [
+ -80.19108925489529,
+ 25.66309866274017
+ ],
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ],
+ [
+ -80.19108925489529,
+ 25.66309866274017
+ ],
+ [
+ -80.23097657374204,
+ 25.66309866274017
+ ],
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ],
+ [
+ -80.23097657374204,
+ 25.66309866274017
+ ],
+ [
+ -80.25092023316543,
+ 25.631773157318477
+ ],
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ],
+ [
+ -80.25092023316543,
+ 25.631773157318477
+ ],
+ [
+ -80.23097657374204,
+ 25.600447651896786
+ ],
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ],
+ [
+ -80.23097657374204,
+ 25.600447651896786
+ ],
+ [
+ -80.19108925489529,
+ 25.600447651896786
+ ],
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ],
+ [
+ -80.19108925489529,
+ 25.600447651896786
+ ],
+ [
+ -80.1711455954719,
+ 25.631773157318477
+ ],
+ [
+ -80.21103291431866,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ],
+ [
+ -80.1711455954719,
+ 25.694424168161863
+ ],
+ [
+ -80.19108925489529,
+ 25.725749673583554
+ ],
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ],
+ [
+ -80.19108925489529,
+ 25.725749673583554
+ ],
+ [
+ -80.23097657374204,
+ 25.725749673583554
+ ],
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ],
+ [
+ -80.23097657374204,
+ 25.725749673583554
+ ],
+ [
+ -80.25092023316543,
+ 25.694424168161863
+ ],
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ],
+ [
+ -80.25092023316543,
+ 25.694424168161863
+ ],
+ [
+ -80.23097657374204,
+ 25.663098662740172
+ ],
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ],
+ [
+ -80.23097657374204,
+ 25.663098662740172
+ ],
+ [
+ -80.19108925489529,
+ 25.663098662740172
+ ],
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ],
+ [
+ -80.19108925489529,
+ 25.663098662740172
+ ],
+ [
+ -80.1711455954719,
+ 25.694424168161863
+ ],
+ [
+ -80.21103291431866,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ],
+ [
+ -80.1711455954719,
+ 25.75707517900525
+ ],
+ [
+ -80.19108925489529,
+ 25.78840068442694
+ ],
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ],
+ [
+ -80.19108925489529,
+ 25.78840068442694
+ ],
+ [
+ -80.23097657374204,
+ 25.78840068442694
+ ],
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ],
+ [
+ -80.23097657374204,
+ 25.78840068442694
+ ],
+ [
+ -80.25092023316543,
+ 25.75707517900525
+ ],
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ],
+ [
+ -80.25092023316543,
+ 25.75707517900525
+ ],
+ [
+ -80.23097657374204,
+ 25.725749673583557
+ ],
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ],
+ [
+ -80.23097657374204,
+ 25.725749673583557
+ ],
+ [
+ -80.19108925489529,
+ 25.725749673583557
+ ],
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ],
+ [
+ -80.19108925489529,
+ 25.725749673583557
+ ],
+ [
+ -80.1711455954719,
+ 25.75707517900525
+ ],
+ [
+ -80.21103291431866,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ],
+ [
+ -80.1711455954719,
+ 25.819726189848634
+ ],
+ [
+ -80.19108925489529,
+ 25.851051695270325
+ ],
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ],
+ [
+ -80.19108925489529,
+ 25.851051695270325
+ ],
+ [
+ -80.23097657374204,
+ 25.851051695270325
+ ],
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ],
+ [
+ -80.23097657374204,
+ 25.851051695270325
+ ],
+ [
+ -80.25092023316543,
+ 25.819726189848634
+ ],
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ],
+ [
+ -80.25092023316543,
+ 25.819726189848634
+ ],
+ [
+ -80.23097657374204,
+ 25.788400684426943
+ ],
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ],
+ [
+ -80.23097657374204,
+ 25.788400684426943
+ ],
+ [
+ -80.19108925489529,
+ 25.788400684426943
+ ],
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ],
+ [
+ -80.19108925489529,
+ 25.788400684426943
+ ],
+ [
+ -80.1711455954719,
+ 25.819726189848634
+ ],
+ [
+ -80.21103291431866,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ],
+ [
+ -80.1711455954719,
+ 25.88237720069202
+ ],
+ [
+ -80.19108925489529,
+ 25.91370270611371
+ ],
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ],
+ [
+ -80.19108925489529,
+ 25.91370270611371
+ ],
+ [
+ -80.23097657374204,
+ 25.91370270611371
+ ],
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ],
+ [
+ -80.23097657374204,
+ 25.91370270611371
+ ],
+ [
+ -80.25092023316543,
+ 25.88237720069202
+ ],
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ],
+ [
+ -80.25092023316543,
+ 25.88237720069202
+ ],
+ [
+ -80.23097657374204,
+ 25.85105169527033
+ ],
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ],
+ [
+ -80.23097657374204,
+ 25.85105169527033
+ ],
+ [
+ -80.19108925489529,
+ 25.85105169527033
+ ],
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ],
+ [
+ -80.19108925489529,
+ 25.85105169527033
+ ],
+ [
+ -80.1711455954719,
+ 25.88237720069202
+ ],
+ [
+ -80.21103291431866,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ],
+ [
+ -80.1711455954719,
+ 25.945028211535405
+ ],
+ [
+ -80.19108925489529,
+ 25.976353716957096
+ ],
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ],
+ [
+ -80.19108925489529,
+ 25.976353716957096
+ ],
+ [
+ -80.23097657374204,
+ 25.976353716957096
+ ],
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ],
+ [
+ -80.23097657374204,
+ 25.976353716957096
+ ],
+ [
+ -80.25092023316543,
+ 25.945028211535405
+ ],
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ],
+ [
+ -80.25092023316543,
+ 25.945028211535405
+ ],
+ [
+ -80.23097657374204,
+ 25.913702706113714
+ ],
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ],
+ [
+ -80.23097657374204,
+ 25.913702706113714
+ ],
+ [
+ -80.19108925489529,
+ 25.913702706113714
+ ],
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ],
+ [
+ -80.19108925489529,
+ 25.913702706113714
+ ],
+ [
+ -80.1711455954719,
+ 25.945028211535405
+ ],
+ [
+ -80.21103291431866,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ],
+ [
+ -80.1711455954719,
+ 26.00767922237879
+ ],
+ [
+ -80.19108925489529,
+ 26.03900472780048
+ ],
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ],
+ [
+ -80.19108925489529,
+ 26.03900472780048
+ ],
+ [
+ -80.23097657374204,
+ 26.03900472780048
+ ],
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ],
+ [
+ -80.23097657374204,
+ 26.03900472780048
+ ],
+ [
+ -80.25092023316543,
+ 26.00767922237879
+ ],
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ],
+ [
+ -80.25092023316543,
+ 26.00767922237879
+ ],
+ [
+ -80.23097657374204,
+ 25.9763537169571
+ ],
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ],
+ [
+ -80.23097657374204,
+ 25.9763537169571
+ ],
+ [
+ -80.19108925489529,
+ 25.9763537169571
+ ],
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ],
+ [
+ -80.19108925489529,
+ 25.9763537169571
+ ],
+ [
+ -80.1711455954719,
+ 26.00767922237879
+ ],
+ [
+ -80.21103291431866,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ],
+ [
+ -80.1711455954719,
+ 26.070330233222176
+ ],
+ [
+ -80.19108925489529,
+ 26.101655738643867
+ ],
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ],
+ [
+ -80.19108925489529,
+ 26.101655738643867
+ ],
+ [
+ -80.23097657374204,
+ 26.101655738643867
+ ],
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ],
+ [
+ -80.23097657374204,
+ 26.101655738643867
+ ],
+ [
+ -80.25092023316543,
+ 26.070330233222176
+ ],
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ],
+ [
+ -80.25092023316543,
+ 26.070330233222176
+ ],
+ [
+ -80.23097657374204,
+ 26.039004727800485
+ ],
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ],
+ [
+ -80.23097657374204,
+ 26.039004727800485
+ ],
+ [
+ -80.19108925489529,
+ 26.039004727800485
+ ],
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ],
+ [
+ -80.19108925489529,
+ 26.039004727800485
+ ],
+ [
+ -80.1711455954719,
+ 26.070330233222176
+ ],
+ [
+ -80.21103291431866,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ],
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ],
+ [
+ -80.19108925489529,
+ 26.164306749487253
+ ],
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ],
+ [
+ -80.19108925489529,
+ 26.164306749487253
+ ],
+ [
+ -80.23097657374204,
+ 26.164306749487253
+ ],
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ],
+ [
+ -80.23097657374204,
+ 26.164306749487253
+ ],
+ [
+ -80.25092023316543,
+ 26.13298124406556
+ ],
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ],
+ [
+ -80.25092023316543,
+ 26.13298124406556
+ ],
+ [
+ -80.23097657374204,
+ 26.10165573864387
+ ],
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ],
+ [
+ -80.23097657374204,
+ 26.10165573864387
+ ],
+ [
+ -80.19108925489529,
+ 26.10165573864387
+ ],
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ],
+ [
+ -80.19108925489529,
+ 26.10165573864387
+ ],
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ],
+ [
+ -80.21103291431866,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ],
+ [
+ -80.1711455954719,
+ 26.195632254908944
+ ],
+ [
+ -80.19108925489529,
+ 26.226957760330635
+ ],
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ],
+ [
+ -80.19108925489529,
+ 26.226957760330635
+ ],
+ [
+ -80.23097657374204,
+ 26.226957760330635
+ ],
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ],
+ [
+ -80.23097657374204,
+ 26.226957760330635
+ ],
+ [
+ -80.25092023316543,
+ 26.195632254908944
+ ],
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ],
+ [
+ -80.25092023316543,
+ 26.195632254908944
+ ],
+ [
+ -80.23097657374204,
+ 26.164306749487253
+ ],
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ],
+ [
+ -80.23097657374204,
+ 26.164306749487253
+ ],
+ [
+ -80.19108925489529,
+ 26.164306749487253
+ ],
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ],
+ [
+ -80.19108925489529,
+ 26.164306749487253
+ ],
+ [
+ -80.1711455954719,
+ 26.195632254908944
+ ],
+ [
+ -80.21103291431866,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ],
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ],
+ [
+ -80.19108925489529,
+ 26.289608771174024
+ ],
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ],
+ [
+ -80.19108925489529,
+ 26.289608771174024
+ ],
+ [
+ -80.23097657374204,
+ 26.289608771174024
+ ],
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ],
+ [
+ -80.23097657374204,
+ 26.289608771174024
+ ],
+ [
+ -80.25092023316543,
+ 26.258283265752333
+ ],
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ],
+ [
+ -80.25092023316543,
+ 26.258283265752333
+ ],
+ [
+ -80.23097657374204,
+ 26.22695776033064
+ ],
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ],
+ [
+ -80.23097657374204,
+ 26.22695776033064
+ ],
+ [
+ -80.19108925489529,
+ 26.22695776033064
+ ],
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ],
+ [
+ -80.19108925489529,
+ 26.22695776033064
+ ],
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ],
+ [
+ -80.21103291431866,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ],
+ [
+ -80.1711455954719,
+ 26.320934276595715
+ ],
+ [
+ -80.19108925489529,
+ 26.352259782017406
+ ],
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ],
+ [
+ -80.19108925489529,
+ 26.352259782017406
+ ],
+ [
+ -80.23097657374204,
+ 26.352259782017406
+ ],
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ],
+ [
+ -80.23097657374204,
+ 26.352259782017406
+ ],
+ [
+ -80.25092023316543,
+ 26.320934276595715
+ ],
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ],
+ [
+ -80.25092023316543,
+ 26.320934276595715
+ ],
+ [
+ -80.23097657374204,
+ 26.289608771174024
+ ],
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ],
+ [
+ -80.23097657374204,
+ 26.289608771174024
+ ],
+ [
+ -80.19108925489529,
+ 26.289608771174024
+ ],
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ],
+ [
+ -80.19108925489529,
+ 26.289608771174024
+ ],
+ [
+ -80.1711455954719,
+ 26.320934276595715
+ ],
+ [
+ -80.21103291431866,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ],
+ [
+ -80.1711455954719,
+ 26.3835852874391
+ ],
+ [
+ -80.19108925489529,
+ 26.41491079286079
+ ],
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ],
+ [
+ -80.19108925489529,
+ 26.41491079286079
+ ],
+ [
+ -80.23097657374204,
+ 26.41491079286079
+ ],
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ],
+ [
+ -80.23097657374204,
+ 26.41491079286079
+ ],
+ [
+ -80.25092023316543,
+ 26.3835852874391
+ ],
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ],
+ [
+ -80.25092023316543,
+ 26.3835852874391
+ ],
+ [
+ -80.23097657374204,
+ 26.35225978201741
+ ],
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ],
+ [
+ -80.23097657374204,
+ 26.35225978201741
+ ],
+ [
+ -80.19108925489529,
+ 26.35225978201741
+ ],
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ],
+ [
+ -80.19108925489529,
+ 26.35225978201741
+ ],
+ [
+ -80.1711455954719,
+ 26.3835852874391
+ ],
+ [
+ -80.21103291431866,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ],
+ [
+ -80.1711455954719,
+ 26.446236298282486
+ ],
+ [
+ -80.19108925489529,
+ 26.477561803704177
+ ],
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ],
+ [
+ -80.19108925489529,
+ 26.477561803704177
+ ],
+ [
+ -80.23097657374204,
+ 26.477561803704177
+ ],
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ],
+ [
+ -80.23097657374204,
+ 26.477561803704177
+ ],
+ [
+ -80.25092023316543,
+ 26.446236298282486
+ ],
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ],
+ [
+ -80.25092023316543,
+ 26.446236298282486
+ ],
+ [
+ -80.23097657374204,
+ 26.414910792860795
+ ],
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ],
+ [
+ -80.23097657374204,
+ 26.414910792860795
+ ],
+ [
+ -80.19108925489529,
+ 26.414910792860795
+ ],
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ],
+ [
+ -80.19108925489529,
+ 26.414910792860795
+ ],
+ [
+ -80.1711455954719,
+ 26.446236298282486
+ ],
+ [
+ -80.21103291431866,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ],
+ [
+ -80.11131461720176,
+ 24.911286532619545
+ ],
+ [
+ -80.13125827662515,
+ 24.942612038041236
+ ],
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ],
+ [
+ -80.13125827662515,
+ 24.942612038041236
+ ],
+ [
+ -80.1711455954719,
+ 24.942612038041236
+ ],
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ],
+ [
+ -80.1711455954719,
+ 24.942612038041236
+ ],
+ [
+ -80.19108925489529,
+ 24.911286532619545
+ ],
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ],
+ [
+ -80.19108925489529,
+ 24.911286532619545
+ ],
+ [
+ -80.1711455954719,
+ 24.879961027197854
+ ],
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ],
+ [
+ -80.1711455954719,
+ 24.879961027197854
+ ],
+ [
+ -80.13125827662515,
+ 24.879961027197854
+ ],
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ],
+ [
+ -80.13125827662515,
+ 24.879961027197854
+ ],
+ [
+ -80.11131461720176,
+ 24.911286532619545
+ ],
+ [
+ -80.15120193604852,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ],
+ [
+ -80.11131461720176,
+ 24.97393754346293
+ ],
+ [
+ -80.13125827662515,
+ 25.005263048884622
+ ],
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ],
+ [
+ -80.13125827662515,
+ 25.005263048884622
+ ],
+ [
+ -80.1711455954719,
+ 25.005263048884622
+ ],
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ],
+ [
+ -80.1711455954719,
+ 25.005263048884622
+ ],
+ [
+ -80.19108925489529,
+ 24.97393754346293
+ ],
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ],
+ [
+ -80.19108925489529,
+ 24.97393754346293
+ ],
+ [
+ -80.1711455954719,
+ 24.94261203804124
+ ],
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ],
+ [
+ -80.1711455954719,
+ 24.94261203804124
+ ],
+ [
+ -80.13125827662515,
+ 24.94261203804124
+ ],
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ],
+ [
+ -80.13125827662515,
+ 24.94261203804124
+ ],
+ [
+ -80.11131461720176,
+ 24.97393754346293
+ ],
+ [
+ -80.15120193604852,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ],
+ [
+ -80.11131461720176,
+ 25.036588554306316
+ ],
+ [
+ -80.13125827662515,
+ 25.067914059728007
+ ],
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ],
+ [
+ -80.13125827662515,
+ 25.067914059728007
+ ],
+ [
+ -80.1711455954719,
+ 25.067914059728007
+ ],
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ],
+ [
+ -80.1711455954719,
+ 25.067914059728007
+ ],
+ [
+ -80.19108925489529,
+ 25.036588554306316
+ ],
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ],
+ [
+ -80.19108925489529,
+ 25.036588554306316
+ ],
+ [
+ -80.1711455954719,
+ 25.005263048884625
+ ],
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ],
+ [
+ -80.1711455954719,
+ 25.005263048884625
+ ],
+ [
+ -80.13125827662515,
+ 25.005263048884625
+ ],
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ],
+ [
+ -80.13125827662515,
+ 25.005263048884625
+ ],
+ [
+ -80.11131461720176,
+ 25.036588554306316
+ ],
+ [
+ -80.15120193604852,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ],
+ [
+ -80.11131461720176,
+ 25.099239565149702
+ ],
+ [
+ -80.13125827662515,
+ 25.130565070571393
+ ],
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ],
+ [
+ -80.13125827662515,
+ 25.130565070571393
+ ],
+ [
+ -80.1711455954719,
+ 25.130565070571393
+ ],
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ],
+ [
+ -80.1711455954719,
+ 25.130565070571393
+ ],
+ [
+ -80.19108925489529,
+ 25.099239565149702
+ ],
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ],
+ [
+ -80.19108925489529,
+ 25.099239565149702
+ ],
+ [
+ -80.1711455954719,
+ 25.06791405972801
+ ],
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ],
+ [
+ -80.1711455954719,
+ 25.06791405972801
+ ],
+ [
+ -80.13125827662515,
+ 25.06791405972801
+ ],
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ],
+ [
+ -80.13125827662515,
+ 25.06791405972801
+ ],
+ [
+ -80.11131461720176,
+ 25.099239565149702
+ ],
+ [
+ -80.15120193604852,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ],
+ [
+ -80.11131461720176,
+ 25.161890575993088
+ ],
+ [
+ -80.13125827662515,
+ 25.19321608141478
+ ],
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ],
+ [
+ -80.13125827662515,
+ 25.19321608141478
+ ],
+ [
+ -80.1711455954719,
+ 25.19321608141478
+ ],
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ],
+ [
+ -80.1711455954719,
+ 25.19321608141478
+ ],
+ [
+ -80.19108925489529,
+ 25.161890575993088
+ ],
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ],
+ [
+ -80.19108925489529,
+ 25.161890575993088
+ ],
+ [
+ -80.1711455954719,
+ 25.130565070571397
+ ],
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ],
+ [
+ -80.1711455954719,
+ 25.130565070571397
+ ],
+ [
+ -80.13125827662515,
+ 25.130565070571397
+ ],
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ],
+ [
+ -80.13125827662515,
+ 25.130565070571397
+ ],
+ [
+ -80.11131461720176,
+ 25.161890575993088
+ ],
+ [
+ -80.15120193604852,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ],
+ [
+ -80.11131461720176,
+ 25.224541586836473
+ ],
+ [
+ -80.13125827662515,
+ 25.255867092258164
+ ],
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ],
+ [
+ -80.13125827662515,
+ 25.255867092258164
+ ],
+ [
+ -80.1711455954719,
+ 25.255867092258164
+ ],
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ],
+ [
+ -80.1711455954719,
+ 25.255867092258164
+ ],
+ [
+ -80.19108925489529,
+ 25.224541586836473
+ ],
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ],
+ [
+ -80.19108925489529,
+ 25.224541586836473
+ ],
+ [
+ -80.1711455954719,
+ 25.193216081414782
+ ],
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ],
+ [
+ -80.1711455954719,
+ 25.193216081414782
+ ],
+ [
+ -80.13125827662515,
+ 25.193216081414782
+ ],
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ],
+ [
+ -80.13125827662515,
+ 25.193216081414782
+ ],
+ [
+ -80.11131461720176,
+ 25.224541586836473
+ ],
+ [
+ -80.15120193604852,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ],
+ [
+ -80.11131461720176,
+ 25.28719259767986
+ ],
+ [
+ -80.13125827662515,
+ 25.31851810310155
+ ],
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ],
+ [
+ -80.13125827662515,
+ 25.31851810310155
+ ],
+ [
+ -80.1711455954719,
+ 25.31851810310155
+ ],
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ],
+ [
+ -80.1711455954719,
+ 25.31851810310155
+ ],
+ [
+ -80.19108925489529,
+ 25.28719259767986
+ ],
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ],
+ [
+ -80.19108925489529,
+ 25.28719259767986
+ ],
+ [
+ -80.1711455954719,
+ 25.255867092258168
+ ],
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ],
+ [
+ -80.1711455954719,
+ 25.255867092258168
+ ],
+ [
+ -80.13125827662515,
+ 25.255867092258168
+ ],
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ],
+ [
+ -80.13125827662515,
+ 25.255867092258168
+ ],
+ [
+ -80.11131461720176,
+ 25.28719259767986
+ ],
+ [
+ -80.15120193604852,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ],
+ [
+ -80.11131461720176,
+ 25.349843608523244
+ ],
+ [
+ -80.13125827662515,
+ 25.381169113944935
+ ],
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ],
+ [
+ -80.13125827662515,
+ 25.381169113944935
+ ],
+ [
+ -80.1711455954719,
+ 25.381169113944935
+ ],
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ],
+ [
+ -80.1711455954719,
+ 25.381169113944935
+ ],
+ [
+ -80.19108925489529,
+ 25.349843608523244
+ ],
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ],
+ [
+ -80.19108925489529,
+ 25.349843608523244
+ ],
+ [
+ -80.1711455954719,
+ 25.318518103101553
+ ],
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ],
+ [
+ -80.1711455954719,
+ 25.318518103101553
+ ],
+ [
+ -80.13125827662515,
+ 25.318518103101553
+ ],
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ],
+ [
+ -80.13125827662515,
+ 25.318518103101553
+ ],
+ [
+ -80.11131461720176,
+ 25.349843608523244
+ ],
+ [
+ -80.15120193604852,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ],
+ [
+ -80.11131461720176,
+ 25.41249461936663
+ ],
+ [
+ -80.13125827662515,
+ 25.44382012478832
+ ],
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ],
+ [
+ -80.13125827662515,
+ 25.44382012478832
+ ],
+ [
+ -80.1711455954719,
+ 25.44382012478832
+ ],
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ],
+ [
+ -80.1711455954719,
+ 25.44382012478832
+ ],
+ [
+ -80.19108925489529,
+ 25.41249461936663
+ ],
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ],
+ [
+ -80.19108925489529,
+ 25.41249461936663
+ ],
+ [
+ -80.1711455954719,
+ 25.38116911394494
+ ],
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ],
+ [
+ -80.1711455954719,
+ 25.38116911394494
+ ],
+ [
+ -80.13125827662515,
+ 25.38116911394494
+ ],
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ],
+ [
+ -80.13125827662515,
+ 25.38116911394494
+ ],
+ [
+ -80.11131461720176,
+ 25.41249461936663
+ ],
+ [
+ -80.15120193604852,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ],
+ [
+ -80.11131461720176,
+ 25.475145630210015
+ ],
+ [
+ -80.13125827662515,
+ 25.506471135631706
+ ],
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ],
+ [
+ -80.13125827662515,
+ 25.506471135631706
+ ],
+ [
+ -80.1711455954719,
+ 25.506471135631706
+ ],
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ],
+ [
+ -80.1711455954719,
+ 25.506471135631706
+ ],
+ [
+ -80.19108925489529,
+ 25.475145630210015
+ ],
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ],
+ [
+ -80.19108925489529,
+ 25.475145630210015
+ ],
+ [
+ -80.1711455954719,
+ 25.443820124788324
+ ],
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ],
+ [
+ -80.1711455954719,
+ 25.443820124788324
+ ],
+ [
+ -80.13125827662515,
+ 25.443820124788324
+ ],
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ],
+ [
+ -80.13125827662515,
+ 25.443820124788324
+ ],
+ [
+ -80.11131461720176,
+ 25.475145630210015
+ ],
+ [
+ -80.15120193604852,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ],
+ [
+ -80.11131461720176,
+ 25.5377966410534
+ ],
+ [
+ -80.13125827662515,
+ 25.56912214647509
+ ],
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ],
+ [
+ -80.13125827662515,
+ 25.56912214647509
+ ],
+ [
+ -80.1711455954719,
+ 25.56912214647509
+ ],
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ],
+ [
+ -80.1711455954719,
+ 25.56912214647509
+ ],
+ [
+ -80.19108925489529,
+ 25.5377966410534
+ ],
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ],
+ [
+ -80.19108925489529,
+ 25.5377966410534
+ ],
+ [
+ -80.1711455954719,
+ 25.50647113563171
+ ],
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ],
+ [
+ -80.1711455954719,
+ 25.50647113563171
+ ],
+ [
+ -80.13125827662515,
+ 25.50647113563171
+ ],
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ],
+ [
+ -80.13125827662515,
+ 25.50647113563171
+ ],
+ [
+ -80.11131461720176,
+ 25.5377966410534
+ ],
+ [
+ -80.15120193604852,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ],
+ [
+ -80.11131461720176,
+ 25.600447651896786
+ ],
+ [
+ -80.13125827662515,
+ 25.631773157318477
+ ],
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ],
+ [
+ -80.13125827662515,
+ 25.631773157318477
+ ],
+ [
+ -80.1711455954719,
+ 25.631773157318477
+ ],
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ],
+ [
+ -80.1711455954719,
+ 25.631773157318477
+ ],
+ [
+ -80.19108925489529,
+ 25.600447651896786
+ ],
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ],
+ [
+ -80.19108925489529,
+ 25.600447651896786
+ ],
+ [
+ -80.1711455954719,
+ 25.569122146475095
+ ],
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ],
+ [
+ -80.1711455954719,
+ 25.569122146475095
+ ],
+ [
+ -80.13125827662515,
+ 25.569122146475095
+ ],
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ],
+ [
+ -80.13125827662515,
+ 25.569122146475095
+ ],
+ [
+ -80.11131461720176,
+ 25.600447651896786
+ ],
+ [
+ -80.15120193604852,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ],
+ [
+ -80.11131461720176,
+ 25.663098662740172
+ ],
+ [
+ -80.13125827662515,
+ 25.694424168161863
+ ],
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ],
+ [
+ -80.13125827662515,
+ 25.694424168161863
+ ],
+ [
+ -80.1711455954719,
+ 25.694424168161863
+ ],
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ],
+ [
+ -80.1711455954719,
+ 25.694424168161863
+ ],
+ [
+ -80.19108925489529,
+ 25.663098662740172
+ ],
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ],
+ [
+ -80.19108925489529,
+ 25.663098662740172
+ ],
+ [
+ -80.1711455954719,
+ 25.63177315731848
+ ],
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ],
+ [
+ -80.1711455954719,
+ 25.63177315731848
+ ],
+ [
+ -80.13125827662515,
+ 25.63177315731848
+ ],
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ],
+ [
+ -80.13125827662515,
+ 25.63177315731848
+ ],
+ [
+ -80.11131461720176,
+ 25.663098662740172
+ ],
+ [
+ -80.15120193604852,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ],
+ [
+ -80.11131461720176,
+ 25.725749673583557
+ ],
+ [
+ -80.13125827662515,
+ 25.75707517900525
+ ],
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ],
+ [
+ -80.13125827662515,
+ 25.75707517900525
+ ],
+ [
+ -80.1711455954719,
+ 25.75707517900525
+ ],
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ],
+ [
+ -80.1711455954719,
+ 25.75707517900525
+ ],
+ [
+ -80.19108925489529,
+ 25.725749673583557
+ ],
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ],
+ [
+ -80.19108925489529,
+ 25.725749673583557
+ ],
+ [
+ -80.1711455954719,
+ 25.694424168161866
+ ],
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ],
+ [
+ -80.1711455954719,
+ 25.694424168161866
+ ],
+ [
+ -80.13125827662515,
+ 25.694424168161866
+ ],
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ],
+ [
+ -80.13125827662515,
+ 25.694424168161866
+ ],
+ [
+ -80.11131461720176,
+ 25.725749673583557
+ ],
+ [
+ -80.15120193604852,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ],
+ [
+ -80.11131461720176,
+ 25.788400684426943
+ ],
+ [
+ -80.13125827662515,
+ 25.819726189848634
+ ],
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ],
+ [
+ -80.13125827662515,
+ 25.819726189848634
+ ],
+ [
+ -80.1711455954719,
+ 25.819726189848634
+ ],
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ],
+ [
+ -80.1711455954719,
+ 25.819726189848634
+ ],
+ [
+ -80.19108925489529,
+ 25.788400684426943
+ ],
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ],
+ [
+ -80.19108925489529,
+ 25.788400684426943
+ ],
+ [
+ -80.1711455954719,
+ 25.757075179005252
+ ],
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ],
+ [
+ -80.1711455954719,
+ 25.757075179005252
+ ],
+ [
+ -80.13125827662515,
+ 25.757075179005252
+ ],
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ],
+ [
+ -80.13125827662515,
+ 25.757075179005252
+ ],
+ [
+ -80.11131461720176,
+ 25.788400684426943
+ ],
+ [
+ -80.15120193604852,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ],
+ [
+ -80.11131461720176,
+ 25.85105169527033
+ ],
+ [
+ -80.13125827662515,
+ 25.88237720069202
+ ],
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ],
+ [
+ -80.13125827662515,
+ 25.88237720069202
+ ],
+ [
+ -80.1711455954719,
+ 25.88237720069202
+ ],
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ],
+ [
+ -80.1711455954719,
+ 25.88237720069202
+ ],
+ [
+ -80.19108925489529,
+ 25.85105169527033
+ ],
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ],
+ [
+ -80.19108925489529,
+ 25.85105169527033
+ ],
+ [
+ -80.1711455954719,
+ 25.819726189848637
+ ],
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ],
+ [
+ -80.1711455954719,
+ 25.819726189848637
+ ],
+ [
+ -80.13125827662515,
+ 25.819726189848637
+ ],
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ],
+ [
+ -80.13125827662515,
+ 25.819726189848637
+ ],
+ [
+ -80.11131461720176,
+ 25.85105169527033
+ ],
+ [
+ -80.15120193604852,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ],
+ [
+ -80.11131461720176,
+ 25.913702706113714
+ ],
+ [
+ -80.13125827662515,
+ 25.945028211535405
+ ],
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ],
+ [
+ -80.13125827662515,
+ 25.945028211535405
+ ],
+ [
+ -80.1711455954719,
+ 25.945028211535405
+ ],
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ],
+ [
+ -80.1711455954719,
+ 25.945028211535405
+ ],
+ [
+ -80.19108925489529,
+ 25.913702706113714
+ ],
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ],
+ [
+ -80.19108925489529,
+ 25.913702706113714
+ ],
+ [
+ -80.1711455954719,
+ 25.882377200692023
+ ],
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ],
+ [
+ -80.1711455954719,
+ 25.882377200692023
+ ],
+ [
+ -80.13125827662515,
+ 25.882377200692023
+ ],
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ],
+ [
+ -80.13125827662515,
+ 25.882377200692023
+ ],
+ [
+ -80.11131461720176,
+ 25.913702706113714
+ ],
+ [
+ -80.15120193604852,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ],
+ [
+ -80.11131461720176,
+ 25.9763537169571
+ ],
+ [
+ -80.13125827662515,
+ 26.00767922237879
+ ],
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ],
+ [
+ -80.13125827662515,
+ 26.00767922237879
+ ],
+ [
+ -80.1711455954719,
+ 26.00767922237879
+ ],
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ],
+ [
+ -80.1711455954719,
+ 26.00767922237879
+ ],
+ [
+ -80.19108925489529,
+ 25.9763537169571
+ ],
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ],
+ [
+ -80.19108925489529,
+ 25.9763537169571
+ ],
+ [
+ -80.1711455954719,
+ 25.94502821153541
+ ],
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ],
+ [
+ -80.1711455954719,
+ 25.94502821153541
+ ],
+ [
+ -80.13125827662515,
+ 25.94502821153541
+ ],
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ],
+ [
+ -80.13125827662515,
+ 25.94502821153541
+ ],
+ [
+ -80.11131461720176,
+ 25.9763537169571
+ ],
+ [
+ -80.15120193604852,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ],
+ [
+ -80.11131461720176,
+ 26.039004727800485
+ ],
+ [
+ -80.13125827662515,
+ 26.070330233222176
+ ],
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ],
+ [
+ -80.13125827662515,
+ 26.070330233222176
+ ],
+ [
+ -80.1711455954719,
+ 26.070330233222176
+ ],
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ],
+ [
+ -80.1711455954719,
+ 26.070330233222176
+ ],
+ [
+ -80.19108925489529,
+ 26.039004727800485
+ ],
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ],
+ [
+ -80.19108925489529,
+ 26.039004727800485
+ ],
+ [
+ -80.1711455954719,
+ 26.007679222378794
+ ],
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ],
+ [
+ -80.1711455954719,
+ 26.007679222378794
+ ],
+ [
+ -80.13125827662515,
+ 26.007679222378794
+ ],
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ],
+ [
+ -80.13125827662515,
+ 26.007679222378794
+ ],
+ [
+ -80.11131461720176,
+ 26.039004727800485
+ ],
+ [
+ -80.15120193604852,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ],
+ [
+ -80.11131461720176,
+ 26.10165573864387
+ ],
+ [
+ -80.13125827662515,
+ 26.13298124406556
+ ],
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ],
+ [
+ -80.13125827662515,
+ 26.13298124406556
+ ],
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ],
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ],
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ],
+ [
+ -80.19108925489529,
+ 26.10165573864387
+ ],
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ],
+ [
+ -80.19108925489529,
+ 26.10165573864387
+ ],
+ [
+ -80.1711455954719,
+ 26.07033023322218
+ ],
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ],
+ [
+ -80.1711455954719,
+ 26.07033023322218
+ ],
+ [
+ -80.13125827662515,
+ 26.07033023322218
+ ],
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ],
+ [
+ -80.13125827662515,
+ 26.07033023322218
+ ],
+ [
+ -80.11131461720176,
+ 26.10165573864387
+ ],
+ [
+ -80.15120193604852,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ],
+ [
+ -80.11131461720176,
+ 26.164306749487253
+ ],
+ [
+ -80.13125827662515,
+ 26.195632254908944
+ ],
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ],
+ [
+ -80.13125827662515,
+ 26.195632254908944
+ ],
+ [
+ -80.1711455954719,
+ 26.195632254908944
+ ],
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ],
+ [
+ -80.1711455954719,
+ 26.195632254908944
+ ],
+ [
+ -80.19108925489529,
+ 26.164306749487253
+ ],
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ],
+ [
+ -80.19108925489529,
+ 26.164306749487253
+ ],
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ],
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ],
+ [
+ -80.1711455954719,
+ 26.13298124406556
+ ],
+ [
+ -80.13125827662515,
+ 26.13298124406556
+ ],
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ],
+ [
+ -80.13125827662515,
+ 26.13298124406556
+ ],
+ [
+ -80.11131461720176,
+ 26.164306749487253
+ ],
+ [
+ -80.15120193604852,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ],
+ [
+ -80.11131461720176,
+ 26.22695776033064
+ ],
+ [
+ -80.13125827662515,
+ 26.258283265752333
+ ],
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ],
+ [
+ -80.13125827662515,
+ 26.258283265752333
+ ],
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ],
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ],
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ],
+ [
+ -80.19108925489529,
+ 26.22695776033064
+ ],
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ],
+ [
+ -80.19108925489529,
+ 26.22695776033064
+ ],
+ [
+ -80.1711455954719,
+ 26.19563225490895
+ ],
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ],
+ [
+ -80.1711455954719,
+ 26.19563225490895
+ ],
+ [
+ -80.13125827662515,
+ 26.19563225490895
+ ],
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ],
+ [
+ -80.13125827662515,
+ 26.19563225490895
+ ],
+ [
+ -80.11131461720176,
+ 26.22695776033064
+ ],
+ [
+ -80.15120193604852,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ],
+ [
+ -80.11131461720176,
+ 26.289608771174024
+ ],
+ [
+ -80.13125827662515,
+ 26.320934276595715
+ ],
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ],
+ [
+ -80.13125827662515,
+ 26.320934276595715
+ ],
+ [
+ -80.1711455954719,
+ 26.320934276595715
+ ],
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ],
+ [
+ -80.1711455954719,
+ 26.320934276595715
+ ],
+ [
+ -80.19108925489529,
+ 26.289608771174024
+ ],
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ],
+ [
+ -80.19108925489529,
+ 26.289608771174024
+ ],
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ],
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ],
+ [
+ -80.1711455954719,
+ 26.258283265752333
+ ],
+ [
+ -80.13125827662515,
+ 26.258283265752333
+ ],
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ],
+ [
+ -80.13125827662515,
+ 26.258283265752333
+ ],
+ [
+ -80.11131461720176,
+ 26.289608771174024
+ ],
+ [
+ -80.15120193604852,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ],
+ [
+ -80.11131461720176,
+ 26.35225978201741
+ ],
+ [
+ -80.13125827662515,
+ 26.3835852874391
+ ],
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ],
+ [
+ -80.13125827662515,
+ 26.3835852874391
+ ],
+ [
+ -80.1711455954719,
+ 26.3835852874391
+ ],
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ],
+ [
+ -80.1711455954719,
+ 26.3835852874391
+ ],
+ [
+ -80.19108925489529,
+ 26.35225978201741
+ ],
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ],
+ [
+ -80.19108925489529,
+ 26.35225978201741
+ ],
+ [
+ -80.1711455954719,
+ 26.320934276595718
+ ],
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ],
+ [
+ -80.1711455954719,
+ 26.320934276595718
+ ],
+ [
+ -80.13125827662515,
+ 26.320934276595718
+ ],
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ],
+ [
+ -80.13125827662515,
+ 26.320934276595718
+ ],
+ [
+ -80.11131461720176,
+ 26.35225978201741
+ ],
+ [
+ -80.15120193604852,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ],
+ [
+ -80.11131461720176,
+ 26.414910792860795
+ ],
+ [
+ -80.13125827662515,
+ 26.446236298282486
+ ],
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ],
+ [
+ -80.13125827662515,
+ 26.446236298282486
+ ],
+ [
+ -80.1711455954719,
+ 26.446236298282486
+ ],
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ],
+ [
+ -80.1711455954719,
+ 26.446236298282486
+ ],
+ [
+ -80.19108925489529,
+ 26.414910792860795
+ ],
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ],
+ [
+ -80.19108925489529,
+ 26.414910792860795
+ ],
+ [
+ -80.1711455954719,
+ 26.383585287439104
+ ],
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ],
+ [
+ -80.1711455954719,
+ 26.383585287439104
+ ],
+ [
+ -80.13125827662515,
+ 26.383585287439104
+ ],
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ],
+ [
+ -80.13125827662515,
+ 26.383585287439104
+ ],
+ [
+ -80.11131461720176,
+ 26.414910792860795
+ ],
+ [
+ -80.15120193604852,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ],
+ [
+ -80.0514836389316,
+ 24.942612038041236
+ ],
+ [
+ -80.07142729835499,
+ 24.973937543462927
+ ],
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ],
+ [
+ -80.07142729835499,
+ 24.973937543462927
+ ],
+ [
+ -80.11131461720174,
+ 24.973937543462927
+ ],
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ],
+ [
+ -80.11131461720174,
+ 24.973937543462927
+ ],
+ [
+ -80.13125827662513,
+ 24.942612038041236
+ ],
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ],
+ [
+ -80.13125827662513,
+ 24.942612038041236
+ ],
+ [
+ -80.11131461720174,
+ 24.911286532619545
+ ],
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ],
+ [
+ -80.11131461720174,
+ 24.911286532619545
+ ],
+ [
+ -80.07142729835499,
+ 24.911286532619545
+ ],
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ],
+ [
+ -80.07142729835499,
+ 24.911286532619545
+ ],
+ [
+ -80.0514836389316,
+ 24.942612038041236
+ ],
+ [
+ -80.09137095777837,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ],
+ [
+ -80.0514836389316,
+ 25.005263048884622
+ ],
+ [
+ -80.07142729835499,
+ 25.036588554306313
+ ],
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ],
+ [
+ -80.07142729835499,
+ 25.036588554306313
+ ],
+ [
+ -80.11131461720174,
+ 25.036588554306313
+ ],
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ],
+ [
+ -80.11131461720174,
+ 25.036588554306313
+ ],
+ [
+ -80.13125827662513,
+ 25.005263048884622
+ ],
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ],
+ [
+ -80.13125827662513,
+ 25.005263048884622
+ ],
+ [
+ -80.11131461720174,
+ 24.97393754346293
+ ],
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ],
+ [
+ -80.11131461720174,
+ 24.97393754346293
+ ],
+ [
+ -80.07142729835499,
+ 24.97393754346293
+ ],
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ],
+ [
+ -80.07142729835499,
+ 24.97393754346293
+ ],
+ [
+ -80.0514836389316,
+ 25.005263048884622
+ ],
+ [
+ -80.09137095777837,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ],
+ [
+ -80.0514836389316,
+ 25.067914059728007
+ ],
+ [
+ -80.07142729835499,
+ 25.0992395651497
+ ],
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ],
+ [
+ -80.07142729835499,
+ 25.0992395651497
+ ],
+ [
+ -80.11131461720174,
+ 25.0992395651497
+ ],
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ],
+ [
+ -80.11131461720174,
+ 25.0992395651497
+ ],
+ [
+ -80.13125827662513,
+ 25.067914059728007
+ ],
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ],
+ [
+ -80.13125827662513,
+ 25.067914059728007
+ ],
+ [
+ -80.11131461720174,
+ 25.036588554306316
+ ],
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ],
+ [
+ -80.11131461720174,
+ 25.036588554306316
+ ],
+ [
+ -80.07142729835499,
+ 25.036588554306316
+ ],
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ],
+ [
+ -80.07142729835499,
+ 25.036588554306316
+ ],
+ [
+ -80.0514836389316,
+ 25.067914059728007
+ ],
+ [
+ -80.09137095777837,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ],
+ [
+ -80.0514836389316,
+ 25.130565070571393
+ ],
+ [
+ -80.07142729835499,
+ 25.161890575993084
+ ],
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ],
+ [
+ -80.07142729835499,
+ 25.161890575993084
+ ],
+ [
+ -80.11131461720174,
+ 25.161890575993084
+ ],
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ],
+ [
+ -80.11131461720174,
+ 25.161890575993084
+ ],
+ [
+ -80.13125827662513,
+ 25.130565070571393
+ ],
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ],
+ [
+ -80.13125827662513,
+ 25.130565070571393
+ ],
+ [
+ -80.11131461720174,
+ 25.099239565149702
+ ],
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ],
+ [
+ -80.11131461720174,
+ 25.099239565149702
+ ],
+ [
+ -80.07142729835499,
+ 25.099239565149702
+ ],
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ],
+ [
+ -80.07142729835499,
+ 25.099239565149702
+ ],
+ [
+ -80.0514836389316,
+ 25.130565070571393
+ ],
+ [
+ -80.09137095777837,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ],
+ [
+ -80.0514836389316,
+ 25.19321608141478
+ ],
+ [
+ -80.07142729835499,
+ 25.22454158683647
+ ],
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ],
+ [
+ -80.07142729835499,
+ 25.22454158683647
+ ],
+ [
+ -80.11131461720174,
+ 25.22454158683647
+ ],
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ],
+ [
+ -80.11131461720174,
+ 25.22454158683647
+ ],
+ [
+ -80.13125827662513,
+ 25.19321608141478
+ ],
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ],
+ [
+ -80.13125827662513,
+ 25.19321608141478
+ ],
+ [
+ -80.11131461720174,
+ 25.161890575993088
+ ],
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ],
+ [
+ -80.11131461720174,
+ 25.161890575993088
+ ],
+ [
+ -80.07142729835499,
+ 25.161890575993088
+ ],
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ],
+ [
+ -80.07142729835499,
+ 25.161890575993088
+ ],
+ [
+ -80.0514836389316,
+ 25.19321608141478
+ ],
+ [
+ -80.09137095777837,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ],
+ [
+ -80.0514836389316,
+ 25.255867092258164
+ ],
+ [
+ -80.07142729835499,
+ 25.287192597679855
+ ],
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ],
+ [
+ -80.07142729835499,
+ 25.287192597679855
+ ],
+ [
+ -80.11131461720174,
+ 25.287192597679855
+ ],
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ],
+ [
+ -80.11131461720174,
+ 25.287192597679855
+ ],
+ [
+ -80.13125827662513,
+ 25.255867092258164
+ ],
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ],
+ [
+ -80.13125827662513,
+ 25.255867092258164
+ ],
+ [
+ -80.11131461720174,
+ 25.224541586836473
+ ],
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ],
+ [
+ -80.11131461720174,
+ 25.224541586836473
+ ],
+ [
+ -80.07142729835499,
+ 25.224541586836473
+ ],
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ],
+ [
+ -80.07142729835499,
+ 25.224541586836473
+ ],
+ [
+ -80.0514836389316,
+ 25.255867092258164
+ ],
+ [
+ -80.09137095777837,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ],
+ [
+ -80.0514836389316,
+ 25.31851810310155
+ ],
+ [
+ -80.07142729835499,
+ 25.34984360852324
+ ],
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ],
+ [
+ -80.07142729835499,
+ 25.34984360852324
+ ],
+ [
+ -80.11131461720174,
+ 25.34984360852324
+ ],
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ],
+ [
+ -80.11131461720174,
+ 25.34984360852324
+ ],
+ [
+ -80.13125827662513,
+ 25.31851810310155
+ ],
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ],
+ [
+ -80.13125827662513,
+ 25.31851810310155
+ ],
+ [
+ -80.11131461720174,
+ 25.28719259767986
+ ],
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ],
+ [
+ -80.11131461720174,
+ 25.28719259767986
+ ],
+ [
+ -80.07142729835499,
+ 25.28719259767986
+ ],
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ],
+ [
+ -80.07142729835499,
+ 25.28719259767986
+ ],
+ [
+ -80.0514836389316,
+ 25.31851810310155
+ ],
+ [
+ -80.09137095777837,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ],
+ [
+ -80.0514836389316,
+ 25.381169113944935
+ ],
+ [
+ -80.07142729835499,
+ 25.412494619366626
+ ],
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ],
+ [
+ -80.07142729835499,
+ 25.412494619366626
+ ],
+ [
+ -80.11131461720174,
+ 25.412494619366626
+ ],
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ],
+ [
+ -80.11131461720174,
+ 25.412494619366626
+ ],
+ [
+ -80.13125827662513,
+ 25.381169113944935
+ ],
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ],
+ [
+ -80.13125827662513,
+ 25.381169113944935
+ ],
+ [
+ -80.11131461720174,
+ 25.349843608523244
+ ],
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ],
+ [
+ -80.11131461720174,
+ 25.349843608523244
+ ],
+ [
+ -80.07142729835499,
+ 25.349843608523244
+ ],
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ],
+ [
+ -80.07142729835499,
+ 25.349843608523244
+ ],
+ [
+ -80.0514836389316,
+ 25.381169113944935
+ ],
+ [
+ -80.09137095777837,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ],
+ [
+ -80.0514836389316,
+ 25.44382012478832
+ ],
+ [
+ -80.07142729835499,
+ 25.47514563021001
+ ],
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ],
+ [
+ -80.07142729835499,
+ 25.47514563021001
+ ],
+ [
+ -80.11131461720174,
+ 25.47514563021001
+ ],
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ],
+ [
+ -80.11131461720174,
+ 25.47514563021001
+ ],
+ [
+ -80.13125827662513,
+ 25.44382012478832
+ ],
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ],
+ [
+ -80.13125827662513,
+ 25.44382012478832
+ ],
+ [
+ -80.11131461720174,
+ 25.41249461936663
+ ],
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ],
+ [
+ -80.11131461720174,
+ 25.41249461936663
+ ],
+ [
+ -80.07142729835499,
+ 25.41249461936663
+ ],
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ],
+ [
+ -80.07142729835499,
+ 25.41249461936663
+ ],
+ [
+ -80.0514836389316,
+ 25.44382012478832
+ ],
+ [
+ -80.09137095777837,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ],
+ [
+ -80.0514836389316,
+ 25.506471135631706
+ ],
+ [
+ -80.07142729835499,
+ 25.537796641053397
+ ],
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ],
+ [
+ -80.07142729835499,
+ 25.537796641053397
+ ],
+ [
+ -80.11131461720174,
+ 25.537796641053397
+ ],
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ],
+ [
+ -80.11131461720174,
+ 25.537796641053397
+ ],
+ [
+ -80.13125827662513,
+ 25.506471135631706
+ ],
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ],
+ [
+ -80.13125827662513,
+ 25.506471135631706
+ ],
+ [
+ -80.11131461720174,
+ 25.475145630210015
+ ],
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ],
+ [
+ -80.11131461720174,
+ 25.475145630210015
+ ],
+ [
+ -80.07142729835499,
+ 25.475145630210015
+ ],
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ],
+ [
+ -80.07142729835499,
+ 25.475145630210015
+ ],
+ [
+ -80.0514836389316,
+ 25.506471135631706
+ ],
+ [
+ -80.09137095777837,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ],
+ [
+ -80.0514836389316,
+ 25.56912214647509
+ ],
+ [
+ -80.07142729835499,
+ 25.600447651896783
+ ],
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ],
+ [
+ -80.07142729835499,
+ 25.600447651896783
+ ],
+ [
+ -80.11131461720174,
+ 25.600447651896783
+ ],
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ],
+ [
+ -80.11131461720174,
+ 25.600447651896783
+ ],
+ [
+ -80.13125827662513,
+ 25.56912214647509
+ ],
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ],
+ [
+ -80.13125827662513,
+ 25.56912214647509
+ ],
+ [
+ -80.11131461720174,
+ 25.5377966410534
+ ],
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ],
+ [
+ -80.11131461720174,
+ 25.5377966410534
+ ],
+ [
+ -80.07142729835499,
+ 25.5377966410534
+ ],
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ],
+ [
+ -80.07142729835499,
+ 25.5377966410534
+ ],
+ [
+ -80.0514836389316,
+ 25.56912214647509
+ ],
+ [
+ -80.09137095777837,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ],
+ [
+ -80.0514836389316,
+ 25.631773157318477
+ ],
+ [
+ -80.07142729835499,
+ 25.66309866274017
+ ],
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ],
+ [
+ -80.07142729835499,
+ 25.66309866274017
+ ],
+ [
+ -80.11131461720174,
+ 25.66309866274017
+ ],
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ],
+ [
+ -80.11131461720174,
+ 25.66309866274017
+ ],
+ [
+ -80.13125827662513,
+ 25.631773157318477
+ ],
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ],
+ [
+ -80.13125827662513,
+ 25.631773157318477
+ ],
+ [
+ -80.11131461720174,
+ 25.600447651896786
+ ],
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ],
+ [
+ -80.11131461720174,
+ 25.600447651896786
+ ],
+ [
+ -80.07142729835499,
+ 25.600447651896786
+ ],
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ],
+ [
+ -80.07142729835499,
+ 25.600447651896786
+ ],
+ [
+ -80.0514836389316,
+ 25.631773157318477
+ ],
+ [
+ -80.09137095777837,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ],
+ [
+ -80.0514836389316,
+ 25.694424168161863
+ ],
+ [
+ -80.07142729835499,
+ 25.725749673583554
+ ],
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ],
+ [
+ -80.07142729835499,
+ 25.725749673583554
+ ],
+ [
+ -80.11131461720174,
+ 25.725749673583554
+ ],
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ],
+ [
+ -80.11131461720174,
+ 25.725749673583554
+ ],
+ [
+ -80.13125827662513,
+ 25.694424168161863
+ ],
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ],
+ [
+ -80.13125827662513,
+ 25.694424168161863
+ ],
+ [
+ -80.11131461720174,
+ 25.663098662740172
+ ],
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ],
+ [
+ -80.11131461720174,
+ 25.663098662740172
+ ],
+ [
+ -80.07142729835499,
+ 25.663098662740172
+ ],
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ],
+ [
+ -80.07142729835499,
+ 25.663098662740172
+ ],
+ [
+ -80.0514836389316,
+ 25.694424168161863
+ ],
+ [
+ -80.09137095777837,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ],
+ [
+ -80.0514836389316,
+ 25.75707517900525
+ ],
+ [
+ -80.07142729835499,
+ 25.78840068442694
+ ],
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ],
+ [
+ -80.07142729835499,
+ 25.78840068442694
+ ],
+ [
+ -80.11131461720174,
+ 25.78840068442694
+ ],
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ],
+ [
+ -80.11131461720174,
+ 25.78840068442694
+ ],
+ [
+ -80.13125827662513,
+ 25.75707517900525
+ ],
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ],
+ [
+ -80.13125827662513,
+ 25.75707517900525
+ ],
+ [
+ -80.11131461720174,
+ 25.725749673583557
+ ],
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ],
+ [
+ -80.11131461720174,
+ 25.725749673583557
+ ],
+ [
+ -80.07142729835499,
+ 25.725749673583557
+ ],
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ],
+ [
+ -80.07142729835499,
+ 25.725749673583557
+ ],
+ [
+ -80.0514836389316,
+ 25.75707517900525
+ ],
+ [
+ -80.09137095777837,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ],
+ [
+ -80.0514836389316,
+ 25.819726189848634
+ ],
+ [
+ -80.07142729835499,
+ 25.851051695270325
+ ],
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ],
+ [
+ -80.07142729835499,
+ 25.851051695270325
+ ],
+ [
+ -80.11131461720174,
+ 25.851051695270325
+ ],
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ],
+ [
+ -80.11131461720174,
+ 25.851051695270325
+ ],
+ [
+ -80.13125827662513,
+ 25.819726189848634
+ ],
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ],
+ [
+ -80.13125827662513,
+ 25.819726189848634
+ ],
+ [
+ -80.11131461720174,
+ 25.788400684426943
+ ],
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ],
+ [
+ -80.11131461720174,
+ 25.788400684426943
+ ],
+ [
+ -80.07142729835499,
+ 25.788400684426943
+ ],
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ],
+ [
+ -80.07142729835499,
+ 25.788400684426943
+ ],
+ [
+ -80.0514836389316,
+ 25.819726189848634
+ ],
+ [
+ -80.09137095777837,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ],
+ [
+ -80.0514836389316,
+ 25.88237720069202
+ ],
+ [
+ -80.07142729835499,
+ 25.91370270611371
+ ],
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ],
+ [
+ -80.07142729835499,
+ 25.91370270611371
+ ],
+ [
+ -80.11131461720174,
+ 25.91370270611371
+ ],
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ],
+ [
+ -80.11131461720174,
+ 25.91370270611371
+ ],
+ [
+ -80.13125827662513,
+ 25.88237720069202
+ ],
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ],
+ [
+ -80.13125827662513,
+ 25.88237720069202
+ ],
+ [
+ -80.11131461720174,
+ 25.85105169527033
+ ],
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ],
+ [
+ -80.11131461720174,
+ 25.85105169527033
+ ],
+ [
+ -80.07142729835499,
+ 25.85105169527033
+ ],
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ],
+ [
+ -80.07142729835499,
+ 25.85105169527033
+ ],
+ [
+ -80.0514836389316,
+ 25.88237720069202
+ ],
+ [
+ -80.09137095777837,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ],
+ [
+ -80.0514836389316,
+ 25.945028211535405
+ ],
+ [
+ -80.07142729835499,
+ 25.976353716957096
+ ],
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ],
+ [
+ -80.07142729835499,
+ 25.976353716957096
+ ],
+ [
+ -80.11131461720174,
+ 25.976353716957096
+ ],
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ],
+ [
+ -80.11131461720174,
+ 25.976353716957096
+ ],
+ [
+ -80.13125827662513,
+ 25.945028211535405
+ ],
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ],
+ [
+ -80.13125827662513,
+ 25.945028211535405
+ ],
+ [
+ -80.11131461720174,
+ 25.913702706113714
+ ],
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ],
+ [
+ -80.11131461720174,
+ 25.913702706113714
+ ],
+ [
+ -80.07142729835499,
+ 25.913702706113714
+ ],
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ],
+ [
+ -80.07142729835499,
+ 25.913702706113714
+ ],
+ [
+ -80.0514836389316,
+ 25.945028211535405
+ ],
+ [
+ -80.09137095777837,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ],
+ [
+ -80.0514836389316,
+ 26.00767922237879
+ ],
+ [
+ -80.07142729835499,
+ 26.03900472780048
+ ],
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ],
+ [
+ -80.07142729835499,
+ 26.03900472780048
+ ],
+ [
+ -80.11131461720174,
+ 26.03900472780048
+ ],
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ],
+ [
+ -80.11131461720174,
+ 26.03900472780048
+ ],
+ [
+ -80.13125827662513,
+ 26.00767922237879
+ ],
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ],
+ [
+ -80.13125827662513,
+ 26.00767922237879
+ ],
+ [
+ -80.11131461720174,
+ 25.9763537169571
+ ],
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ],
+ [
+ -80.11131461720174,
+ 25.9763537169571
+ ],
+ [
+ -80.07142729835499,
+ 25.9763537169571
+ ],
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ],
+ [
+ -80.07142729835499,
+ 25.9763537169571
+ ],
+ [
+ -80.0514836389316,
+ 26.00767922237879
+ ],
+ [
+ -80.09137095777837,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ],
+ [
+ -80.0514836389316,
+ 26.070330233222176
+ ],
+ [
+ -80.07142729835499,
+ 26.101655738643867
+ ],
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ],
+ [
+ -80.07142729835499,
+ 26.101655738643867
+ ],
+ [
+ -80.11131461720174,
+ 26.101655738643867
+ ],
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ],
+ [
+ -80.11131461720174,
+ 26.101655738643867
+ ],
+ [
+ -80.13125827662513,
+ 26.070330233222176
+ ],
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ],
+ [
+ -80.13125827662513,
+ 26.070330233222176
+ ],
+ [
+ -80.11131461720174,
+ 26.039004727800485
+ ],
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ],
+ [
+ -80.11131461720174,
+ 26.039004727800485
+ ],
+ [
+ -80.07142729835499,
+ 26.039004727800485
+ ],
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ],
+ [
+ -80.07142729835499,
+ 26.039004727800485
+ ],
+ [
+ -80.0514836389316,
+ 26.070330233222176
+ ],
+ [
+ -80.09137095777837,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ],
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ],
+ [
+ -80.07142729835499,
+ 26.164306749487253
+ ],
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ],
+ [
+ -80.07142729835499,
+ 26.164306749487253
+ ],
+ [
+ -80.11131461720174,
+ 26.164306749487253
+ ],
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ],
+ [
+ -80.11131461720174,
+ 26.164306749487253
+ ],
+ [
+ -80.13125827662513,
+ 26.13298124406556
+ ],
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ],
+ [
+ -80.13125827662513,
+ 26.13298124406556
+ ],
+ [
+ -80.11131461720174,
+ 26.10165573864387
+ ],
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ],
+ [
+ -80.11131461720174,
+ 26.10165573864387
+ ],
+ [
+ -80.07142729835499,
+ 26.10165573864387
+ ],
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ],
+ [
+ -80.07142729835499,
+ 26.10165573864387
+ ],
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ],
+ [
+ -80.09137095777837,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ],
+ [
+ -80.0514836389316,
+ 26.195632254908944
+ ],
+ [
+ -80.07142729835499,
+ 26.226957760330635
+ ],
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ],
+ [
+ -80.07142729835499,
+ 26.226957760330635
+ ],
+ [
+ -80.11131461720174,
+ 26.226957760330635
+ ],
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ],
+ [
+ -80.11131461720174,
+ 26.226957760330635
+ ],
+ [
+ -80.13125827662513,
+ 26.195632254908944
+ ],
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ],
+ [
+ -80.13125827662513,
+ 26.195632254908944
+ ],
+ [
+ -80.11131461720174,
+ 26.164306749487253
+ ],
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ],
+ [
+ -80.11131461720174,
+ 26.164306749487253
+ ],
+ [
+ -80.07142729835499,
+ 26.164306749487253
+ ],
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ],
+ [
+ -80.07142729835499,
+ 26.164306749487253
+ ],
+ [
+ -80.0514836389316,
+ 26.195632254908944
+ ],
+ [
+ -80.09137095777837,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ],
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ],
+ [
+ -80.07142729835499,
+ 26.289608771174024
+ ],
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ],
+ [
+ -80.07142729835499,
+ 26.289608771174024
+ ],
+ [
+ -80.11131461720174,
+ 26.289608771174024
+ ],
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ],
+ [
+ -80.11131461720174,
+ 26.289608771174024
+ ],
+ [
+ -80.13125827662513,
+ 26.258283265752333
+ ],
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ],
+ [
+ -80.13125827662513,
+ 26.258283265752333
+ ],
+ [
+ -80.11131461720174,
+ 26.22695776033064
+ ],
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ],
+ [
+ -80.11131461720174,
+ 26.22695776033064
+ ],
+ [
+ -80.07142729835499,
+ 26.22695776033064
+ ],
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ],
+ [
+ -80.07142729835499,
+ 26.22695776033064
+ ],
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ],
+ [
+ -80.09137095777837,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ],
+ [
+ -80.0514836389316,
+ 26.320934276595715
+ ],
+ [
+ -80.07142729835499,
+ 26.352259782017406
+ ],
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ],
+ [
+ -80.07142729835499,
+ 26.352259782017406
+ ],
+ [
+ -80.11131461720174,
+ 26.352259782017406
+ ],
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ],
+ [
+ -80.11131461720174,
+ 26.352259782017406
+ ],
+ [
+ -80.13125827662513,
+ 26.320934276595715
+ ],
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ],
+ [
+ -80.13125827662513,
+ 26.320934276595715
+ ],
+ [
+ -80.11131461720174,
+ 26.289608771174024
+ ],
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ],
+ [
+ -80.11131461720174,
+ 26.289608771174024
+ ],
+ [
+ -80.07142729835499,
+ 26.289608771174024
+ ],
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ],
+ [
+ -80.07142729835499,
+ 26.289608771174024
+ ],
+ [
+ -80.0514836389316,
+ 26.320934276595715
+ ],
+ [
+ -80.09137095777837,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ],
+ [
+ -80.0514836389316,
+ 26.3835852874391
+ ],
+ [
+ -80.07142729835499,
+ 26.41491079286079
+ ],
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ],
+ [
+ -80.07142729835499,
+ 26.41491079286079
+ ],
+ [
+ -80.11131461720174,
+ 26.41491079286079
+ ],
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ],
+ [
+ -80.11131461720174,
+ 26.41491079286079
+ ],
+ [
+ -80.13125827662513,
+ 26.3835852874391
+ ],
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ],
+ [
+ -80.13125827662513,
+ 26.3835852874391
+ ],
+ [
+ -80.11131461720174,
+ 26.35225978201741
+ ],
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ],
+ [
+ -80.11131461720174,
+ 26.35225978201741
+ ],
+ [
+ -80.07142729835499,
+ 26.35225978201741
+ ],
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ],
+ [
+ -80.07142729835499,
+ 26.35225978201741
+ ],
+ [
+ -80.0514836389316,
+ 26.3835852874391
+ ],
+ [
+ -80.09137095777837,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ],
+ [
+ -80.0514836389316,
+ 26.446236298282486
+ ],
+ [
+ -80.07142729835499,
+ 26.477561803704177
+ ],
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ],
+ [
+ -80.07142729835499,
+ 26.477561803704177
+ ],
+ [
+ -80.11131461720174,
+ 26.477561803704177
+ ],
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ],
+ [
+ -80.11131461720174,
+ 26.477561803704177
+ ],
+ [
+ -80.13125827662513,
+ 26.446236298282486
+ ],
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ],
+ [
+ -80.13125827662513,
+ 26.446236298282486
+ ],
+ [
+ -80.11131461720174,
+ 26.414910792860795
+ ],
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ],
+ [
+ -80.11131461720174,
+ 26.414910792860795
+ ],
+ [
+ -80.07142729835499,
+ 26.414910792860795
+ ],
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ],
+ [
+ -80.07142729835499,
+ 26.414910792860795
+ ],
+ [
+ -80.0514836389316,
+ 26.446236298282486
+ ],
+ [
+ -80.09137095777837,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ],
+ [
+ -79.99165266066146,
+ 24.911286532619545
+ ],
+ [
+ -80.01159632008485,
+ 24.942612038041236
+ ],
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ],
+ [
+ -80.01159632008485,
+ 24.942612038041236
+ ],
+ [
+ -80.0514836389316,
+ 24.942612038041236
+ ],
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ],
+ [
+ -80.0514836389316,
+ 24.942612038041236
+ ],
+ [
+ -80.07142729835499,
+ 24.911286532619545
+ ],
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ],
+ [
+ -80.07142729835499,
+ 24.911286532619545
+ ],
+ [
+ -80.0514836389316,
+ 24.879961027197854
+ ],
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ],
+ [
+ -80.0514836389316,
+ 24.879961027197854
+ ],
+ [
+ -80.01159632008485,
+ 24.879961027197854
+ ],
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ],
+ [
+ -80.01159632008485,
+ 24.879961027197854
+ ],
+ [
+ -79.99165266066146,
+ 24.911286532619545
+ ],
+ [
+ -80.03153997950822,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ],
+ [
+ -79.99165266066146,
+ 24.97393754346293
+ ],
+ [
+ -80.01159632008485,
+ 25.005263048884622
+ ],
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ],
+ [
+ -80.01159632008485,
+ 25.005263048884622
+ ],
+ [
+ -80.0514836389316,
+ 25.005263048884622
+ ],
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ],
+ [
+ -80.0514836389316,
+ 25.005263048884622
+ ],
+ [
+ -80.07142729835499,
+ 24.97393754346293
+ ],
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ],
+ [
+ -80.07142729835499,
+ 24.97393754346293
+ ],
+ [
+ -80.0514836389316,
+ 24.94261203804124
+ ],
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ],
+ [
+ -80.0514836389316,
+ 24.94261203804124
+ ],
+ [
+ -80.01159632008485,
+ 24.94261203804124
+ ],
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ],
+ [
+ -80.01159632008485,
+ 24.94261203804124
+ ],
+ [
+ -79.99165266066146,
+ 24.97393754346293
+ ],
+ [
+ -80.03153997950822,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ],
+ [
+ -79.99165266066146,
+ 25.036588554306316
+ ],
+ [
+ -80.01159632008485,
+ 25.067914059728007
+ ],
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ],
+ [
+ -80.01159632008485,
+ 25.067914059728007
+ ],
+ [
+ -80.0514836389316,
+ 25.067914059728007
+ ],
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ],
+ [
+ -80.0514836389316,
+ 25.067914059728007
+ ],
+ [
+ -80.07142729835499,
+ 25.036588554306316
+ ],
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ],
+ [
+ -80.07142729835499,
+ 25.036588554306316
+ ],
+ [
+ -80.0514836389316,
+ 25.005263048884625
+ ],
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ],
+ [
+ -80.0514836389316,
+ 25.005263048884625
+ ],
+ [
+ -80.01159632008485,
+ 25.005263048884625
+ ],
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ],
+ [
+ -80.01159632008485,
+ 25.005263048884625
+ ],
+ [
+ -79.99165266066146,
+ 25.036588554306316
+ ],
+ [
+ -80.03153997950822,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ],
+ [
+ -79.99165266066146,
+ 25.099239565149702
+ ],
+ [
+ -80.01159632008485,
+ 25.130565070571393
+ ],
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ],
+ [
+ -80.01159632008485,
+ 25.130565070571393
+ ],
+ [
+ -80.0514836389316,
+ 25.130565070571393
+ ],
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ],
+ [
+ -80.0514836389316,
+ 25.130565070571393
+ ],
+ [
+ -80.07142729835499,
+ 25.099239565149702
+ ],
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ],
+ [
+ -80.07142729835499,
+ 25.099239565149702
+ ],
+ [
+ -80.0514836389316,
+ 25.06791405972801
+ ],
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ],
+ [
+ -80.0514836389316,
+ 25.06791405972801
+ ],
+ [
+ -80.01159632008485,
+ 25.06791405972801
+ ],
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ],
+ [
+ -80.01159632008485,
+ 25.06791405972801
+ ],
+ [
+ -79.99165266066146,
+ 25.099239565149702
+ ],
+ [
+ -80.03153997950822,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ],
+ [
+ -79.99165266066146,
+ 25.161890575993088
+ ],
+ [
+ -80.01159632008485,
+ 25.19321608141478
+ ],
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ],
+ [
+ -80.01159632008485,
+ 25.19321608141478
+ ],
+ [
+ -80.0514836389316,
+ 25.19321608141478
+ ],
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ],
+ [
+ -80.0514836389316,
+ 25.19321608141478
+ ],
+ [
+ -80.07142729835499,
+ 25.161890575993088
+ ],
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ],
+ [
+ -80.07142729835499,
+ 25.161890575993088
+ ],
+ [
+ -80.0514836389316,
+ 25.130565070571397
+ ],
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ],
+ [
+ -80.0514836389316,
+ 25.130565070571397
+ ],
+ [
+ -80.01159632008485,
+ 25.130565070571397
+ ],
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ],
+ [
+ -80.01159632008485,
+ 25.130565070571397
+ ],
+ [
+ -79.99165266066146,
+ 25.161890575993088
+ ],
+ [
+ -80.03153997950822,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ],
+ [
+ -79.99165266066146,
+ 25.224541586836473
+ ],
+ [
+ -80.01159632008485,
+ 25.255867092258164
+ ],
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ],
+ [
+ -80.01159632008485,
+ 25.255867092258164
+ ],
+ [
+ -80.0514836389316,
+ 25.255867092258164
+ ],
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ],
+ [
+ -80.0514836389316,
+ 25.255867092258164
+ ],
+ [
+ -80.07142729835499,
+ 25.224541586836473
+ ],
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ],
+ [
+ -80.07142729835499,
+ 25.224541586836473
+ ],
+ [
+ -80.0514836389316,
+ 25.193216081414782
+ ],
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ],
+ [
+ -80.0514836389316,
+ 25.193216081414782
+ ],
+ [
+ -80.01159632008485,
+ 25.193216081414782
+ ],
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ],
+ [
+ -80.01159632008485,
+ 25.193216081414782
+ ],
+ [
+ -79.99165266066146,
+ 25.224541586836473
+ ],
+ [
+ -80.03153997950822,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ],
+ [
+ -79.99165266066146,
+ 25.28719259767986
+ ],
+ [
+ -80.01159632008485,
+ 25.31851810310155
+ ],
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ],
+ [
+ -80.01159632008485,
+ 25.31851810310155
+ ],
+ [
+ -80.0514836389316,
+ 25.31851810310155
+ ],
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ],
+ [
+ -80.0514836389316,
+ 25.31851810310155
+ ],
+ [
+ -80.07142729835499,
+ 25.28719259767986
+ ],
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ],
+ [
+ -80.07142729835499,
+ 25.28719259767986
+ ],
+ [
+ -80.0514836389316,
+ 25.255867092258168
+ ],
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ],
+ [
+ -80.0514836389316,
+ 25.255867092258168
+ ],
+ [
+ -80.01159632008485,
+ 25.255867092258168
+ ],
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ],
+ [
+ -80.01159632008485,
+ 25.255867092258168
+ ],
+ [
+ -79.99165266066146,
+ 25.28719259767986
+ ],
+ [
+ -80.03153997950822,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ],
+ [
+ -79.99165266066146,
+ 25.349843608523244
+ ],
+ [
+ -80.01159632008485,
+ 25.381169113944935
+ ],
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ],
+ [
+ -80.01159632008485,
+ 25.381169113944935
+ ],
+ [
+ -80.0514836389316,
+ 25.381169113944935
+ ],
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ],
+ [
+ -80.0514836389316,
+ 25.381169113944935
+ ],
+ [
+ -80.07142729835499,
+ 25.349843608523244
+ ],
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ],
+ [
+ -80.07142729835499,
+ 25.349843608523244
+ ],
+ [
+ -80.0514836389316,
+ 25.318518103101553
+ ],
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ],
+ [
+ -80.0514836389316,
+ 25.318518103101553
+ ],
+ [
+ -80.01159632008485,
+ 25.318518103101553
+ ],
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ],
+ [
+ -80.01159632008485,
+ 25.318518103101553
+ ],
+ [
+ -79.99165266066146,
+ 25.349843608523244
+ ],
+ [
+ -80.03153997950822,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ],
+ [
+ -79.99165266066146,
+ 25.41249461936663
+ ],
+ [
+ -80.01159632008485,
+ 25.44382012478832
+ ],
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ],
+ [
+ -80.01159632008485,
+ 25.44382012478832
+ ],
+ [
+ -80.0514836389316,
+ 25.44382012478832
+ ],
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ],
+ [
+ -80.0514836389316,
+ 25.44382012478832
+ ],
+ [
+ -80.07142729835499,
+ 25.41249461936663
+ ],
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ],
+ [
+ -80.07142729835499,
+ 25.41249461936663
+ ],
+ [
+ -80.0514836389316,
+ 25.38116911394494
+ ],
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ],
+ [
+ -80.0514836389316,
+ 25.38116911394494
+ ],
+ [
+ -80.01159632008485,
+ 25.38116911394494
+ ],
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ],
+ [
+ -80.01159632008485,
+ 25.38116911394494
+ ],
+ [
+ -79.99165266066146,
+ 25.41249461936663
+ ],
+ [
+ -80.03153997950822,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ],
+ [
+ -79.99165266066146,
+ 25.475145630210015
+ ],
+ [
+ -80.01159632008485,
+ 25.506471135631706
+ ],
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ],
+ [
+ -80.01159632008485,
+ 25.506471135631706
+ ],
+ [
+ -80.0514836389316,
+ 25.506471135631706
+ ],
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ],
+ [
+ -80.0514836389316,
+ 25.506471135631706
+ ],
+ [
+ -80.07142729835499,
+ 25.475145630210015
+ ],
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ],
+ [
+ -80.07142729835499,
+ 25.475145630210015
+ ],
+ [
+ -80.0514836389316,
+ 25.443820124788324
+ ],
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ],
+ [
+ -80.0514836389316,
+ 25.443820124788324
+ ],
+ [
+ -80.01159632008485,
+ 25.443820124788324
+ ],
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ],
+ [
+ -80.01159632008485,
+ 25.443820124788324
+ ],
+ [
+ -79.99165266066146,
+ 25.475145630210015
+ ],
+ [
+ -80.03153997950822,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ],
+ [
+ -79.99165266066146,
+ 25.5377966410534
+ ],
+ [
+ -80.01159632008485,
+ 25.56912214647509
+ ],
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ],
+ [
+ -80.01159632008485,
+ 25.56912214647509
+ ],
+ [
+ -80.0514836389316,
+ 25.56912214647509
+ ],
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ],
+ [
+ -80.0514836389316,
+ 25.56912214647509
+ ],
+ [
+ -80.07142729835499,
+ 25.5377966410534
+ ],
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ],
+ [
+ -80.07142729835499,
+ 25.5377966410534
+ ],
+ [
+ -80.0514836389316,
+ 25.50647113563171
+ ],
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ],
+ [
+ -80.0514836389316,
+ 25.50647113563171
+ ],
+ [
+ -80.01159632008485,
+ 25.50647113563171
+ ],
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ],
+ [
+ -80.01159632008485,
+ 25.50647113563171
+ ],
+ [
+ -79.99165266066146,
+ 25.5377966410534
+ ],
+ [
+ -80.03153997950822,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ],
+ [
+ -79.99165266066146,
+ 25.600447651896786
+ ],
+ [
+ -80.01159632008485,
+ 25.631773157318477
+ ],
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ],
+ [
+ -80.01159632008485,
+ 25.631773157318477
+ ],
+ [
+ -80.0514836389316,
+ 25.631773157318477
+ ],
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ],
+ [
+ -80.0514836389316,
+ 25.631773157318477
+ ],
+ [
+ -80.07142729835499,
+ 25.600447651896786
+ ],
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ],
+ [
+ -80.07142729835499,
+ 25.600447651896786
+ ],
+ [
+ -80.0514836389316,
+ 25.569122146475095
+ ],
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ],
+ [
+ -80.0514836389316,
+ 25.569122146475095
+ ],
+ [
+ -80.01159632008485,
+ 25.569122146475095
+ ],
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ],
+ [
+ -80.01159632008485,
+ 25.569122146475095
+ ],
+ [
+ -79.99165266066146,
+ 25.600447651896786
+ ],
+ [
+ -80.03153997950822,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ],
+ [
+ -79.99165266066146,
+ 25.663098662740172
+ ],
+ [
+ -80.01159632008485,
+ 25.694424168161863
+ ],
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ],
+ [
+ -80.01159632008485,
+ 25.694424168161863
+ ],
+ [
+ -80.0514836389316,
+ 25.694424168161863
+ ],
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ],
+ [
+ -80.0514836389316,
+ 25.694424168161863
+ ],
+ [
+ -80.07142729835499,
+ 25.663098662740172
+ ],
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ],
+ [
+ -80.07142729835499,
+ 25.663098662740172
+ ],
+ [
+ -80.0514836389316,
+ 25.63177315731848
+ ],
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ],
+ [
+ -80.0514836389316,
+ 25.63177315731848
+ ],
+ [
+ -80.01159632008485,
+ 25.63177315731848
+ ],
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ],
+ [
+ -80.01159632008485,
+ 25.63177315731848
+ ],
+ [
+ -79.99165266066146,
+ 25.663098662740172
+ ],
+ [
+ -80.03153997950822,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ],
+ [
+ -79.99165266066146,
+ 25.725749673583557
+ ],
+ [
+ -80.01159632008485,
+ 25.75707517900525
+ ],
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ],
+ [
+ -80.01159632008485,
+ 25.75707517900525
+ ],
+ [
+ -80.0514836389316,
+ 25.75707517900525
+ ],
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ],
+ [
+ -80.0514836389316,
+ 25.75707517900525
+ ],
+ [
+ -80.07142729835499,
+ 25.725749673583557
+ ],
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ],
+ [
+ -80.07142729835499,
+ 25.725749673583557
+ ],
+ [
+ -80.0514836389316,
+ 25.694424168161866
+ ],
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ],
+ [
+ -80.0514836389316,
+ 25.694424168161866
+ ],
+ [
+ -80.01159632008485,
+ 25.694424168161866
+ ],
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ],
+ [
+ -80.01159632008485,
+ 25.694424168161866
+ ],
+ [
+ -79.99165266066146,
+ 25.725749673583557
+ ],
+ [
+ -80.03153997950822,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ],
+ [
+ -79.99165266066146,
+ 25.788400684426943
+ ],
+ [
+ -80.01159632008485,
+ 25.819726189848634
+ ],
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ],
+ [
+ -80.01159632008485,
+ 25.819726189848634
+ ],
+ [
+ -80.0514836389316,
+ 25.819726189848634
+ ],
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ],
+ [
+ -80.0514836389316,
+ 25.819726189848634
+ ],
+ [
+ -80.07142729835499,
+ 25.788400684426943
+ ],
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ],
+ [
+ -80.07142729835499,
+ 25.788400684426943
+ ],
+ [
+ -80.0514836389316,
+ 25.757075179005252
+ ],
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ],
+ [
+ -80.0514836389316,
+ 25.757075179005252
+ ],
+ [
+ -80.01159632008485,
+ 25.757075179005252
+ ],
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ],
+ [
+ -80.01159632008485,
+ 25.757075179005252
+ ],
+ [
+ -79.99165266066146,
+ 25.788400684426943
+ ],
+ [
+ -80.03153997950822,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ],
+ [
+ -79.99165266066146,
+ 25.85105169527033
+ ],
+ [
+ -80.01159632008485,
+ 25.88237720069202
+ ],
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ],
+ [
+ -80.01159632008485,
+ 25.88237720069202
+ ],
+ [
+ -80.0514836389316,
+ 25.88237720069202
+ ],
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ],
+ [
+ -80.0514836389316,
+ 25.88237720069202
+ ],
+ [
+ -80.07142729835499,
+ 25.85105169527033
+ ],
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ],
+ [
+ -80.07142729835499,
+ 25.85105169527033
+ ],
+ [
+ -80.0514836389316,
+ 25.819726189848637
+ ],
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ],
+ [
+ -80.0514836389316,
+ 25.819726189848637
+ ],
+ [
+ -80.01159632008485,
+ 25.819726189848637
+ ],
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ],
+ [
+ -80.01159632008485,
+ 25.819726189848637
+ ],
+ [
+ -79.99165266066146,
+ 25.85105169527033
+ ],
+ [
+ -80.03153997950822,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ],
+ [
+ -79.99165266066146,
+ 25.913702706113714
+ ],
+ [
+ -80.01159632008485,
+ 25.945028211535405
+ ],
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ],
+ [
+ -80.01159632008485,
+ 25.945028211535405
+ ],
+ [
+ -80.0514836389316,
+ 25.945028211535405
+ ],
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ],
+ [
+ -80.0514836389316,
+ 25.945028211535405
+ ],
+ [
+ -80.07142729835499,
+ 25.913702706113714
+ ],
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ],
+ [
+ -80.07142729835499,
+ 25.913702706113714
+ ],
+ [
+ -80.0514836389316,
+ 25.882377200692023
+ ],
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ],
+ [
+ -80.0514836389316,
+ 25.882377200692023
+ ],
+ [
+ -80.01159632008485,
+ 25.882377200692023
+ ],
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ],
+ [
+ -80.01159632008485,
+ 25.882377200692023
+ ],
+ [
+ -79.99165266066146,
+ 25.913702706113714
+ ],
+ [
+ -80.03153997950822,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ],
+ [
+ -79.99165266066146,
+ 25.9763537169571
+ ],
+ [
+ -80.01159632008485,
+ 26.00767922237879
+ ],
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ],
+ [
+ -80.01159632008485,
+ 26.00767922237879
+ ],
+ [
+ -80.0514836389316,
+ 26.00767922237879
+ ],
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ],
+ [
+ -80.0514836389316,
+ 26.00767922237879
+ ],
+ [
+ -80.07142729835499,
+ 25.9763537169571
+ ],
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ],
+ [
+ -80.07142729835499,
+ 25.9763537169571
+ ],
+ [
+ -80.0514836389316,
+ 25.94502821153541
+ ],
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ],
+ [
+ -80.0514836389316,
+ 25.94502821153541
+ ],
+ [
+ -80.01159632008485,
+ 25.94502821153541
+ ],
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ],
+ [
+ -80.01159632008485,
+ 25.94502821153541
+ ],
+ [
+ -79.99165266066146,
+ 25.9763537169571
+ ],
+ [
+ -80.03153997950822,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ],
+ [
+ -79.99165266066146,
+ 26.039004727800485
+ ],
+ [
+ -80.01159632008485,
+ 26.070330233222176
+ ],
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ],
+ [
+ -80.01159632008485,
+ 26.070330233222176
+ ],
+ [
+ -80.0514836389316,
+ 26.070330233222176
+ ],
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ],
+ [
+ -80.0514836389316,
+ 26.070330233222176
+ ],
+ [
+ -80.07142729835499,
+ 26.039004727800485
+ ],
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ],
+ [
+ -80.07142729835499,
+ 26.039004727800485
+ ],
+ [
+ -80.0514836389316,
+ 26.007679222378794
+ ],
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ],
+ [
+ -80.0514836389316,
+ 26.007679222378794
+ ],
+ [
+ -80.01159632008485,
+ 26.007679222378794
+ ],
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ],
+ [
+ -80.01159632008485,
+ 26.007679222378794
+ ],
+ [
+ -79.99165266066146,
+ 26.039004727800485
+ ],
+ [
+ -80.03153997950822,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ],
+ [
+ -79.99165266066146,
+ 26.10165573864387
+ ],
+ [
+ -80.01159632008485,
+ 26.13298124406556
+ ],
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ],
+ [
+ -80.01159632008485,
+ 26.13298124406556
+ ],
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ],
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ],
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ],
+ [
+ -80.07142729835499,
+ 26.10165573864387
+ ],
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ],
+ [
+ -80.07142729835499,
+ 26.10165573864387
+ ],
+ [
+ -80.0514836389316,
+ 26.07033023322218
+ ],
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ],
+ [
+ -80.0514836389316,
+ 26.07033023322218
+ ],
+ [
+ -80.01159632008485,
+ 26.07033023322218
+ ],
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ],
+ [
+ -80.01159632008485,
+ 26.07033023322218
+ ],
+ [
+ -79.99165266066146,
+ 26.10165573864387
+ ],
+ [
+ -80.03153997950822,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ],
+ [
+ -79.99165266066146,
+ 26.164306749487253
+ ],
+ [
+ -80.01159632008485,
+ 26.195632254908944
+ ],
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ],
+ [
+ -80.01159632008485,
+ 26.195632254908944
+ ],
+ [
+ -80.0514836389316,
+ 26.195632254908944
+ ],
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ],
+ [
+ -80.0514836389316,
+ 26.195632254908944
+ ],
+ [
+ -80.07142729835499,
+ 26.164306749487253
+ ],
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ],
+ [
+ -80.07142729835499,
+ 26.164306749487253
+ ],
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ],
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ],
+ [
+ -80.0514836389316,
+ 26.13298124406556
+ ],
+ [
+ -80.01159632008485,
+ 26.13298124406556
+ ],
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ],
+ [
+ -80.01159632008485,
+ 26.13298124406556
+ ],
+ [
+ -79.99165266066146,
+ 26.164306749487253
+ ],
+ [
+ -80.03153997950822,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ],
+ [
+ -79.99165266066146,
+ 26.22695776033064
+ ],
+ [
+ -80.01159632008485,
+ 26.258283265752333
+ ],
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ],
+ [
+ -80.01159632008485,
+ 26.258283265752333
+ ],
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ],
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ],
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ],
+ [
+ -80.07142729835499,
+ 26.22695776033064
+ ],
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ],
+ [
+ -80.07142729835499,
+ 26.22695776033064
+ ],
+ [
+ -80.0514836389316,
+ 26.19563225490895
+ ],
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ],
+ [
+ -80.0514836389316,
+ 26.19563225490895
+ ],
+ [
+ -80.01159632008485,
+ 26.19563225490895
+ ],
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ],
+ [
+ -80.01159632008485,
+ 26.19563225490895
+ ],
+ [
+ -79.99165266066146,
+ 26.22695776033064
+ ],
+ [
+ -80.03153997950822,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ],
+ [
+ -79.99165266066146,
+ 26.289608771174024
+ ],
+ [
+ -80.01159632008485,
+ 26.320934276595715
+ ],
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ],
+ [
+ -80.01159632008485,
+ 26.320934276595715
+ ],
+ [
+ -80.0514836389316,
+ 26.320934276595715
+ ],
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ],
+ [
+ -80.0514836389316,
+ 26.320934276595715
+ ],
+ [
+ -80.07142729835499,
+ 26.289608771174024
+ ],
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ],
+ [
+ -80.07142729835499,
+ 26.289608771174024
+ ],
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ],
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ],
+ [
+ -80.0514836389316,
+ 26.258283265752333
+ ],
+ [
+ -80.01159632008485,
+ 26.258283265752333
+ ],
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ],
+ [
+ -80.01159632008485,
+ 26.258283265752333
+ ],
+ [
+ -79.99165266066146,
+ 26.289608771174024
+ ],
+ [
+ -80.03153997950822,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ],
+ [
+ -79.99165266066146,
+ 26.35225978201741
+ ],
+ [
+ -80.01159632008485,
+ 26.3835852874391
+ ],
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ],
+ [
+ -80.01159632008485,
+ 26.3835852874391
+ ],
+ [
+ -80.0514836389316,
+ 26.3835852874391
+ ],
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ],
+ [
+ -80.0514836389316,
+ 26.3835852874391
+ ],
+ [
+ -80.07142729835499,
+ 26.35225978201741
+ ],
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ],
+ [
+ -80.07142729835499,
+ 26.35225978201741
+ ],
+ [
+ -80.0514836389316,
+ 26.320934276595718
+ ],
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ],
+ [
+ -80.0514836389316,
+ 26.320934276595718
+ ],
+ [
+ -80.01159632008485,
+ 26.320934276595718
+ ],
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ],
+ [
+ -80.01159632008485,
+ 26.320934276595718
+ ],
+ [
+ -79.99165266066146,
+ 26.35225978201741
+ ],
+ [
+ -80.03153997950822,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ],
+ [
+ -79.99165266066146,
+ 26.414910792860795
+ ],
+ [
+ -80.01159632008485,
+ 26.446236298282486
+ ],
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ],
+ [
+ -80.01159632008485,
+ 26.446236298282486
+ ],
+ [
+ -80.0514836389316,
+ 26.446236298282486
+ ],
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ],
+ [
+ -80.0514836389316,
+ 26.446236298282486
+ ],
+ [
+ -80.07142729835499,
+ 26.414910792860795
+ ],
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ],
+ [
+ -80.07142729835499,
+ 26.414910792860795
+ ],
+ [
+ -80.0514836389316,
+ 26.383585287439104
+ ],
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ],
+ [
+ -80.0514836389316,
+ 26.383585287439104
+ ],
+ [
+ -80.01159632008485,
+ 26.383585287439104
+ ],
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ],
+ [
+ -80.01159632008485,
+ 26.383585287439104
+ ],
+ [
+ -79.99165266066146,
+ 26.414910792860795
+ ],
+ [
+ -80.03153997950822,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ],
+ [
+ -79.9318216823913,
+ 24.942612038041236
+ ],
+ [
+ -79.95176534181469,
+ 24.973937543462927
+ ],
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ],
+ [
+ -79.95176534181469,
+ 24.973937543462927
+ ],
+ [
+ -79.99165266066144,
+ 24.973937543462927
+ ],
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ],
+ [
+ -79.99165266066144,
+ 24.973937543462927
+ ],
+ [
+ -80.01159632008483,
+ 24.942612038041236
+ ],
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ],
+ [
+ -80.01159632008483,
+ 24.942612038041236
+ ],
+ [
+ -79.99165266066144,
+ 24.911286532619545
+ ],
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ],
+ [
+ -79.99165266066144,
+ 24.911286532619545
+ ],
+ [
+ -79.95176534181469,
+ 24.911286532619545
+ ],
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ],
+ [
+ -79.95176534181469,
+ 24.911286532619545
+ ],
+ [
+ -79.9318216823913,
+ 24.942612038041236
+ ],
+ [
+ -79.97170900123807,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ],
+ [
+ -79.9318216823913,
+ 25.005263048884622
+ ],
+ [
+ -79.95176534181469,
+ 25.036588554306313
+ ],
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ],
+ [
+ -79.95176534181469,
+ 25.036588554306313
+ ],
+ [
+ -79.99165266066144,
+ 25.036588554306313
+ ],
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ],
+ [
+ -79.99165266066144,
+ 25.036588554306313
+ ],
+ [
+ -80.01159632008483,
+ 25.005263048884622
+ ],
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ],
+ [
+ -80.01159632008483,
+ 25.005263048884622
+ ],
+ [
+ -79.99165266066144,
+ 24.97393754346293
+ ],
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ],
+ [
+ -79.99165266066144,
+ 24.97393754346293
+ ],
+ [
+ -79.95176534181469,
+ 24.97393754346293
+ ],
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ],
+ [
+ -79.95176534181469,
+ 24.97393754346293
+ ],
+ [
+ -79.9318216823913,
+ 25.005263048884622
+ ],
+ [
+ -79.97170900123807,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ],
+ [
+ -79.9318216823913,
+ 25.067914059728007
+ ],
+ [
+ -79.95176534181469,
+ 25.0992395651497
+ ],
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ],
+ [
+ -79.95176534181469,
+ 25.0992395651497
+ ],
+ [
+ -79.99165266066144,
+ 25.0992395651497
+ ],
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ],
+ [
+ -79.99165266066144,
+ 25.0992395651497
+ ],
+ [
+ -80.01159632008483,
+ 25.067914059728007
+ ],
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ],
+ [
+ -80.01159632008483,
+ 25.067914059728007
+ ],
+ [
+ -79.99165266066144,
+ 25.036588554306316
+ ],
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ],
+ [
+ -79.99165266066144,
+ 25.036588554306316
+ ],
+ [
+ -79.95176534181469,
+ 25.036588554306316
+ ],
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ],
+ [
+ -79.95176534181469,
+ 25.036588554306316
+ ],
+ [
+ -79.9318216823913,
+ 25.067914059728007
+ ],
+ [
+ -79.97170900123807,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ],
+ [
+ -79.9318216823913,
+ 25.130565070571393
+ ],
+ [
+ -79.95176534181469,
+ 25.161890575993084
+ ],
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ],
+ [
+ -79.95176534181469,
+ 25.161890575993084
+ ],
+ [
+ -79.99165266066144,
+ 25.161890575993084
+ ],
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ],
+ [
+ -79.99165266066144,
+ 25.161890575993084
+ ],
+ [
+ -80.01159632008483,
+ 25.130565070571393
+ ],
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ],
+ [
+ -80.01159632008483,
+ 25.130565070571393
+ ],
+ [
+ -79.99165266066144,
+ 25.099239565149702
+ ],
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ],
+ [
+ -79.99165266066144,
+ 25.099239565149702
+ ],
+ [
+ -79.95176534181469,
+ 25.099239565149702
+ ],
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ],
+ [
+ -79.95176534181469,
+ 25.099239565149702
+ ],
+ [
+ -79.9318216823913,
+ 25.130565070571393
+ ],
+ [
+ -79.97170900123807,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ],
+ [
+ -79.9318216823913,
+ 25.19321608141478
+ ],
+ [
+ -79.95176534181469,
+ 25.22454158683647
+ ],
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ],
+ [
+ -79.95176534181469,
+ 25.22454158683647
+ ],
+ [
+ -79.99165266066144,
+ 25.22454158683647
+ ],
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ],
+ [
+ -79.99165266066144,
+ 25.22454158683647
+ ],
+ [
+ -80.01159632008483,
+ 25.19321608141478
+ ],
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ],
+ [
+ -80.01159632008483,
+ 25.19321608141478
+ ],
+ [
+ -79.99165266066144,
+ 25.161890575993088
+ ],
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ],
+ [
+ -79.99165266066144,
+ 25.161890575993088
+ ],
+ [
+ -79.95176534181469,
+ 25.161890575993088
+ ],
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ],
+ [
+ -79.95176534181469,
+ 25.161890575993088
+ ],
+ [
+ -79.9318216823913,
+ 25.19321608141478
+ ],
+ [
+ -79.97170900123807,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ],
+ [
+ -79.9318216823913,
+ 25.255867092258164
+ ],
+ [
+ -79.95176534181469,
+ 25.287192597679855
+ ],
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ],
+ [
+ -79.95176534181469,
+ 25.287192597679855
+ ],
+ [
+ -79.99165266066144,
+ 25.287192597679855
+ ],
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ],
+ [
+ -79.99165266066144,
+ 25.287192597679855
+ ],
+ [
+ -80.01159632008483,
+ 25.255867092258164
+ ],
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ],
+ [
+ -80.01159632008483,
+ 25.255867092258164
+ ],
+ [
+ -79.99165266066144,
+ 25.224541586836473
+ ],
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ],
+ [
+ -79.99165266066144,
+ 25.224541586836473
+ ],
+ [
+ -79.95176534181469,
+ 25.224541586836473
+ ],
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ],
+ [
+ -79.95176534181469,
+ 25.224541586836473
+ ],
+ [
+ -79.9318216823913,
+ 25.255867092258164
+ ],
+ [
+ -79.97170900123807,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ],
+ [
+ -79.9318216823913,
+ 25.31851810310155
+ ],
+ [
+ -79.95176534181469,
+ 25.34984360852324
+ ],
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ],
+ [
+ -79.95176534181469,
+ 25.34984360852324
+ ],
+ [
+ -79.99165266066144,
+ 25.34984360852324
+ ],
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ],
+ [
+ -79.99165266066144,
+ 25.34984360852324
+ ],
+ [
+ -80.01159632008483,
+ 25.31851810310155
+ ],
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ],
+ [
+ -80.01159632008483,
+ 25.31851810310155
+ ],
+ [
+ -79.99165266066144,
+ 25.28719259767986
+ ],
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ],
+ [
+ -79.99165266066144,
+ 25.28719259767986
+ ],
+ [
+ -79.95176534181469,
+ 25.28719259767986
+ ],
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ],
+ [
+ -79.95176534181469,
+ 25.28719259767986
+ ],
+ [
+ -79.9318216823913,
+ 25.31851810310155
+ ],
+ [
+ -79.97170900123807,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ],
+ [
+ -79.9318216823913,
+ 25.381169113944935
+ ],
+ [
+ -79.95176534181469,
+ 25.412494619366626
+ ],
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ],
+ [
+ -79.95176534181469,
+ 25.412494619366626
+ ],
+ [
+ -79.99165266066144,
+ 25.412494619366626
+ ],
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ],
+ [
+ -79.99165266066144,
+ 25.412494619366626
+ ],
+ [
+ -80.01159632008483,
+ 25.381169113944935
+ ],
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ],
+ [
+ -80.01159632008483,
+ 25.381169113944935
+ ],
+ [
+ -79.99165266066144,
+ 25.349843608523244
+ ],
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ],
+ [
+ -79.99165266066144,
+ 25.349843608523244
+ ],
+ [
+ -79.95176534181469,
+ 25.349843608523244
+ ],
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ],
+ [
+ -79.95176534181469,
+ 25.349843608523244
+ ],
+ [
+ -79.9318216823913,
+ 25.381169113944935
+ ],
+ [
+ -79.97170900123807,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ],
+ [
+ -79.9318216823913,
+ 25.44382012478832
+ ],
+ [
+ -79.95176534181469,
+ 25.47514563021001
+ ],
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ],
+ [
+ -79.95176534181469,
+ 25.47514563021001
+ ],
+ [
+ -79.99165266066144,
+ 25.47514563021001
+ ],
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ],
+ [
+ -79.99165266066144,
+ 25.47514563021001
+ ],
+ [
+ -80.01159632008483,
+ 25.44382012478832
+ ],
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ],
+ [
+ -80.01159632008483,
+ 25.44382012478832
+ ],
+ [
+ -79.99165266066144,
+ 25.41249461936663
+ ],
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ],
+ [
+ -79.99165266066144,
+ 25.41249461936663
+ ],
+ [
+ -79.95176534181469,
+ 25.41249461936663
+ ],
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ],
+ [
+ -79.95176534181469,
+ 25.41249461936663
+ ],
+ [
+ -79.9318216823913,
+ 25.44382012478832
+ ],
+ [
+ -79.97170900123807,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ],
+ [
+ -79.9318216823913,
+ 25.506471135631706
+ ],
+ [
+ -79.95176534181469,
+ 25.537796641053397
+ ],
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ],
+ [
+ -79.95176534181469,
+ 25.537796641053397
+ ],
+ [
+ -79.99165266066144,
+ 25.537796641053397
+ ],
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ],
+ [
+ -79.99165266066144,
+ 25.537796641053397
+ ],
+ [
+ -80.01159632008483,
+ 25.506471135631706
+ ],
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ],
+ [
+ -80.01159632008483,
+ 25.506471135631706
+ ],
+ [
+ -79.99165266066144,
+ 25.475145630210015
+ ],
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ],
+ [
+ -79.99165266066144,
+ 25.475145630210015
+ ],
+ [
+ -79.95176534181469,
+ 25.475145630210015
+ ],
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ],
+ [
+ -79.95176534181469,
+ 25.475145630210015
+ ],
+ [
+ -79.9318216823913,
+ 25.506471135631706
+ ],
+ [
+ -79.97170900123807,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ],
+ [
+ -79.9318216823913,
+ 25.56912214647509
+ ],
+ [
+ -79.95176534181469,
+ 25.600447651896783
+ ],
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ],
+ [
+ -79.95176534181469,
+ 25.600447651896783
+ ],
+ [
+ -79.99165266066144,
+ 25.600447651896783
+ ],
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ],
+ [
+ -79.99165266066144,
+ 25.600447651896783
+ ],
+ [
+ -80.01159632008483,
+ 25.56912214647509
+ ],
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ],
+ [
+ -80.01159632008483,
+ 25.56912214647509
+ ],
+ [
+ -79.99165266066144,
+ 25.5377966410534
+ ],
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ],
+ [
+ -79.99165266066144,
+ 25.5377966410534
+ ],
+ [
+ -79.95176534181469,
+ 25.5377966410534
+ ],
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ],
+ [
+ -79.95176534181469,
+ 25.5377966410534
+ ],
+ [
+ -79.9318216823913,
+ 25.56912214647509
+ ],
+ [
+ -79.97170900123807,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ],
+ [
+ -79.9318216823913,
+ 25.631773157318477
+ ],
+ [
+ -79.95176534181469,
+ 25.66309866274017
+ ],
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ],
+ [
+ -79.95176534181469,
+ 25.66309866274017
+ ],
+ [
+ -79.99165266066144,
+ 25.66309866274017
+ ],
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ],
+ [
+ -79.99165266066144,
+ 25.66309866274017
+ ],
+ [
+ -80.01159632008483,
+ 25.631773157318477
+ ],
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ],
+ [
+ -80.01159632008483,
+ 25.631773157318477
+ ],
+ [
+ -79.99165266066144,
+ 25.600447651896786
+ ],
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ],
+ [
+ -79.99165266066144,
+ 25.600447651896786
+ ],
+ [
+ -79.95176534181469,
+ 25.600447651896786
+ ],
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ],
+ [
+ -79.95176534181469,
+ 25.600447651896786
+ ],
+ [
+ -79.9318216823913,
+ 25.631773157318477
+ ],
+ [
+ -79.97170900123807,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ],
+ [
+ -79.9318216823913,
+ 25.694424168161863
+ ],
+ [
+ -79.95176534181469,
+ 25.725749673583554
+ ],
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ],
+ [
+ -79.95176534181469,
+ 25.725749673583554
+ ],
+ [
+ -79.99165266066144,
+ 25.725749673583554
+ ],
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ],
+ [
+ -79.99165266066144,
+ 25.725749673583554
+ ],
+ [
+ -80.01159632008483,
+ 25.694424168161863
+ ],
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ],
+ [
+ -80.01159632008483,
+ 25.694424168161863
+ ],
+ [
+ -79.99165266066144,
+ 25.663098662740172
+ ],
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ],
+ [
+ -79.99165266066144,
+ 25.663098662740172
+ ],
+ [
+ -79.95176534181469,
+ 25.663098662740172
+ ],
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ],
+ [
+ -79.95176534181469,
+ 25.663098662740172
+ ],
+ [
+ -79.9318216823913,
+ 25.694424168161863
+ ],
+ [
+ -79.97170900123807,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ],
+ [
+ -79.9318216823913,
+ 25.75707517900525
+ ],
+ [
+ -79.95176534181469,
+ 25.78840068442694
+ ],
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ],
+ [
+ -79.95176534181469,
+ 25.78840068442694
+ ],
+ [
+ -79.99165266066144,
+ 25.78840068442694
+ ],
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ],
+ [
+ -79.99165266066144,
+ 25.78840068442694
+ ],
+ [
+ -80.01159632008483,
+ 25.75707517900525
+ ],
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ],
+ [
+ -80.01159632008483,
+ 25.75707517900525
+ ],
+ [
+ -79.99165266066144,
+ 25.725749673583557
+ ],
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ],
+ [
+ -79.99165266066144,
+ 25.725749673583557
+ ],
+ [
+ -79.95176534181469,
+ 25.725749673583557
+ ],
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ],
+ [
+ -79.95176534181469,
+ 25.725749673583557
+ ],
+ [
+ -79.9318216823913,
+ 25.75707517900525
+ ],
+ [
+ -79.97170900123807,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ],
+ [
+ -79.9318216823913,
+ 25.819726189848634
+ ],
+ [
+ -79.95176534181469,
+ 25.851051695270325
+ ],
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ],
+ [
+ -79.95176534181469,
+ 25.851051695270325
+ ],
+ [
+ -79.99165266066144,
+ 25.851051695270325
+ ],
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ],
+ [
+ -79.99165266066144,
+ 25.851051695270325
+ ],
+ [
+ -80.01159632008483,
+ 25.819726189848634
+ ],
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ],
+ [
+ -80.01159632008483,
+ 25.819726189848634
+ ],
+ [
+ -79.99165266066144,
+ 25.788400684426943
+ ],
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ],
+ [
+ -79.99165266066144,
+ 25.788400684426943
+ ],
+ [
+ -79.95176534181469,
+ 25.788400684426943
+ ],
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ],
+ [
+ -79.95176534181469,
+ 25.788400684426943
+ ],
+ [
+ -79.9318216823913,
+ 25.819726189848634
+ ],
+ [
+ -79.97170900123807,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ],
+ [
+ -79.9318216823913,
+ 25.88237720069202
+ ],
+ [
+ -79.95176534181469,
+ 25.91370270611371
+ ],
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ],
+ [
+ -79.95176534181469,
+ 25.91370270611371
+ ],
+ [
+ -79.99165266066144,
+ 25.91370270611371
+ ],
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ],
+ [
+ -79.99165266066144,
+ 25.91370270611371
+ ],
+ [
+ -80.01159632008483,
+ 25.88237720069202
+ ],
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ],
+ [
+ -80.01159632008483,
+ 25.88237720069202
+ ],
+ [
+ -79.99165266066144,
+ 25.85105169527033
+ ],
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ],
+ [
+ -79.99165266066144,
+ 25.85105169527033
+ ],
+ [
+ -79.95176534181469,
+ 25.85105169527033
+ ],
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ],
+ [
+ -79.95176534181469,
+ 25.85105169527033
+ ],
+ [
+ -79.9318216823913,
+ 25.88237720069202
+ ],
+ [
+ -79.97170900123807,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ],
+ [
+ -79.9318216823913,
+ 25.945028211535405
+ ],
+ [
+ -79.95176534181469,
+ 25.976353716957096
+ ],
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ],
+ [
+ -79.95176534181469,
+ 25.976353716957096
+ ],
+ [
+ -79.99165266066144,
+ 25.976353716957096
+ ],
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ],
+ [
+ -79.99165266066144,
+ 25.976353716957096
+ ],
+ [
+ -80.01159632008483,
+ 25.945028211535405
+ ],
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ],
+ [
+ -80.01159632008483,
+ 25.945028211535405
+ ],
+ [
+ -79.99165266066144,
+ 25.913702706113714
+ ],
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ],
+ [
+ -79.99165266066144,
+ 25.913702706113714
+ ],
+ [
+ -79.95176534181469,
+ 25.913702706113714
+ ],
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ],
+ [
+ -79.95176534181469,
+ 25.913702706113714
+ ],
+ [
+ -79.9318216823913,
+ 25.945028211535405
+ ],
+ [
+ -79.97170900123807,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ],
+ [
+ -79.9318216823913,
+ 26.00767922237879
+ ],
+ [
+ -79.95176534181469,
+ 26.03900472780048
+ ],
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ],
+ [
+ -79.95176534181469,
+ 26.03900472780048
+ ],
+ [
+ -79.99165266066144,
+ 26.03900472780048
+ ],
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ],
+ [
+ -79.99165266066144,
+ 26.03900472780048
+ ],
+ [
+ -80.01159632008483,
+ 26.00767922237879
+ ],
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ],
+ [
+ -80.01159632008483,
+ 26.00767922237879
+ ],
+ [
+ -79.99165266066144,
+ 25.9763537169571
+ ],
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ],
+ [
+ -79.99165266066144,
+ 25.9763537169571
+ ],
+ [
+ -79.95176534181469,
+ 25.9763537169571
+ ],
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ],
+ [
+ -79.95176534181469,
+ 25.9763537169571
+ ],
+ [
+ -79.9318216823913,
+ 26.00767922237879
+ ],
+ [
+ -79.97170900123807,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ],
+ [
+ -79.9318216823913,
+ 26.070330233222176
+ ],
+ [
+ -79.95176534181469,
+ 26.101655738643867
+ ],
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ],
+ [
+ -79.95176534181469,
+ 26.101655738643867
+ ],
+ [
+ -79.99165266066144,
+ 26.101655738643867
+ ],
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ],
+ [
+ -79.99165266066144,
+ 26.101655738643867
+ ],
+ [
+ -80.01159632008483,
+ 26.070330233222176
+ ],
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ],
+ [
+ -80.01159632008483,
+ 26.070330233222176
+ ],
+ [
+ -79.99165266066144,
+ 26.039004727800485
+ ],
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ],
+ [
+ -79.99165266066144,
+ 26.039004727800485
+ ],
+ [
+ -79.95176534181469,
+ 26.039004727800485
+ ],
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ],
+ [
+ -79.95176534181469,
+ 26.039004727800485
+ ],
+ [
+ -79.9318216823913,
+ 26.070330233222176
+ ],
+ [
+ -79.97170900123807,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ],
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ],
+ [
+ -79.95176534181469,
+ 26.164306749487253
+ ],
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ],
+ [
+ -79.95176534181469,
+ 26.164306749487253
+ ],
+ [
+ -79.99165266066144,
+ 26.164306749487253
+ ],
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ],
+ [
+ -79.99165266066144,
+ 26.164306749487253
+ ],
+ [
+ -80.01159632008483,
+ 26.13298124406556
+ ],
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ],
+ [
+ -80.01159632008483,
+ 26.13298124406556
+ ],
+ [
+ -79.99165266066144,
+ 26.10165573864387
+ ],
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ],
+ [
+ -79.99165266066144,
+ 26.10165573864387
+ ],
+ [
+ -79.95176534181469,
+ 26.10165573864387
+ ],
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ],
+ [
+ -79.95176534181469,
+ 26.10165573864387
+ ],
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ],
+ [
+ -79.97170900123807,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ],
+ [
+ -79.9318216823913,
+ 26.195632254908944
+ ],
+ [
+ -79.95176534181469,
+ 26.226957760330635
+ ],
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ],
+ [
+ -79.95176534181469,
+ 26.226957760330635
+ ],
+ [
+ -79.99165266066144,
+ 26.226957760330635
+ ],
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ],
+ [
+ -79.99165266066144,
+ 26.226957760330635
+ ],
+ [
+ -80.01159632008483,
+ 26.195632254908944
+ ],
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ],
+ [
+ -80.01159632008483,
+ 26.195632254908944
+ ],
+ [
+ -79.99165266066144,
+ 26.164306749487253
+ ],
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ],
+ [
+ -79.99165266066144,
+ 26.164306749487253
+ ],
+ [
+ -79.95176534181469,
+ 26.164306749487253
+ ],
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ],
+ [
+ -79.95176534181469,
+ 26.164306749487253
+ ],
+ [
+ -79.9318216823913,
+ 26.195632254908944
+ ],
+ [
+ -79.97170900123807,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ],
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ],
+ [
+ -79.95176534181469,
+ 26.289608771174024
+ ],
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ],
+ [
+ -79.95176534181469,
+ 26.289608771174024
+ ],
+ [
+ -79.99165266066144,
+ 26.289608771174024
+ ],
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ],
+ [
+ -79.99165266066144,
+ 26.289608771174024
+ ],
+ [
+ -80.01159632008483,
+ 26.258283265752333
+ ],
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ],
+ [
+ -80.01159632008483,
+ 26.258283265752333
+ ],
+ [
+ -79.99165266066144,
+ 26.22695776033064
+ ],
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ],
+ [
+ -79.99165266066144,
+ 26.22695776033064
+ ],
+ [
+ -79.95176534181469,
+ 26.22695776033064
+ ],
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ],
+ [
+ -79.95176534181469,
+ 26.22695776033064
+ ],
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ],
+ [
+ -79.97170900123807,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ],
+ [
+ -79.9318216823913,
+ 26.320934276595715
+ ],
+ [
+ -79.95176534181469,
+ 26.352259782017406
+ ],
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ],
+ [
+ -79.95176534181469,
+ 26.352259782017406
+ ],
+ [
+ -79.99165266066144,
+ 26.352259782017406
+ ],
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ],
+ [
+ -79.99165266066144,
+ 26.352259782017406
+ ],
+ [
+ -80.01159632008483,
+ 26.320934276595715
+ ],
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ],
+ [
+ -80.01159632008483,
+ 26.320934276595715
+ ],
+ [
+ -79.99165266066144,
+ 26.289608771174024
+ ],
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ],
+ [
+ -79.99165266066144,
+ 26.289608771174024
+ ],
+ [
+ -79.95176534181469,
+ 26.289608771174024
+ ],
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ],
+ [
+ -79.95176534181469,
+ 26.289608771174024
+ ],
+ [
+ -79.9318216823913,
+ 26.320934276595715
+ ],
+ [
+ -79.97170900123807,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ],
+ [
+ -79.9318216823913,
+ 26.3835852874391
+ ],
+ [
+ -79.95176534181469,
+ 26.41491079286079
+ ],
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ],
+ [
+ -79.95176534181469,
+ 26.41491079286079
+ ],
+ [
+ -79.99165266066144,
+ 26.41491079286079
+ ],
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ],
+ [
+ -79.99165266066144,
+ 26.41491079286079
+ ],
+ [
+ -80.01159632008483,
+ 26.3835852874391
+ ],
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ],
+ [
+ -80.01159632008483,
+ 26.3835852874391
+ ],
+ [
+ -79.99165266066144,
+ 26.35225978201741
+ ],
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ],
+ [
+ -79.99165266066144,
+ 26.35225978201741
+ ],
+ [
+ -79.95176534181469,
+ 26.35225978201741
+ ],
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ],
+ [
+ -79.95176534181469,
+ 26.35225978201741
+ ],
+ [
+ -79.9318216823913,
+ 26.3835852874391
+ ],
+ [
+ -79.97170900123807,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ],
+ [
+ -79.9318216823913,
+ 26.446236298282486
+ ],
+ [
+ -79.95176534181469,
+ 26.477561803704177
+ ],
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ],
+ [
+ -79.95176534181469,
+ 26.477561803704177
+ ],
+ [
+ -79.99165266066144,
+ 26.477561803704177
+ ],
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ],
+ [
+ -79.99165266066144,
+ 26.477561803704177
+ ],
+ [
+ -80.01159632008483,
+ 26.446236298282486
+ ],
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ],
+ [
+ -80.01159632008483,
+ 26.446236298282486
+ ],
+ [
+ -79.99165266066144,
+ 26.414910792860795
+ ],
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ],
+ [
+ -79.99165266066144,
+ 26.414910792860795
+ ],
+ [
+ -79.95176534181469,
+ 26.414910792860795
+ ],
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ],
+ [
+ -79.95176534181469,
+ 26.414910792860795
+ ],
+ [
+ -79.9318216823913,
+ 26.446236298282486
+ ],
+ [
+ -79.97170900123807,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ],
+ [
+ -79.87199070412116,
+ 24.911286532619545
+ ],
+ [
+ -79.89193436354455,
+ 24.942612038041236
+ ],
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ],
+ [
+ -79.89193436354455,
+ 24.942612038041236
+ ],
+ [
+ -79.9318216823913,
+ 24.942612038041236
+ ],
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ],
+ [
+ -79.9318216823913,
+ 24.942612038041236
+ ],
+ [
+ -79.95176534181469,
+ 24.911286532619545
+ ],
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ],
+ [
+ -79.95176534181469,
+ 24.911286532619545
+ ],
+ [
+ -79.9318216823913,
+ 24.879961027197854
+ ],
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ],
+ [
+ -79.9318216823913,
+ 24.879961027197854
+ ],
+ [
+ -79.89193436354455,
+ 24.879961027197854
+ ],
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ],
+ [
+ -79.89193436354455,
+ 24.879961027197854
+ ],
+ [
+ -79.87199070412116,
+ 24.911286532619545
+ ],
+ [
+ -79.91187802296793,
+ 24.911286532619545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ],
+ [
+ -79.87199070412116,
+ 24.97393754346293
+ ],
+ [
+ -79.89193436354455,
+ 25.005263048884622
+ ],
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ],
+ [
+ -79.89193436354455,
+ 25.005263048884622
+ ],
+ [
+ -79.9318216823913,
+ 25.005263048884622
+ ],
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ],
+ [
+ -79.9318216823913,
+ 25.005263048884622
+ ],
+ [
+ -79.95176534181469,
+ 24.97393754346293
+ ],
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ],
+ [
+ -79.95176534181469,
+ 24.97393754346293
+ ],
+ [
+ -79.9318216823913,
+ 24.94261203804124
+ ],
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ],
+ [
+ -79.9318216823913,
+ 24.94261203804124
+ ],
+ [
+ -79.89193436354455,
+ 24.94261203804124
+ ],
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ],
+ [
+ -79.89193436354455,
+ 24.94261203804124
+ ],
+ [
+ -79.87199070412116,
+ 24.97393754346293
+ ],
+ [
+ -79.91187802296793,
+ 24.97393754346293
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ],
+ [
+ -79.87199070412116,
+ 25.036588554306316
+ ],
+ [
+ -79.89193436354455,
+ 25.067914059728007
+ ],
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ],
+ [
+ -79.89193436354455,
+ 25.067914059728007
+ ],
+ [
+ -79.9318216823913,
+ 25.067914059728007
+ ],
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ],
+ [
+ -79.9318216823913,
+ 25.067914059728007
+ ],
+ [
+ -79.95176534181469,
+ 25.036588554306316
+ ],
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ],
+ [
+ -79.95176534181469,
+ 25.036588554306316
+ ],
+ [
+ -79.9318216823913,
+ 25.005263048884625
+ ],
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ],
+ [
+ -79.9318216823913,
+ 25.005263048884625
+ ],
+ [
+ -79.89193436354455,
+ 25.005263048884625
+ ],
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ],
+ [
+ -79.89193436354455,
+ 25.005263048884625
+ ],
+ [
+ -79.87199070412116,
+ 25.036588554306316
+ ],
+ [
+ -79.91187802296793,
+ 25.036588554306316
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ],
+ [
+ -79.87199070412116,
+ 25.099239565149702
+ ],
+ [
+ -79.89193436354455,
+ 25.130565070571393
+ ],
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ],
+ [
+ -79.89193436354455,
+ 25.130565070571393
+ ],
+ [
+ -79.9318216823913,
+ 25.130565070571393
+ ],
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ],
+ [
+ -79.9318216823913,
+ 25.130565070571393
+ ],
+ [
+ -79.95176534181469,
+ 25.099239565149702
+ ],
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ],
+ [
+ -79.95176534181469,
+ 25.099239565149702
+ ],
+ [
+ -79.9318216823913,
+ 25.06791405972801
+ ],
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ],
+ [
+ -79.9318216823913,
+ 25.06791405972801
+ ],
+ [
+ -79.89193436354455,
+ 25.06791405972801
+ ],
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ],
+ [
+ -79.89193436354455,
+ 25.06791405972801
+ ],
+ [
+ -79.87199070412116,
+ 25.099239565149702
+ ],
+ [
+ -79.91187802296793,
+ 25.099239565149702
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ],
+ [
+ -79.87199070412116,
+ 25.161890575993088
+ ],
+ [
+ -79.89193436354455,
+ 25.19321608141478
+ ],
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ],
+ [
+ -79.89193436354455,
+ 25.19321608141478
+ ],
+ [
+ -79.9318216823913,
+ 25.19321608141478
+ ],
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ],
+ [
+ -79.9318216823913,
+ 25.19321608141478
+ ],
+ [
+ -79.95176534181469,
+ 25.161890575993088
+ ],
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ],
+ [
+ -79.95176534181469,
+ 25.161890575993088
+ ],
+ [
+ -79.9318216823913,
+ 25.130565070571397
+ ],
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ],
+ [
+ -79.9318216823913,
+ 25.130565070571397
+ ],
+ [
+ -79.89193436354455,
+ 25.130565070571397
+ ],
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ],
+ [
+ -79.89193436354455,
+ 25.130565070571397
+ ],
+ [
+ -79.87199070412116,
+ 25.161890575993088
+ ],
+ [
+ -79.91187802296793,
+ 25.161890575993088
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ],
+ [
+ -79.87199070412116,
+ 25.224541586836473
+ ],
+ [
+ -79.89193436354455,
+ 25.255867092258164
+ ],
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ],
+ [
+ -79.89193436354455,
+ 25.255867092258164
+ ],
+ [
+ -79.9318216823913,
+ 25.255867092258164
+ ],
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ],
+ [
+ -79.9318216823913,
+ 25.255867092258164
+ ],
+ [
+ -79.95176534181469,
+ 25.224541586836473
+ ],
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ],
+ [
+ -79.95176534181469,
+ 25.224541586836473
+ ],
+ [
+ -79.9318216823913,
+ 25.193216081414782
+ ],
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ],
+ [
+ -79.9318216823913,
+ 25.193216081414782
+ ],
+ [
+ -79.89193436354455,
+ 25.193216081414782
+ ],
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ],
+ [
+ -79.89193436354455,
+ 25.193216081414782
+ ],
+ [
+ -79.87199070412116,
+ 25.224541586836473
+ ],
+ [
+ -79.91187802296793,
+ 25.224541586836473
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ],
+ [
+ -79.87199070412116,
+ 25.28719259767986
+ ],
+ [
+ -79.89193436354455,
+ 25.31851810310155
+ ],
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ],
+ [
+ -79.89193436354455,
+ 25.31851810310155
+ ],
+ [
+ -79.9318216823913,
+ 25.31851810310155
+ ],
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ],
+ [
+ -79.9318216823913,
+ 25.31851810310155
+ ],
+ [
+ -79.95176534181469,
+ 25.28719259767986
+ ],
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ],
+ [
+ -79.95176534181469,
+ 25.28719259767986
+ ],
+ [
+ -79.9318216823913,
+ 25.255867092258168
+ ],
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ],
+ [
+ -79.9318216823913,
+ 25.255867092258168
+ ],
+ [
+ -79.89193436354455,
+ 25.255867092258168
+ ],
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ],
+ [
+ -79.89193436354455,
+ 25.255867092258168
+ ],
+ [
+ -79.87199070412116,
+ 25.28719259767986
+ ],
+ [
+ -79.91187802296793,
+ 25.28719259767986
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ],
+ [
+ -79.87199070412116,
+ 25.349843608523244
+ ],
+ [
+ -79.89193436354455,
+ 25.381169113944935
+ ],
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ],
+ [
+ -79.89193436354455,
+ 25.381169113944935
+ ],
+ [
+ -79.9318216823913,
+ 25.381169113944935
+ ],
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ],
+ [
+ -79.9318216823913,
+ 25.381169113944935
+ ],
+ [
+ -79.95176534181469,
+ 25.349843608523244
+ ],
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ],
+ [
+ -79.95176534181469,
+ 25.349843608523244
+ ],
+ [
+ -79.9318216823913,
+ 25.318518103101553
+ ],
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ],
+ [
+ -79.9318216823913,
+ 25.318518103101553
+ ],
+ [
+ -79.89193436354455,
+ 25.318518103101553
+ ],
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ],
+ [
+ -79.89193436354455,
+ 25.318518103101553
+ ],
+ [
+ -79.87199070412116,
+ 25.349843608523244
+ ],
+ [
+ -79.91187802296793,
+ 25.349843608523244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ],
+ [
+ -79.87199070412116,
+ 25.41249461936663
+ ],
+ [
+ -79.89193436354455,
+ 25.44382012478832
+ ],
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ],
+ [
+ -79.89193436354455,
+ 25.44382012478832
+ ],
+ [
+ -79.9318216823913,
+ 25.44382012478832
+ ],
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ],
+ [
+ -79.9318216823913,
+ 25.44382012478832
+ ],
+ [
+ -79.95176534181469,
+ 25.41249461936663
+ ],
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ],
+ [
+ -79.95176534181469,
+ 25.41249461936663
+ ],
+ [
+ -79.9318216823913,
+ 25.38116911394494
+ ],
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ],
+ [
+ -79.9318216823913,
+ 25.38116911394494
+ ],
+ [
+ -79.89193436354455,
+ 25.38116911394494
+ ],
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ],
+ [
+ -79.89193436354455,
+ 25.38116911394494
+ ],
+ [
+ -79.87199070412116,
+ 25.41249461936663
+ ],
+ [
+ -79.91187802296793,
+ 25.41249461936663
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ],
+ [
+ -79.87199070412116,
+ 25.475145630210015
+ ],
+ [
+ -79.89193436354455,
+ 25.506471135631706
+ ],
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ],
+ [
+ -79.89193436354455,
+ 25.506471135631706
+ ],
+ [
+ -79.9318216823913,
+ 25.506471135631706
+ ],
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ],
+ [
+ -79.9318216823913,
+ 25.506471135631706
+ ],
+ [
+ -79.95176534181469,
+ 25.475145630210015
+ ],
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ],
+ [
+ -79.95176534181469,
+ 25.475145630210015
+ ],
+ [
+ -79.9318216823913,
+ 25.443820124788324
+ ],
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ],
+ [
+ -79.9318216823913,
+ 25.443820124788324
+ ],
+ [
+ -79.89193436354455,
+ 25.443820124788324
+ ],
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ],
+ [
+ -79.89193436354455,
+ 25.443820124788324
+ ],
+ [
+ -79.87199070412116,
+ 25.475145630210015
+ ],
+ [
+ -79.91187802296793,
+ 25.475145630210015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ],
+ [
+ -79.87199070412116,
+ 25.5377966410534
+ ],
+ [
+ -79.89193436354455,
+ 25.56912214647509
+ ],
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ],
+ [
+ -79.89193436354455,
+ 25.56912214647509
+ ],
+ [
+ -79.9318216823913,
+ 25.56912214647509
+ ],
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ],
+ [
+ -79.9318216823913,
+ 25.56912214647509
+ ],
+ [
+ -79.95176534181469,
+ 25.5377966410534
+ ],
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ],
+ [
+ -79.95176534181469,
+ 25.5377966410534
+ ],
+ [
+ -79.9318216823913,
+ 25.50647113563171
+ ],
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ],
+ [
+ -79.9318216823913,
+ 25.50647113563171
+ ],
+ [
+ -79.89193436354455,
+ 25.50647113563171
+ ],
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ],
+ [
+ -79.89193436354455,
+ 25.50647113563171
+ ],
+ [
+ -79.87199070412116,
+ 25.5377966410534
+ ],
+ [
+ -79.91187802296793,
+ 25.5377966410534
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ],
+ [
+ -79.87199070412116,
+ 25.600447651896786
+ ],
+ [
+ -79.89193436354455,
+ 25.631773157318477
+ ],
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ],
+ [
+ -79.89193436354455,
+ 25.631773157318477
+ ],
+ [
+ -79.9318216823913,
+ 25.631773157318477
+ ],
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ],
+ [
+ -79.9318216823913,
+ 25.631773157318477
+ ],
+ [
+ -79.95176534181469,
+ 25.600447651896786
+ ],
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ],
+ [
+ -79.95176534181469,
+ 25.600447651896786
+ ],
+ [
+ -79.9318216823913,
+ 25.569122146475095
+ ],
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ],
+ [
+ -79.9318216823913,
+ 25.569122146475095
+ ],
+ [
+ -79.89193436354455,
+ 25.569122146475095
+ ],
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ],
+ [
+ -79.89193436354455,
+ 25.569122146475095
+ ],
+ [
+ -79.87199070412116,
+ 25.600447651896786
+ ],
+ [
+ -79.91187802296793,
+ 25.600447651896786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ],
+ [
+ -79.87199070412116,
+ 25.663098662740172
+ ],
+ [
+ -79.89193436354455,
+ 25.694424168161863
+ ],
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ],
+ [
+ -79.89193436354455,
+ 25.694424168161863
+ ],
+ [
+ -79.9318216823913,
+ 25.694424168161863
+ ],
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ],
+ [
+ -79.9318216823913,
+ 25.694424168161863
+ ],
+ [
+ -79.95176534181469,
+ 25.663098662740172
+ ],
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ],
+ [
+ -79.95176534181469,
+ 25.663098662740172
+ ],
+ [
+ -79.9318216823913,
+ 25.63177315731848
+ ],
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ],
+ [
+ -79.9318216823913,
+ 25.63177315731848
+ ],
+ [
+ -79.89193436354455,
+ 25.63177315731848
+ ],
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ],
+ [
+ -79.89193436354455,
+ 25.63177315731848
+ ],
+ [
+ -79.87199070412116,
+ 25.663098662740172
+ ],
+ [
+ -79.91187802296793,
+ 25.663098662740172
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ],
+ [
+ -79.87199070412116,
+ 25.725749673583557
+ ],
+ [
+ -79.89193436354455,
+ 25.75707517900525
+ ],
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ],
+ [
+ -79.89193436354455,
+ 25.75707517900525
+ ],
+ [
+ -79.9318216823913,
+ 25.75707517900525
+ ],
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ],
+ [
+ -79.9318216823913,
+ 25.75707517900525
+ ],
+ [
+ -79.95176534181469,
+ 25.725749673583557
+ ],
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ],
+ [
+ -79.95176534181469,
+ 25.725749673583557
+ ],
+ [
+ -79.9318216823913,
+ 25.694424168161866
+ ],
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ],
+ [
+ -79.9318216823913,
+ 25.694424168161866
+ ],
+ [
+ -79.89193436354455,
+ 25.694424168161866
+ ],
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ],
+ [
+ -79.89193436354455,
+ 25.694424168161866
+ ],
+ [
+ -79.87199070412116,
+ 25.725749673583557
+ ],
+ [
+ -79.91187802296793,
+ 25.725749673583557
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ],
+ [
+ -79.87199070412116,
+ 25.788400684426943
+ ],
+ [
+ -79.89193436354455,
+ 25.819726189848634
+ ],
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ],
+ [
+ -79.89193436354455,
+ 25.819726189848634
+ ],
+ [
+ -79.9318216823913,
+ 25.819726189848634
+ ],
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ],
+ [
+ -79.9318216823913,
+ 25.819726189848634
+ ],
+ [
+ -79.95176534181469,
+ 25.788400684426943
+ ],
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ],
+ [
+ -79.95176534181469,
+ 25.788400684426943
+ ],
+ [
+ -79.9318216823913,
+ 25.757075179005252
+ ],
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ],
+ [
+ -79.9318216823913,
+ 25.757075179005252
+ ],
+ [
+ -79.89193436354455,
+ 25.757075179005252
+ ],
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ],
+ [
+ -79.89193436354455,
+ 25.757075179005252
+ ],
+ [
+ -79.87199070412116,
+ 25.788400684426943
+ ],
+ [
+ -79.91187802296793,
+ 25.788400684426943
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ],
+ [
+ -79.87199070412116,
+ 25.85105169527033
+ ],
+ [
+ -79.89193436354455,
+ 25.88237720069202
+ ],
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ],
+ [
+ -79.89193436354455,
+ 25.88237720069202
+ ],
+ [
+ -79.9318216823913,
+ 25.88237720069202
+ ],
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ],
+ [
+ -79.9318216823913,
+ 25.88237720069202
+ ],
+ [
+ -79.95176534181469,
+ 25.85105169527033
+ ],
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ],
+ [
+ -79.95176534181469,
+ 25.85105169527033
+ ],
+ [
+ -79.9318216823913,
+ 25.819726189848637
+ ],
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ],
+ [
+ -79.9318216823913,
+ 25.819726189848637
+ ],
+ [
+ -79.89193436354455,
+ 25.819726189848637
+ ],
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ],
+ [
+ -79.89193436354455,
+ 25.819726189848637
+ ],
+ [
+ -79.87199070412116,
+ 25.85105169527033
+ ],
+ [
+ -79.91187802296793,
+ 25.85105169527033
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ],
+ [
+ -79.87199070412116,
+ 25.913702706113714
+ ],
+ [
+ -79.89193436354455,
+ 25.945028211535405
+ ],
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ],
+ [
+ -79.89193436354455,
+ 25.945028211535405
+ ],
+ [
+ -79.9318216823913,
+ 25.945028211535405
+ ],
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ],
+ [
+ -79.9318216823913,
+ 25.945028211535405
+ ],
+ [
+ -79.95176534181469,
+ 25.913702706113714
+ ],
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ],
+ [
+ -79.95176534181469,
+ 25.913702706113714
+ ],
+ [
+ -79.9318216823913,
+ 25.882377200692023
+ ],
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ],
+ [
+ -79.9318216823913,
+ 25.882377200692023
+ ],
+ [
+ -79.89193436354455,
+ 25.882377200692023
+ ],
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ],
+ [
+ -79.89193436354455,
+ 25.882377200692023
+ ],
+ [
+ -79.87199070412116,
+ 25.913702706113714
+ ],
+ [
+ -79.91187802296793,
+ 25.913702706113714
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ],
+ [
+ -79.87199070412116,
+ 25.9763537169571
+ ],
+ [
+ -79.89193436354455,
+ 26.00767922237879
+ ],
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ],
+ [
+ -79.89193436354455,
+ 26.00767922237879
+ ],
+ [
+ -79.9318216823913,
+ 26.00767922237879
+ ],
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ],
+ [
+ -79.9318216823913,
+ 26.00767922237879
+ ],
+ [
+ -79.95176534181469,
+ 25.9763537169571
+ ],
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ],
+ [
+ -79.95176534181469,
+ 25.9763537169571
+ ],
+ [
+ -79.9318216823913,
+ 25.94502821153541
+ ],
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ],
+ [
+ -79.9318216823913,
+ 25.94502821153541
+ ],
+ [
+ -79.89193436354455,
+ 25.94502821153541
+ ],
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ],
+ [
+ -79.89193436354455,
+ 25.94502821153541
+ ],
+ [
+ -79.87199070412116,
+ 25.9763537169571
+ ],
+ [
+ -79.91187802296793,
+ 25.9763537169571
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ],
+ [
+ -79.87199070412116,
+ 26.039004727800485
+ ],
+ [
+ -79.89193436354455,
+ 26.070330233222176
+ ],
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ],
+ [
+ -79.89193436354455,
+ 26.070330233222176
+ ],
+ [
+ -79.9318216823913,
+ 26.070330233222176
+ ],
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ],
+ [
+ -79.9318216823913,
+ 26.070330233222176
+ ],
+ [
+ -79.95176534181469,
+ 26.039004727800485
+ ],
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ],
+ [
+ -79.95176534181469,
+ 26.039004727800485
+ ],
+ [
+ -79.9318216823913,
+ 26.007679222378794
+ ],
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ],
+ [
+ -79.9318216823913,
+ 26.007679222378794
+ ],
+ [
+ -79.89193436354455,
+ 26.007679222378794
+ ],
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ],
+ [
+ -79.89193436354455,
+ 26.007679222378794
+ ],
+ [
+ -79.87199070412116,
+ 26.039004727800485
+ ],
+ [
+ -79.91187802296793,
+ 26.039004727800485
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ],
+ [
+ -79.87199070412116,
+ 26.10165573864387
+ ],
+ [
+ -79.89193436354455,
+ 26.13298124406556
+ ],
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ],
+ [
+ -79.89193436354455,
+ 26.13298124406556
+ ],
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ],
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ],
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ],
+ [
+ -79.95176534181469,
+ 26.10165573864387
+ ],
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ],
+ [
+ -79.95176534181469,
+ 26.10165573864387
+ ],
+ [
+ -79.9318216823913,
+ 26.07033023322218
+ ],
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ],
+ [
+ -79.9318216823913,
+ 26.07033023322218
+ ],
+ [
+ -79.89193436354455,
+ 26.07033023322218
+ ],
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ],
+ [
+ -79.89193436354455,
+ 26.07033023322218
+ ],
+ [
+ -79.87199070412116,
+ 26.10165573864387
+ ],
+ [
+ -79.91187802296793,
+ 26.10165573864387
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ],
+ [
+ -79.87199070412116,
+ 26.164306749487253
+ ],
+ [
+ -79.89193436354455,
+ 26.195632254908944
+ ],
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ],
+ [
+ -79.89193436354455,
+ 26.195632254908944
+ ],
+ [
+ -79.9318216823913,
+ 26.195632254908944
+ ],
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ],
+ [
+ -79.9318216823913,
+ 26.195632254908944
+ ],
+ [
+ -79.95176534181469,
+ 26.164306749487253
+ ],
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ],
+ [
+ -79.95176534181469,
+ 26.164306749487253
+ ],
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ],
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ],
+ [
+ -79.9318216823913,
+ 26.13298124406556
+ ],
+ [
+ -79.89193436354455,
+ 26.13298124406556
+ ],
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ],
+ [
+ -79.89193436354455,
+ 26.13298124406556
+ ],
+ [
+ -79.87199070412116,
+ 26.164306749487253
+ ],
+ [
+ -79.91187802296793,
+ 26.164306749487253
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ],
+ [
+ -79.87199070412116,
+ 26.22695776033064
+ ],
+ [
+ -79.89193436354455,
+ 26.258283265752333
+ ],
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ],
+ [
+ -79.89193436354455,
+ 26.258283265752333
+ ],
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ],
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ],
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ],
+ [
+ -79.95176534181469,
+ 26.22695776033064
+ ],
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ],
+ [
+ -79.95176534181469,
+ 26.22695776033064
+ ],
+ [
+ -79.9318216823913,
+ 26.19563225490895
+ ],
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ],
+ [
+ -79.9318216823913,
+ 26.19563225490895
+ ],
+ [
+ -79.89193436354455,
+ 26.19563225490895
+ ],
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ],
+ [
+ -79.89193436354455,
+ 26.19563225490895
+ ],
+ [
+ -79.87199070412116,
+ 26.22695776033064
+ ],
+ [
+ -79.91187802296793,
+ 26.22695776033064
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ],
+ [
+ -79.87199070412116,
+ 26.289608771174024
+ ],
+ [
+ -79.89193436354455,
+ 26.320934276595715
+ ],
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ],
+ [
+ -79.89193436354455,
+ 26.320934276595715
+ ],
+ [
+ -79.9318216823913,
+ 26.320934276595715
+ ],
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ],
+ [
+ -79.9318216823913,
+ 26.320934276595715
+ ],
+ [
+ -79.95176534181469,
+ 26.289608771174024
+ ],
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ],
+ [
+ -79.95176534181469,
+ 26.289608771174024
+ ],
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ],
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ],
+ [
+ -79.9318216823913,
+ 26.258283265752333
+ ],
+ [
+ -79.89193436354455,
+ 26.258283265752333
+ ],
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ],
+ [
+ -79.89193436354455,
+ 26.258283265752333
+ ],
+ [
+ -79.87199070412116,
+ 26.289608771174024
+ ],
+ [
+ -79.91187802296793,
+ 26.289608771174024
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ],
+ [
+ -79.87199070412116,
+ 26.35225978201741
+ ],
+ [
+ -79.89193436354455,
+ 26.3835852874391
+ ],
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ],
+ [
+ -79.89193436354455,
+ 26.3835852874391
+ ],
+ [
+ -79.9318216823913,
+ 26.3835852874391
+ ],
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ],
+ [
+ -79.9318216823913,
+ 26.3835852874391
+ ],
+ [
+ -79.95176534181469,
+ 26.35225978201741
+ ],
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ],
+ [
+ -79.95176534181469,
+ 26.35225978201741
+ ],
+ [
+ -79.9318216823913,
+ 26.320934276595718
+ ],
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ],
+ [
+ -79.9318216823913,
+ 26.320934276595718
+ ],
+ [
+ -79.89193436354455,
+ 26.320934276595718
+ ],
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ],
+ [
+ -79.89193436354455,
+ 26.320934276595718
+ ],
+ [
+ -79.87199070412116,
+ 26.35225978201741
+ ],
+ [
+ -79.91187802296793,
+ 26.35225978201741
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ],
+ [
+ -79.87199070412116,
+ 26.414910792860795
+ ],
+ [
+ -79.89193436354455,
+ 26.446236298282486
+ ],
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ],
+ [
+ -79.89193436354455,
+ 26.446236298282486
+ ],
+ [
+ -79.9318216823913,
+ 26.446236298282486
+ ],
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ],
+ [
+ -79.9318216823913,
+ 26.446236298282486
+ ],
+ [
+ -79.95176534181469,
+ 26.414910792860795
+ ],
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ],
+ [
+ -79.95176534181469,
+ 26.414910792860795
+ ],
+ [
+ -79.9318216823913,
+ 26.383585287439104
+ ],
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ],
+ [
+ -79.9318216823913,
+ 26.383585287439104
+ ],
+ [
+ -79.89193436354455,
+ 26.383585287439104
+ ],
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ],
+ [
+ -79.89193436354455,
+ 26.383585287439104
+ ],
+ [
+ -79.87199070412116,
+ 26.414910792860795
+ ],
+ [
+ -79.91187802296793,
+ 26.414910792860795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ],
+ [
+ -79.812159725851,
+ 24.942612038041236
+ ],
+ [
+ -79.8321033852744,
+ 24.973937543462927
+ ],
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ],
+ [
+ -79.8321033852744,
+ 24.973937543462927
+ ],
+ [
+ -79.87199070412115,
+ 24.973937543462927
+ ],
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ],
+ [
+ -79.87199070412115,
+ 24.973937543462927
+ ],
+ [
+ -79.89193436354454,
+ 24.942612038041236
+ ],
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ],
+ [
+ -79.89193436354454,
+ 24.942612038041236
+ ],
+ [
+ -79.87199070412115,
+ 24.911286532619545
+ ],
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ],
+ [
+ -79.87199070412115,
+ 24.911286532619545
+ ],
+ [
+ -79.8321033852744,
+ 24.911286532619545
+ ],
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ],
+ [
+ -79.8321033852744,
+ 24.911286532619545
+ ],
+ [
+ -79.812159725851,
+ 24.942612038041236
+ ],
+ [
+ -79.85204704469777,
+ 24.942612038041236
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ],
+ [
+ -79.812159725851,
+ 25.005263048884622
+ ],
+ [
+ -79.8321033852744,
+ 25.036588554306313
+ ],
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ],
+ [
+ -79.8321033852744,
+ 25.036588554306313
+ ],
+ [
+ -79.87199070412115,
+ 25.036588554306313
+ ],
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ],
+ [
+ -79.87199070412115,
+ 25.036588554306313
+ ],
+ [
+ -79.89193436354454,
+ 25.005263048884622
+ ],
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ],
+ [
+ -79.89193436354454,
+ 25.005263048884622
+ ],
+ [
+ -79.87199070412115,
+ 24.97393754346293
+ ],
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ],
+ [
+ -79.87199070412115,
+ 24.97393754346293
+ ],
+ [
+ -79.8321033852744,
+ 24.97393754346293
+ ],
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ],
+ [
+ -79.8321033852744,
+ 24.97393754346293
+ ],
+ [
+ -79.812159725851,
+ 25.005263048884622
+ ],
+ [
+ -79.85204704469777,
+ 25.005263048884622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ],
+ [
+ -79.812159725851,
+ 25.067914059728007
+ ],
+ [
+ -79.8321033852744,
+ 25.0992395651497
+ ],
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ],
+ [
+ -79.8321033852744,
+ 25.0992395651497
+ ],
+ [
+ -79.87199070412115,
+ 25.0992395651497
+ ],
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ],
+ [
+ -79.87199070412115,
+ 25.0992395651497
+ ],
+ [
+ -79.89193436354454,
+ 25.067914059728007
+ ],
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ],
+ [
+ -79.89193436354454,
+ 25.067914059728007
+ ],
+ [
+ -79.87199070412115,
+ 25.036588554306316
+ ],
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ],
+ [
+ -79.87199070412115,
+ 25.036588554306316
+ ],
+ [
+ -79.8321033852744,
+ 25.036588554306316
+ ],
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ],
+ [
+ -79.8321033852744,
+ 25.036588554306316
+ ],
+ [
+ -79.812159725851,
+ 25.067914059728007
+ ],
+ [
+ -79.85204704469777,
+ 25.067914059728007
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ],
+ [
+ -79.812159725851,
+ 25.130565070571393
+ ],
+ [
+ -79.8321033852744,
+ 25.161890575993084
+ ],
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ],
+ [
+ -79.8321033852744,
+ 25.161890575993084
+ ],
+ [
+ -79.87199070412115,
+ 25.161890575993084
+ ],
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ],
+ [
+ -79.87199070412115,
+ 25.161890575993084
+ ],
+ [
+ -79.89193436354454,
+ 25.130565070571393
+ ],
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ],
+ [
+ -79.89193436354454,
+ 25.130565070571393
+ ],
+ [
+ -79.87199070412115,
+ 25.099239565149702
+ ],
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ],
+ [
+ -79.87199070412115,
+ 25.099239565149702
+ ],
+ [
+ -79.8321033852744,
+ 25.099239565149702
+ ],
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ],
+ [
+ -79.8321033852744,
+ 25.099239565149702
+ ],
+ [
+ -79.812159725851,
+ 25.130565070571393
+ ],
+ [
+ -79.85204704469777,
+ 25.130565070571393
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ],
+ [
+ -79.812159725851,
+ 25.19321608141478
+ ],
+ [
+ -79.8321033852744,
+ 25.22454158683647
+ ],
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ],
+ [
+ -79.8321033852744,
+ 25.22454158683647
+ ],
+ [
+ -79.87199070412115,
+ 25.22454158683647
+ ],
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ],
+ [
+ -79.87199070412115,
+ 25.22454158683647
+ ],
+ [
+ -79.89193436354454,
+ 25.19321608141478
+ ],
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ],
+ [
+ -79.89193436354454,
+ 25.19321608141478
+ ],
+ [
+ -79.87199070412115,
+ 25.161890575993088
+ ],
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ],
+ [
+ -79.87199070412115,
+ 25.161890575993088
+ ],
+ [
+ -79.8321033852744,
+ 25.161890575993088
+ ],
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ],
+ [
+ -79.8321033852744,
+ 25.161890575993088
+ ],
+ [
+ -79.812159725851,
+ 25.19321608141478
+ ],
+ [
+ -79.85204704469777,
+ 25.19321608141478
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ],
+ [
+ -79.812159725851,
+ 25.255867092258164
+ ],
+ [
+ -79.8321033852744,
+ 25.287192597679855
+ ],
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ],
+ [
+ -79.8321033852744,
+ 25.287192597679855
+ ],
+ [
+ -79.87199070412115,
+ 25.287192597679855
+ ],
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ],
+ [
+ -79.87199070412115,
+ 25.287192597679855
+ ],
+ [
+ -79.89193436354454,
+ 25.255867092258164
+ ],
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ],
+ [
+ -79.89193436354454,
+ 25.255867092258164
+ ],
+ [
+ -79.87199070412115,
+ 25.224541586836473
+ ],
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ],
+ [
+ -79.87199070412115,
+ 25.224541586836473
+ ],
+ [
+ -79.8321033852744,
+ 25.224541586836473
+ ],
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ],
+ [
+ -79.8321033852744,
+ 25.224541586836473
+ ],
+ [
+ -79.812159725851,
+ 25.255867092258164
+ ],
+ [
+ -79.85204704469777,
+ 25.255867092258164
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ],
+ [
+ -79.812159725851,
+ 25.31851810310155
+ ],
+ [
+ -79.8321033852744,
+ 25.34984360852324
+ ],
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ],
+ [
+ -79.8321033852744,
+ 25.34984360852324
+ ],
+ [
+ -79.87199070412115,
+ 25.34984360852324
+ ],
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ],
+ [
+ -79.87199070412115,
+ 25.34984360852324
+ ],
+ [
+ -79.89193436354454,
+ 25.31851810310155
+ ],
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ],
+ [
+ -79.89193436354454,
+ 25.31851810310155
+ ],
+ [
+ -79.87199070412115,
+ 25.28719259767986
+ ],
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ],
+ [
+ -79.87199070412115,
+ 25.28719259767986
+ ],
+ [
+ -79.8321033852744,
+ 25.28719259767986
+ ],
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ],
+ [
+ -79.8321033852744,
+ 25.28719259767986
+ ],
+ [
+ -79.812159725851,
+ 25.31851810310155
+ ],
+ [
+ -79.85204704469777,
+ 25.31851810310155
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ],
+ [
+ -79.812159725851,
+ 25.381169113944935
+ ],
+ [
+ -79.8321033852744,
+ 25.412494619366626
+ ],
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ],
+ [
+ -79.8321033852744,
+ 25.412494619366626
+ ],
+ [
+ -79.87199070412115,
+ 25.412494619366626
+ ],
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ],
+ [
+ -79.87199070412115,
+ 25.412494619366626
+ ],
+ [
+ -79.89193436354454,
+ 25.381169113944935
+ ],
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ],
+ [
+ -79.89193436354454,
+ 25.381169113944935
+ ],
+ [
+ -79.87199070412115,
+ 25.349843608523244
+ ],
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ],
+ [
+ -79.87199070412115,
+ 25.349843608523244
+ ],
+ [
+ -79.8321033852744,
+ 25.349843608523244
+ ],
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ],
+ [
+ -79.8321033852744,
+ 25.349843608523244
+ ],
+ [
+ -79.812159725851,
+ 25.381169113944935
+ ],
+ [
+ -79.85204704469777,
+ 25.381169113944935
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ],
+ [
+ -79.812159725851,
+ 25.44382012478832
+ ],
+ [
+ -79.8321033852744,
+ 25.47514563021001
+ ],
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ],
+ [
+ -79.8321033852744,
+ 25.47514563021001
+ ],
+ [
+ -79.87199070412115,
+ 25.47514563021001
+ ],
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ],
+ [
+ -79.87199070412115,
+ 25.47514563021001
+ ],
+ [
+ -79.89193436354454,
+ 25.44382012478832
+ ],
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ],
+ [
+ -79.89193436354454,
+ 25.44382012478832
+ ],
+ [
+ -79.87199070412115,
+ 25.41249461936663
+ ],
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ],
+ [
+ -79.87199070412115,
+ 25.41249461936663
+ ],
+ [
+ -79.8321033852744,
+ 25.41249461936663
+ ],
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ],
+ [
+ -79.8321033852744,
+ 25.41249461936663
+ ],
+ [
+ -79.812159725851,
+ 25.44382012478832
+ ],
+ [
+ -79.85204704469777,
+ 25.44382012478832
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ],
+ [
+ -79.812159725851,
+ 25.506471135631706
+ ],
+ [
+ -79.8321033852744,
+ 25.537796641053397
+ ],
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ],
+ [
+ -79.8321033852744,
+ 25.537796641053397
+ ],
+ [
+ -79.87199070412115,
+ 25.537796641053397
+ ],
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ],
+ [
+ -79.87199070412115,
+ 25.537796641053397
+ ],
+ [
+ -79.89193436354454,
+ 25.506471135631706
+ ],
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ],
+ [
+ -79.89193436354454,
+ 25.506471135631706
+ ],
+ [
+ -79.87199070412115,
+ 25.475145630210015
+ ],
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ],
+ [
+ -79.87199070412115,
+ 25.475145630210015
+ ],
+ [
+ -79.8321033852744,
+ 25.475145630210015
+ ],
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ],
+ [
+ -79.8321033852744,
+ 25.475145630210015
+ ],
+ [
+ -79.812159725851,
+ 25.506471135631706
+ ],
+ [
+ -79.85204704469777,
+ 25.506471135631706
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ],
+ [
+ -79.812159725851,
+ 25.56912214647509
+ ],
+ [
+ -79.8321033852744,
+ 25.600447651896783
+ ],
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ],
+ [
+ -79.8321033852744,
+ 25.600447651896783
+ ],
+ [
+ -79.87199070412115,
+ 25.600447651896783
+ ],
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ],
+ [
+ -79.87199070412115,
+ 25.600447651896783
+ ],
+ [
+ -79.89193436354454,
+ 25.56912214647509
+ ],
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ],
+ [
+ -79.89193436354454,
+ 25.56912214647509
+ ],
+ [
+ -79.87199070412115,
+ 25.5377966410534
+ ],
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ],
+ [
+ -79.87199070412115,
+ 25.5377966410534
+ ],
+ [
+ -79.8321033852744,
+ 25.5377966410534
+ ],
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ],
+ [
+ -79.8321033852744,
+ 25.5377966410534
+ ],
+ [
+ -79.812159725851,
+ 25.56912214647509
+ ],
+ [
+ -79.85204704469777,
+ 25.56912214647509
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ],
+ [
+ -79.812159725851,
+ 25.631773157318477
+ ],
+ [
+ -79.8321033852744,
+ 25.66309866274017
+ ],
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ],
+ [
+ -79.8321033852744,
+ 25.66309866274017
+ ],
+ [
+ -79.87199070412115,
+ 25.66309866274017
+ ],
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ],
+ [
+ -79.87199070412115,
+ 25.66309866274017
+ ],
+ [
+ -79.89193436354454,
+ 25.631773157318477
+ ],
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ],
+ [
+ -79.89193436354454,
+ 25.631773157318477
+ ],
+ [
+ -79.87199070412115,
+ 25.600447651896786
+ ],
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ],
+ [
+ -79.87199070412115,
+ 25.600447651896786
+ ],
+ [
+ -79.8321033852744,
+ 25.600447651896786
+ ],
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ],
+ [
+ -79.8321033852744,
+ 25.600447651896786
+ ],
+ [
+ -79.812159725851,
+ 25.631773157318477
+ ],
+ [
+ -79.85204704469777,
+ 25.631773157318477
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ],
+ [
+ -79.812159725851,
+ 25.694424168161863
+ ],
+ [
+ -79.8321033852744,
+ 25.725749673583554
+ ],
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ],
+ [
+ -79.8321033852744,
+ 25.725749673583554
+ ],
+ [
+ -79.87199070412115,
+ 25.725749673583554
+ ],
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ],
+ [
+ -79.87199070412115,
+ 25.725749673583554
+ ],
+ [
+ -79.89193436354454,
+ 25.694424168161863
+ ],
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ],
+ [
+ -79.89193436354454,
+ 25.694424168161863
+ ],
+ [
+ -79.87199070412115,
+ 25.663098662740172
+ ],
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ],
+ [
+ -79.87199070412115,
+ 25.663098662740172
+ ],
+ [
+ -79.8321033852744,
+ 25.663098662740172
+ ],
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ],
+ [
+ -79.8321033852744,
+ 25.663098662740172
+ ],
+ [
+ -79.812159725851,
+ 25.694424168161863
+ ],
+ [
+ -79.85204704469777,
+ 25.694424168161863
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ],
+ [
+ -79.812159725851,
+ 25.75707517900525
+ ],
+ [
+ -79.8321033852744,
+ 25.78840068442694
+ ],
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ],
+ [
+ -79.8321033852744,
+ 25.78840068442694
+ ],
+ [
+ -79.87199070412115,
+ 25.78840068442694
+ ],
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ],
+ [
+ -79.87199070412115,
+ 25.78840068442694
+ ],
+ [
+ -79.89193436354454,
+ 25.75707517900525
+ ],
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ],
+ [
+ -79.89193436354454,
+ 25.75707517900525
+ ],
+ [
+ -79.87199070412115,
+ 25.725749673583557
+ ],
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ],
+ [
+ -79.87199070412115,
+ 25.725749673583557
+ ],
+ [
+ -79.8321033852744,
+ 25.725749673583557
+ ],
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ],
+ [
+ -79.8321033852744,
+ 25.725749673583557
+ ],
+ [
+ -79.812159725851,
+ 25.75707517900525
+ ],
+ [
+ -79.85204704469777,
+ 25.75707517900525
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ],
+ [
+ -79.812159725851,
+ 25.819726189848634
+ ],
+ [
+ -79.8321033852744,
+ 25.851051695270325
+ ],
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ],
+ [
+ -79.8321033852744,
+ 25.851051695270325
+ ],
+ [
+ -79.87199070412115,
+ 25.851051695270325
+ ],
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ],
+ [
+ -79.87199070412115,
+ 25.851051695270325
+ ],
+ [
+ -79.89193436354454,
+ 25.819726189848634
+ ],
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ],
+ [
+ -79.89193436354454,
+ 25.819726189848634
+ ],
+ [
+ -79.87199070412115,
+ 25.788400684426943
+ ],
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ],
+ [
+ -79.87199070412115,
+ 25.788400684426943
+ ],
+ [
+ -79.8321033852744,
+ 25.788400684426943
+ ],
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ],
+ [
+ -79.8321033852744,
+ 25.788400684426943
+ ],
+ [
+ -79.812159725851,
+ 25.819726189848634
+ ],
+ [
+ -79.85204704469777,
+ 25.819726189848634
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ],
+ [
+ -79.812159725851,
+ 25.88237720069202
+ ],
+ [
+ -79.8321033852744,
+ 25.91370270611371
+ ],
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ],
+ [
+ -79.8321033852744,
+ 25.91370270611371
+ ],
+ [
+ -79.87199070412115,
+ 25.91370270611371
+ ],
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ],
+ [
+ -79.87199070412115,
+ 25.91370270611371
+ ],
+ [
+ -79.89193436354454,
+ 25.88237720069202
+ ],
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ],
+ [
+ -79.89193436354454,
+ 25.88237720069202
+ ],
+ [
+ -79.87199070412115,
+ 25.85105169527033
+ ],
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ],
+ [
+ -79.87199070412115,
+ 25.85105169527033
+ ],
+ [
+ -79.8321033852744,
+ 25.85105169527033
+ ],
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ],
+ [
+ -79.8321033852744,
+ 25.85105169527033
+ ],
+ [
+ -79.812159725851,
+ 25.88237720069202
+ ],
+ [
+ -79.85204704469777,
+ 25.88237720069202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ],
+ [
+ -79.812159725851,
+ 25.945028211535405
+ ],
+ [
+ -79.8321033852744,
+ 25.976353716957096
+ ],
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ],
+ [
+ -79.8321033852744,
+ 25.976353716957096
+ ],
+ [
+ -79.87199070412115,
+ 25.976353716957096
+ ],
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ],
+ [
+ -79.87199070412115,
+ 25.976353716957096
+ ],
+ [
+ -79.89193436354454,
+ 25.945028211535405
+ ],
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ],
+ [
+ -79.89193436354454,
+ 25.945028211535405
+ ],
+ [
+ -79.87199070412115,
+ 25.913702706113714
+ ],
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ],
+ [
+ -79.87199070412115,
+ 25.913702706113714
+ ],
+ [
+ -79.8321033852744,
+ 25.913702706113714
+ ],
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ],
+ [
+ -79.8321033852744,
+ 25.913702706113714
+ ],
+ [
+ -79.812159725851,
+ 25.945028211535405
+ ],
+ [
+ -79.85204704469777,
+ 25.945028211535405
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ],
+ [
+ -79.812159725851,
+ 26.00767922237879
+ ],
+ [
+ -79.8321033852744,
+ 26.03900472780048
+ ],
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ],
+ [
+ -79.8321033852744,
+ 26.03900472780048
+ ],
+ [
+ -79.87199070412115,
+ 26.03900472780048
+ ],
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ],
+ [
+ -79.87199070412115,
+ 26.03900472780048
+ ],
+ [
+ -79.89193436354454,
+ 26.00767922237879
+ ],
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ],
+ [
+ -79.89193436354454,
+ 26.00767922237879
+ ],
+ [
+ -79.87199070412115,
+ 25.9763537169571
+ ],
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ],
+ [
+ -79.87199070412115,
+ 25.9763537169571
+ ],
+ [
+ -79.8321033852744,
+ 25.9763537169571
+ ],
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ],
+ [
+ -79.8321033852744,
+ 25.9763537169571
+ ],
+ [
+ -79.812159725851,
+ 26.00767922237879
+ ],
+ [
+ -79.85204704469777,
+ 26.00767922237879
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ],
+ [
+ -79.812159725851,
+ 26.070330233222176
+ ],
+ [
+ -79.8321033852744,
+ 26.101655738643867
+ ],
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ],
+ [
+ -79.8321033852744,
+ 26.101655738643867
+ ],
+ [
+ -79.87199070412115,
+ 26.101655738643867
+ ],
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ],
+ [
+ -79.87199070412115,
+ 26.101655738643867
+ ],
+ [
+ -79.89193436354454,
+ 26.070330233222176
+ ],
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ],
+ [
+ -79.89193436354454,
+ 26.070330233222176
+ ],
+ [
+ -79.87199070412115,
+ 26.039004727800485
+ ],
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ],
+ [
+ -79.87199070412115,
+ 26.039004727800485
+ ],
+ [
+ -79.8321033852744,
+ 26.039004727800485
+ ],
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ],
+ [
+ -79.8321033852744,
+ 26.039004727800485
+ ],
+ [
+ -79.812159725851,
+ 26.070330233222176
+ ],
+ [
+ -79.85204704469777,
+ 26.070330233222176
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ],
+ [
+ -79.812159725851,
+ 26.13298124406556
+ ],
+ [
+ -79.8321033852744,
+ 26.164306749487253
+ ],
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ],
+ [
+ -79.8321033852744,
+ 26.164306749487253
+ ],
+ [
+ -79.87199070412115,
+ 26.164306749487253
+ ],
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ],
+ [
+ -79.87199070412115,
+ 26.164306749487253
+ ],
+ [
+ -79.89193436354454,
+ 26.13298124406556
+ ],
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ],
+ [
+ -79.89193436354454,
+ 26.13298124406556
+ ],
+ [
+ -79.87199070412115,
+ 26.10165573864387
+ ],
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ],
+ [
+ -79.87199070412115,
+ 26.10165573864387
+ ],
+ [
+ -79.8321033852744,
+ 26.10165573864387
+ ],
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ],
+ [
+ -79.8321033852744,
+ 26.10165573864387
+ ],
+ [
+ -79.812159725851,
+ 26.13298124406556
+ ],
+ [
+ -79.85204704469777,
+ 26.13298124406556
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ],
+ [
+ -79.812159725851,
+ 26.195632254908944
+ ],
+ [
+ -79.8321033852744,
+ 26.226957760330635
+ ],
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ],
+ [
+ -79.8321033852744,
+ 26.226957760330635
+ ],
+ [
+ -79.87199070412115,
+ 26.226957760330635
+ ],
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ],
+ [
+ -79.87199070412115,
+ 26.226957760330635
+ ],
+ [
+ -79.89193436354454,
+ 26.195632254908944
+ ],
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ],
+ [
+ -79.89193436354454,
+ 26.195632254908944
+ ],
+ [
+ -79.87199070412115,
+ 26.164306749487253
+ ],
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ],
+ [
+ -79.87199070412115,
+ 26.164306749487253
+ ],
+ [
+ -79.8321033852744,
+ 26.164306749487253
+ ],
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ],
+ [
+ -79.8321033852744,
+ 26.164306749487253
+ ],
+ [
+ -79.812159725851,
+ 26.195632254908944
+ ],
+ [
+ -79.85204704469777,
+ 26.195632254908944
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ],
+ [
+ -79.812159725851,
+ 26.258283265752333
+ ],
+ [
+ -79.8321033852744,
+ 26.289608771174024
+ ],
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ],
+ [
+ -79.8321033852744,
+ 26.289608771174024
+ ],
+ [
+ -79.87199070412115,
+ 26.289608771174024
+ ],
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ],
+ [
+ -79.87199070412115,
+ 26.289608771174024
+ ],
+ [
+ -79.89193436354454,
+ 26.258283265752333
+ ],
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ],
+ [
+ -79.89193436354454,
+ 26.258283265752333
+ ],
+ [
+ -79.87199070412115,
+ 26.22695776033064
+ ],
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ],
+ [
+ -79.87199070412115,
+ 26.22695776033064
+ ],
+ [
+ -79.8321033852744,
+ 26.22695776033064
+ ],
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ],
+ [
+ -79.8321033852744,
+ 26.22695776033064
+ ],
+ [
+ -79.812159725851,
+ 26.258283265752333
+ ],
+ [
+ -79.85204704469777,
+ 26.258283265752333
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ],
+ [
+ -79.812159725851,
+ 26.320934276595715
+ ],
+ [
+ -79.8321033852744,
+ 26.352259782017406
+ ],
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ],
+ [
+ -79.8321033852744,
+ 26.352259782017406
+ ],
+ [
+ -79.87199070412115,
+ 26.352259782017406
+ ],
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ],
+ [
+ -79.87199070412115,
+ 26.352259782017406
+ ],
+ [
+ -79.89193436354454,
+ 26.320934276595715
+ ],
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ],
+ [
+ -79.89193436354454,
+ 26.320934276595715
+ ],
+ [
+ -79.87199070412115,
+ 26.289608771174024
+ ],
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ],
+ [
+ -79.87199070412115,
+ 26.289608771174024
+ ],
+ [
+ -79.8321033852744,
+ 26.289608771174024
+ ],
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ],
+ [
+ -79.8321033852744,
+ 26.289608771174024
+ ],
+ [
+ -79.812159725851,
+ 26.320934276595715
+ ],
+ [
+ -79.85204704469777,
+ 26.320934276595715
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ],
+ [
+ -79.812159725851,
+ 26.3835852874391
+ ],
+ [
+ -79.8321033852744,
+ 26.41491079286079
+ ],
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ],
+ [
+ -79.8321033852744,
+ 26.41491079286079
+ ],
+ [
+ -79.87199070412115,
+ 26.41491079286079
+ ],
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ],
+ [
+ -79.87199070412115,
+ 26.41491079286079
+ ],
+ [
+ -79.89193436354454,
+ 26.3835852874391
+ ],
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ],
+ [
+ -79.89193436354454,
+ 26.3835852874391
+ ],
+ [
+ -79.87199070412115,
+ 26.35225978201741
+ ],
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ],
+ [
+ -79.87199070412115,
+ 26.35225978201741
+ ],
+ [
+ -79.8321033852744,
+ 26.35225978201741
+ ],
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ],
+ [
+ -79.8321033852744,
+ 26.35225978201741
+ ],
+ [
+ -79.812159725851,
+ 26.3835852874391
+ ],
+ [
+ -79.85204704469777,
+ 26.3835852874391
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ],
+ [
+ -79.812159725851,
+ 26.446236298282486
+ ],
+ [
+ -79.8321033852744,
+ 26.477561803704177
+ ],
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ],
+ [
+ -79.8321033852744,
+ 26.477561803704177
+ ],
+ [
+ -79.87199070412115,
+ 26.477561803704177
+ ],
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ],
+ [
+ -79.87199070412115,
+ 26.477561803704177
+ ],
+ [
+ -79.89193436354454,
+ 26.446236298282486
+ ],
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ],
+ [
+ -79.89193436354454,
+ 26.446236298282486
+ ],
+ [
+ -79.87199070412115,
+ 26.414910792860795
+ ],
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ],
+ [
+ -79.87199070412115,
+ 26.414910792860795
+ ],
+ [
+ -79.8321033852744,
+ 26.414910792860795
+ ],
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ],
+ [
+ -79.8321033852744,
+ 26.414910792860795
+ ],
+ [
+ -79.812159725851,
+ 26.446236298282486
+ ],
+ [
+ -79.85204704469777,
+ 26.446236298282486
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "fill-opacity": 0,
+ "stroke": "#0ff"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -81.650390625,
+ 24.926294766395593
+ ],
+ [
+ -79.8486328125,
+ 24.926294766395593
+ ],
+ [
+ -79.8486328125,
+ 26.43122806450644
+ ],
+ [
+ -81.650390625,
+ 26.43122806450644
+ ],
+ [
+ -81.650390625,
+ 24.926294766395593
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-hex-grid/test/out/trigrid3.geojson b/packages/turf-hex-grid/test/out/trigrid3.geojson
new file mode 100644
index 0000000000..97c8445a87
--- /dev/null
+++ b/packages/turf-hex-grid/test/out/trigrid3.geojson
@@ -0,0 +1,35841 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ],
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ],
+ [
+ -77.38122994109527,
+ 38.742194668655884
+ ],
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ],
+ [
+ -77.38122994109527,
+ 38.742194668655884
+ ],
+ [
+ -77.39977439249485,
+ 38.742194668655884
+ ],
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ],
+ [
+ -77.39977439249485,
+ 38.742194668655884
+ ],
+ [
+ -77.40904661819465,
+ 38.72966446648721
+ ],
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ],
+ [
+ -77.40904661819465,
+ 38.72966446648721
+ ],
+ [
+ -77.39977439249485,
+ 38.71713426431853
+ ],
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ],
+ [
+ -77.39977439249485,
+ 38.71713426431853
+ ],
+ [
+ -77.38122994109527,
+ 38.71713426431853
+ ],
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ],
+ [
+ -77.38122994109527,
+ 38.71713426431853
+ ],
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ],
+ [
+ -77.39050216679506,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ],
+ [
+ -77.37195771539547,
+ 38.75472487082456
+ ],
+ [
+ -77.38122994109527,
+ 38.76725507299324
+ ],
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ],
+ [
+ -77.38122994109527,
+ 38.76725507299324
+ ],
+ [
+ -77.39977439249485,
+ 38.76725507299324
+ ],
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ],
+ [
+ -77.39977439249485,
+ 38.76725507299324
+ ],
+ [
+ -77.40904661819465,
+ 38.75472487082456
+ ],
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ],
+ [
+ -77.40904661819465,
+ 38.75472487082456
+ ],
+ [
+ -77.39977439249485,
+ 38.742194668655884
+ ],
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ],
+ [
+ -77.39977439249485,
+ 38.742194668655884
+ ],
+ [
+ -77.38122994109527,
+ 38.742194668655884
+ ],
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ],
+ [
+ -77.38122994109527,
+ 38.742194668655884
+ ],
+ [
+ -77.37195771539547,
+ 38.75472487082456
+ ],
+ [
+ -77.39050216679506,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ],
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ],
+ [
+ -77.38122994109527,
+ 38.7923154773306
+ ],
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ],
+ [
+ -77.38122994109527,
+ 38.7923154773306
+ ],
+ [
+ -77.39977439249485,
+ 38.7923154773306
+ ],
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ],
+ [
+ -77.39977439249485,
+ 38.7923154773306
+ ],
+ [
+ -77.40904661819465,
+ 38.77978527516192
+ ],
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ],
+ [
+ -77.40904661819465,
+ 38.77978527516192
+ ],
+ [
+ -77.39977439249485,
+ 38.767255072993244
+ ],
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ],
+ [
+ -77.39977439249485,
+ 38.767255072993244
+ ],
+ [
+ -77.38122994109527,
+ 38.767255072993244
+ ],
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ],
+ [
+ -77.38122994109527,
+ 38.767255072993244
+ ],
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ],
+ [
+ -77.39050216679506,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ],
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ],
+ [
+ -77.38122994109527,
+ 38.81737588166795
+ ],
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ],
+ [
+ -77.38122994109527,
+ 38.81737588166795
+ ],
+ [
+ -77.39977439249485,
+ 38.81737588166795
+ ],
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ],
+ [
+ -77.39977439249485,
+ 38.81737588166795
+ ],
+ [
+ -77.40904661819465,
+ 38.80484567949927
+ ],
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ],
+ [
+ -77.40904661819465,
+ 38.80484567949927
+ ],
+ [
+ -77.39977439249485,
+ 38.7923154773306
+ ],
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ],
+ [
+ -77.39977439249485,
+ 38.7923154773306
+ ],
+ [
+ -77.38122994109527,
+ 38.7923154773306
+ ],
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ],
+ [
+ -77.38122994109527,
+ 38.7923154773306
+ ],
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ],
+ [
+ -77.39050216679506,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ],
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ],
+ [
+ -77.38122994109527,
+ 38.8424362860053
+ ],
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ],
+ [
+ -77.38122994109527,
+ 38.8424362860053
+ ],
+ [
+ -77.39977439249485,
+ 38.8424362860053
+ ],
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ],
+ [
+ -77.39977439249485,
+ 38.8424362860053
+ ],
+ [
+ -77.40904661819465,
+ 38.829906083836626
+ ],
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ],
+ [
+ -77.40904661819465,
+ 38.829906083836626
+ ],
+ [
+ -77.39977439249485,
+ 38.81737588166795
+ ],
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ],
+ [
+ -77.39977439249485,
+ 38.81737588166795
+ ],
+ [
+ -77.38122994109527,
+ 38.81737588166795
+ ],
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ],
+ [
+ -77.38122994109527,
+ 38.81737588166795
+ ],
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ],
+ [
+ -77.39050216679506,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ],
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ],
+ [
+ -77.38122994109527,
+ 38.867496690342655
+ ],
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ],
+ [
+ -77.38122994109527,
+ 38.867496690342655
+ ],
+ [
+ -77.39977439249485,
+ 38.867496690342655
+ ],
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ],
+ [
+ -77.39977439249485,
+ 38.867496690342655
+ ],
+ [
+ -77.40904661819465,
+ 38.85496648817398
+ ],
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ],
+ [
+ -77.40904661819465,
+ 38.85496648817398
+ ],
+ [
+ -77.39977439249485,
+ 38.8424362860053
+ ],
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ],
+ [
+ -77.39977439249485,
+ 38.8424362860053
+ ],
+ [
+ -77.38122994109527,
+ 38.8424362860053
+ ],
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ],
+ [
+ -77.38122994109527,
+ 38.8424362860053
+ ],
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ],
+ [
+ -77.39050216679506,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ],
+ [
+ -77.37195771539547,
+ 38.88002689251133
+ ],
+ [
+ -77.38122994109527,
+ 38.89255709468001
+ ],
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ],
+ [
+ -77.38122994109527,
+ 38.89255709468001
+ ],
+ [
+ -77.39977439249485,
+ 38.89255709468001
+ ],
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ],
+ [
+ -77.39977439249485,
+ 38.89255709468001
+ ],
+ [
+ -77.40904661819465,
+ 38.88002689251133
+ ],
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ],
+ [
+ -77.40904661819465,
+ 38.88002689251133
+ ],
+ [
+ -77.39977439249485,
+ 38.867496690342655
+ ],
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ],
+ [
+ -77.39977439249485,
+ 38.867496690342655
+ ],
+ [
+ -77.38122994109527,
+ 38.867496690342655
+ ],
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ],
+ [
+ -77.38122994109527,
+ 38.867496690342655
+ ],
+ [
+ -77.37195771539547,
+ 38.88002689251133
+ ],
+ [
+ -77.39050216679506,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ],
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ],
+ [
+ -77.38122994109527,
+ 38.91761749901737
+ ],
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ],
+ [
+ -77.38122994109527,
+ 38.91761749901737
+ ],
+ [
+ -77.39977439249485,
+ 38.91761749901737
+ ],
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ],
+ [
+ -77.39977439249485,
+ 38.91761749901737
+ ],
+ [
+ -77.40904661819465,
+ 38.90508729684869
+ ],
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ],
+ [
+ -77.40904661819465,
+ 38.90508729684869
+ ],
+ [
+ -77.39977439249485,
+ 38.892557094680015
+ ],
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ],
+ [
+ -77.39977439249485,
+ 38.892557094680015
+ ],
+ [
+ -77.38122994109527,
+ 38.892557094680015
+ ],
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ],
+ [
+ -77.38122994109527,
+ 38.892557094680015
+ ],
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ],
+ [
+ -77.39050216679506,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ],
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ],
+ [
+ -77.38122994109527,
+ 38.94267790335472
+ ],
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ],
+ [
+ -77.38122994109527,
+ 38.94267790335472
+ ],
+ [
+ -77.39977439249485,
+ 38.94267790335472
+ ],
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ],
+ [
+ -77.39977439249485,
+ 38.94267790335472
+ ],
+ [
+ -77.40904661819465,
+ 38.930147701186044
+ ],
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ],
+ [
+ -77.40904661819465,
+ 38.930147701186044
+ ],
+ [
+ -77.39977439249485,
+ 38.91761749901737
+ ],
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ],
+ [
+ -77.39977439249485,
+ 38.91761749901737
+ ],
+ [
+ -77.38122994109527,
+ 38.91761749901737
+ ],
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ],
+ [
+ -77.38122994109527,
+ 38.91761749901737
+ ],
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ],
+ [
+ -77.39050216679506,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ],
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ],
+ [
+ -77.38122994109527,
+ 38.96773830769207
+ ],
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ],
+ [
+ -77.38122994109527,
+ 38.96773830769207
+ ],
+ [
+ -77.39977439249485,
+ 38.96773830769207
+ ],
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ],
+ [
+ -77.39977439249485,
+ 38.96773830769207
+ ],
+ [
+ -77.40904661819465,
+ 38.9552081055234
+ ],
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ],
+ [
+ -77.40904661819465,
+ 38.9552081055234
+ ],
+ [
+ -77.39977439249485,
+ 38.94267790335472
+ ],
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ],
+ [
+ -77.39977439249485,
+ 38.94267790335472
+ ],
+ [
+ -77.38122994109527,
+ 38.94267790335472
+ ],
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ],
+ [
+ -77.38122994109527,
+ 38.94267790335472
+ ],
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ],
+ [
+ -77.39050216679506,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ],
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ],
+ [
+ -77.38122994109527,
+ 38.992798712029426
+ ],
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ],
+ [
+ -77.38122994109527,
+ 38.992798712029426
+ ],
+ [
+ -77.39977439249485,
+ 38.992798712029426
+ ],
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ],
+ [
+ -77.39977439249485,
+ 38.992798712029426
+ ],
+ [
+ -77.40904661819465,
+ 38.98026850986075
+ ],
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ],
+ [
+ -77.40904661819465,
+ 38.98026850986075
+ ],
+ [
+ -77.39977439249485,
+ 38.96773830769207
+ ],
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ],
+ [
+ -77.39977439249485,
+ 38.96773830769207
+ ],
+ [
+ -77.38122994109527,
+ 38.96773830769207
+ ],
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ],
+ [
+ -77.38122994109527,
+ 38.96773830769207
+ ],
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ],
+ [
+ -77.39050216679506,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ],
+ [
+ -77.37195771539547,
+ 39.0053289141981
+ ],
+ [
+ -77.38122994109527,
+ 39.01785911636678
+ ],
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ],
+ [
+ -77.38122994109527,
+ 39.01785911636678
+ ],
+ [
+ -77.39977439249485,
+ 39.01785911636678
+ ],
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ],
+ [
+ -77.39977439249485,
+ 39.01785911636678
+ ],
+ [
+ -77.40904661819465,
+ 39.0053289141981
+ ],
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ],
+ [
+ -77.40904661819465,
+ 39.0053289141981
+ ],
+ [
+ -77.39977439249485,
+ 38.992798712029426
+ ],
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ],
+ [
+ -77.39977439249485,
+ 38.992798712029426
+ ],
+ [
+ -77.38122994109527,
+ 38.992798712029426
+ ],
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ],
+ [
+ -77.38122994109527,
+ 38.992798712029426
+ ],
+ [
+ -77.37195771539547,
+ 39.0053289141981
+ ],
+ [
+ -77.39050216679506,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ],
+ [
+ -77.37195771539547,
+ 39.03038931853546
+ ],
+ [
+ -77.38122994109527,
+ 39.04291952070414
+ ],
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ],
+ [
+ -77.38122994109527,
+ 39.04291952070414
+ ],
+ [
+ -77.39977439249485,
+ 39.04291952070414
+ ],
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ],
+ [
+ -77.39977439249485,
+ 39.04291952070414
+ ],
+ [
+ -77.40904661819465,
+ 39.03038931853546
+ ],
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ],
+ [
+ -77.40904661819465,
+ 39.03038931853546
+ ],
+ [
+ -77.39977439249485,
+ 39.017859116366786
+ ],
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ],
+ [
+ -77.39977439249485,
+ 39.017859116366786
+ ],
+ [
+ -77.38122994109527,
+ 39.017859116366786
+ ],
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ],
+ [
+ -77.38122994109527,
+ 39.017859116366786
+ ],
+ [
+ -77.37195771539547,
+ 39.03038931853546
+ ],
+ [
+ -77.39050216679506,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ],
+ [
+ -77.34414103829609,
+ 38.71713426431853
+ ],
+ [
+ -77.35341326399589,
+ 38.72966446648721
+ ],
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ],
+ [
+ -77.35341326399589,
+ 38.72966446648721
+ ],
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ],
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ],
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ],
+ [
+ -77.38122994109527,
+ 38.71713426431853
+ ],
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ],
+ [
+ -77.38122994109527,
+ 38.71713426431853
+ ],
+ [
+ -77.37195771539547,
+ 38.704604062149855
+ ],
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ],
+ [
+ -77.37195771539547,
+ 38.704604062149855
+ ],
+ [
+ -77.35341326399589,
+ 38.704604062149855
+ ],
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ],
+ [
+ -77.35341326399589,
+ 38.704604062149855
+ ],
+ [
+ -77.34414103829609,
+ 38.71713426431853
+ ],
+ [
+ -77.36268548969568,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ],
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ],
+ [
+ -77.35341326399589,
+ 38.75472487082456
+ ],
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ],
+ [
+ -77.35341326399589,
+ 38.75472487082456
+ ],
+ [
+ -77.37195771539547,
+ 38.75472487082456
+ ],
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ],
+ [
+ -77.37195771539547,
+ 38.75472487082456
+ ],
+ [
+ -77.38122994109527,
+ 38.742194668655884
+ ],
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ],
+ [
+ -77.38122994109527,
+ 38.742194668655884
+ ],
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ],
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ],
+ [
+ -77.37195771539547,
+ 38.72966446648721
+ ],
+ [
+ -77.35341326399589,
+ 38.72966446648721
+ ],
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ],
+ [
+ -77.35341326399589,
+ 38.72966446648721
+ ],
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ],
+ [
+ -77.36268548969568,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ],
+ [
+ -77.34414103829609,
+ 38.767255072993244
+ ],
+ [
+ -77.35341326399589,
+ 38.77978527516192
+ ],
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ],
+ [
+ -77.35341326399589,
+ 38.77978527516192
+ ],
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ],
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ],
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ],
+ [
+ -77.38122994109527,
+ 38.767255072993244
+ ],
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ],
+ [
+ -77.38122994109527,
+ 38.767255072993244
+ ],
+ [
+ -77.37195771539547,
+ 38.75472487082457
+ ],
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ],
+ [
+ -77.37195771539547,
+ 38.75472487082457
+ ],
+ [
+ -77.35341326399589,
+ 38.75472487082457
+ ],
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ],
+ [
+ -77.35341326399589,
+ 38.75472487082457
+ ],
+ [
+ -77.34414103829609,
+ 38.767255072993244
+ ],
+ [
+ -77.36268548969568,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ],
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ],
+ [
+ -77.35341326399589,
+ 38.80484567949927
+ ],
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ],
+ [
+ -77.35341326399589,
+ 38.80484567949927
+ ],
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ],
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ],
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ],
+ [
+ -77.38122994109527,
+ 38.7923154773306
+ ],
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ],
+ [
+ -77.38122994109527,
+ 38.7923154773306
+ ],
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ],
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ],
+ [
+ -77.37195771539547,
+ 38.77978527516192
+ ],
+ [
+ -77.35341326399589,
+ 38.77978527516192
+ ],
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ],
+ [
+ -77.35341326399589,
+ 38.77978527516192
+ ],
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ],
+ [
+ -77.36268548969568,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ],
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ],
+ [
+ -77.35341326399589,
+ 38.829906083836626
+ ],
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ],
+ [
+ -77.35341326399589,
+ 38.829906083836626
+ ],
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ],
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ],
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ],
+ [
+ -77.38122994109527,
+ 38.81737588166795
+ ],
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ],
+ [
+ -77.38122994109527,
+ 38.81737588166795
+ ],
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ],
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ],
+ [
+ -77.37195771539547,
+ 38.80484567949927
+ ],
+ [
+ -77.35341326399589,
+ 38.80484567949927
+ ],
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ],
+ [
+ -77.35341326399589,
+ 38.80484567949927
+ ],
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ],
+ [
+ -77.36268548969568,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ],
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ],
+ [
+ -77.35341326399589,
+ 38.85496648817398
+ ],
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ],
+ [
+ -77.35341326399589,
+ 38.85496648817398
+ ],
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ],
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ],
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ],
+ [
+ -77.38122994109527,
+ 38.8424362860053
+ ],
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ],
+ [
+ -77.38122994109527,
+ 38.8424362860053
+ ],
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ],
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ],
+ [
+ -77.37195771539547,
+ 38.829906083836626
+ ],
+ [
+ -77.35341326399589,
+ 38.829906083836626
+ ],
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ],
+ [
+ -77.35341326399589,
+ 38.829906083836626
+ ],
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ],
+ [
+ -77.36268548969568,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ],
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ],
+ [
+ -77.35341326399589,
+ 38.88002689251133
+ ],
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ],
+ [
+ -77.35341326399589,
+ 38.88002689251133
+ ],
+ [
+ -77.37195771539547,
+ 38.88002689251133
+ ],
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ],
+ [
+ -77.37195771539547,
+ 38.88002689251133
+ ],
+ [
+ -77.38122994109527,
+ 38.867496690342655
+ ],
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ],
+ [
+ -77.38122994109527,
+ 38.867496690342655
+ ],
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ],
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ],
+ [
+ -77.37195771539547,
+ 38.85496648817398
+ ],
+ [
+ -77.35341326399589,
+ 38.85496648817398
+ ],
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ],
+ [
+ -77.35341326399589,
+ 38.85496648817398
+ ],
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ],
+ [
+ -77.36268548969568,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ],
+ [
+ -77.34414103829609,
+ 38.892557094680015
+ ],
+ [
+ -77.35341326399589,
+ 38.90508729684869
+ ],
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ],
+ [
+ -77.35341326399589,
+ 38.90508729684869
+ ],
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ],
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ],
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ],
+ [
+ -77.38122994109527,
+ 38.892557094680015
+ ],
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ],
+ [
+ -77.38122994109527,
+ 38.892557094680015
+ ],
+ [
+ -77.37195771539547,
+ 38.88002689251134
+ ],
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ],
+ [
+ -77.37195771539547,
+ 38.88002689251134
+ ],
+ [
+ -77.35341326399589,
+ 38.88002689251134
+ ],
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ],
+ [
+ -77.35341326399589,
+ 38.88002689251134
+ ],
+ [
+ -77.34414103829609,
+ 38.892557094680015
+ ],
+ [
+ -77.36268548969568,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ],
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ],
+ [
+ -77.35341326399589,
+ 38.930147701186044
+ ],
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ],
+ [
+ -77.35341326399589,
+ 38.930147701186044
+ ],
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ],
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ],
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ],
+ [
+ -77.38122994109527,
+ 38.91761749901737
+ ],
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ],
+ [
+ -77.38122994109527,
+ 38.91761749901737
+ ],
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ],
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ],
+ [
+ -77.37195771539547,
+ 38.90508729684869
+ ],
+ [
+ -77.35341326399589,
+ 38.90508729684869
+ ],
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ],
+ [
+ -77.35341326399589,
+ 38.90508729684869
+ ],
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ],
+ [
+ -77.36268548969568,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ],
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ],
+ [
+ -77.35341326399589,
+ 38.9552081055234
+ ],
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ],
+ [
+ -77.35341326399589,
+ 38.9552081055234
+ ],
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ],
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ],
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ],
+ [
+ -77.38122994109527,
+ 38.94267790335472
+ ],
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ],
+ [
+ -77.38122994109527,
+ 38.94267790335472
+ ],
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ],
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ],
+ [
+ -77.37195771539547,
+ 38.930147701186044
+ ],
+ [
+ -77.35341326399589,
+ 38.930147701186044
+ ],
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ],
+ [
+ -77.35341326399589,
+ 38.930147701186044
+ ],
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ],
+ [
+ -77.36268548969568,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ],
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ],
+ [
+ -77.35341326399589,
+ 38.98026850986075
+ ],
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ],
+ [
+ -77.35341326399589,
+ 38.98026850986075
+ ],
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ],
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ],
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ],
+ [
+ -77.38122994109527,
+ 38.96773830769207
+ ],
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ],
+ [
+ -77.38122994109527,
+ 38.96773830769207
+ ],
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ],
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ],
+ [
+ -77.37195771539547,
+ 38.9552081055234
+ ],
+ [
+ -77.35341326399589,
+ 38.9552081055234
+ ],
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ],
+ [
+ -77.35341326399589,
+ 38.9552081055234
+ ],
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ],
+ [
+ -77.36268548969568,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ],
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ],
+ [
+ -77.35341326399589,
+ 39.0053289141981
+ ],
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ],
+ [
+ -77.35341326399589,
+ 39.0053289141981
+ ],
+ [
+ -77.37195771539547,
+ 39.0053289141981
+ ],
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ],
+ [
+ -77.37195771539547,
+ 39.0053289141981
+ ],
+ [
+ -77.38122994109527,
+ 38.992798712029426
+ ],
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ],
+ [
+ -77.38122994109527,
+ 38.992798712029426
+ ],
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ],
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ],
+ [
+ -77.37195771539547,
+ 38.98026850986075
+ ],
+ [
+ -77.35341326399589,
+ 38.98026850986075
+ ],
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ],
+ [
+ -77.35341326399589,
+ 38.98026850986075
+ ],
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ],
+ [
+ -77.36268548969568,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ],
+ [
+ -77.34414103829609,
+ 39.017859116366786
+ ],
+ [
+ -77.35341326399589,
+ 39.03038931853546
+ ],
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ],
+ [
+ -77.35341326399589,
+ 39.03038931853546
+ ],
+ [
+ -77.37195771539547,
+ 39.03038931853546
+ ],
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ],
+ [
+ -77.37195771539547,
+ 39.03038931853546
+ ],
+ [
+ -77.38122994109527,
+ 39.017859116366786
+ ],
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ],
+ [
+ -77.38122994109527,
+ 39.017859116366786
+ ],
+ [
+ -77.37195771539547,
+ 39.00532891419811
+ ],
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ],
+ [
+ -77.37195771539547,
+ 39.00532891419811
+ ],
+ [
+ -77.35341326399589,
+ 39.00532891419811
+ ],
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ],
+ [
+ -77.35341326399589,
+ 39.00532891419811
+ ],
+ [
+ -77.34414103829609,
+ 39.017859116366786
+ ],
+ [
+ -77.36268548969568,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ],
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ],
+ [
+ -77.32559658689651,
+ 38.742194668655884
+ ],
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ],
+ [
+ -77.32559658689651,
+ 38.742194668655884
+ ],
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ],
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ],
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ],
+ [
+ -77.35341326399589,
+ 38.72966446648721
+ ],
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ],
+ [
+ -77.35341326399589,
+ 38.72966446648721
+ ],
+ [
+ -77.34414103829609,
+ 38.71713426431853
+ ],
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ],
+ [
+ -77.34414103829609,
+ 38.71713426431853
+ ],
+ [
+ -77.32559658689651,
+ 38.71713426431853
+ ],
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ],
+ [
+ -77.32559658689651,
+ 38.71713426431853
+ ],
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ],
+ [
+ -77.3348688125963,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ],
+ [
+ -77.3163243611967,
+ 38.75472487082456
+ ],
+ [
+ -77.32559658689651,
+ 38.76725507299324
+ ],
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ],
+ [
+ -77.32559658689651,
+ 38.76725507299324
+ ],
+ [
+ -77.34414103829609,
+ 38.76725507299324
+ ],
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ],
+ [
+ -77.34414103829609,
+ 38.76725507299324
+ ],
+ [
+ -77.35341326399589,
+ 38.75472487082456
+ ],
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ],
+ [
+ -77.35341326399589,
+ 38.75472487082456
+ ],
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ],
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ],
+ [
+ -77.34414103829609,
+ 38.742194668655884
+ ],
+ [
+ -77.32559658689651,
+ 38.742194668655884
+ ],
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ],
+ [
+ -77.32559658689651,
+ 38.742194668655884
+ ],
+ [
+ -77.3163243611967,
+ 38.75472487082456
+ ],
+ [
+ -77.3348688125963,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ],
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ],
+ [
+ -77.32559658689651,
+ 38.7923154773306
+ ],
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ],
+ [
+ -77.32559658689651,
+ 38.7923154773306
+ ],
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ],
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ],
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ],
+ [
+ -77.35341326399589,
+ 38.77978527516192
+ ],
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ],
+ [
+ -77.35341326399589,
+ 38.77978527516192
+ ],
+ [
+ -77.34414103829609,
+ 38.767255072993244
+ ],
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ],
+ [
+ -77.34414103829609,
+ 38.767255072993244
+ ],
+ [
+ -77.32559658689651,
+ 38.767255072993244
+ ],
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ],
+ [
+ -77.32559658689651,
+ 38.767255072993244
+ ],
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ],
+ [
+ -77.3348688125963,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ],
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ],
+ [
+ -77.32559658689651,
+ 38.81737588166795
+ ],
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ],
+ [
+ -77.32559658689651,
+ 38.81737588166795
+ ],
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ],
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ],
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ],
+ [
+ -77.35341326399589,
+ 38.80484567949927
+ ],
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ],
+ [
+ -77.35341326399589,
+ 38.80484567949927
+ ],
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ],
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ],
+ [
+ -77.34414103829609,
+ 38.7923154773306
+ ],
+ [
+ -77.32559658689651,
+ 38.7923154773306
+ ],
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ],
+ [
+ -77.32559658689651,
+ 38.7923154773306
+ ],
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ],
+ [
+ -77.3348688125963,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ],
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ],
+ [
+ -77.32559658689651,
+ 38.8424362860053
+ ],
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ],
+ [
+ -77.32559658689651,
+ 38.8424362860053
+ ],
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ],
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ],
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ],
+ [
+ -77.35341326399589,
+ 38.829906083836626
+ ],
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ],
+ [
+ -77.35341326399589,
+ 38.829906083836626
+ ],
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ],
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ],
+ [
+ -77.34414103829609,
+ 38.81737588166795
+ ],
+ [
+ -77.32559658689651,
+ 38.81737588166795
+ ],
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ],
+ [
+ -77.32559658689651,
+ 38.81737588166795
+ ],
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ],
+ [
+ -77.3348688125963,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ],
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ],
+ [
+ -77.32559658689651,
+ 38.867496690342655
+ ],
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ],
+ [
+ -77.32559658689651,
+ 38.867496690342655
+ ],
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ],
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ],
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ],
+ [
+ -77.35341326399589,
+ 38.85496648817398
+ ],
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ],
+ [
+ -77.35341326399589,
+ 38.85496648817398
+ ],
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ],
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ],
+ [
+ -77.34414103829609,
+ 38.8424362860053
+ ],
+ [
+ -77.32559658689651,
+ 38.8424362860053
+ ],
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ],
+ [
+ -77.32559658689651,
+ 38.8424362860053
+ ],
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ],
+ [
+ -77.3348688125963,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ],
+ [
+ -77.3163243611967,
+ 38.88002689251133
+ ],
+ [
+ -77.32559658689651,
+ 38.89255709468001
+ ],
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ],
+ [
+ -77.32559658689651,
+ 38.89255709468001
+ ],
+ [
+ -77.34414103829609,
+ 38.89255709468001
+ ],
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ],
+ [
+ -77.34414103829609,
+ 38.89255709468001
+ ],
+ [
+ -77.35341326399589,
+ 38.88002689251133
+ ],
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ],
+ [
+ -77.35341326399589,
+ 38.88002689251133
+ ],
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ],
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ],
+ [
+ -77.34414103829609,
+ 38.867496690342655
+ ],
+ [
+ -77.32559658689651,
+ 38.867496690342655
+ ],
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ],
+ [
+ -77.32559658689651,
+ 38.867496690342655
+ ],
+ [
+ -77.3163243611967,
+ 38.88002689251133
+ ],
+ [
+ -77.3348688125963,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ],
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ],
+ [
+ -77.32559658689651,
+ 38.91761749901737
+ ],
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ],
+ [
+ -77.32559658689651,
+ 38.91761749901737
+ ],
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ],
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ],
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ],
+ [
+ -77.35341326399589,
+ 38.90508729684869
+ ],
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ],
+ [
+ -77.35341326399589,
+ 38.90508729684869
+ ],
+ [
+ -77.34414103829609,
+ 38.892557094680015
+ ],
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ],
+ [
+ -77.34414103829609,
+ 38.892557094680015
+ ],
+ [
+ -77.32559658689651,
+ 38.892557094680015
+ ],
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ],
+ [
+ -77.32559658689651,
+ 38.892557094680015
+ ],
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ],
+ [
+ -77.3348688125963,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ],
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ],
+ [
+ -77.32559658689651,
+ 38.94267790335472
+ ],
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ],
+ [
+ -77.32559658689651,
+ 38.94267790335472
+ ],
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ],
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ],
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ],
+ [
+ -77.35341326399589,
+ 38.930147701186044
+ ],
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ],
+ [
+ -77.35341326399589,
+ 38.930147701186044
+ ],
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ],
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ],
+ [
+ -77.34414103829609,
+ 38.91761749901737
+ ],
+ [
+ -77.32559658689651,
+ 38.91761749901737
+ ],
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ],
+ [
+ -77.32559658689651,
+ 38.91761749901737
+ ],
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ],
+ [
+ -77.3348688125963,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ],
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ],
+ [
+ -77.32559658689651,
+ 38.96773830769207
+ ],
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ],
+ [
+ -77.32559658689651,
+ 38.96773830769207
+ ],
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ],
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ],
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ],
+ [
+ -77.35341326399589,
+ 38.9552081055234
+ ],
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ],
+ [
+ -77.35341326399589,
+ 38.9552081055234
+ ],
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ],
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ],
+ [
+ -77.34414103829609,
+ 38.94267790335472
+ ],
+ [
+ -77.32559658689651,
+ 38.94267790335472
+ ],
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ],
+ [
+ -77.32559658689651,
+ 38.94267790335472
+ ],
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ],
+ [
+ -77.3348688125963,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ],
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ],
+ [
+ -77.32559658689651,
+ 38.992798712029426
+ ],
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ],
+ [
+ -77.32559658689651,
+ 38.992798712029426
+ ],
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ],
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ],
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ],
+ [
+ -77.35341326399589,
+ 38.98026850986075
+ ],
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ],
+ [
+ -77.35341326399589,
+ 38.98026850986075
+ ],
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ],
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ],
+ [
+ -77.34414103829609,
+ 38.96773830769207
+ ],
+ [
+ -77.32559658689651,
+ 38.96773830769207
+ ],
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ],
+ [
+ -77.32559658689651,
+ 38.96773830769207
+ ],
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ],
+ [
+ -77.3348688125963,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ],
+ [
+ -77.3163243611967,
+ 39.0053289141981
+ ],
+ [
+ -77.32559658689651,
+ 39.01785911636678
+ ],
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ],
+ [
+ -77.32559658689651,
+ 39.01785911636678
+ ],
+ [
+ -77.34414103829609,
+ 39.01785911636678
+ ],
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ],
+ [
+ -77.34414103829609,
+ 39.01785911636678
+ ],
+ [
+ -77.35341326399589,
+ 39.0053289141981
+ ],
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ],
+ [
+ -77.35341326399589,
+ 39.0053289141981
+ ],
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ],
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ],
+ [
+ -77.34414103829609,
+ 38.992798712029426
+ ],
+ [
+ -77.32559658689651,
+ 38.992798712029426
+ ],
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ],
+ [
+ -77.32559658689651,
+ 38.992798712029426
+ ],
+ [
+ -77.3163243611967,
+ 39.0053289141981
+ ],
+ [
+ -77.3348688125963,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ],
+ [
+ -77.3163243611967,
+ 39.03038931853546
+ ],
+ [
+ -77.32559658689651,
+ 39.04291952070414
+ ],
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ],
+ [
+ -77.32559658689651,
+ 39.04291952070414
+ ],
+ [
+ -77.34414103829609,
+ 39.04291952070414
+ ],
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ],
+ [
+ -77.34414103829609,
+ 39.04291952070414
+ ],
+ [
+ -77.35341326399589,
+ 39.03038931853546
+ ],
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ],
+ [
+ -77.35341326399589,
+ 39.03038931853546
+ ],
+ [
+ -77.34414103829609,
+ 39.017859116366786
+ ],
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ],
+ [
+ -77.34414103829609,
+ 39.017859116366786
+ ],
+ [
+ -77.32559658689651,
+ 39.017859116366786
+ ],
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ],
+ [
+ -77.32559658689651,
+ 39.017859116366786
+ ],
+ [
+ -77.3163243611967,
+ 39.03038931853546
+ ],
+ [
+ -77.3348688125963,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ],
+ [
+ -77.28850768409733,
+ 38.71713426431853
+ ],
+ [
+ -77.29777990979713,
+ 38.72966446648721
+ ],
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ],
+ [
+ -77.29777990979713,
+ 38.72966446648721
+ ],
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ],
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ],
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ],
+ [
+ -77.32559658689651,
+ 38.71713426431853
+ ],
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ],
+ [
+ -77.32559658689651,
+ 38.71713426431853
+ ],
+ [
+ -77.3163243611967,
+ 38.704604062149855
+ ],
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ],
+ [
+ -77.3163243611967,
+ 38.704604062149855
+ ],
+ [
+ -77.29777990979713,
+ 38.704604062149855
+ ],
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ],
+ [
+ -77.29777990979713,
+ 38.704604062149855
+ ],
+ [
+ -77.28850768409733,
+ 38.71713426431853
+ ],
+ [
+ -77.30705213549692,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ],
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ],
+ [
+ -77.29777990979713,
+ 38.75472487082456
+ ],
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ],
+ [
+ -77.29777990979713,
+ 38.75472487082456
+ ],
+ [
+ -77.3163243611967,
+ 38.75472487082456
+ ],
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ],
+ [
+ -77.3163243611967,
+ 38.75472487082456
+ ],
+ [
+ -77.32559658689651,
+ 38.742194668655884
+ ],
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ],
+ [
+ -77.32559658689651,
+ 38.742194668655884
+ ],
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ],
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ],
+ [
+ -77.3163243611967,
+ 38.72966446648721
+ ],
+ [
+ -77.29777990979713,
+ 38.72966446648721
+ ],
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ],
+ [
+ -77.29777990979713,
+ 38.72966446648721
+ ],
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ],
+ [
+ -77.30705213549692,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ],
+ [
+ -77.28850768409733,
+ 38.767255072993244
+ ],
+ [
+ -77.29777990979713,
+ 38.77978527516192
+ ],
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ],
+ [
+ -77.29777990979713,
+ 38.77978527516192
+ ],
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ],
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ],
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ],
+ [
+ -77.32559658689651,
+ 38.767255072993244
+ ],
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ],
+ [
+ -77.32559658689651,
+ 38.767255072993244
+ ],
+ [
+ -77.3163243611967,
+ 38.75472487082457
+ ],
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ],
+ [
+ -77.3163243611967,
+ 38.75472487082457
+ ],
+ [
+ -77.29777990979713,
+ 38.75472487082457
+ ],
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ],
+ [
+ -77.29777990979713,
+ 38.75472487082457
+ ],
+ [
+ -77.28850768409733,
+ 38.767255072993244
+ ],
+ [
+ -77.30705213549692,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ],
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ],
+ [
+ -77.29777990979713,
+ 38.80484567949927
+ ],
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ],
+ [
+ -77.29777990979713,
+ 38.80484567949927
+ ],
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ],
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ],
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ],
+ [
+ -77.32559658689651,
+ 38.7923154773306
+ ],
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ],
+ [
+ -77.32559658689651,
+ 38.7923154773306
+ ],
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ],
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ],
+ [
+ -77.3163243611967,
+ 38.77978527516192
+ ],
+ [
+ -77.29777990979713,
+ 38.77978527516192
+ ],
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ],
+ [
+ -77.29777990979713,
+ 38.77978527516192
+ ],
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ],
+ [
+ -77.30705213549692,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ],
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ],
+ [
+ -77.29777990979713,
+ 38.829906083836626
+ ],
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ],
+ [
+ -77.29777990979713,
+ 38.829906083836626
+ ],
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ],
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ],
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ],
+ [
+ -77.32559658689651,
+ 38.81737588166795
+ ],
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ],
+ [
+ -77.32559658689651,
+ 38.81737588166795
+ ],
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ],
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ],
+ [
+ -77.3163243611967,
+ 38.80484567949927
+ ],
+ [
+ -77.29777990979713,
+ 38.80484567949927
+ ],
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ],
+ [
+ -77.29777990979713,
+ 38.80484567949927
+ ],
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ],
+ [
+ -77.30705213549692,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ],
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ],
+ [
+ -77.29777990979713,
+ 38.85496648817398
+ ],
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ],
+ [
+ -77.29777990979713,
+ 38.85496648817398
+ ],
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ],
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ],
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ],
+ [
+ -77.32559658689651,
+ 38.8424362860053
+ ],
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ],
+ [
+ -77.32559658689651,
+ 38.8424362860053
+ ],
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ],
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ],
+ [
+ -77.3163243611967,
+ 38.829906083836626
+ ],
+ [
+ -77.29777990979713,
+ 38.829906083836626
+ ],
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ],
+ [
+ -77.29777990979713,
+ 38.829906083836626
+ ],
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ],
+ [
+ -77.30705213549692,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ],
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ],
+ [
+ -77.29777990979713,
+ 38.88002689251133
+ ],
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ],
+ [
+ -77.29777990979713,
+ 38.88002689251133
+ ],
+ [
+ -77.3163243611967,
+ 38.88002689251133
+ ],
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ],
+ [
+ -77.3163243611967,
+ 38.88002689251133
+ ],
+ [
+ -77.32559658689651,
+ 38.867496690342655
+ ],
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ],
+ [
+ -77.32559658689651,
+ 38.867496690342655
+ ],
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ],
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ],
+ [
+ -77.3163243611967,
+ 38.85496648817398
+ ],
+ [
+ -77.29777990979713,
+ 38.85496648817398
+ ],
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ],
+ [
+ -77.29777990979713,
+ 38.85496648817398
+ ],
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ],
+ [
+ -77.30705213549692,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ],
+ [
+ -77.28850768409733,
+ 38.892557094680015
+ ],
+ [
+ -77.29777990979713,
+ 38.90508729684869
+ ],
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ],
+ [
+ -77.29777990979713,
+ 38.90508729684869
+ ],
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ],
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ],
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ],
+ [
+ -77.32559658689651,
+ 38.892557094680015
+ ],
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ],
+ [
+ -77.32559658689651,
+ 38.892557094680015
+ ],
+ [
+ -77.3163243611967,
+ 38.88002689251134
+ ],
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ],
+ [
+ -77.3163243611967,
+ 38.88002689251134
+ ],
+ [
+ -77.29777990979713,
+ 38.88002689251134
+ ],
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ],
+ [
+ -77.29777990979713,
+ 38.88002689251134
+ ],
+ [
+ -77.28850768409733,
+ 38.892557094680015
+ ],
+ [
+ -77.30705213549692,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ],
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ],
+ [
+ -77.29777990979713,
+ 38.930147701186044
+ ],
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ],
+ [
+ -77.29777990979713,
+ 38.930147701186044
+ ],
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ],
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ],
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ],
+ [
+ -77.32559658689651,
+ 38.91761749901737
+ ],
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ],
+ [
+ -77.32559658689651,
+ 38.91761749901737
+ ],
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ],
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ],
+ [
+ -77.3163243611967,
+ 38.90508729684869
+ ],
+ [
+ -77.29777990979713,
+ 38.90508729684869
+ ],
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ],
+ [
+ -77.29777990979713,
+ 38.90508729684869
+ ],
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ],
+ [
+ -77.30705213549692,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ],
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ],
+ [
+ -77.29777990979713,
+ 38.9552081055234
+ ],
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ],
+ [
+ -77.29777990979713,
+ 38.9552081055234
+ ],
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ],
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ],
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ],
+ [
+ -77.32559658689651,
+ 38.94267790335472
+ ],
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ],
+ [
+ -77.32559658689651,
+ 38.94267790335472
+ ],
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ],
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ],
+ [
+ -77.3163243611967,
+ 38.930147701186044
+ ],
+ [
+ -77.29777990979713,
+ 38.930147701186044
+ ],
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ],
+ [
+ -77.29777990979713,
+ 38.930147701186044
+ ],
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ],
+ [
+ -77.30705213549692,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ],
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ],
+ [
+ -77.29777990979713,
+ 38.98026850986075
+ ],
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ],
+ [
+ -77.29777990979713,
+ 38.98026850986075
+ ],
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ],
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ],
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ],
+ [
+ -77.32559658689651,
+ 38.96773830769207
+ ],
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ],
+ [
+ -77.32559658689651,
+ 38.96773830769207
+ ],
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ],
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ],
+ [
+ -77.3163243611967,
+ 38.9552081055234
+ ],
+ [
+ -77.29777990979713,
+ 38.9552081055234
+ ],
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ],
+ [
+ -77.29777990979713,
+ 38.9552081055234
+ ],
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ],
+ [
+ -77.30705213549692,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ],
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ],
+ [
+ -77.29777990979713,
+ 39.0053289141981
+ ],
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ],
+ [
+ -77.29777990979713,
+ 39.0053289141981
+ ],
+ [
+ -77.3163243611967,
+ 39.0053289141981
+ ],
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ],
+ [
+ -77.3163243611967,
+ 39.0053289141981
+ ],
+ [
+ -77.32559658689651,
+ 38.992798712029426
+ ],
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ],
+ [
+ -77.32559658689651,
+ 38.992798712029426
+ ],
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ],
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ],
+ [
+ -77.3163243611967,
+ 38.98026850986075
+ ],
+ [
+ -77.29777990979713,
+ 38.98026850986075
+ ],
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ],
+ [
+ -77.29777990979713,
+ 38.98026850986075
+ ],
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ],
+ [
+ -77.30705213549692,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ],
+ [
+ -77.28850768409733,
+ 39.017859116366786
+ ],
+ [
+ -77.29777990979713,
+ 39.03038931853546
+ ],
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ],
+ [
+ -77.29777990979713,
+ 39.03038931853546
+ ],
+ [
+ -77.3163243611967,
+ 39.03038931853546
+ ],
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ],
+ [
+ -77.3163243611967,
+ 39.03038931853546
+ ],
+ [
+ -77.32559658689651,
+ 39.017859116366786
+ ],
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ],
+ [
+ -77.32559658689651,
+ 39.017859116366786
+ ],
+ [
+ -77.3163243611967,
+ 39.00532891419811
+ ],
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ],
+ [
+ -77.3163243611967,
+ 39.00532891419811
+ ],
+ [
+ -77.29777990979713,
+ 39.00532891419811
+ ],
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ],
+ [
+ -77.29777990979713,
+ 39.00532891419811
+ ],
+ [
+ -77.28850768409733,
+ 39.017859116366786
+ ],
+ [
+ -77.30705213549692,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ],
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ],
+ [
+ -77.26996323269775,
+ 38.742194668655884
+ ],
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ],
+ [
+ -77.26996323269775,
+ 38.742194668655884
+ ],
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ],
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ],
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ],
+ [
+ -77.29777990979713,
+ 38.72966446648721
+ ],
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ],
+ [
+ -77.29777990979713,
+ 38.72966446648721
+ ],
+ [
+ -77.28850768409733,
+ 38.71713426431853
+ ],
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ],
+ [
+ -77.28850768409733,
+ 38.71713426431853
+ ],
+ [
+ -77.26996323269775,
+ 38.71713426431853
+ ],
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ],
+ [
+ -77.26996323269775,
+ 38.71713426431853
+ ],
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ],
+ [
+ -77.27923545839754,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ],
+ [
+ -77.26069100699794,
+ 38.75472487082456
+ ],
+ [
+ -77.26996323269775,
+ 38.76725507299324
+ ],
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ],
+ [
+ -77.26996323269775,
+ 38.76725507299324
+ ],
+ [
+ -77.28850768409733,
+ 38.76725507299324
+ ],
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ],
+ [
+ -77.28850768409733,
+ 38.76725507299324
+ ],
+ [
+ -77.29777990979713,
+ 38.75472487082456
+ ],
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ],
+ [
+ -77.29777990979713,
+ 38.75472487082456
+ ],
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ],
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ],
+ [
+ -77.28850768409733,
+ 38.742194668655884
+ ],
+ [
+ -77.26996323269775,
+ 38.742194668655884
+ ],
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ],
+ [
+ -77.26996323269775,
+ 38.742194668655884
+ ],
+ [
+ -77.26069100699794,
+ 38.75472487082456
+ ],
+ [
+ -77.27923545839754,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ],
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ],
+ [
+ -77.26996323269775,
+ 38.7923154773306
+ ],
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ],
+ [
+ -77.26996323269775,
+ 38.7923154773306
+ ],
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ],
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ],
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ],
+ [
+ -77.29777990979713,
+ 38.77978527516192
+ ],
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ],
+ [
+ -77.29777990979713,
+ 38.77978527516192
+ ],
+ [
+ -77.28850768409733,
+ 38.767255072993244
+ ],
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ],
+ [
+ -77.28850768409733,
+ 38.767255072993244
+ ],
+ [
+ -77.26996323269775,
+ 38.767255072993244
+ ],
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ],
+ [
+ -77.26996323269775,
+ 38.767255072993244
+ ],
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ],
+ [
+ -77.27923545839754,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ],
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ],
+ [
+ -77.26996323269775,
+ 38.81737588166795
+ ],
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ],
+ [
+ -77.26996323269775,
+ 38.81737588166795
+ ],
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ],
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ],
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ],
+ [
+ -77.29777990979713,
+ 38.80484567949927
+ ],
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ],
+ [
+ -77.29777990979713,
+ 38.80484567949927
+ ],
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ],
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ],
+ [
+ -77.28850768409733,
+ 38.7923154773306
+ ],
+ [
+ -77.26996323269775,
+ 38.7923154773306
+ ],
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ],
+ [
+ -77.26996323269775,
+ 38.7923154773306
+ ],
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ],
+ [
+ -77.27923545839754,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ],
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ],
+ [
+ -77.26996323269775,
+ 38.8424362860053
+ ],
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ],
+ [
+ -77.26996323269775,
+ 38.8424362860053
+ ],
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ],
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ],
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ],
+ [
+ -77.29777990979713,
+ 38.829906083836626
+ ],
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ],
+ [
+ -77.29777990979713,
+ 38.829906083836626
+ ],
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ],
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ],
+ [
+ -77.28850768409733,
+ 38.81737588166795
+ ],
+ [
+ -77.26996323269775,
+ 38.81737588166795
+ ],
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ],
+ [
+ -77.26996323269775,
+ 38.81737588166795
+ ],
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ],
+ [
+ -77.27923545839754,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ],
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ],
+ [
+ -77.26996323269775,
+ 38.867496690342655
+ ],
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ],
+ [
+ -77.26996323269775,
+ 38.867496690342655
+ ],
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ],
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ],
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ],
+ [
+ -77.29777990979713,
+ 38.85496648817398
+ ],
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ],
+ [
+ -77.29777990979713,
+ 38.85496648817398
+ ],
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ],
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ],
+ [
+ -77.28850768409733,
+ 38.8424362860053
+ ],
+ [
+ -77.26996323269775,
+ 38.8424362860053
+ ],
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ],
+ [
+ -77.26996323269775,
+ 38.8424362860053
+ ],
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ],
+ [
+ -77.27923545839754,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ],
+ [
+ -77.26069100699794,
+ 38.88002689251133
+ ],
+ [
+ -77.26996323269775,
+ 38.89255709468001
+ ],
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ],
+ [
+ -77.26996323269775,
+ 38.89255709468001
+ ],
+ [
+ -77.28850768409733,
+ 38.89255709468001
+ ],
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ],
+ [
+ -77.28850768409733,
+ 38.89255709468001
+ ],
+ [
+ -77.29777990979713,
+ 38.88002689251133
+ ],
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ],
+ [
+ -77.29777990979713,
+ 38.88002689251133
+ ],
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ],
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ],
+ [
+ -77.28850768409733,
+ 38.867496690342655
+ ],
+ [
+ -77.26996323269775,
+ 38.867496690342655
+ ],
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ],
+ [
+ -77.26996323269775,
+ 38.867496690342655
+ ],
+ [
+ -77.26069100699794,
+ 38.88002689251133
+ ],
+ [
+ -77.27923545839754,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ],
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ],
+ [
+ -77.26996323269775,
+ 38.91761749901737
+ ],
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ],
+ [
+ -77.26996323269775,
+ 38.91761749901737
+ ],
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ],
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ],
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ],
+ [
+ -77.29777990979713,
+ 38.90508729684869
+ ],
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ],
+ [
+ -77.29777990979713,
+ 38.90508729684869
+ ],
+ [
+ -77.28850768409733,
+ 38.892557094680015
+ ],
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ],
+ [
+ -77.28850768409733,
+ 38.892557094680015
+ ],
+ [
+ -77.26996323269775,
+ 38.892557094680015
+ ],
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ],
+ [
+ -77.26996323269775,
+ 38.892557094680015
+ ],
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ],
+ [
+ -77.27923545839754,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ],
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ],
+ [
+ -77.26996323269775,
+ 38.94267790335472
+ ],
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ],
+ [
+ -77.26996323269775,
+ 38.94267790335472
+ ],
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ],
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ],
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ],
+ [
+ -77.29777990979713,
+ 38.930147701186044
+ ],
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ],
+ [
+ -77.29777990979713,
+ 38.930147701186044
+ ],
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ],
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ],
+ [
+ -77.28850768409733,
+ 38.91761749901737
+ ],
+ [
+ -77.26996323269775,
+ 38.91761749901737
+ ],
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ],
+ [
+ -77.26996323269775,
+ 38.91761749901737
+ ],
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ],
+ [
+ -77.27923545839754,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ],
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ],
+ [
+ -77.26996323269775,
+ 38.96773830769207
+ ],
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ],
+ [
+ -77.26996323269775,
+ 38.96773830769207
+ ],
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ],
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ],
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ],
+ [
+ -77.29777990979713,
+ 38.9552081055234
+ ],
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ],
+ [
+ -77.29777990979713,
+ 38.9552081055234
+ ],
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ],
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ],
+ [
+ -77.28850768409733,
+ 38.94267790335472
+ ],
+ [
+ -77.26996323269775,
+ 38.94267790335472
+ ],
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ],
+ [
+ -77.26996323269775,
+ 38.94267790335472
+ ],
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ],
+ [
+ -77.27923545839754,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ],
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ],
+ [
+ -77.26996323269775,
+ 38.992798712029426
+ ],
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ],
+ [
+ -77.26996323269775,
+ 38.992798712029426
+ ],
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ],
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ],
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ],
+ [
+ -77.29777990979713,
+ 38.98026850986075
+ ],
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ],
+ [
+ -77.29777990979713,
+ 38.98026850986075
+ ],
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ],
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ],
+ [
+ -77.28850768409733,
+ 38.96773830769207
+ ],
+ [
+ -77.26996323269775,
+ 38.96773830769207
+ ],
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ],
+ [
+ -77.26996323269775,
+ 38.96773830769207
+ ],
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ],
+ [
+ -77.27923545839754,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ],
+ [
+ -77.26069100699794,
+ 39.0053289141981
+ ],
+ [
+ -77.26996323269775,
+ 39.01785911636678
+ ],
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ],
+ [
+ -77.26996323269775,
+ 39.01785911636678
+ ],
+ [
+ -77.28850768409733,
+ 39.01785911636678
+ ],
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ],
+ [
+ -77.28850768409733,
+ 39.01785911636678
+ ],
+ [
+ -77.29777990979713,
+ 39.0053289141981
+ ],
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ],
+ [
+ -77.29777990979713,
+ 39.0053289141981
+ ],
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ],
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ],
+ [
+ -77.28850768409733,
+ 38.992798712029426
+ ],
+ [
+ -77.26996323269775,
+ 38.992798712029426
+ ],
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ],
+ [
+ -77.26996323269775,
+ 38.992798712029426
+ ],
+ [
+ -77.26069100699794,
+ 39.0053289141981
+ ],
+ [
+ -77.27923545839754,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ],
+ [
+ -77.26069100699794,
+ 39.03038931853546
+ ],
+ [
+ -77.26996323269775,
+ 39.04291952070414
+ ],
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ],
+ [
+ -77.26996323269775,
+ 39.04291952070414
+ ],
+ [
+ -77.28850768409733,
+ 39.04291952070414
+ ],
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ],
+ [
+ -77.28850768409733,
+ 39.04291952070414
+ ],
+ [
+ -77.29777990979713,
+ 39.03038931853546
+ ],
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ],
+ [
+ -77.29777990979713,
+ 39.03038931853546
+ ],
+ [
+ -77.28850768409733,
+ 39.017859116366786
+ ],
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ],
+ [
+ -77.28850768409733,
+ 39.017859116366786
+ ],
+ [
+ -77.26996323269775,
+ 39.017859116366786
+ ],
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ],
+ [
+ -77.26996323269775,
+ 39.017859116366786
+ ],
+ [
+ -77.26069100699794,
+ 39.03038931853546
+ ],
+ [
+ -77.27923545839754,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ],
+ [
+ -77.23287432989856,
+ 38.71713426431853
+ ],
+ [
+ -77.24214655559837,
+ 38.72966446648721
+ ],
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ],
+ [
+ -77.24214655559837,
+ 38.72966446648721
+ ],
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ],
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ],
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ],
+ [
+ -77.26996323269775,
+ 38.71713426431853
+ ],
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ],
+ [
+ -77.26996323269775,
+ 38.71713426431853
+ ],
+ [
+ -77.26069100699794,
+ 38.704604062149855
+ ],
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ],
+ [
+ -77.26069100699794,
+ 38.704604062149855
+ ],
+ [
+ -77.24214655559837,
+ 38.704604062149855
+ ],
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ],
+ [
+ -77.24214655559837,
+ 38.704604062149855
+ ],
+ [
+ -77.23287432989856,
+ 38.71713426431853
+ ],
+ [
+ -77.25141878129816,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ],
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ],
+ [
+ -77.24214655559837,
+ 38.75472487082456
+ ],
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ],
+ [
+ -77.24214655559837,
+ 38.75472487082456
+ ],
+ [
+ -77.26069100699794,
+ 38.75472487082456
+ ],
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ],
+ [
+ -77.26069100699794,
+ 38.75472487082456
+ ],
+ [
+ -77.26996323269775,
+ 38.742194668655884
+ ],
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ],
+ [
+ -77.26996323269775,
+ 38.742194668655884
+ ],
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ],
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ],
+ [
+ -77.26069100699794,
+ 38.72966446648721
+ ],
+ [
+ -77.24214655559837,
+ 38.72966446648721
+ ],
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ],
+ [
+ -77.24214655559837,
+ 38.72966446648721
+ ],
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ],
+ [
+ -77.25141878129816,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ],
+ [
+ -77.23287432989856,
+ 38.767255072993244
+ ],
+ [
+ -77.24214655559837,
+ 38.77978527516192
+ ],
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ],
+ [
+ -77.24214655559837,
+ 38.77978527516192
+ ],
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ],
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ],
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ],
+ [
+ -77.26996323269775,
+ 38.767255072993244
+ ],
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ],
+ [
+ -77.26996323269775,
+ 38.767255072993244
+ ],
+ [
+ -77.26069100699794,
+ 38.75472487082457
+ ],
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ],
+ [
+ -77.26069100699794,
+ 38.75472487082457
+ ],
+ [
+ -77.24214655559837,
+ 38.75472487082457
+ ],
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ],
+ [
+ -77.24214655559837,
+ 38.75472487082457
+ ],
+ [
+ -77.23287432989856,
+ 38.767255072993244
+ ],
+ [
+ -77.25141878129816,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ],
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ],
+ [
+ -77.24214655559837,
+ 38.80484567949927
+ ],
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ],
+ [
+ -77.24214655559837,
+ 38.80484567949927
+ ],
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ],
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ],
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ],
+ [
+ -77.26996323269775,
+ 38.7923154773306
+ ],
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ],
+ [
+ -77.26996323269775,
+ 38.7923154773306
+ ],
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ],
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ],
+ [
+ -77.26069100699794,
+ 38.77978527516192
+ ],
+ [
+ -77.24214655559837,
+ 38.77978527516192
+ ],
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ],
+ [
+ -77.24214655559837,
+ 38.77978527516192
+ ],
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ],
+ [
+ -77.25141878129816,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ],
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ],
+ [
+ -77.24214655559837,
+ 38.829906083836626
+ ],
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ],
+ [
+ -77.24214655559837,
+ 38.829906083836626
+ ],
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ],
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ],
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ],
+ [
+ -77.26996323269775,
+ 38.81737588166795
+ ],
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ],
+ [
+ -77.26996323269775,
+ 38.81737588166795
+ ],
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ],
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ],
+ [
+ -77.26069100699794,
+ 38.80484567949927
+ ],
+ [
+ -77.24214655559837,
+ 38.80484567949927
+ ],
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ],
+ [
+ -77.24214655559837,
+ 38.80484567949927
+ ],
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ],
+ [
+ -77.25141878129816,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ],
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ],
+ [
+ -77.24214655559837,
+ 38.85496648817398
+ ],
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ],
+ [
+ -77.24214655559837,
+ 38.85496648817398
+ ],
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ],
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ],
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ],
+ [
+ -77.26996323269775,
+ 38.8424362860053
+ ],
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ],
+ [
+ -77.26996323269775,
+ 38.8424362860053
+ ],
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ],
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ],
+ [
+ -77.26069100699794,
+ 38.829906083836626
+ ],
+ [
+ -77.24214655559837,
+ 38.829906083836626
+ ],
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ],
+ [
+ -77.24214655559837,
+ 38.829906083836626
+ ],
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ],
+ [
+ -77.25141878129816,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ],
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ],
+ [
+ -77.24214655559837,
+ 38.88002689251133
+ ],
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ],
+ [
+ -77.24214655559837,
+ 38.88002689251133
+ ],
+ [
+ -77.26069100699794,
+ 38.88002689251133
+ ],
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ],
+ [
+ -77.26069100699794,
+ 38.88002689251133
+ ],
+ [
+ -77.26996323269775,
+ 38.867496690342655
+ ],
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ],
+ [
+ -77.26996323269775,
+ 38.867496690342655
+ ],
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ],
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ],
+ [
+ -77.26069100699794,
+ 38.85496648817398
+ ],
+ [
+ -77.24214655559837,
+ 38.85496648817398
+ ],
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ],
+ [
+ -77.24214655559837,
+ 38.85496648817398
+ ],
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ],
+ [
+ -77.25141878129816,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ],
+ [
+ -77.23287432989856,
+ 38.892557094680015
+ ],
+ [
+ -77.24214655559837,
+ 38.90508729684869
+ ],
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ],
+ [
+ -77.24214655559837,
+ 38.90508729684869
+ ],
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ],
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ],
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ],
+ [
+ -77.26996323269775,
+ 38.892557094680015
+ ],
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ],
+ [
+ -77.26996323269775,
+ 38.892557094680015
+ ],
+ [
+ -77.26069100699794,
+ 38.88002689251134
+ ],
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ],
+ [
+ -77.26069100699794,
+ 38.88002689251134
+ ],
+ [
+ -77.24214655559837,
+ 38.88002689251134
+ ],
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ],
+ [
+ -77.24214655559837,
+ 38.88002689251134
+ ],
+ [
+ -77.23287432989856,
+ 38.892557094680015
+ ],
+ [
+ -77.25141878129816,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ],
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ],
+ [
+ -77.24214655559837,
+ 38.930147701186044
+ ],
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ],
+ [
+ -77.24214655559837,
+ 38.930147701186044
+ ],
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ],
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ],
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ],
+ [
+ -77.26996323269775,
+ 38.91761749901737
+ ],
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ],
+ [
+ -77.26996323269775,
+ 38.91761749901737
+ ],
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ],
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ],
+ [
+ -77.26069100699794,
+ 38.90508729684869
+ ],
+ [
+ -77.24214655559837,
+ 38.90508729684869
+ ],
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ],
+ [
+ -77.24214655559837,
+ 38.90508729684869
+ ],
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ],
+ [
+ -77.25141878129816,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ],
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ],
+ [
+ -77.24214655559837,
+ 38.9552081055234
+ ],
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ],
+ [
+ -77.24214655559837,
+ 38.9552081055234
+ ],
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ],
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ],
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ],
+ [
+ -77.26996323269775,
+ 38.94267790335472
+ ],
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ],
+ [
+ -77.26996323269775,
+ 38.94267790335472
+ ],
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ],
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ],
+ [
+ -77.26069100699794,
+ 38.930147701186044
+ ],
+ [
+ -77.24214655559837,
+ 38.930147701186044
+ ],
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ],
+ [
+ -77.24214655559837,
+ 38.930147701186044
+ ],
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ],
+ [
+ -77.25141878129816,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ],
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ],
+ [
+ -77.24214655559837,
+ 38.98026850986075
+ ],
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ],
+ [
+ -77.24214655559837,
+ 38.98026850986075
+ ],
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ],
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ],
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ],
+ [
+ -77.26996323269775,
+ 38.96773830769207
+ ],
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ],
+ [
+ -77.26996323269775,
+ 38.96773830769207
+ ],
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ],
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ],
+ [
+ -77.26069100699794,
+ 38.9552081055234
+ ],
+ [
+ -77.24214655559837,
+ 38.9552081055234
+ ],
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ],
+ [
+ -77.24214655559837,
+ 38.9552081055234
+ ],
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ],
+ [
+ -77.25141878129816,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ],
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ],
+ [
+ -77.24214655559837,
+ 39.0053289141981
+ ],
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ],
+ [
+ -77.24214655559837,
+ 39.0053289141981
+ ],
+ [
+ -77.26069100699794,
+ 39.0053289141981
+ ],
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ],
+ [
+ -77.26069100699794,
+ 39.0053289141981
+ ],
+ [
+ -77.26996323269775,
+ 38.992798712029426
+ ],
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ],
+ [
+ -77.26996323269775,
+ 38.992798712029426
+ ],
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ],
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ],
+ [
+ -77.26069100699794,
+ 38.98026850986075
+ ],
+ [
+ -77.24214655559837,
+ 38.98026850986075
+ ],
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ],
+ [
+ -77.24214655559837,
+ 38.98026850986075
+ ],
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ],
+ [
+ -77.25141878129816,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ],
+ [
+ -77.23287432989856,
+ 39.017859116366786
+ ],
+ [
+ -77.24214655559837,
+ 39.03038931853546
+ ],
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ],
+ [
+ -77.24214655559837,
+ 39.03038931853546
+ ],
+ [
+ -77.26069100699794,
+ 39.03038931853546
+ ],
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ],
+ [
+ -77.26069100699794,
+ 39.03038931853546
+ ],
+ [
+ -77.26996323269775,
+ 39.017859116366786
+ ],
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ],
+ [
+ -77.26996323269775,
+ 39.017859116366786
+ ],
+ [
+ -77.26069100699794,
+ 39.00532891419811
+ ],
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ],
+ [
+ -77.26069100699794,
+ 39.00532891419811
+ ],
+ [
+ -77.24214655559837,
+ 39.00532891419811
+ ],
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ],
+ [
+ -77.24214655559837,
+ 39.00532891419811
+ ],
+ [
+ -77.23287432989856,
+ 39.017859116366786
+ ],
+ [
+ -77.25141878129816,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ],
+ [
+ -77.20505765279918,
+ 38.72966446648721
+ ],
+ [
+ -77.21432987849899,
+ 38.742194668655884
+ ],
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ],
+ [
+ -77.21432987849899,
+ 38.742194668655884
+ ],
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ],
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ],
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ],
+ [
+ -77.24214655559837,
+ 38.72966446648721
+ ],
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ],
+ [
+ -77.24214655559837,
+ 38.72966446648721
+ ],
+ [
+ -77.23287432989856,
+ 38.71713426431853
+ ],
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ],
+ [
+ -77.23287432989856,
+ 38.71713426431853
+ ],
+ [
+ -77.21432987849899,
+ 38.71713426431853
+ ],
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ],
+ [
+ -77.21432987849899,
+ 38.71713426431853
+ ],
+ [
+ -77.20505765279918,
+ 38.72966446648721
+ ],
+ [
+ -77.22360210419878,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ],
+ [
+ -77.20505765279918,
+ 38.75472487082456
+ ],
+ [
+ -77.21432987849899,
+ 38.76725507299324
+ ],
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ],
+ [
+ -77.21432987849899,
+ 38.76725507299324
+ ],
+ [
+ -77.23287432989856,
+ 38.76725507299324
+ ],
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ],
+ [
+ -77.23287432989856,
+ 38.76725507299324
+ ],
+ [
+ -77.24214655559837,
+ 38.75472487082456
+ ],
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ],
+ [
+ -77.24214655559837,
+ 38.75472487082456
+ ],
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ],
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ],
+ [
+ -77.23287432989856,
+ 38.742194668655884
+ ],
+ [
+ -77.21432987849899,
+ 38.742194668655884
+ ],
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ],
+ [
+ -77.21432987849899,
+ 38.742194668655884
+ ],
+ [
+ -77.20505765279918,
+ 38.75472487082456
+ ],
+ [
+ -77.22360210419878,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ],
+ [
+ -77.20505765279918,
+ 38.77978527516192
+ ],
+ [
+ -77.21432987849899,
+ 38.7923154773306
+ ],
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ],
+ [
+ -77.21432987849899,
+ 38.7923154773306
+ ],
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ],
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ],
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ],
+ [
+ -77.24214655559837,
+ 38.77978527516192
+ ],
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ],
+ [
+ -77.24214655559837,
+ 38.77978527516192
+ ],
+ [
+ -77.23287432989856,
+ 38.767255072993244
+ ],
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ],
+ [
+ -77.23287432989856,
+ 38.767255072993244
+ ],
+ [
+ -77.21432987849899,
+ 38.767255072993244
+ ],
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ],
+ [
+ -77.21432987849899,
+ 38.767255072993244
+ ],
+ [
+ -77.20505765279918,
+ 38.77978527516192
+ ],
+ [
+ -77.22360210419878,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ],
+ [
+ -77.20505765279918,
+ 38.80484567949927
+ ],
+ [
+ -77.21432987849899,
+ 38.81737588166795
+ ],
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ],
+ [
+ -77.21432987849899,
+ 38.81737588166795
+ ],
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ],
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ],
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ],
+ [
+ -77.24214655559837,
+ 38.80484567949927
+ ],
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ],
+ [
+ -77.24214655559837,
+ 38.80484567949927
+ ],
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ],
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ],
+ [
+ -77.23287432989856,
+ 38.7923154773306
+ ],
+ [
+ -77.21432987849899,
+ 38.7923154773306
+ ],
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ],
+ [
+ -77.21432987849899,
+ 38.7923154773306
+ ],
+ [
+ -77.20505765279918,
+ 38.80484567949927
+ ],
+ [
+ -77.22360210419878,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ],
+ [
+ -77.20505765279918,
+ 38.829906083836626
+ ],
+ [
+ -77.21432987849899,
+ 38.8424362860053
+ ],
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ],
+ [
+ -77.21432987849899,
+ 38.8424362860053
+ ],
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ],
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ],
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ],
+ [
+ -77.24214655559837,
+ 38.829906083836626
+ ],
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ],
+ [
+ -77.24214655559837,
+ 38.829906083836626
+ ],
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ],
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ],
+ [
+ -77.23287432989856,
+ 38.81737588166795
+ ],
+ [
+ -77.21432987849899,
+ 38.81737588166795
+ ],
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ],
+ [
+ -77.21432987849899,
+ 38.81737588166795
+ ],
+ [
+ -77.20505765279918,
+ 38.829906083836626
+ ],
+ [
+ -77.22360210419878,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ],
+ [
+ -77.20505765279918,
+ 38.85496648817398
+ ],
+ [
+ -77.21432987849899,
+ 38.867496690342655
+ ],
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ],
+ [
+ -77.21432987849899,
+ 38.867496690342655
+ ],
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ],
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ],
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ],
+ [
+ -77.24214655559837,
+ 38.85496648817398
+ ],
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ],
+ [
+ -77.24214655559837,
+ 38.85496648817398
+ ],
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ],
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ],
+ [
+ -77.23287432989856,
+ 38.8424362860053
+ ],
+ [
+ -77.21432987849899,
+ 38.8424362860053
+ ],
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ],
+ [
+ -77.21432987849899,
+ 38.8424362860053
+ ],
+ [
+ -77.20505765279918,
+ 38.85496648817398
+ ],
+ [
+ -77.22360210419878,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ],
+ [
+ -77.20505765279918,
+ 38.88002689251133
+ ],
+ [
+ -77.21432987849899,
+ 38.89255709468001
+ ],
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ],
+ [
+ -77.21432987849899,
+ 38.89255709468001
+ ],
+ [
+ -77.23287432989856,
+ 38.89255709468001
+ ],
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ],
+ [
+ -77.23287432989856,
+ 38.89255709468001
+ ],
+ [
+ -77.24214655559837,
+ 38.88002689251133
+ ],
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ],
+ [
+ -77.24214655559837,
+ 38.88002689251133
+ ],
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ],
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ],
+ [
+ -77.23287432989856,
+ 38.867496690342655
+ ],
+ [
+ -77.21432987849899,
+ 38.867496690342655
+ ],
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ],
+ [
+ -77.21432987849899,
+ 38.867496690342655
+ ],
+ [
+ -77.20505765279918,
+ 38.88002689251133
+ ],
+ [
+ -77.22360210419878,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ],
+ [
+ -77.20505765279918,
+ 38.90508729684869
+ ],
+ [
+ -77.21432987849899,
+ 38.91761749901737
+ ],
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ],
+ [
+ -77.21432987849899,
+ 38.91761749901737
+ ],
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ],
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ],
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ],
+ [
+ -77.24214655559837,
+ 38.90508729684869
+ ],
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ],
+ [
+ -77.24214655559837,
+ 38.90508729684869
+ ],
+ [
+ -77.23287432989856,
+ 38.892557094680015
+ ],
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ],
+ [
+ -77.23287432989856,
+ 38.892557094680015
+ ],
+ [
+ -77.21432987849899,
+ 38.892557094680015
+ ],
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ],
+ [
+ -77.21432987849899,
+ 38.892557094680015
+ ],
+ [
+ -77.20505765279918,
+ 38.90508729684869
+ ],
+ [
+ -77.22360210419878,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ],
+ [
+ -77.20505765279918,
+ 38.930147701186044
+ ],
+ [
+ -77.21432987849899,
+ 38.94267790335472
+ ],
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ],
+ [
+ -77.21432987849899,
+ 38.94267790335472
+ ],
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ],
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ],
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ],
+ [
+ -77.24214655559837,
+ 38.930147701186044
+ ],
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ],
+ [
+ -77.24214655559837,
+ 38.930147701186044
+ ],
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ],
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ],
+ [
+ -77.23287432989856,
+ 38.91761749901737
+ ],
+ [
+ -77.21432987849899,
+ 38.91761749901737
+ ],
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ],
+ [
+ -77.21432987849899,
+ 38.91761749901737
+ ],
+ [
+ -77.20505765279918,
+ 38.930147701186044
+ ],
+ [
+ -77.22360210419878,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ],
+ [
+ -77.20505765279918,
+ 38.9552081055234
+ ],
+ [
+ -77.21432987849899,
+ 38.96773830769207
+ ],
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ],
+ [
+ -77.21432987849899,
+ 38.96773830769207
+ ],
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ],
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ],
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ],
+ [
+ -77.24214655559837,
+ 38.9552081055234
+ ],
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ],
+ [
+ -77.24214655559837,
+ 38.9552081055234
+ ],
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ],
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ],
+ [
+ -77.23287432989856,
+ 38.94267790335472
+ ],
+ [
+ -77.21432987849899,
+ 38.94267790335472
+ ],
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ],
+ [
+ -77.21432987849899,
+ 38.94267790335472
+ ],
+ [
+ -77.20505765279918,
+ 38.9552081055234
+ ],
+ [
+ -77.22360210419878,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ],
+ [
+ -77.20505765279918,
+ 38.98026850986075
+ ],
+ [
+ -77.21432987849899,
+ 38.992798712029426
+ ],
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ],
+ [
+ -77.21432987849899,
+ 38.992798712029426
+ ],
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ],
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ],
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ],
+ [
+ -77.24214655559837,
+ 38.98026850986075
+ ],
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ],
+ [
+ -77.24214655559837,
+ 38.98026850986075
+ ],
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ],
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ],
+ [
+ -77.23287432989856,
+ 38.96773830769207
+ ],
+ [
+ -77.21432987849899,
+ 38.96773830769207
+ ],
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ],
+ [
+ -77.21432987849899,
+ 38.96773830769207
+ ],
+ [
+ -77.20505765279918,
+ 38.98026850986075
+ ],
+ [
+ -77.22360210419878,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ],
+ [
+ -77.20505765279918,
+ 39.0053289141981
+ ],
+ [
+ -77.21432987849899,
+ 39.01785911636678
+ ],
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ],
+ [
+ -77.21432987849899,
+ 39.01785911636678
+ ],
+ [
+ -77.23287432989856,
+ 39.01785911636678
+ ],
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ],
+ [
+ -77.23287432989856,
+ 39.01785911636678
+ ],
+ [
+ -77.24214655559837,
+ 39.0053289141981
+ ],
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ],
+ [
+ -77.24214655559837,
+ 39.0053289141981
+ ],
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ],
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ],
+ [
+ -77.23287432989856,
+ 38.992798712029426
+ ],
+ [
+ -77.21432987849899,
+ 38.992798712029426
+ ],
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ],
+ [
+ -77.21432987849899,
+ 38.992798712029426
+ ],
+ [
+ -77.20505765279918,
+ 39.0053289141981
+ ],
+ [
+ -77.22360210419878,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ],
+ [
+ -77.20505765279918,
+ 39.03038931853546
+ ],
+ [
+ -77.21432987849899,
+ 39.04291952070414
+ ],
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ],
+ [
+ -77.21432987849899,
+ 39.04291952070414
+ ],
+ [
+ -77.23287432989856,
+ 39.04291952070414
+ ],
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ],
+ [
+ -77.23287432989856,
+ 39.04291952070414
+ ],
+ [
+ -77.24214655559837,
+ 39.03038931853546
+ ],
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ],
+ [
+ -77.24214655559837,
+ 39.03038931853546
+ ],
+ [
+ -77.23287432989856,
+ 39.017859116366786
+ ],
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ],
+ [
+ -77.23287432989856,
+ 39.017859116366786
+ ],
+ [
+ -77.21432987849899,
+ 39.017859116366786
+ ],
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ],
+ [
+ -77.21432987849899,
+ 39.017859116366786
+ ],
+ [
+ -77.20505765279918,
+ 39.03038931853546
+ ],
+ [
+ -77.22360210419878,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ],
+ [
+ -77.17724097569979,
+ 38.71713426431853
+ ],
+ [
+ -77.18651320139959,
+ 38.72966446648721
+ ],
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ],
+ [
+ -77.18651320139959,
+ 38.72966446648721
+ ],
+ [
+ -77.20505765279917,
+ 38.72966446648721
+ ],
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ],
+ [
+ -77.20505765279917,
+ 38.72966446648721
+ ],
+ [
+ -77.21432987849897,
+ 38.71713426431853
+ ],
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ],
+ [
+ -77.21432987849897,
+ 38.71713426431853
+ ],
+ [
+ -77.20505765279917,
+ 38.704604062149855
+ ],
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ],
+ [
+ -77.20505765279917,
+ 38.704604062149855
+ ],
+ [
+ -77.18651320139959,
+ 38.704604062149855
+ ],
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ],
+ [
+ -77.18651320139959,
+ 38.704604062149855
+ ],
+ [
+ -77.17724097569979,
+ 38.71713426431853
+ ],
+ [
+ -77.19578542709938,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ],
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ],
+ [
+ -77.18651320139959,
+ 38.75472487082456
+ ],
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ],
+ [
+ -77.18651320139959,
+ 38.75472487082456
+ ],
+ [
+ -77.20505765279917,
+ 38.75472487082456
+ ],
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ],
+ [
+ -77.20505765279917,
+ 38.75472487082456
+ ],
+ [
+ -77.21432987849897,
+ 38.742194668655884
+ ],
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ],
+ [
+ -77.21432987849897,
+ 38.742194668655884
+ ],
+ [
+ -77.20505765279917,
+ 38.72966446648721
+ ],
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ],
+ [
+ -77.20505765279917,
+ 38.72966446648721
+ ],
+ [
+ -77.18651320139959,
+ 38.72966446648721
+ ],
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ],
+ [
+ -77.18651320139959,
+ 38.72966446648721
+ ],
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ],
+ [
+ -77.19578542709938,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ],
+ [
+ -77.17724097569979,
+ 38.767255072993244
+ ],
+ [
+ -77.18651320139959,
+ 38.77978527516192
+ ],
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ],
+ [
+ -77.18651320139959,
+ 38.77978527516192
+ ],
+ [
+ -77.20505765279917,
+ 38.77978527516192
+ ],
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ],
+ [
+ -77.20505765279917,
+ 38.77978527516192
+ ],
+ [
+ -77.21432987849897,
+ 38.767255072993244
+ ],
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ],
+ [
+ -77.21432987849897,
+ 38.767255072993244
+ ],
+ [
+ -77.20505765279917,
+ 38.75472487082457
+ ],
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ],
+ [
+ -77.20505765279917,
+ 38.75472487082457
+ ],
+ [
+ -77.18651320139959,
+ 38.75472487082457
+ ],
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ],
+ [
+ -77.18651320139959,
+ 38.75472487082457
+ ],
+ [
+ -77.17724097569979,
+ 38.767255072993244
+ ],
+ [
+ -77.19578542709938,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ],
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ],
+ [
+ -77.18651320139959,
+ 38.80484567949927
+ ],
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ],
+ [
+ -77.18651320139959,
+ 38.80484567949927
+ ],
+ [
+ -77.20505765279917,
+ 38.80484567949927
+ ],
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ],
+ [
+ -77.20505765279917,
+ 38.80484567949927
+ ],
+ [
+ -77.21432987849897,
+ 38.7923154773306
+ ],
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ],
+ [
+ -77.21432987849897,
+ 38.7923154773306
+ ],
+ [
+ -77.20505765279917,
+ 38.77978527516192
+ ],
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ],
+ [
+ -77.20505765279917,
+ 38.77978527516192
+ ],
+ [
+ -77.18651320139959,
+ 38.77978527516192
+ ],
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ],
+ [
+ -77.18651320139959,
+ 38.77978527516192
+ ],
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ],
+ [
+ -77.19578542709938,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ],
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ],
+ [
+ -77.18651320139959,
+ 38.829906083836626
+ ],
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ],
+ [
+ -77.18651320139959,
+ 38.829906083836626
+ ],
+ [
+ -77.20505765279917,
+ 38.829906083836626
+ ],
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ],
+ [
+ -77.20505765279917,
+ 38.829906083836626
+ ],
+ [
+ -77.21432987849897,
+ 38.81737588166795
+ ],
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ],
+ [
+ -77.21432987849897,
+ 38.81737588166795
+ ],
+ [
+ -77.20505765279917,
+ 38.80484567949927
+ ],
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ],
+ [
+ -77.20505765279917,
+ 38.80484567949927
+ ],
+ [
+ -77.18651320139959,
+ 38.80484567949927
+ ],
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ],
+ [
+ -77.18651320139959,
+ 38.80484567949927
+ ],
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ],
+ [
+ -77.19578542709938,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ],
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ],
+ [
+ -77.18651320139959,
+ 38.85496648817398
+ ],
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ],
+ [
+ -77.18651320139959,
+ 38.85496648817398
+ ],
+ [
+ -77.20505765279917,
+ 38.85496648817398
+ ],
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ],
+ [
+ -77.20505765279917,
+ 38.85496648817398
+ ],
+ [
+ -77.21432987849897,
+ 38.8424362860053
+ ],
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ],
+ [
+ -77.21432987849897,
+ 38.8424362860053
+ ],
+ [
+ -77.20505765279917,
+ 38.829906083836626
+ ],
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ],
+ [
+ -77.20505765279917,
+ 38.829906083836626
+ ],
+ [
+ -77.18651320139959,
+ 38.829906083836626
+ ],
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ],
+ [
+ -77.18651320139959,
+ 38.829906083836626
+ ],
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ],
+ [
+ -77.19578542709938,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ],
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ],
+ [
+ -77.18651320139959,
+ 38.88002689251133
+ ],
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ],
+ [
+ -77.18651320139959,
+ 38.88002689251133
+ ],
+ [
+ -77.20505765279917,
+ 38.88002689251133
+ ],
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ],
+ [
+ -77.20505765279917,
+ 38.88002689251133
+ ],
+ [
+ -77.21432987849897,
+ 38.867496690342655
+ ],
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ],
+ [
+ -77.21432987849897,
+ 38.867496690342655
+ ],
+ [
+ -77.20505765279917,
+ 38.85496648817398
+ ],
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ],
+ [
+ -77.20505765279917,
+ 38.85496648817398
+ ],
+ [
+ -77.18651320139959,
+ 38.85496648817398
+ ],
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ],
+ [
+ -77.18651320139959,
+ 38.85496648817398
+ ],
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ],
+ [
+ -77.19578542709938,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ],
+ [
+ -77.17724097569979,
+ 38.892557094680015
+ ],
+ [
+ -77.18651320139959,
+ 38.90508729684869
+ ],
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ],
+ [
+ -77.18651320139959,
+ 38.90508729684869
+ ],
+ [
+ -77.20505765279917,
+ 38.90508729684869
+ ],
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ],
+ [
+ -77.20505765279917,
+ 38.90508729684869
+ ],
+ [
+ -77.21432987849897,
+ 38.892557094680015
+ ],
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ],
+ [
+ -77.21432987849897,
+ 38.892557094680015
+ ],
+ [
+ -77.20505765279917,
+ 38.88002689251134
+ ],
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ],
+ [
+ -77.20505765279917,
+ 38.88002689251134
+ ],
+ [
+ -77.18651320139959,
+ 38.88002689251134
+ ],
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ],
+ [
+ -77.18651320139959,
+ 38.88002689251134
+ ],
+ [
+ -77.17724097569979,
+ 38.892557094680015
+ ],
+ [
+ -77.19578542709938,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ],
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ],
+ [
+ -77.18651320139959,
+ 38.930147701186044
+ ],
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ],
+ [
+ -77.18651320139959,
+ 38.930147701186044
+ ],
+ [
+ -77.20505765279917,
+ 38.930147701186044
+ ],
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ],
+ [
+ -77.20505765279917,
+ 38.930147701186044
+ ],
+ [
+ -77.21432987849897,
+ 38.91761749901737
+ ],
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ],
+ [
+ -77.21432987849897,
+ 38.91761749901737
+ ],
+ [
+ -77.20505765279917,
+ 38.90508729684869
+ ],
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ],
+ [
+ -77.20505765279917,
+ 38.90508729684869
+ ],
+ [
+ -77.18651320139959,
+ 38.90508729684869
+ ],
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ],
+ [
+ -77.18651320139959,
+ 38.90508729684869
+ ],
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ],
+ [
+ -77.19578542709938,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ],
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ],
+ [
+ -77.18651320139959,
+ 38.9552081055234
+ ],
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ],
+ [
+ -77.18651320139959,
+ 38.9552081055234
+ ],
+ [
+ -77.20505765279917,
+ 38.9552081055234
+ ],
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ],
+ [
+ -77.20505765279917,
+ 38.9552081055234
+ ],
+ [
+ -77.21432987849897,
+ 38.94267790335472
+ ],
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ],
+ [
+ -77.21432987849897,
+ 38.94267790335472
+ ],
+ [
+ -77.20505765279917,
+ 38.930147701186044
+ ],
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ],
+ [
+ -77.20505765279917,
+ 38.930147701186044
+ ],
+ [
+ -77.18651320139959,
+ 38.930147701186044
+ ],
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ],
+ [
+ -77.18651320139959,
+ 38.930147701186044
+ ],
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ],
+ [
+ -77.19578542709938,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ],
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ],
+ [
+ -77.18651320139959,
+ 38.98026850986075
+ ],
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ],
+ [
+ -77.18651320139959,
+ 38.98026850986075
+ ],
+ [
+ -77.20505765279917,
+ 38.98026850986075
+ ],
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ],
+ [
+ -77.20505765279917,
+ 38.98026850986075
+ ],
+ [
+ -77.21432987849897,
+ 38.96773830769207
+ ],
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ],
+ [
+ -77.21432987849897,
+ 38.96773830769207
+ ],
+ [
+ -77.20505765279917,
+ 38.9552081055234
+ ],
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ],
+ [
+ -77.20505765279917,
+ 38.9552081055234
+ ],
+ [
+ -77.18651320139959,
+ 38.9552081055234
+ ],
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ],
+ [
+ -77.18651320139959,
+ 38.9552081055234
+ ],
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ],
+ [
+ -77.19578542709938,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ],
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ],
+ [
+ -77.18651320139959,
+ 39.0053289141981
+ ],
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ],
+ [
+ -77.18651320139959,
+ 39.0053289141981
+ ],
+ [
+ -77.20505765279917,
+ 39.0053289141981
+ ],
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ],
+ [
+ -77.20505765279917,
+ 39.0053289141981
+ ],
+ [
+ -77.21432987849897,
+ 38.992798712029426
+ ],
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ],
+ [
+ -77.21432987849897,
+ 38.992798712029426
+ ],
+ [
+ -77.20505765279917,
+ 38.98026850986075
+ ],
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ],
+ [
+ -77.20505765279917,
+ 38.98026850986075
+ ],
+ [
+ -77.18651320139959,
+ 38.98026850986075
+ ],
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ],
+ [
+ -77.18651320139959,
+ 38.98026850986075
+ ],
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ],
+ [
+ -77.19578542709938,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ],
+ [
+ -77.17724097569979,
+ 39.017859116366786
+ ],
+ [
+ -77.18651320139959,
+ 39.03038931853546
+ ],
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ],
+ [
+ -77.18651320139959,
+ 39.03038931853546
+ ],
+ [
+ -77.20505765279917,
+ 39.03038931853546
+ ],
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ],
+ [
+ -77.20505765279917,
+ 39.03038931853546
+ ],
+ [
+ -77.21432987849897,
+ 39.017859116366786
+ ],
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ],
+ [
+ -77.21432987849897,
+ 39.017859116366786
+ ],
+ [
+ -77.20505765279917,
+ 39.00532891419811
+ ],
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ],
+ [
+ -77.20505765279917,
+ 39.00532891419811
+ ],
+ [
+ -77.18651320139959,
+ 39.00532891419811
+ ],
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ],
+ [
+ -77.18651320139959,
+ 39.00532891419811
+ ],
+ [
+ -77.17724097569979,
+ 39.017859116366786
+ ],
+ [
+ -77.19578542709938,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.72966446648721
+ ],
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ],
+ [
+ -77.15869652430021,
+ 38.742194668655884
+ ],
+ [
+ -77.16796875,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.72966446648721
+ ],
+ [
+ -77.15869652430021,
+ 38.742194668655884
+ ],
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ],
+ [
+ -77.16796875,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.72966446648721
+ ],
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ],
+ [
+ -77.18651320139959,
+ 38.72966446648721
+ ],
+ [
+ -77.16796875,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.72966446648721
+ ],
+ [
+ -77.18651320139959,
+ 38.72966446648721
+ ],
+ [
+ -77.17724097569979,
+ 38.71713426431853
+ ],
+ [
+ -77.16796875,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.72966446648721
+ ],
+ [
+ -77.17724097569979,
+ 38.71713426431853
+ ],
+ [
+ -77.15869652430021,
+ 38.71713426431853
+ ],
+ [
+ -77.16796875,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.72966446648721
+ ],
+ [
+ -77.15869652430021,
+ 38.71713426431853
+ ],
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ],
+ [
+ -77.16796875,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.75472487082456
+ ],
+ [
+ -77.14942429860041,
+ 38.75472487082456
+ ],
+ [
+ -77.15869652430021,
+ 38.76725507299324
+ ],
+ [
+ -77.16796875,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.75472487082456
+ ],
+ [
+ -77.15869652430021,
+ 38.76725507299324
+ ],
+ [
+ -77.17724097569979,
+ 38.76725507299324
+ ],
+ [
+ -77.16796875,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.75472487082456
+ ],
+ [
+ -77.17724097569979,
+ 38.76725507299324
+ ],
+ [
+ -77.18651320139959,
+ 38.75472487082456
+ ],
+ [
+ -77.16796875,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.75472487082456
+ ],
+ [
+ -77.18651320139959,
+ 38.75472487082456
+ ],
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ],
+ [
+ -77.16796875,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.75472487082456
+ ],
+ [
+ -77.17724097569979,
+ 38.742194668655884
+ ],
+ [
+ -77.15869652430021,
+ 38.742194668655884
+ ],
+ [
+ -77.16796875,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.75472487082456
+ ],
+ [
+ -77.15869652430021,
+ 38.742194668655884
+ ],
+ [
+ -77.14942429860041,
+ 38.75472487082456
+ ],
+ [
+ -77.16796875,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.77978527516192
+ ],
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ],
+ [
+ -77.15869652430021,
+ 38.7923154773306
+ ],
+ [
+ -77.16796875,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.77978527516192
+ ],
+ [
+ -77.15869652430021,
+ 38.7923154773306
+ ],
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ],
+ [
+ -77.16796875,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.77978527516192
+ ],
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ],
+ [
+ -77.18651320139959,
+ 38.77978527516192
+ ],
+ [
+ -77.16796875,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.77978527516192
+ ],
+ [
+ -77.18651320139959,
+ 38.77978527516192
+ ],
+ [
+ -77.17724097569979,
+ 38.767255072993244
+ ],
+ [
+ -77.16796875,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.77978527516192
+ ],
+ [
+ -77.17724097569979,
+ 38.767255072993244
+ ],
+ [
+ -77.15869652430021,
+ 38.767255072993244
+ ],
+ [
+ -77.16796875,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.77978527516192
+ ],
+ [
+ -77.15869652430021,
+ 38.767255072993244
+ ],
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ],
+ [
+ -77.16796875,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.80484567949927
+ ],
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ],
+ [
+ -77.15869652430021,
+ 38.81737588166795
+ ],
+ [
+ -77.16796875,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.80484567949927
+ ],
+ [
+ -77.15869652430021,
+ 38.81737588166795
+ ],
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ],
+ [
+ -77.16796875,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.80484567949927
+ ],
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ],
+ [
+ -77.18651320139959,
+ 38.80484567949927
+ ],
+ [
+ -77.16796875,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.80484567949927
+ ],
+ [
+ -77.18651320139959,
+ 38.80484567949927
+ ],
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ],
+ [
+ -77.16796875,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.80484567949927
+ ],
+ [
+ -77.17724097569979,
+ 38.7923154773306
+ ],
+ [
+ -77.15869652430021,
+ 38.7923154773306
+ ],
+ [
+ -77.16796875,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.80484567949927
+ ],
+ [
+ -77.15869652430021,
+ 38.7923154773306
+ ],
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ],
+ [
+ -77.16796875,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.829906083836626
+ ],
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ],
+ [
+ -77.15869652430021,
+ 38.8424362860053
+ ],
+ [
+ -77.16796875,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.829906083836626
+ ],
+ [
+ -77.15869652430021,
+ 38.8424362860053
+ ],
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ],
+ [
+ -77.16796875,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.829906083836626
+ ],
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ],
+ [
+ -77.18651320139959,
+ 38.829906083836626
+ ],
+ [
+ -77.16796875,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.829906083836626
+ ],
+ [
+ -77.18651320139959,
+ 38.829906083836626
+ ],
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ],
+ [
+ -77.16796875,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.829906083836626
+ ],
+ [
+ -77.17724097569979,
+ 38.81737588166795
+ ],
+ [
+ -77.15869652430021,
+ 38.81737588166795
+ ],
+ [
+ -77.16796875,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.829906083836626
+ ],
+ [
+ -77.15869652430021,
+ 38.81737588166795
+ ],
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ],
+ [
+ -77.16796875,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.85496648817398
+ ],
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ],
+ [
+ -77.15869652430021,
+ 38.867496690342655
+ ],
+ [
+ -77.16796875,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.85496648817398
+ ],
+ [
+ -77.15869652430021,
+ 38.867496690342655
+ ],
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ],
+ [
+ -77.16796875,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.85496648817398
+ ],
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ],
+ [
+ -77.18651320139959,
+ 38.85496648817398
+ ],
+ [
+ -77.16796875,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.85496648817398
+ ],
+ [
+ -77.18651320139959,
+ 38.85496648817398
+ ],
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ],
+ [
+ -77.16796875,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.85496648817398
+ ],
+ [
+ -77.17724097569979,
+ 38.8424362860053
+ ],
+ [
+ -77.15869652430021,
+ 38.8424362860053
+ ],
+ [
+ -77.16796875,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.85496648817398
+ ],
+ [
+ -77.15869652430021,
+ 38.8424362860053
+ ],
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ],
+ [
+ -77.16796875,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.88002689251133
+ ],
+ [
+ -77.14942429860041,
+ 38.88002689251133
+ ],
+ [
+ -77.15869652430021,
+ 38.89255709468001
+ ],
+ [
+ -77.16796875,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.88002689251133
+ ],
+ [
+ -77.15869652430021,
+ 38.89255709468001
+ ],
+ [
+ -77.17724097569979,
+ 38.89255709468001
+ ],
+ [
+ -77.16796875,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.88002689251133
+ ],
+ [
+ -77.17724097569979,
+ 38.89255709468001
+ ],
+ [
+ -77.18651320139959,
+ 38.88002689251133
+ ],
+ [
+ -77.16796875,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.88002689251133
+ ],
+ [
+ -77.18651320139959,
+ 38.88002689251133
+ ],
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ],
+ [
+ -77.16796875,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.88002689251133
+ ],
+ [
+ -77.17724097569979,
+ 38.867496690342655
+ ],
+ [
+ -77.15869652430021,
+ 38.867496690342655
+ ],
+ [
+ -77.16796875,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.88002689251133
+ ],
+ [
+ -77.15869652430021,
+ 38.867496690342655
+ ],
+ [
+ -77.14942429860041,
+ 38.88002689251133
+ ],
+ [
+ -77.16796875,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.90508729684869
+ ],
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ],
+ [
+ -77.15869652430021,
+ 38.91761749901737
+ ],
+ [
+ -77.16796875,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.90508729684869
+ ],
+ [
+ -77.15869652430021,
+ 38.91761749901737
+ ],
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ],
+ [
+ -77.16796875,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.90508729684869
+ ],
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ],
+ [
+ -77.18651320139959,
+ 38.90508729684869
+ ],
+ [
+ -77.16796875,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.90508729684869
+ ],
+ [
+ -77.18651320139959,
+ 38.90508729684869
+ ],
+ [
+ -77.17724097569979,
+ 38.892557094680015
+ ],
+ [
+ -77.16796875,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.90508729684869
+ ],
+ [
+ -77.17724097569979,
+ 38.892557094680015
+ ],
+ [
+ -77.15869652430021,
+ 38.892557094680015
+ ],
+ [
+ -77.16796875,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.90508729684869
+ ],
+ [
+ -77.15869652430021,
+ 38.892557094680015
+ ],
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ],
+ [
+ -77.16796875,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.930147701186044
+ ],
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ],
+ [
+ -77.15869652430021,
+ 38.94267790335472
+ ],
+ [
+ -77.16796875,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.930147701186044
+ ],
+ [
+ -77.15869652430021,
+ 38.94267790335472
+ ],
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ],
+ [
+ -77.16796875,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.930147701186044
+ ],
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ],
+ [
+ -77.18651320139959,
+ 38.930147701186044
+ ],
+ [
+ -77.16796875,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.930147701186044
+ ],
+ [
+ -77.18651320139959,
+ 38.930147701186044
+ ],
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ],
+ [
+ -77.16796875,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.930147701186044
+ ],
+ [
+ -77.17724097569979,
+ 38.91761749901737
+ ],
+ [
+ -77.15869652430021,
+ 38.91761749901737
+ ],
+ [
+ -77.16796875,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.930147701186044
+ ],
+ [
+ -77.15869652430021,
+ 38.91761749901737
+ ],
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ],
+ [
+ -77.16796875,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.9552081055234
+ ],
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ],
+ [
+ -77.15869652430021,
+ 38.96773830769207
+ ],
+ [
+ -77.16796875,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.9552081055234
+ ],
+ [
+ -77.15869652430021,
+ 38.96773830769207
+ ],
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ],
+ [
+ -77.16796875,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.9552081055234
+ ],
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ],
+ [
+ -77.18651320139959,
+ 38.9552081055234
+ ],
+ [
+ -77.16796875,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.9552081055234
+ ],
+ [
+ -77.18651320139959,
+ 38.9552081055234
+ ],
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ],
+ [
+ -77.16796875,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.9552081055234
+ ],
+ [
+ -77.17724097569979,
+ 38.94267790335472
+ ],
+ [
+ -77.15869652430021,
+ 38.94267790335472
+ ],
+ [
+ -77.16796875,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.9552081055234
+ ],
+ [
+ -77.15869652430021,
+ 38.94267790335472
+ ],
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ],
+ [
+ -77.16796875,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.98026850986075
+ ],
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ],
+ [
+ -77.15869652430021,
+ 38.992798712029426
+ ],
+ [
+ -77.16796875,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.98026850986075
+ ],
+ [
+ -77.15869652430021,
+ 38.992798712029426
+ ],
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ],
+ [
+ -77.16796875,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.98026850986075
+ ],
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ],
+ [
+ -77.18651320139959,
+ 38.98026850986075
+ ],
+ [
+ -77.16796875,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.98026850986075
+ ],
+ [
+ -77.18651320139959,
+ 38.98026850986075
+ ],
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ],
+ [
+ -77.16796875,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.98026850986075
+ ],
+ [
+ -77.17724097569979,
+ 38.96773830769207
+ ],
+ [
+ -77.15869652430021,
+ 38.96773830769207
+ ],
+ [
+ -77.16796875,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 38.98026850986075
+ ],
+ [
+ -77.15869652430021,
+ 38.96773830769207
+ ],
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ],
+ [
+ -77.16796875,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.0053289141981
+ ],
+ [
+ -77.14942429860041,
+ 39.0053289141981
+ ],
+ [
+ -77.15869652430021,
+ 39.01785911636678
+ ],
+ [
+ -77.16796875,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.0053289141981
+ ],
+ [
+ -77.15869652430021,
+ 39.01785911636678
+ ],
+ [
+ -77.17724097569979,
+ 39.01785911636678
+ ],
+ [
+ -77.16796875,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.0053289141981
+ ],
+ [
+ -77.17724097569979,
+ 39.01785911636678
+ ],
+ [
+ -77.18651320139959,
+ 39.0053289141981
+ ],
+ [
+ -77.16796875,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.0053289141981
+ ],
+ [
+ -77.18651320139959,
+ 39.0053289141981
+ ],
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ],
+ [
+ -77.16796875,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.0053289141981
+ ],
+ [
+ -77.17724097569979,
+ 38.992798712029426
+ ],
+ [
+ -77.15869652430021,
+ 38.992798712029426
+ ],
+ [
+ -77.16796875,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.0053289141981
+ ],
+ [
+ -77.15869652430021,
+ 38.992798712029426
+ ],
+ [
+ -77.14942429860041,
+ 39.0053289141981
+ ],
+ [
+ -77.16796875,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.03038931853546
+ ],
+ [
+ -77.14942429860041,
+ 39.03038931853546
+ ],
+ [
+ -77.15869652430021,
+ 39.04291952070414
+ ],
+ [
+ -77.16796875,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.03038931853546
+ ],
+ [
+ -77.15869652430021,
+ 39.04291952070414
+ ],
+ [
+ -77.17724097569979,
+ 39.04291952070414
+ ],
+ [
+ -77.16796875,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.03038931853546
+ ],
+ [
+ -77.17724097569979,
+ 39.04291952070414
+ ],
+ [
+ -77.18651320139959,
+ 39.03038931853546
+ ],
+ [
+ -77.16796875,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.03038931853546
+ ],
+ [
+ -77.18651320139959,
+ 39.03038931853546
+ ],
+ [
+ -77.17724097569979,
+ 39.017859116366786
+ ],
+ [
+ -77.16796875,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.03038931853546
+ ],
+ [
+ -77.17724097569979,
+ 39.017859116366786
+ ],
+ [
+ -77.15869652430021,
+ 39.017859116366786
+ ],
+ [
+ -77.16796875,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.16796875,
+ 39.03038931853546
+ ],
+ [
+ -77.15869652430021,
+ 39.017859116366786
+ ],
+ [
+ -77.14942429860041,
+ 39.03038931853546
+ ],
+ [
+ -77.16796875,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ],
+ [
+ -77.12160762150103,
+ 38.71713426431853
+ ],
+ [
+ -77.13087984720083,
+ 38.72966446648721
+ ],
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ],
+ [
+ -77.13087984720083,
+ 38.72966446648721
+ ],
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ],
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ],
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ],
+ [
+ -77.15869652430021,
+ 38.71713426431853
+ ],
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ],
+ [
+ -77.15869652430021,
+ 38.71713426431853
+ ],
+ [
+ -77.14942429860041,
+ 38.704604062149855
+ ],
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ],
+ [
+ -77.14942429860041,
+ 38.704604062149855
+ ],
+ [
+ -77.13087984720083,
+ 38.704604062149855
+ ],
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ],
+ [
+ -77.13087984720083,
+ 38.704604062149855
+ ],
+ [
+ -77.12160762150103,
+ 38.71713426431853
+ ],
+ [
+ -77.14015207290062,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ],
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ],
+ [
+ -77.13087984720083,
+ 38.75472487082456
+ ],
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ],
+ [
+ -77.13087984720083,
+ 38.75472487082456
+ ],
+ [
+ -77.14942429860041,
+ 38.75472487082456
+ ],
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ],
+ [
+ -77.14942429860041,
+ 38.75472487082456
+ ],
+ [
+ -77.15869652430021,
+ 38.742194668655884
+ ],
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ],
+ [
+ -77.15869652430021,
+ 38.742194668655884
+ ],
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ],
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ],
+ [
+ -77.14942429860041,
+ 38.72966446648721
+ ],
+ [
+ -77.13087984720083,
+ 38.72966446648721
+ ],
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ],
+ [
+ -77.13087984720083,
+ 38.72966446648721
+ ],
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ],
+ [
+ -77.14015207290062,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ],
+ [
+ -77.12160762150103,
+ 38.767255072993244
+ ],
+ [
+ -77.13087984720083,
+ 38.77978527516192
+ ],
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ],
+ [
+ -77.13087984720083,
+ 38.77978527516192
+ ],
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ],
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ],
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ],
+ [
+ -77.15869652430021,
+ 38.767255072993244
+ ],
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ],
+ [
+ -77.15869652430021,
+ 38.767255072993244
+ ],
+ [
+ -77.14942429860041,
+ 38.75472487082457
+ ],
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ],
+ [
+ -77.14942429860041,
+ 38.75472487082457
+ ],
+ [
+ -77.13087984720083,
+ 38.75472487082457
+ ],
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ],
+ [
+ -77.13087984720083,
+ 38.75472487082457
+ ],
+ [
+ -77.12160762150103,
+ 38.767255072993244
+ ],
+ [
+ -77.14015207290062,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ],
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ],
+ [
+ -77.13087984720083,
+ 38.80484567949927
+ ],
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ],
+ [
+ -77.13087984720083,
+ 38.80484567949927
+ ],
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ],
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ],
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ],
+ [
+ -77.15869652430021,
+ 38.7923154773306
+ ],
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ],
+ [
+ -77.15869652430021,
+ 38.7923154773306
+ ],
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ],
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ],
+ [
+ -77.14942429860041,
+ 38.77978527516192
+ ],
+ [
+ -77.13087984720083,
+ 38.77978527516192
+ ],
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ],
+ [
+ -77.13087984720083,
+ 38.77978527516192
+ ],
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ],
+ [
+ -77.14015207290062,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ],
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ],
+ [
+ -77.13087984720083,
+ 38.829906083836626
+ ],
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ],
+ [
+ -77.13087984720083,
+ 38.829906083836626
+ ],
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ],
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ],
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ],
+ [
+ -77.15869652430021,
+ 38.81737588166795
+ ],
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ],
+ [
+ -77.15869652430021,
+ 38.81737588166795
+ ],
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ],
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ],
+ [
+ -77.14942429860041,
+ 38.80484567949927
+ ],
+ [
+ -77.13087984720083,
+ 38.80484567949927
+ ],
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ],
+ [
+ -77.13087984720083,
+ 38.80484567949927
+ ],
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ],
+ [
+ -77.14015207290062,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ],
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ],
+ [
+ -77.13087984720083,
+ 38.85496648817398
+ ],
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ],
+ [
+ -77.13087984720083,
+ 38.85496648817398
+ ],
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ],
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ],
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ],
+ [
+ -77.15869652430021,
+ 38.8424362860053
+ ],
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ],
+ [
+ -77.15869652430021,
+ 38.8424362860053
+ ],
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ],
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ],
+ [
+ -77.14942429860041,
+ 38.829906083836626
+ ],
+ [
+ -77.13087984720083,
+ 38.829906083836626
+ ],
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ],
+ [
+ -77.13087984720083,
+ 38.829906083836626
+ ],
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ],
+ [
+ -77.14015207290062,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ],
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ],
+ [
+ -77.13087984720083,
+ 38.88002689251133
+ ],
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ],
+ [
+ -77.13087984720083,
+ 38.88002689251133
+ ],
+ [
+ -77.14942429860041,
+ 38.88002689251133
+ ],
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ],
+ [
+ -77.14942429860041,
+ 38.88002689251133
+ ],
+ [
+ -77.15869652430021,
+ 38.867496690342655
+ ],
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ],
+ [
+ -77.15869652430021,
+ 38.867496690342655
+ ],
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ],
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ],
+ [
+ -77.14942429860041,
+ 38.85496648817398
+ ],
+ [
+ -77.13087984720083,
+ 38.85496648817398
+ ],
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ],
+ [
+ -77.13087984720083,
+ 38.85496648817398
+ ],
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ],
+ [
+ -77.14015207290062,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ],
+ [
+ -77.12160762150103,
+ 38.892557094680015
+ ],
+ [
+ -77.13087984720083,
+ 38.90508729684869
+ ],
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ],
+ [
+ -77.13087984720083,
+ 38.90508729684869
+ ],
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ],
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ],
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ],
+ [
+ -77.15869652430021,
+ 38.892557094680015
+ ],
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ],
+ [
+ -77.15869652430021,
+ 38.892557094680015
+ ],
+ [
+ -77.14942429860041,
+ 38.88002689251134
+ ],
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ],
+ [
+ -77.14942429860041,
+ 38.88002689251134
+ ],
+ [
+ -77.13087984720083,
+ 38.88002689251134
+ ],
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ],
+ [
+ -77.13087984720083,
+ 38.88002689251134
+ ],
+ [
+ -77.12160762150103,
+ 38.892557094680015
+ ],
+ [
+ -77.14015207290062,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ],
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ],
+ [
+ -77.13087984720083,
+ 38.930147701186044
+ ],
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ],
+ [
+ -77.13087984720083,
+ 38.930147701186044
+ ],
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ],
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ],
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ],
+ [
+ -77.15869652430021,
+ 38.91761749901737
+ ],
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ],
+ [
+ -77.15869652430021,
+ 38.91761749901737
+ ],
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ],
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ],
+ [
+ -77.14942429860041,
+ 38.90508729684869
+ ],
+ [
+ -77.13087984720083,
+ 38.90508729684869
+ ],
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ],
+ [
+ -77.13087984720083,
+ 38.90508729684869
+ ],
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ],
+ [
+ -77.14015207290062,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ],
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ],
+ [
+ -77.13087984720083,
+ 38.9552081055234
+ ],
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ],
+ [
+ -77.13087984720083,
+ 38.9552081055234
+ ],
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ],
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ],
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ],
+ [
+ -77.15869652430021,
+ 38.94267790335472
+ ],
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ],
+ [
+ -77.15869652430021,
+ 38.94267790335472
+ ],
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ],
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ],
+ [
+ -77.14942429860041,
+ 38.930147701186044
+ ],
+ [
+ -77.13087984720083,
+ 38.930147701186044
+ ],
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ],
+ [
+ -77.13087984720083,
+ 38.930147701186044
+ ],
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ],
+ [
+ -77.14015207290062,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ],
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ],
+ [
+ -77.13087984720083,
+ 38.98026850986075
+ ],
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ],
+ [
+ -77.13087984720083,
+ 38.98026850986075
+ ],
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ],
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ],
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ],
+ [
+ -77.15869652430021,
+ 38.96773830769207
+ ],
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ],
+ [
+ -77.15869652430021,
+ 38.96773830769207
+ ],
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ],
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ],
+ [
+ -77.14942429860041,
+ 38.9552081055234
+ ],
+ [
+ -77.13087984720083,
+ 38.9552081055234
+ ],
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ],
+ [
+ -77.13087984720083,
+ 38.9552081055234
+ ],
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ],
+ [
+ -77.14015207290062,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ],
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ],
+ [
+ -77.13087984720083,
+ 39.0053289141981
+ ],
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ],
+ [
+ -77.13087984720083,
+ 39.0053289141981
+ ],
+ [
+ -77.14942429860041,
+ 39.0053289141981
+ ],
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ],
+ [
+ -77.14942429860041,
+ 39.0053289141981
+ ],
+ [
+ -77.15869652430021,
+ 38.992798712029426
+ ],
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ],
+ [
+ -77.15869652430021,
+ 38.992798712029426
+ ],
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ],
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ],
+ [
+ -77.14942429860041,
+ 38.98026850986075
+ ],
+ [
+ -77.13087984720083,
+ 38.98026850986075
+ ],
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ],
+ [
+ -77.13087984720083,
+ 38.98026850986075
+ ],
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ],
+ [
+ -77.14015207290062,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ],
+ [
+ -77.12160762150103,
+ 39.017859116366786
+ ],
+ [
+ -77.13087984720083,
+ 39.03038931853546
+ ],
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ],
+ [
+ -77.13087984720083,
+ 39.03038931853546
+ ],
+ [
+ -77.14942429860041,
+ 39.03038931853546
+ ],
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ],
+ [
+ -77.14942429860041,
+ 39.03038931853546
+ ],
+ [
+ -77.15869652430021,
+ 39.017859116366786
+ ],
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ],
+ [
+ -77.15869652430021,
+ 39.017859116366786
+ ],
+ [
+ -77.14942429860041,
+ 39.00532891419811
+ ],
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ],
+ [
+ -77.14942429860041,
+ 39.00532891419811
+ ],
+ [
+ -77.13087984720083,
+ 39.00532891419811
+ ],
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ],
+ [
+ -77.13087984720083,
+ 39.00532891419811
+ ],
+ [
+ -77.12160762150103,
+ 39.017859116366786
+ ],
+ [
+ -77.14015207290062,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ],
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ],
+ [
+ -77.10306317010145,
+ 38.742194668655884
+ ],
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ],
+ [
+ -77.10306317010145,
+ 38.742194668655884
+ ],
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ],
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ],
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ],
+ [
+ -77.13087984720083,
+ 38.72966446648721
+ ],
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ],
+ [
+ -77.13087984720083,
+ 38.72966446648721
+ ],
+ [
+ -77.12160762150103,
+ 38.71713426431853
+ ],
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ],
+ [
+ -77.12160762150103,
+ 38.71713426431853
+ ],
+ [
+ -77.10306317010145,
+ 38.71713426431853
+ ],
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ],
+ [
+ -77.10306317010145,
+ 38.71713426431853
+ ],
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ],
+ [
+ -77.11233539580124,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ],
+ [
+ -77.09379094440165,
+ 38.75472487082456
+ ],
+ [
+ -77.10306317010145,
+ 38.76725507299324
+ ],
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ],
+ [
+ -77.10306317010145,
+ 38.76725507299324
+ ],
+ [
+ -77.12160762150103,
+ 38.76725507299324
+ ],
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ],
+ [
+ -77.12160762150103,
+ 38.76725507299324
+ ],
+ [
+ -77.13087984720083,
+ 38.75472487082456
+ ],
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ],
+ [
+ -77.13087984720083,
+ 38.75472487082456
+ ],
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ],
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ],
+ [
+ -77.12160762150103,
+ 38.742194668655884
+ ],
+ [
+ -77.10306317010145,
+ 38.742194668655884
+ ],
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ],
+ [
+ -77.10306317010145,
+ 38.742194668655884
+ ],
+ [
+ -77.09379094440165,
+ 38.75472487082456
+ ],
+ [
+ -77.11233539580124,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ],
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ],
+ [
+ -77.10306317010145,
+ 38.7923154773306
+ ],
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ],
+ [
+ -77.10306317010145,
+ 38.7923154773306
+ ],
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ],
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ],
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ],
+ [
+ -77.13087984720083,
+ 38.77978527516192
+ ],
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ],
+ [
+ -77.13087984720083,
+ 38.77978527516192
+ ],
+ [
+ -77.12160762150103,
+ 38.767255072993244
+ ],
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ],
+ [
+ -77.12160762150103,
+ 38.767255072993244
+ ],
+ [
+ -77.10306317010145,
+ 38.767255072993244
+ ],
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ],
+ [
+ -77.10306317010145,
+ 38.767255072993244
+ ],
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ],
+ [
+ -77.11233539580124,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ],
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ],
+ [
+ -77.10306317010145,
+ 38.81737588166795
+ ],
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ],
+ [
+ -77.10306317010145,
+ 38.81737588166795
+ ],
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ],
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ],
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ],
+ [
+ -77.13087984720083,
+ 38.80484567949927
+ ],
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ],
+ [
+ -77.13087984720083,
+ 38.80484567949927
+ ],
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ],
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ],
+ [
+ -77.12160762150103,
+ 38.7923154773306
+ ],
+ [
+ -77.10306317010145,
+ 38.7923154773306
+ ],
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ],
+ [
+ -77.10306317010145,
+ 38.7923154773306
+ ],
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ],
+ [
+ -77.11233539580124,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ],
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ],
+ [
+ -77.10306317010145,
+ 38.8424362860053
+ ],
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ],
+ [
+ -77.10306317010145,
+ 38.8424362860053
+ ],
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ],
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ],
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ],
+ [
+ -77.13087984720083,
+ 38.829906083836626
+ ],
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ],
+ [
+ -77.13087984720083,
+ 38.829906083836626
+ ],
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ],
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ],
+ [
+ -77.12160762150103,
+ 38.81737588166795
+ ],
+ [
+ -77.10306317010145,
+ 38.81737588166795
+ ],
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ],
+ [
+ -77.10306317010145,
+ 38.81737588166795
+ ],
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ],
+ [
+ -77.11233539580124,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ],
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ],
+ [
+ -77.10306317010145,
+ 38.867496690342655
+ ],
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ],
+ [
+ -77.10306317010145,
+ 38.867496690342655
+ ],
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ],
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ],
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ],
+ [
+ -77.13087984720083,
+ 38.85496648817398
+ ],
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ],
+ [
+ -77.13087984720083,
+ 38.85496648817398
+ ],
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ],
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ],
+ [
+ -77.12160762150103,
+ 38.8424362860053
+ ],
+ [
+ -77.10306317010145,
+ 38.8424362860053
+ ],
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ],
+ [
+ -77.10306317010145,
+ 38.8424362860053
+ ],
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ],
+ [
+ -77.11233539580124,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ],
+ [
+ -77.09379094440165,
+ 38.88002689251133
+ ],
+ [
+ -77.10306317010145,
+ 38.89255709468001
+ ],
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ],
+ [
+ -77.10306317010145,
+ 38.89255709468001
+ ],
+ [
+ -77.12160762150103,
+ 38.89255709468001
+ ],
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ],
+ [
+ -77.12160762150103,
+ 38.89255709468001
+ ],
+ [
+ -77.13087984720083,
+ 38.88002689251133
+ ],
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ],
+ [
+ -77.13087984720083,
+ 38.88002689251133
+ ],
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ],
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ],
+ [
+ -77.12160762150103,
+ 38.867496690342655
+ ],
+ [
+ -77.10306317010145,
+ 38.867496690342655
+ ],
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ],
+ [
+ -77.10306317010145,
+ 38.867496690342655
+ ],
+ [
+ -77.09379094440165,
+ 38.88002689251133
+ ],
+ [
+ -77.11233539580124,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ],
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ],
+ [
+ -77.10306317010145,
+ 38.91761749901737
+ ],
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ],
+ [
+ -77.10306317010145,
+ 38.91761749901737
+ ],
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ],
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ],
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ],
+ [
+ -77.13087984720083,
+ 38.90508729684869
+ ],
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ],
+ [
+ -77.13087984720083,
+ 38.90508729684869
+ ],
+ [
+ -77.12160762150103,
+ 38.892557094680015
+ ],
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ],
+ [
+ -77.12160762150103,
+ 38.892557094680015
+ ],
+ [
+ -77.10306317010145,
+ 38.892557094680015
+ ],
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ],
+ [
+ -77.10306317010145,
+ 38.892557094680015
+ ],
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ],
+ [
+ -77.11233539580124,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ],
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ],
+ [
+ -77.10306317010145,
+ 38.94267790335472
+ ],
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ],
+ [
+ -77.10306317010145,
+ 38.94267790335472
+ ],
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ],
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ],
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ],
+ [
+ -77.13087984720083,
+ 38.930147701186044
+ ],
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ],
+ [
+ -77.13087984720083,
+ 38.930147701186044
+ ],
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ],
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ],
+ [
+ -77.12160762150103,
+ 38.91761749901737
+ ],
+ [
+ -77.10306317010145,
+ 38.91761749901737
+ ],
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ],
+ [
+ -77.10306317010145,
+ 38.91761749901737
+ ],
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ],
+ [
+ -77.11233539580124,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ],
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ],
+ [
+ -77.10306317010145,
+ 38.96773830769207
+ ],
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ],
+ [
+ -77.10306317010145,
+ 38.96773830769207
+ ],
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ],
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ],
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ],
+ [
+ -77.13087984720083,
+ 38.9552081055234
+ ],
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ],
+ [
+ -77.13087984720083,
+ 38.9552081055234
+ ],
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ],
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ],
+ [
+ -77.12160762150103,
+ 38.94267790335472
+ ],
+ [
+ -77.10306317010145,
+ 38.94267790335472
+ ],
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ],
+ [
+ -77.10306317010145,
+ 38.94267790335472
+ ],
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ],
+ [
+ -77.11233539580124,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ],
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ],
+ [
+ -77.10306317010145,
+ 38.992798712029426
+ ],
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ],
+ [
+ -77.10306317010145,
+ 38.992798712029426
+ ],
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ],
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ],
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ],
+ [
+ -77.13087984720083,
+ 38.98026850986075
+ ],
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ],
+ [
+ -77.13087984720083,
+ 38.98026850986075
+ ],
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ],
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ],
+ [
+ -77.12160762150103,
+ 38.96773830769207
+ ],
+ [
+ -77.10306317010145,
+ 38.96773830769207
+ ],
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ],
+ [
+ -77.10306317010145,
+ 38.96773830769207
+ ],
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ],
+ [
+ -77.11233539580124,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ],
+ [
+ -77.09379094440165,
+ 39.0053289141981
+ ],
+ [
+ -77.10306317010145,
+ 39.01785911636678
+ ],
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ],
+ [
+ -77.10306317010145,
+ 39.01785911636678
+ ],
+ [
+ -77.12160762150103,
+ 39.01785911636678
+ ],
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ],
+ [
+ -77.12160762150103,
+ 39.01785911636678
+ ],
+ [
+ -77.13087984720083,
+ 39.0053289141981
+ ],
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ],
+ [
+ -77.13087984720083,
+ 39.0053289141981
+ ],
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ],
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ],
+ [
+ -77.12160762150103,
+ 38.992798712029426
+ ],
+ [
+ -77.10306317010145,
+ 38.992798712029426
+ ],
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ],
+ [
+ -77.10306317010145,
+ 38.992798712029426
+ ],
+ [
+ -77.09379094440165,
+ 39.0053289141981
+ ],
+ [
+ -77.11233539580124,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ],
+ [
+ -77.09379094440165,
+ 39.03038931853546
+ ],
+ [
+ -77.10306317010145,
+ 39.04291952070414
+ ],
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ],
+ [
+ -77.10306317010145,
+ 39.04291952070414
+ ],
+ [
+ -77.12160762150103,
+ 39.04291952070414
+ ],
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ],
+ [
+ -77.12160762150103,
+ 39.04291952070414
+ ],
+ [
+ -77.13087984720083,
+ 39.03038931853546
+ ],
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ],
+ [
+ -77.13087984720083,
+ 39.03038931853546
+ ],
+ [
+ -77.12160762150103,
+ 39.017859116366786
+ ],
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ],
+ [
+ -77.12160762150103,
+ 39.017859116366786
+ ],
+ [
+ -77.10306317010145,
+ 39.017859116366786
+ ],
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ],
+ [
+ -77.10306317010145,
+ 39.017859116366786
+ ],
+ [
+ -77.09379094440165,
+ 39.03038931853546
+ ],
+ [
+ -77.11233539580124,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ],
+ [
+ -77.06597426730227,
+ 38.71713426431853
+ ],
+ [
+ -77.07524649300207,
+ 38.72966446648721
+ ],
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ],
+ [
+ -77.07524649300207,
+ 38.72966446648721
+ ],
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ],
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ],
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ],
+ [
+ -77.10306317010145,
+ 38.71713426431853
+ ],
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ],
+ [
+ -77.10306317010145,
+ 38.71713426431853
+ ],
+ [
+ -77.09379094440165,
+ 38.704604062149855
+ ],
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ],
+ [
+ -77.09379094440165,
+ 38.704604062149855
+ ],
+ [
+ -77.07524649300207,
+ 38.704604062149855
+ ],
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ],
+ [
+ -77.07524649300207,
+ 38.704604062149855
+ ],
+ [
+ -77.06597426730227,
+ 38.71713426431853
+ ],
+ [
+ -77.08451871870186,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ],
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ],
+ [
+ -77.07524649300207,
+ 38.75472487082456
+ ],
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ],
+ [
+ -77.07524649300207,
+ 38.75472487082456
+ ],
+ [
+ -77.09379094440165,
+ 38.75472487082456
+ ],
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ],
+ [
+ -77.09379094440165,
+ 38.75472487082456
+ ],
+ [
+ -77.10306317010145,
+ 38.742194668655884
+ ],
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ],
+ [
+ -77.10306317010145,
+ 38.742194668655884
+ ],
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ],
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ],
+ [
+ -77.09379094440165,
+ 38.72966446648721
+ ],
+ [
+ -77.07524649300207,
+ 38.72966446648721
+ ],
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ],
+ [
+ -77.07524649300207,
+ 38.72966446648721
+ ],
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ],
+ [
+ -77.08451871870186,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ],
+ [
+ -77.06597426730227,
+ 38.767255072993244
+ ],
+ [
+ -77.07524649300207,
+ 38.77978527516192
+ ],
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ],
+ [
+ -77.07524649300207,
+ 38.77978527516192
+ ],
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ],
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ],
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ],
+ [
+ -77.10306317010145,
+ 38.767255072993244
+ ],
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ],
+ [
+ -77.10306317010145,
+ 38.767255072993244
+ ],
+ [
+ -77.09379094440165,
+ 38.75472487082457
+ ],
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ],
+ [
+ -77.09379094440165,
+ 38.75472487082457
+ ],
+ [
+ -77.07524649300207,
+ 38.75472487082457
+ ],
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ],
+ [
+ -77.07524649300207,
+ 38.75472487082457
+ ],
+ [
+ -77.06597426730227,
+ 38.767255072993244
+ ],
+ [
+ -77.08451871870186,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ],
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ],
+ [
+ -77.07524649300207,
+ 38.80484567949927
+ ],
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ],
+ [
+ -77.07524649300207,
+ 38.80484567949927
+ ],
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ],
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ],
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ],
+ [
+ -77.10306317010145,
+ 38.7923154773306
+ ],
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ],
+ [
+ -77.10306317010145,
+ 38.7923154773306
+ ],
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ],
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ],
+ [
+ -77.09379094440165,
+ 38.77978527516192
+ ],
+ [
+ -77.07524649300207,
+ 38.77978527516192
+ ],
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ],
+ [
+ -77.07524649300207,
+ 38.77978527516192
+ ],
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ],
+ [
+ -77.08451871870186,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ],
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ],
+ [
+ -77.07524649300207,
+ 38.829906083836626
+ ],
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ],
+ [
+ -77.07524649300207,
+ 38.829906083836626
+ ],
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ],
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ],
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ],
+ [
+ -77.10306317010145,
+ 38.81737588166795
+ ],
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ],
+ [
+ -77.10306317010145,
+ 38.81737588166795
+ ],
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ],
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ],
+ [
+ -77.09379094440165,
+ 38.80484567949927
+ ],
+ [
+ -77.07524649300207,
+ 38.80484567949927
+ ],
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ],
+ [
+ -77.07524649300207,
+ 38.80484567949927
+ ],
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ],
+ [
+ -77.08451871870186,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ],
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ],
+ [
+ -77.07524649300207,
+ 38.85496648817398
+ ],
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ],
+ [
+ -77.07524649300207,
+ 38.85496648817398
+ ],
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ],
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ],
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ],
+ [
+ -77.10306317010145,
+ 38.8424362860053
+ ],
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ],
+ [
+ -77.10306317010145,
+ 38.8424362860053
+ ],
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ],
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ],
+ [
+ -77.09379094440165,
+ 38.829906083836626
+ ],
+ [
+ -77.07524649300207,
+ 38.829906083836626
+ ],
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ],
+ [
+ -77.07524649300207,
+ 38.829906083836626
+ ],
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ],
+ [
+ -77.08451871870186,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ],
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ],
+ [
+ -77.07524649300207,
+ 38.88002689251133
+ ],
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ],
+ [
+ -77.07524649300207,
+ 38.88002689251133
+ ],
+ [
+ -77.09379094440165,
+ 38.88002689251133
+ ],
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ],
+ [
+ -77.09379094440165,
+ 38.88002689251133
+ ],
+ [
+ -77.10306317010145,
+ 38.867496690342655
+ ],
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ],
+ [
+ -77.10306317010145,
+ 38.867496690342655
+ ],
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ],
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ],
+ [
+ -77.09379094440165,
+ 38.85496648817398
+ ],
+ [
+ -77.07524649300207,
+ 38.85496648817398
+ ],
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ],
+ [
+ -77.07524649300207,
+ 38.85496648817398
+ ],
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ],
+ [
+ -77.08451871870186,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ],
+ [
+ -77.06597426730227,
+ 38.892557094680015
+ ],
+ [
+ -77.07524649300207,
+ 38.90508729684869
+ ],
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ],
+ [
+ -77.07524649300207,
+ 38.90508729684869
+ ],
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ],
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ],
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ],
+ [
+ -77.10306317010145,
+ 38.892557094680015
+ ],
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ],
+ [
+ -77.10306317010145,
+ 38.892557094680015
+ ],
+ [
+ -77.09379094440165,
+ 38.88002689251134
+ ],
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ],
+ [
+ -77.09379094440165,
+ 38.88002689251134
+ ],
+ [
+ -77.07524649300207,
+ 38.88002689251134
+ ],
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ],
+ [
+ -77.07524649300207,
+ 38.88002689251134
+ ],
+ [
+ -77.06597426730227,
+ 38.892557094680015
+ ],
+ [
+ -77.08451871870186,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ],
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ],
+ [
+ -77.07524649300207,
+ 38.930147701186044
+ ],
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ],
+ [
+ -77.07524649300207,
+ 38.930147701186044
+ ],
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ],
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ],
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ],
+ [
+ -77.10306317010145,
+ 38.91761749901737
+ ],
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ],
+ [
+ -77.10306317010145,
+ 38.91761749901737
+ ],
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ],
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ],
+ [
+ -77.09379094440165,
+ 38.90508729684869
+ ],
+ [
+ -77.07524649300207,
+ 38.90508729684869
+ ],
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ],
+ [
+ -77.07524649300207,
+ 38.90508729684869
+ ],
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ],
+ [
+ -77.08451871870186,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ],
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ],
+ [
+ -77.07524649300207,
+ 38.9552081055234
+ ],
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ],
+ [
+ -77.07524649300207,
+ 38.9552081055234
+ ],
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ],
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ],
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ],
+ [
+ -77.10306317010145,
+ 38.94267790335472
+ ],
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ],
+ [
+ -77.10306317010145,
+ 38.94267790335472
+ ],
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ],
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ],
+ [
+ -77.09379094440165,
+ 38.930147701186044
+ ],
+ [
+ -77.07524649300207,
+ 38.930147701186044
+ ],
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ],
+ [
+ -77.07524649300207,
+ 38.930147701186044
+ ],
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ],
+ [
+ -77.08451871870186,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ],
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ],
+ [
+ -77.07524649300207,
+ 38.98026850986075
+ ],
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ],
+ [
+ -77.07524649300207,
+ 38.98026850986075
+ ],
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ],
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ],
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ],
+ [
+ -77.10306317010145,
+ 38.96773830769207
+ ],
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ],
+ [
+ -77.10306317010145,
+ 38.96773830769207
+ ],
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ],
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ],
+ [
+ -77.09379094440165,
+ 38.9552081055234
+ ],
+ [
+ -77.07524649300207,
+ 38.9552081055234
+ ],
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ],
+ [
+ -77.07524649300207,
+ 38.9552081055234
+ ],
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ],
+ [
+ -77.08451871870186,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ],
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ],
+ [
+ -77.07524649300207,
+ 39.0053289141981
+ ],
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ],
+ [
+ -77.07524649300207,
+ 39.0053289141981
+ ],
+ [
+ -77.09379094440165,
+ 39.0053289141981
+ ],
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ],
+ [
+ -77.09379094440165,
+ 39.0053289141981
+ ],
+ [
+ -77.10306317010145,
+ 38.992798712029426
+ ],
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ],
+ [
+ -77.10306317010145,
+ 38.992798712029426
+ ],
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ],
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ],
+ [
+ -77.09379094440165,
+ 38.98026850986075
+ ],
+ [
+ -77.07524649300207,
+ 38.98026850986075
+ ],
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ],
+ [
+ -77.07524649300207,
+ 38.98026850986075
+ ],
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ],
+ [
+ -77.08451871870186,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ],
+ [
+ -77.06597426730227,
+ 39.017859116366786
+ ],
+ [
+ -77.07524649300207,
+ 39.03038931853546
+ ],
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ],
+ [
+ -77.07524649300207,
+ 39.03038931853546
+ ],
+ [
+ -77.09379094440165,
+ 39.03038931853546
+ ],
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ],
+ [
+ -77.09379094440165,
+ 39.03038931853546
+ ],
+ [
+ -77.10306317010145,
+ 39.017859116366786
+ ],
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ],
+ [
+ -77.10306317010145,
+ 39.017859116366786
+ ],
+ [
+ -77.09379094440165,
+ 39.00532891419811
+ ],
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ],
+ [
+ -77.09379094440165,
+ 39.00532891419811
+ ],
+ [
+ -77.07524649300207,
+ 39.00532891419811
+ ],
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ],
+ [
+ -77.07524649300207,
+ 39.00532891419811
+ ],
+ [
+ -77.06597426730227,
+ 39.017859116366786
+ ],
+ [
+ -77.08451871870186,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ],
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ],
+ [
+ -77.04742981590269,
+ 38.742194668655884
+ ],
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ],
+ [
+ -77.04742981590269,
+ 38.742194668655884
+ ],
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ],
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ],
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ],
+ [
+ -77.07524649300207,
+ 38.72966446648721
+ ],
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ],
+ [
+ -77.07524649300207,
+ 38.72966446648721
+ ],
+ [
+ -77.06597426730227,
+ 38.71713426431853
+ ],
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ],
+ [
+ -77.06597426730227,
+ 38.71713426431853
+ ],
+ [
+ -77.04742981590269,
+ 38.71713426431853
+ ],
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ],
+ [
+ -77.04742981590269,
+ 38.71713426431853
+ ],
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ],
+ [
+ -77.05670204160248,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ],
+ [
+ -77.03815759020289,
+ 38.75472487082456
+ ],
+ [
+ -77.04742981590269,
+ 38.76725507299324
+ ],
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ],
+ [
+ -77.04742981590269,
+ 38.76725507299324
+ ],
+ [
+ -77.06597426730227,
+ 38.76725507299324
+ ],
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ],
+ [
+ -77.06597426730227,
+ 38.76725507299324
+ ],
+ [
+ -77.07524649300207,
+ 38.75472487082456
+ ],
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ],
+ [
+ -77.07524649300207,
+ 38.75472487082456
+ ],
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ],
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ],
+ [
+ -77.06597426730227,
+ 38.742194668655884
+ ],
+ [
+ -77.04742981590269,
+ 38.742194668655884
+ ],
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ],
+ [
+ -77.04742981590269,
+ 38.742194668655884
+ ],
+ [
+ -77.03815759020289,
+ 38.75472487082456
+ ],
+ [
+ -77.05670204160248,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ],
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ],
+ [
+ -77.04742981590269,
+ 38.7923154773306
+ ],
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ],
+ [
+ -77.04742981590269,
+ 38.7923154773306
+ ],
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ],
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ],
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ],
+ [
+ -77.07524649300207,
+ 38.77978527516192
+ ],
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ],
+ [
+ -77.07524649300207,
+ 38.77978527516192
+ ],
+ [
+ -77.06597426730227,
+ 38.767255072993244
+ ],
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ],
+ [
+ -77.06597426730227,
+ 38.767255072993244
+ ],
+ [
+ -77.04742981590269,
+ 38.767255072993244
+ ],
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ],
+ [
+ -77.04742981590269,
+ 38.767255072993244
+ ],
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ],
+ [
+ -77.05670204160248,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ],
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ],
+ [
+ -77.04742981590269,
+ 38.81737588166795
+ ],
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ],
+ [
+ -77.04742981590269,
+ 38.81737588166795
+ ],
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ],
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ],
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ],
+ [
+ -77.07524649300207,
+ 38.80484567949927
+ ],
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ],
+ [
+ -77.07524649300207,
+ 38.80484567949927
+ ],
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ],
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ],
+ [
+ -77.06597426730227,
+ 38.7923154773306
+ ],
+ [
+ -77.04742981590269,
+ 38.7923154773306
+ ],
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ],
+ [
+ -77.04742981590269,
+ 38.7923154773306
+ ],
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ],
+ [
+ -77.05670204160248,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ],
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ],
+ [
+ -77.04742981590269,
+ 38.8424362860053
+ ],
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ],
+ [
+ -77.04742981590269,
+ 38.8424362860053
+ ],
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ],
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ],
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ],
+ [
+ -77.07524649300207,
+ 38.829906083836626
+ ],
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ],
+ [
+ -77.07524649300207,
+ 38.829906083836626
+ ],
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ],
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ],
+ [
+ -77.06597426730227,
+ 38.81737588166795
+ ],
+ [
+ -77.04742981590269,
+ 38.81737588166795
+ ],
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ],
+ [
+ -77.04742981590269,
+ 38.81737588166795
+ ],
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ],
+ [
+ -77.05670204160248,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ],
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ],
+ [
+ -77.04742981590269,
+ 38.867496690342655
+ ],
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ],
+ [
+ -77.04742981590269,
+ 38.867496690342655
+ ],
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ],
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ],
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ],
+ [
+ -77.07524649300207,
+ 38.85496648817398
+ ],
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ],
+ [
+ -77.07524649300207,
+ 38.85496648817398
+ ],
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ],
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ],
+ [
+ -77.06597426730227,
+ 38.8424362860053
+ ],
+ [
+ -77.04742981590269,
+ 38.8424362860053
+ ],
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ],
+ [
+ -77.04742981590269,
+ 38.8424362860053
+ ],
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ],
+ [
+ -77.05670204160248,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ],
+ [
+ -77.03815759020289,
+ 38.88002689251133
+ ],
+ [
+ -77.04742981590269,
+ 38.89255709468001
+ ],
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ],
+ [
+ -77.04742981590269,
+ 38.89255709468001
+ ],
+ [
+ -77.06597426730227,
+ 38.89255709468001
+ ],
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ],
+ [
+ -77.06597426730227,
+ 38.89255709468001
+ ],
+ [
+ -77.07524649300207,
+ 38.88002689251133
+ ],
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ],
+ [
+ -77.07524649300207,
+ 38.88002689251133
+ ],
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ],
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ],
+ [
+ -77.06597426730227,
+ 38.867496690342655
+ ],
+ [
+ -77.04742981590269,
+ 38.867496690342655
+ ],
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ],
+ [
+ -77.04742981590269,
+ 38.867496690342655
+ ],
+ [
+ -77.03815759020289,
+ 38.88002689251133
+ ],
+ [
+ -77.05670204160248,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ],
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ],
+ [
+ -77.04742981590269,
+ 38.91761749901737
+ ],
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ],
+ [
+ -77.04742981590269,
+ 38.91761749901737
+ ],
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ],
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ],
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ],
+ [
+ -77.07524649300207,
+ 38.90508729684869
+ ],
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ],
+ [
+ -77.07524649300207,
+ 38.90508729684869
+ ],
+ [
+ -77.06597426730227,
+ 38.892557094680015
+ ],
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ],
+ [
+ -77.06597426730227,
+ 38.892557094680015
+ ],
+ [
+ -77.04742981590269,
+ 38.892557094680015
+ ],
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ],
+ [
+ -77.04742981590269,
+ 38.892557094680015
+ ],
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ],
+ [
+ -77.05670204160248,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ],
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ],
+ [
+ -77.04742981590269,
+ 38.94267790335472
+ ],
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ],
+ [
+ -77.04742981590269,
+ 38.94267790335472
+ ],
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ],
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ],
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ],
+ [
+ -77.07524649300207,
+ 38.930147701186044
+ ],
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ],
+ [
+ -77.07524649300207,
+ 38.930147701186044
+ ],
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ],
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ],
+ [
+ -77.06597426730227,
+ 38.91761749901737
+ ],
+ [
+ -77.04742981590269,
+ 38.91761749901737
+ ],
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ],
+ [
+ -77.04742981590269,
+ 38.91761749901737
+ ],
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ],
+ [
+ -77.05670204160248,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ],
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ],
+ [
+ -77.04742981590269,
+ 38.96773830769207
+ ],
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ],
+ [
+ -77.04742981590269,
+ 38.96773830769207
+ ],
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ],
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ],
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ],
+ [
+ -77.07524649300207,
+ 38.9552081055234
+ ],
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ],
+ [
+ -77.07524649300207,
+ 38.9552081055234
+ ],
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ],
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ],
+ [
+ -77.06597426730227,
+ 38.94267790335472
+ ],
+ [
+ -77.04742981590269,
+ 38.94267790335472
+ ],
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ],
+ [
+ -77.04742981590269,
+ 38.94267790335472
+ ],
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ],
+ [
+ -77.05670204160248,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ],
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ],
+ [
+ -77.04742981590269,
+ 38.992798712029426
+ ],
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ],
+ [
+ -77.04742981590269,
+ 38.992798712029426
+ ],
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ],
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ],
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ],
+ [
+ -77.07524649300207,
+ 38.98026850986075
+ ],
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ],
+ [
+ -77.07524649300207,
+ 38.98026850986075
+ ],
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ],
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ],
+ [
+ -77.06597426730227,
+ 38.96773830769207
+ ],
+ [
+ -77.04742981590269,
+ 38.96773830769207
+ ],
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ],
+ [
+ -77.04742981590269,
+ 38.96773830769207
+ ],
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ],
+ [
+ -77.05670204160248,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ],
+ [
+ -77.03815759020289,
+ 39.0053289141981
+ ],
+ [
+ -77.04742981590269,
+ 39.01785911636678
+ ],
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ],
+ [
+ -77.04742981590269,
+ 39.01785911636678
+ ],
+ [
+ -77.06597426730227,
+ 39.01785911636678
+ ],
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ],
+ [
+ -77.06597426730227,
+ 39.01785911636678
+ ],
+ [
+ -77.07524649300207,
+ 39.0053289141981
+ ],
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ],
+ [
+ -77.07524649300207,
+ 39.0053289141981
+ ],
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ],
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ],
+ [
+ -77.06597426730227,
+ 38.992798712029426
+ ],
+ [
+ -77.04742981590269,
+ 38.992798712029426
+ ],
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ],
+ [
+ -77.04742981590269,
+ 38.992798712029426
+ ],
+ [
+ -77.03815759020289,
+ 39.0053289141981
+ ],
+ [
+ -77.05670204160248,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ],
+ [
+ -77.03815759020289,
+ 39.03038931853546
+ ],
+ [
+ -77.04742981590269,
+ 39.04291952070414
+ ],
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ],
+ [
+ -77.04742981590269,
+ 39.04291952070414
+ ],
+ [
+ -77.06597426730227,
+ 39.04291952070414
+ ],
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ],
+ [
+ -77.06597426730227,
+ 39.04291952070414
+ ],
+ [
+ -77.07524649300207,
+ 39.03038931853546
+ ],
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ],
+ [
+ -77.07524649300207,
+ 39.03038931853546
+ ],
+ [
+ -77.06597426730227,
+ 39.017859116366786
+ ],
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ],
+ [
+ -77.06597426730227,
+ 39.017859116366786
+ ],
+ [
+ -77.04742981590269,
+ 39.017859116366786
+ ],
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ],
+ [
+ -77.04742981590269,
+ 39.017859116366786
+ ],
+ [
+ -77.03815759020289,
+ 39.03038931853546
+ ],
+ [
+ -77.05670204160248,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ],
+ [
+ -77.0103409131035,
+ 38.71713426431853
+ ],
+ [
+ -77.01961313880331,
+ 38.72966446648721
+ ],
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ],
+ [
+ -77.01961313880331,
+ 38.72966446648721
+ ],
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ],
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ],
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ],
+ [
+ -77.04742981590269,
+ 38.71713426431853
+ ],
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ],
+ [
+ -77.04742981590269,
+ 38.71713426431853
+ ],
+ [
+ -77.03815759020289,
+ 38.704604062149855
+ ],
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ],
+ [
+ -77.03815759020289,
+ 38.704604062149855
+ ],
+ [
+ -77.01961313880331,
+ 38.704604062149855
+ ],
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ],
+ [
+ -77.01961313880331,
+ 38.704604062149855
+ ],
+ [
+ -77.0103409131035,
+ 38.71713426431853
+ ],
+ [
+ -77.0288853645031,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ],
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ],
+ [
+ -77.01961313880331,
+ 38.75472487082456
+ ],
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ],
+ [
+ -77.01961313880331,
+ 38.75472487082456
+ ],
+ [
+ -77.03815759020289,
+ 38.75472487082456
+ ],
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ],
+ [
+ -77.03815759020289,
+ 38.75472487082456
+ ],
+ [
+ -77.04742981590269,
+ 38.742194668655884
+ ],
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ],
+ [
+ -77.04742981590269,
+ 38.742194668655884
+ ],
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ],
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ],
+ [
+ -77.03815759020289,
+ 38.72966446648721
+ ],
+ [
+ -77.01961313880331,
+ 38.72966446648721
+ ],
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ],
+ [
+ -77.01961313880331,
+ 38.72966446648721
+ ],
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ],
+ [
+ -77.0288853645031,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ],
+ [
+ -77.0103409131035,
+ 38.767255072993244
+ ],
+ [
+ -77.01961313880331,
+ 38.77978527516192
+ ],
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ],
+ [
+ -77.01961313880331,
+ 38.77978527516192
+ ],
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ],
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ],
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ],
+ [
+ -77.04742981590269,
+ 38.767255072993244
+ ],
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ],
+ [
+ -77.04742981590269,
+ 38.767255072993244
+ ],
+ [
+ -77.03815759020289,
+ 38.75472487082457
+ ],
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ],
+ [
+ -77.03815759020289,
+ 38.75472487082457
+ ],
+ [
+ -77.01961313880331,
+ 38.75472487082457
+ ],
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ],
+ [
+ -77.01961313880331,
+ 38.75472487082457
+ ],
+ [
+ -77.0103409131035,
+ 38.767255072993244
+ ],
+ [
+ -77.0288853645031,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ],
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ],
+ [
+ -77.01961313880331,
+ 38.80484567949927
+ ],
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ],
+ [
+ -77.01961313880331,
+ 38.80484567949927
+ ],
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ],
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ],
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ],
+ [
+ -77.04742981590269,
+ 38.7923154773306
+ ],
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ],
+ [
+ -77.04742981590269,
+ 38.7923154773306
+ ],
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ],
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ],
+ [
+ -77.03815759020289,
+ 38.77978527516192
+ ],
+ [
+ -77.01961313880331,
+ 38.77978527516192
+ ],
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ],
+ [
+ -77.01961313880331,
+ 38.77978527516192
+ ],
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ],
+ [
+ -77.0288853645031,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ],
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ],
+ [
+ -77.01961313880331,
+ 38.829906083836626
+ ],
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ],
+ [
+ -77.01961313880331,
+ 38.829906083836626
+ ],
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ],
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ],
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ],
+ [
+ -77.04742981590269,
+ 38.81737588166795
+ ],
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ],
+ [
+ -77.04742981590269,
+ 38.81737588166795
+ ],
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ],
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ],
+ [
+ -77.03815759020289,
+ 38.80484567949927
+ ],
+ [
+ -77.01961313880331,
+ 38.80484567949927
+ ],
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ],
+ [
+ -77.01961313880331,
+ 38.80484567949927
+ ],
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ],
+ [
+ -77.0288853645031,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ],
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ],
+ [
+ -77.01961313880331,
+ 38.85496648817398
+ ],
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ],
+ [
+ -77.01961313880331,
+ 38.85496648817398
+ ],
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ],
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ],
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ],
+ [
+ -77.04742981590269,
+ 38.8424362860053
+ ],
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ],
+ [
+ -77.04742981590269,
+ 38.8424362860053
+ ],
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ],
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ],
+ [
+ -77.03815759020289,
+ 38.829906083836626
+ ],
+ [
+ -77.01961313880331,
+ 38.829906083836626
+ ],
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ],
+ [
+ -77.01961313880331,
+ 38.829906083836626
+ ],
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ],
+ [
+ -77.0288853645031,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ],
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ],
+ [
+ -77.01961313880331,
+ 38.88002689251133
+ ],
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ],
+ [
+ -77.01961313880331,
+ 38.88002689251133
+ ],
+ [
+ -77.03815759020289,
+ 38.88002689251133
+ ],
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ],
+ [
+ -77.03815759020289,
+ 38.88002689251133
+ ],
+ [
+ -77.04742981590269,
+ 38.867496690342655
+ ],
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ],
+ [
+ -77.04742981590269,
+ 38.867496690342655
+ ],
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ],
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ],
+ [
+ -77.03815759020289,
+ 38.85496648817398
+ ],
+ [
+ -77.01961313880331,
+ 38.85496648817398
+ ],
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ],
+ [
+ -77.01961313880331,
+ 38.85496648817398
+ ],
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ],
+ [
+ -77.0288853645031,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ],
+ [
+ -77.0103409131035,
+ 38.892557094680015
+ ],
+ [
+ -77.01961313880331,
+ 38.90508729684869
+ ],
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ],
+ [
+ -77.01961313880331,
+ 38.90508729684869
+ ],
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ],
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ],
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ],
+ [
+ -77.04742981590269,
+ 38.892557094680015
+ ],
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ],
+ [
+ -77.04742981590269,
+ 38.892557094680015
+ ],
+ [
+ -77.03815759020289,
+ 38.88002689251134
+ ],
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ],
+ [
+ -77.03815759020289,
+ 38.88002689251134
+ ],
+ [
+ -77.01961313880331,
+ 38.88002689251134
+ ],
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ],
+ [
+ -77.01961313880331,
+ 38.88002689251134
+ ],
+ [
+ -77.0103409131035,
+ 38.892557094680015
+ ],
+ [
+ -77.0288853645031,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ],
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ],
+ [
+ -77.01961313880331,
+ 38.930147701186044
+ ],
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ],
+ [
+ -77.01961313880331,
+ 38.930147701186044
+ ],
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ],
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ],
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ],
+ [
+ -77.04742981590269,
+ 38.91761749901737
+ ],
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ],
+ [
+ -77.04742981590269,
+ 38.91761749901737
+ ],
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ],
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ],
+ [
+ -77.03815759020289,
+ 38.90508729684869
+ ],
+ [
+ -77.01961313880331,
+ 38.90508729684869
+ ],
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ],
+ [
+ -77.01961313880331,
+ 38.90508729684869
+ ],
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ],
+ [
+ -77.0288853645031,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ],
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ],
+ [
+ -77.01961313880331,
+ 38.9552081055234
+ ],
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ],
+ [
+ -77.01961313880331,
+ 38.9552081055234
+ ],
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ],
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ],
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ],
+ [
+ -77.04742981590269,
+ 38.94267790335472
+ ],
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ],
+ [
+ -77.04742981590269,
+ 38.94267790335472
+ ],
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ],
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ],
+ [
+ -77.03815759020289,
+ 38.930147701186044
+ ],
+ [
+ -77.01961313880331,
+ 38.930147701186044
+ ],
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ],
+ [
+ -77.01961313880331,
+ 38.930147701186044
+ ],
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ],
+ [
+ -77.0288853645031,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ],
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ],
+ [
+ -77.01961313880331,
+ 38.98026850986075
+ ],
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ],
+ [
+ -77.01961313880331,
+ 38.98026850986075
+ ],
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ],
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ],
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ],
+ [
+ -77.04742981590269,
+ 38.96773830769207
+ ],
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ],
+ [
+ -77.04742981590269,
+ 38.96773830769207
+ ],
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ],
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ],
+ [
+ -77.03815759020289,
+ 38.9552081055234
+ ],
+ [
+ -77.01961313880331,
+ 38.9552081055234
+ ],
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ],
+ [
+ -77.01961313880331,
+ 38.9552081055234
+ ],
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ],
+ [
+ -77.0288853645031,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ],
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ],
+ [
+ -77.01961313880331,
+ 39.0053289141981
+ ],
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ],
+ [
+ -77.01961313880331,
+ 39.0053289141981
+ ],
+ [
+ -77.03815759020289,
+ 39.0053289141981
+ ],
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ],
+ [
+ -77.03815759020289,
+ 39.0053289141981
+ ],
+ [
+ -77.04742981590269,
+ 38.992798712029426
+ ],
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ],
+ [
+ -77.04742981590269,
+ 38.992798712029426
+ ],
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ],
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ],
+ [
+ -77.03815759020289,
+ 38.98026850986075
+ ],
+ [
+ -77.01961313880331,
+ 38.98026850986075
+ ],
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ],
+ [
+ -77.01961313880331,
+ 38.98026850986075
+ ],
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ],
+ [
+ -77.0288853645031,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ],
+ [
+ -77.0103409131035,
+ 39.017859116366786
+ ],
+ [
+ -77.01961313880331,
+ 39.03038931853546
+ ],
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ],
+ [
+ -77.01961313880331,
+ 39.03038931853546
+ ],
+ [
+ -77.03815759020289,
+ 39.03038931853546
+ ],
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ],
+ [
+ -77.03815759020289,
+ 39.03038931853546
+ ],
+ [
+ -77.04742981590269,
+ 39.017859116366786
+ ],
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ],
+ [
+ -77.04742981590269,
+ 39.017859116366786
+ ],
+ [
+ -77.03815759020289,
+ 39.00532891419811
+ ],
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ],
+ [
+ -77.03815759020289,
+ 39.00532891419811
+ ],
+ [
+ -77.01961313880331,
+ 39.00532891419811
+ ],
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ],
+ [
+ -77.01961313880331,
+ 39.00532891419811
+ ],
+ [
+ -77.0103409131035,
+ 39.017859116366786
+ ],
+ [
+ -77.0288853645031,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ],
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ],
+ [
+ -76.99179646170393,
+ 38.742194668655884
+ ],
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ],
+ [
+ -76.99179646170393,
+ 38.742194668655884
+ ],
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ],
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ],
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ],
+ [
+ -77.01961313880331,
+ 38.72966446648721
+ ],
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ],
+ [
+ -77.01961313880331,
+ 38.72966446648721
+ ],
+ [
+ -77.0103409131035,
+ 38.71713426431853
+ ],
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ],
+ [
+ -77.0103409131035,
+ 38.71713426431853
+ ],
+ [
+ -76.99179646170393,
+ 38.71713426431853
+ ],
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ],
+ [
+ -76.99179646170393,
+ 38.71713426431853
+ ],
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ],
+ [
+ -77.00106868740372,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ],
+ [
+ -76.98252423600412,
+ 38.75472487082456
+ ],
+ [
+ -76.99179646170393,
+ 38.76725507299324
+ ],
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ],
+ [
+ -76.99179646170393,
+ 38.76725507299324
+ ],
+ [
+ -77.0103409131035,
+ 38.76725507299324
+ ],
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ],
+ [
+ -77.0103409131035,
+ 38.76725507299324
+ ],
+ [
+ -77.01961313880331,
+ 38.75472487082456
+ ],
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ],
+ [
+ -77.01961313880331,
+ 38.75472487082456
+ ],
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ],
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ],
+ [
+ -77.0103409131035,
+ 38.742194668655884
+ ],
+ [
+ -76.99179646170393,
+ 38.742194668655884
+ ],
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ],
+ [
+ -76.99179646170393,
+ 38.742194668655884
+ ],
+ [
+ -76.98252423600412,
+ 38.75472487082456
+ ],
+ [
+ -77.00106868740372,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ],
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ],
+ [
+ -76.99179646170393,
+ 38.7923154773306
+ ],
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ],
+ [
+ -76.99179646170393,
+ 38.7923154773306
+ ],
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ],
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ],
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ],
+ [
+ -77.01961313880331,
+ 38.77978527516192
+ ],
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ],
+ [
+ -77.01961313880331,
+ 38.77978527516192
+ ],
+ [
+ -77.0103409131035,
+ 38.767255072993244
+ ],
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ],
+ [
+ -77.0103409131035,
+ 38.767255072993244
+ ],
+ [
+ -76.99179646170393,
+ 38.767255072993244
+ ],
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ],
+ [
+ -76.99179646170393,
+ 38.767255072993244
+ ],
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ],
+ [
+ -77.00106868740372,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ],
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ],
+ [
+ -76.99179646170393,
+ 38.81737588166795
+ ],
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ],
+ [
+ -76.99179646170393,
+ 38.81737588166795
+ ],
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ],
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ],
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ],
+ [
+ -77.01961313880331,
+ 38.80484567949927
+ ],
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ],
+ [
+ -77.01961313880331,
+ 38.80484567949927
+ ],
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ],
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ],
+ [
+ -77.0103409131035,
+ 38.7923154773306
+ ],
+ [
+ -76.99179646170393,
+ 38.7923154773306
+ ],
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ],
+ [
+ -76.99179646170393,
+ 38.7923154773306
+ ],
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ],
+ [
+ -77.00106868740372,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ],
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ],
+ [
+ -76.99179646170393,
+ 38.8424362860053
+ ],
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ],
+ [
+ -76.99179646170393,
+ 38.8424362860053
+ ],
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ],
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ],
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ],
+ [
+ -77.01961313880331,
+ 38.829906083836626
+ ],
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ],
+ [
+ -77.01961313880331,
+ 38.829906083836626
+ ],
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ],
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ],
+ [
+ -77.0103409131035,
+ 38.81737588166795
+ ],
+ [
+ -76.99179646170393,
+ 38.81737588166795
+ ],
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ],
+ [
+ -76.99179646170393,
+ 38.81737588166795
+ ],
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ],
+ [
+ -77.00106868740372,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ],
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ],
+ [
+ -76.99179646170393,
+ 38.867496690342655
+ ],
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ],
+ [
+ -76.99179646170393,
+ 38.867496690342655
+ ],
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ],
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ],
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ],
+ [
+ -77.01961313880331,
+ 38.85496648817398
+ ],
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ],
+ [
+ -77.01961313880331,
+ 38.85496648817398
+ ],
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ],
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ],
+ [
+ -77.0103409131035,
+ 38.8424362860053
+ ],
+ [
+ -76.99179646170393,
+ 38.8424362860053
+ ],
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ],
+ [
+ -76.99179646170393,
+ 38.8424362860053
+ ],
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ],
+ [
+ -77.00106868740372,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ],
+ [
+ -76.98252423600412,
+ 38.88002689251133
+ ],
+ [
+ -76.99179646170393,
+ 38.89255709468001
+ ],
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ],
+ [
+ -76.99179646170393,
+ 38.89255709468001
+ ],
+ [
+ -77.0103409131035,
+ 38.89255709468001
+ ],
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ],
+ [
+ -77.0103409131035,
+ 38.89255709468001
+ ],
+ [
+ -77.01961313880331,
+ 38.88002689251133
+ ],
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ],
+ [
+ -77.01961313880331,
+ 38.88002689251133
+ ],
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ],
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ],
+ [
+ -77.0103409131035,
+ 38.867496690342655
+ ],
+ [
+ -76.99179646170393,
+ 38.867496690342655
+ ],
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ],
+ [
+ -76.99179646170393,
+ 38.867496690342655
+ ],
+ [
+ -76.98252423600412,
+ 38.88002689251133
+ ],
+ [
+ -77.00106868740372,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ],
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ],
+ [
+ -76.99179646170393,
+ 38.91761749901737
+ ],
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ],
+ [
+ -76.99179646170393,
+ 38.91761749901737
+ ],
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ],
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ],
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ],
+ [
+ -77.01961313880331,
+ 38.90508729684869
+ ],
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ],
+ [
+ -77.01961313880331,
+ 38.90508729684869
+ ],
+ [
+ -77.0103409131035,
+ 38.892557094680015
+ ],
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ],
+ [
+ -77.0103409131035,
+ 38.892557094680015
+ ],
+ [
+ -76.99179646170393,
+ 38.892557094680015
+ ],
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ],
+ [
+ -76.99179646170393,
+ 38.892557094680015
+ ],
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ],
+ [
+ -77.00106868740372,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ],
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ],
+ [
+ -76.99179646170393,
+ 38.94267790335472
+ ],
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ],
+ [
+ -76.99179646170393,
+ 38.94267790335472
+ ],
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ],
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ],
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ],
+ [
+ -77.01961313880331,
+ 38.930147701186044
+ ],
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ],
+ [
+ -77.01961313880331,
+ 38.930147701186044
+ ],
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ],
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ],
+ [
+ -77.0103409131035,
+ 38.91761749901737
+ ],
+ [
+ -76.99179646170393,
+ 38.91761749901737
+ ],
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ],
+ [
+ -76.99179646170393,
+ 38.91761749901737
+ ],
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ],
+ [
+ -77.00106868740372,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ],
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ],
+ [
+ -76.99179646170393,
+ 38.96773830769207
+ ],
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ],
+ [
+ -76.99179646170393,
+ 38.96773830769207
+ ],
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ],
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ],
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ],
+ [
+ -77.01961313880331,
+ 38.9552081055234
+ ],
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ],
+ [
+ -77.01961313880331,
+ 38.9552081055234
+ ],
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ],
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ],
+ [
+ -77.0103409131035,
+ 38.94267790335472
+ ],
+ [
+ -76.99179646170393,
+ 38.94267790335472
+ ],
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ],
+ [
+ -76.99179646170393,
+ 38.94267790335472
+ ],
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ],
+ [
+ -77.00106868740372,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ],
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ],
+ [
+ -76.99179646170393,
+ 38.992798712029426
+ ],
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ],
+ [
+ -76.99179646170393,
+ 38.992798712029426
+ ],
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ],
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ],
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ],
+ [
+ -77.01961313880331,
+ 38.98026850986075
+ ],
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ],
+ [
+ -77.01961313880331,
+ 38.98026850986075
+ ],
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ],
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ],
+ [
+ -77.0103409131035,
+ 38.96773830769207
+ ],
+ [
+ -76.99179646170393,
+ 38.96773830769207
+ ],
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ],
+ [
+ -76.99179646170393,
+ 38.96773830769207
+ ],
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ],
+ [
+ -77.00106868740372,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ],
+ [
+ -76.98252423600412,
+ 39.0053289141981
+ ],
+ [
+ -76.99179646170393,
+ 39.01785911636678
+ ],
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ],
+ [
+ -76.99179646170393,
+ 39.01785911636678
+ ],
+ [
+ -77.0103409131035,
+ 39.01785911636678
+ ],
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ],
+ [
+ -77.0103409131035,
+ 39.01785911636678
+ ],
+ [
+ -77.01961313880331,
+ 39.0053289141981
+ ],
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ],
+ [
+ -77.01961313880331,
+ 39.0053289141981
+ ],
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ],
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ],
+ [
+ -77.0103409131035,
+ 38.992798712029426
+ ],
+ [
+ -76.99179646170393,
+ 38.992798712029426
+ ],
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ],
+ [
+ -76.99179646170393,
+ 38.992798712029426
+ ],
+ [
+ -76.98252423600412,
+ 39.0053289141981
+ ],
+ [
+ -77.00106868740372,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ],
+ [
+ -76.98252423600412,
+ 39.03038931853546
+ ],
+ [
+ -76.99179646170393,
+ 39.04291952070414
+ ],
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ],
+ [
+ -76.99179646170393,
+ 39.04291952070414
+ ],
+ [
+ -77.0103409131035,
+ 39.04291952070414
+ ],
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ],
+ [
+ -77.0103409131035,
+ 39.04291952070414
+ ],
+ [
+ -77.01961313880331,
+ 39.03038931853546
+ ],
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ],
+ [
+ -77.01961313880331,
+ 39.03038931853546
+ ],
+ [
+ -77.0103409131035,
+ 39.017859116366786
+ ],
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ],
+ [
+ -77.0103409131035,
+ 39.017859116366786
+ ],
+ [
+ -76.99179646170393,
+ 39.017859116366786
+ ],
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ],
+ [
+ -76.99179646170393,
+ 39.017859116366786
+ ],
+ [
+ -76.98252423600412,
+ 39.03038931853546
+ ],
+ [
+ -77.00106868740372,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ],
+ [
+ -76.95470755890474,
+ 38.71713426431853
+ ],
+ [
+ -76.96397978460455,
+ 38.72966446648721
+ ],
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ],
+ [
+ -76.96397978460455,
+ 38.72966446648721
+ ],
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ],
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ],
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ],
+ [
+ -76.99179646170393,
+ 38.71713426431853
+ ],
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ],
+ [
+ -76.99179646170393,
+ 38.71713426431853
+ ],
+ [
+ -76.98252423600412,
+ 38.704604062149855
+ ],
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ],
+ [
+ -76.98252423600412,
+ 38.704604062149855
+ ],
+ [
+ -76.96397978460455,
+ 38.704604062149855
+ ],
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ],
+ [
+ -76.96397978460455,
+ 38.704604062149855
+ ],
+ [
+ -76.95470755890474,
+ 38.71713426431853
+ ],
+ [
+ -76.97325201030434,
+ 38.71713426431853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ],
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ],
+ [
+ -76.96397978460455,
+ 38.75472487082456
+ ],
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ],
+ [
+ -76.96397978460455,
+ 38.75472487082456
+ ],
+ [
+ -76.98252423600412,
+ 38.75472487082456
+ ],
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ],
+ [
+ -76.98252423600412,
+ 38.75472487082456
+ ],
+ [
+ -76.99179646170393,
+ 38.742194668655884
+ ],
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ],
+ [
+ -76.99179646170393,
+ 38.742194668655884
+ ],
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ],
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ],
+ [
+ -76.98252423600412,
+ 38.72966446648721
+ ],
+ [
+ -76.96397978460455,
+ 38.72966446648721
+ ],
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ],
+ [
+ -76.96397978460455,
+ 38.72966446648721
+ ],
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ],
+ [
+ -76.97325201030434,
+ 38.742194668655884
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ],
+ [
+ -76.95470755890474,
+ 38.767255072993244
+ ],
+ [
+ -76.96397978460455,
+ 38.77978527516192
+ ],
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ],
+ [
+ -76.96397978460455,
+ 38.77978527516192
+ ],
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ],
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ],
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ],
+ [
+ -76.99179646170393,
+ 38.767255072993244
+ ],
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ],
+ [
+ -76.99179646170393,
+ 38.767255072993244
+ ],
+ [
+ -76.98252423600412,
+ 38.75472487082457
+ ],
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ],
+ [
+ -76.98252423600412,
+ 38.75472487082457
+ ],
+ [
+ -76.96397978460455,
+ 38.75472487082457
+ ],
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ],
+ [
+ -76.96397978460455,
+ 38.75472487082457
+ ],
+ [
+ -76.95470755890474,
+ 38.767255072993244
+ ],
+ [
+ -76.97325201030434,
+ 38.767255072993244
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ],
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ],
+ [
+ -76.96397978460455,
+ 38.80484567949927
+ ],
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ],
+ [
+ -76.96397978460455,
+ 38.80484567949927
+ ],
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ],
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ],
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ],
+ [
+ -76.99179646170393,
+ 38.7923154773306
+ ],
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ],
+ [
+ -76.99179646170393,
+ 38.7923154773306
+ ],
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ],
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ],
+ [
+ -76.98252423600412,
+ 38.77978527516192
+ ],
+ [
+ -76.96397978460455,
+ 38.77978527516192
+ ],
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ],
+ [
+ -76.96397978460455,
+ 38.77978527516192
+ ],
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ],
+ [
+ -76.97325201030434,
+ 38.7923154773306
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ],
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ],
+ [
+ -76.96397978460455,
+ 38.829906083836626
+ ],
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ],
+ [
+ -76.96397978460455,
+ 38.829906083836626
+ ],
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ],
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ],
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ],
+ [
+ -76.99179646170393,
+ 38.81737588166795
+ ],
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ],
+ [
+ -76.99179646170393,
+ 38.81737588166795
+ ],
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ],
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ],
+ [
+ -76.98252423600412,
+ 38.80484567949927
+ ],
+ [
+ -76.96397978460455,
+ 38.80484567949927
+ ],
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ],
+ [
+ -76.96397978460455,
+ 38.80484567949927
+ ],
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ],
+ [
+ -76.97325201030434,
+ 38.81737588166795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ],
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ],
+ [
+ -76.96397978460455,
+ 38.85496648817398
+ ],
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ],
+ [
+ -76.96397978460455,
+ 38.85496648817398
+ ],
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ],
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ],
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ],
+ [
+ -76.99179646170393,
+ 38.8424362860053
+ ],
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ],
+ [
+ -76.99179646170393,
+ 38.8424362860053
+ ],
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ],
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ],
+ [
+ -76.98252423600412,
+ 38.829906083836626
+ ],
+ [
+ -76.96397978460455,
+ 38.829906083836626
+ ],
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ],
+ [
+ -76.96397978460455,
+ 38.829906083836626
+ ],
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ],
+ [
+ -76.97325201030434,
+ 38.8424362860053
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ],
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ],
+ [
+ -76.96397978460455,
+ 38.88002689251133
+ ],
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ],
+ [
+ -76.96397978460455,
+ 38.88002689251133
+ ],
+ [
+ -76.98252423600412,
+ 38.88002689251133
+ ],
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ],
+ [
+ -76.98252423600412,
+ 38.88002689251133
+ ],
+ [
+ -76.99179646170393,
+ 38.867496690342655
+ ],
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ],
+ [
+ -76.99179646170393,
+ 38.867496690342655
+ ],
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ],
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ],
+ [
+ -76.98252423600412,
+ 38.85496648817398
+ ],
+ [
+ -76.96397978460455,
+ 38.85496648817398
+ ],
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ],
+ [
+ -76.96397978460455,
+ 38.85496648817398
+ ],
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ],
+ [
+ -76.97325201030434,
+ 38.867496690342655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ],
+ [
+ -76.95470755890474,
+ 38.892557094680015
+ ],
+ [
+ -76.96397978460455,
+ 38.90508729684869
+ ],
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ],
+ [
+ -76.96397978460455,
+ 38.90508729684869
+ ],
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ],
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ],
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ],
+ [
+ -76.99179646170393,
+ 38.892557094680015
+ ],
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ],
+ [
+ -76.99179646170393,
+ 38.892557094680015
+ ],
+ [
+ -76.98252423600412,
+ 38.88002689251134
+ ],
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ],
+ [
+ -76.98252423600412,
+ 38.88002689251134
+ ],
+ [
+ -76.96397978460455,
+ 38.88002689251134
+ ],
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ],
+ [
+ -76.96397978460455,
+ 38.88002689251134
+ ],
+ [
+ -76.95470755890474,
+ 38.892557094680015
+ ],
+ [
+ -76.97325201030434,
+ 38.892557094680015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ],
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ],
+ [
+ -76.96397978460455,
+ 38.930147701186044
+ ],
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ],
+ [
+ -76.96397978460455,
+ 38.930147701186044
+ ],
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ],
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ],
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ],
+ [
+ -76.99179646170393,
+ 38.91761749901737
+ ],
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ],
+ [
+ -76.99179646170393,
+ 38.91761749901737
+ ],
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ],
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ],
+ [
+ -76.98252423600412,
+ 38.90508729684869
+ ],
+ [
+ -76.96397978460455,
+ 38.90508729684869
+ ],
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ],
+ [
+ -76.96397978460455,
+ 38.90508729684869
+ ],
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ],
+ [
+ -76.97325201030434,
+ 38.91761749901737
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ],
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ],
+ [
+ -76.96397978460455,
+ 38.9552081055234
+ ],
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ],
+ [
+ -76.96397978460455,
+ 38.9552081055234
+ ],
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ],
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ],
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ],
+ [
+ -76.99179646170393,
+ 38.94267790335472
+ ],
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ],
+ [
+ -76.99179646170393,
+ 38.94267790335472
+ ],
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ],
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ],
+ [
+ -76.98252423600412,
+ 38.930147701186044
+ ],
+ [
+ -76.96397978460455,
+ 38.930147701186044
+ ],
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ],
+ [
+ -76.96397978460455,
+ 38.930147701186044
+ ],
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ],
+ [
+ -76.97325201030434,
+ 38.94267790335472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ],
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ],
+ [
+ -76.96397978460455,
+ 38.98026850986075
+ ],
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ],
+ [
+ -76.96397978460455,
+ 38.98026850986075
+ ],
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ],
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ],
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ],
+ [
+ -76.99179646170393,
+ 38.96773830769207
+ ],
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ],
+ [
+ -76.99179646170393,
+ 38.96773830769207
+ ],
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ],
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ],
+ [
+ -76.98252423600412,
+ 38.9552081055234
+ ],
+ [
+ -76.96397978460455,
+ 38.9552081055234
+ ],
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ],
+ [
+ -76.96397978460455,
+ 38.9552081055234
+ ],
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ],
+ [
+ -76.97325201030434,
+ 38.96773830769207
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ],
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ],
+ [
+ -76.96397978460455,
+ 39.0053289141981
+ ],
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ],
+ [
+ -76.96397978460455,
+ 39.0053289141981
+ ],
+ [
+ -76.98252423600412,
+ 39.0053289141981
+ ],
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ],
+ [
+ -76.98252423600412,
+ 39.0053289141981
+ ],
+ [
+ -76.99179646170393,
+ 38.992798712029426
+ ],
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ],
+ [
+ -76.99179646170393,
+ 38.992798712029426
+ ],
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ],
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ],
+ [
+ -76.98252423600412,
+ 38.98026850986075
+ ],
+ [
+ -76.96397978460455,
+ 38.98026850986075
+ ],
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ],
+ [
+ -76.96397978460455,
+ 38.98026850986075
+ ],
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ],
+ [
+ -76.97325201030434,
+ 38.992798712029426
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ],
+ [
+ -76.95470755890474,
+ 39.017859116366786
+ ],
+ [
+ -76.96397978460455,
+ 39.03038931853546
+ ],
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ],
+ [
+ -76.96397978460455,
+ 39.03038931853546
+ ],
+ [
+ -76.98252423600412,
+ 39.03038931853546
+ ],
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ],
+ [
+ -76.98252423600412,
+ 39.03038931853546
+ ],
+ [
+ -76.99179646170393,
+ 39.017859116366786
+ ],
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ],
+ [
+ -76.99179646170393,
+ 39.017859116366786
+ ],
+ [
+ -76.98252423600412,
+ 39.00532891419811
+ ],
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ],
+ [
+ -76.98252423600412,
+ 39.00532891419811
+ ],
+ [
+ -76.96397978460455,
+ 39.00532891419811
+ ],
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ],
+ [
+ -76.96397978460455,
+ 39.00532891419811
+ ],
+ [
+ -76.95470755890474,
+ 39.017859116366786
+ ],
+ [
+ -76.97325201030434,
+ 39.017859116366786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ],
+ [
+ -76.92689088180536,
+ 38.72966446648721
+ ],
+ [
+ -76.93616310750517,
+ 38.742194668655884
+ ],
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ],
+ [
+ -76.93616310750517,
+ 38.742194668655884
+ ],
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ],
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ],
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ],
+ [
+ -76.96397978460455,
+ 38.72966446648721
+ ],
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ],
+ [
+ -76.96397978460455,
+ 38.72966446648721
+ ],
+ [
+ -76.95470755890474,
+ 38.71713426431853
+ ],
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ],
+ [
+ -76.95470755890474,
+ 38.71713426431853
+ ],
+ [
+ -76.93616310750517,
+ 38.71713426431853
+ ],
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ],
+ [
+ -76.93616310750517,
+ 38.71713426431853
+ ],
+ [
+ -76.92689088180536,
+ 38.72966446648721
+ ],
+ [
+ -76.94543533320495,
+ 38.72966446648721
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ],
+ [
+ -76.92689088180536,
+ 38.75472487082456
+ ],
+ [
+ -76.93616310750517,
+ 38.76725507299324
+ ],
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ],
+ [
+ -76.93616310750517,
+ 38.76725507299324
+ ],
+ [
+ -76.95470755890474,
+ 38.76725507299324
+ ],
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ],
+ [
+ -76.95470755890474,
+ 38.76725507299324
+ ],
+ [
+ -76.96397978460455,
+ 38.75472487082456
+ ],
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ],
+ [
+ -76.96397978460455,
+ 38.75472487082456
+ ],
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ],
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ],
+ [
+ -76.95470755890474,
+ 38.742194668655884
+ ],
+ [
+ -76.93616310750517,
+ 38.742194668655884
+ ],
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ],
+ [
+ -76.93616310750517,
+ 38.742194668655884
+ ],
+ [
+ -76.92689088180536,
+ 38.75472487082456
+ ],
+ [
+ -76.94543533320495,
+ 38.75472487082456
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ],
+ [
+ -76.92689088180536,
+ 38.77978527516192
+ ],
+ [
+ -76.93616310750517,
+ 38.7923154773306
+ ],
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ],
+ [
+ -76.93616310750517,
+ 38.7923154773306
+ ],
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ],
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ],
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ],
+ [
+ -76.96397978460455,
+ 38.77978527516192
+ ],
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ],
+ [
+ -76.96397978460455,
+ 38.77978527516192
+ ],
+ [
+ -76.95470755890474,
+ 38.767255072993244
+ ],
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ],
+ [
+ -76.95470755890474,
+ 38.767255072993244
+ ],
+ [
+ -76.93616310750517,
+ 38.767255072993244
+ ],
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ],
+ [
+ -76.93616310750517,
+ 38.767255072993244
+ ],
+ [
+ -76.92689088180536,
+ 38.77978527516192
+ ],
+ [
+ -76.94543533320495,
+ 38.77978527516192
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ],
+ [
+ -76.92689088180536,
+ 38.80484567949927
+ ],
+ [
+ -76.93616310750517,
+ 38.81737588166795
+ ],
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ],
+ [
+ -76.93616310750517,
+ 38.81737588166795
+ ],
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ],
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ],
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ],
+ [
+ -76.96397978460455,
+ 38.80484567949927
+ ],
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ],
+ [
+ -76.96397978460455,
+ 38.80484567949927
+ ],
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ],
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ],
+ [
+ -76.95470755890474,
+ 38.7923154773306
+ ],
+ [
+ -76.93616310750517,
+ 38.7923154773306
+ ],
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ],
+ [
+ -76.93616310750517,
+ 38.7923154773306
+ ],
+ [
+ -76.92689088180536,
+ 38.80484567949927
+ ],
+ [
+ -76.94543533320495,
+ 38.80484567949927
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ],
+ [
+ -76.92689088180536,
+ 38.829906083836626
+ ],
+ [
+ -76.93616310750517,
+ 38.8424362860053
+ ],
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ],
+ [
+ -76.93616310750517,
+ 38.8424362860053
+ ],
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ],
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ],
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ],
+ [
+ -76.96397978460455,
+ 38.829906083836626
+ ],
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ],
+ [
+ -76.96397978460455,
+ 38.829906083836626
+ ],
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ],
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ],
+ [
+ -76.95470755890474,
+ 38.81737588166795
+ ],
+ [
+ -76.93616310750517,
+ 38.81737588166795
+ ],
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ],
+ [
+ -76.93616310750517,
+ 38.81737588166795
+ ],
+ [
+ -76.92689088180536,
+ 38.829906083836626
+ ],
+ [
+ -76.94543533320495,
+ 38.829906083836626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ],
+ [
+ -76.92689088180536,
+ 38.85496648817398
+ ],
+ [
+ -76.93616310750517,
+ 38.867496690342655
+ ],
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ],
+ [
+ -76.93616310750517,
+ 38.867496690342655
+ ],
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ],
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ],
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ],
+ [
+ -76.96397978460455,
+ 38.85496648817398
+ ],
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ],
+ [
+ -76.96397978460455,
+ 38.85496648817398
+ ],
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ],
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ],
+ [
+ -76.95470755890474,
+ 38.8424362860053
+ ],
+ [
+ -76.93616310750517,
+ 38.8424362860053
+ ],
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ],
+ [
+ -76.93616310750517,
+ 38.8424362860053
+ ],
+ [
+ -76.92689088180536,
+ 38.85496648817398
+ ],
+ [
+ -76.94543533320495,
+ 38.85496648817398
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ],
+ [
+ -76.92689088180536,
+ 38.88002689251133
+ ],
+ [
+ -76.93616310750517,
+ 38.89255709468001
+ ],
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ],
+ [
+ -76.93616310750517,
+ 38.89255709468001
+ ],
+ [
+ -76.95470755890474,
+ 38.89255709468001
+ ],
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ],
+ [
+ -76.95470755890474,
+ 38.89255709468001
+ ],
+ [
+ -76.96397978460455,
+ 38.88002689251133
+ ],
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ],
+ [
+ -76.96397978460455,
+ 38.88002689251133
+ ],
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ],
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ],
+ [
+ -76.95470755890474,
+ 38.867496690342655
+ ],
+ [
+ -76.93616310750517,
+ 38.867496690342655
+ ],
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ],
+ [
+ -76.93616310750517,
+ 38.867496690342655
+ ],
+ [
+ -76.92689088180536,
+ 38.88002689251133
+ ],
+ [
+ -76.94543533320495,
+ 38.88002689251133
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ],
+ [
+ -76.92689088180536,
+ 38.90508729684869
+ ],
+ [
+ -76.93616310750517,
+ 38.91761749901737
+ ],
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ],
+ [
+ -76.93616310750517,
+ 38.91761749901737
+ ],
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ],
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ],
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ],
+ [
+ -76.96397978460455,
+ 38.90508729684869
+ ],
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ],
+ [
+ -76.96397978460455,
+ 38.90508729684869
+ ],
+ [
+ -76.95470755890474,
+ 38.892557094680015
+ ],
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ],
+ [
+ -76.95470755890474,
+ 38.892557094680015
+ ],
+ [
+ -76.93616310750517,
+ 38.892557094680015
+ ],
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ],
+ [
+ -76.93616310750517,
+ 38.892557094680015
+ ],
+ [
+ -76.92689088180536,
+ 38.90508729684869
+ ],
+ [
+ -76.94543533320495,
+ 38.90508729684869
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ],
+ [
+ -76.92689088180536,
+ 38.930147701186044
+ ],
+ [
+ -76.93616310750517,
+ 38.94267790335472
+ ],
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ],
+ [
+ -76.93616310750517,
+ 38.94267790335472
+ ],
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ],
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ],
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ],
+ [
+ -76.96397978460455,
+ 38.930147701186044
+ ],
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ],
+ [
+ -76.96397978460455,
+ 38.930147701186044
+ ],
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ],
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ],
+ [
+ -76.95470755890474,
+ 38.91761749901737
+ ],
+ [
+ -76.93616310750517,
+ 38.91761749901737
+ ],
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ],
+ [
+ -76.93616310750517,
+ 38.91761749901737
+ ],
+ [
+ -76.92689088180536,
+ 38.930147701186044
+ ],
+ [
+ -76.94543533320495,
+ 38.930147701186044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ],
+ [
+ -76.92689088180536,
+ 38.9552081055234
+ ],
+ [
+ -76.93616310750517,
+ 38.96773830769207
+ ],
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ],
+ [
+ -76.93616310750517,
+ 38.96773830769207
+ ],
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ],
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ],
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ],
+ [
+ -76.96397978460455,
+ 38.9552081055234
+ ],
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ],
+ [
+ -76.96397978460455,
+ 38.9552081055234
+ ],
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ],
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ],
+ [
+ -76.95470755890474,
+ 38.94267790335472
+ ],
+ [
+ -76.93616310750517,
+ 38.94267790335472
+ ],
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ],
+ [
+ -76.93616310750517,
+ 38.94267790335472
+ ],
+ [
+ -76.92689088180536,
+ 38.9552081055234
+ ],
+ [
+ -76.94543533320495,
+ 38.9552081055234
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ],
+ [
+ -76.92689088180536,
+ 38.98026850986075
+ ],
+ [
+ -76.93616310750517,
+ 38.992798712029426
+ ],
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ],
+ [
+ -76.93616310750517,
+ 38.992798712029426
+ ],
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ],
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ],
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ],
+ [
+ -76.96397978460455,
+ 38.98026850986075
+ ],
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ],
+ [
+ -76.96397978460455,
+ 38.98026850986075
+ ],
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ],
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ],
+ [
+ -76.95470755890474,
+ 38.96773830769207
+ ],
+ [
+ -76.93616310750517,
+ 38.96773830769207
+ ],
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ],
+ [
+ -76.93616310750517,
+ 38.96773830769207
+ ],
+ [
+ -76.92689088180536,
+ 38.98026850986075
+ ],
+ [
+ -76.94543533320495,
+ 38.98026850986075
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ],
+ [
+ -76.92689088180536,
+ 39.0053289141981
+ ],
+ [
+ -76.93616310750517,
+ 39.01785911636678
+ ],
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ],
+ [
+ -76.93616310750517,
+ 39.01785911636678
+ ],
+ [
+ -76.95470755890474,
+ 39.01785911636678
+ ],
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ],
+ [
+ -76.95470755890474,
+ 39.01785911636678
+ ],
+ [
+ -76.96397978460455,
+ 39.0053289141981
+ ],
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ],
+ [
+ -76.96397978460455,
+ 39.0053289141981
+ ],
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ],
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ],
+ [
+ -76.95470755890474,
+ 38.992798712029426
+ ],
+ [
+ -76.93616310750517,
+ 38.992798712029426
+ ],
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ],
+ [
+ -76.93616310750517,
+ 38.992798712029426
+ ],
+ [
+ -76.92689088180536,
+ 39.0053289141981
+ ],
+ [
+ -76.94543533320495,
+ 39.0053289141981
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ],
+ [
+ -76.92689088180536,
+ 39.03038931853546
+ ],
+ [
+ -76.93616310750517,
+ 39.04291952070414
+ ],
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ],
+ [
+ -76.93616310750517,
+ 39.04291952070414
+ ],
+ [
+ -76.95470755890474,
+ 39.04291952070414
+ ],
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ],
+ [
+ -76.95470755890474,
+ 39.04291952070414
+ ],
+ [
+ -76.96397978460455,
+ 39.03038931853546
+ ],
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ],
+ [
+ -76.96397978460455,
+ 39.03038931853546
+ ],
+ [
+ -76.95470755890474,
+ 39.017859116366786
+ ],
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ],
+ [
+ -76.95470755890474,
+ 39.017859116366786
+ ],
+ [
+ -76.93616310750517,
+ 39.017859116366786
+ ],
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ],
+ [
+ -76.93616310750517,
+ 39.017859116366786
+ ],
+ [
+ -76.92689088180536,
+ 39.03038931853546
+ ],
+ [
+ -76.94543533320495,
+ 39.03038931853546
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {
+ "fill-opacity": 0,
+ "stroke": "#0ff"
+ },
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ -77.3876953125,
+ 38.71980474264239
+ ],
+ [
+ -76.9482421875,
+ 38.71980474264239
+ ],
+ [
+ -76.9482421875,
+ 39.027718840211605
+ ],
+ [
+ -77.3876953125,
+ 39.027718840211605
+ ],
+ [
+ -77.3876953125,
+ 38.71980474264239
+ ]
+ ]
+ ]
+ }
+ }
+ ]
+}
\ No newline at end of file
diff --git a/packages/turf-hex-grid/test/out/trigrid4.geojson b/packages/turf-hex-grid/test/out/trigrid4.geojson
new file mode 100644
index 0000000000..d22e55ef66
--- /dev/null
+++ b/packages/turf-hex-grid/test/out/trigrid4.geojson
@@ -0,0 +1,527349 @@
+{
+ "type": "FeatureCollection",
+ "features": [
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ],
+ [
+ 63.80630225929973,
+ 12.0004566996162
+ ],
+ [
+ 63.69145957581605,
+ 12.195104434544653
+ ],
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ],
+ [
+ 63.69145957581605,
+ 12.195104434544653
+ ],
+ [
+ 63.46177420884869,
+ 12.195104434544653
+ ],
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ],
+ [
+ 63.46177420884869,
+ 12.195104434544653
+ ],
+ [
+ 63.34693152536501,
+ 12.0004566996162
+ ],
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ],
+ [
+ 63.34693152536501,
+ 12.0004566996162
+ ],
+ [
+ 63.46177420884869,
+ 11.805808964687746
+ ],
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ],
+ [
+ 63.46177420884869,
+ 11.805808964687746
+ ],
+ [
+ 63.69145957581605,
+ 11.805808964687746
+ ],
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ],
+ [
+ 63.69145957581605,
+ 11.805808964687746
+ ],
+ [
+ 63.80630225929973,
+ 12.0004566996162
+ ],
+ [
+ 63.57661689233237,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ],
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ],
+ [
+ 63.69145957581605,
+ 12.58439990440156
+ ],
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ],
+ [
+ 63.69145957581605,
+ 12.58439990440156
+ ],
+ [
+ 63.46177420884869,
+ 12.58439990440156
+ ],
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ],
+ [
+ 63.46177420884869,
+ 12.58439990440156
+ ],
+ [
+ 63.34693152536501,
+ 12.389752169473105
+ ],
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ],
+ [
+ 63.34693152536501,
+ 12.389752169473105
+ ],
+ [
+ 63.46177420884869,
+ 12.195104434544652
+ ],
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ],
+ [
+ 63.46177420884869,
+ 12.195104434544652
+ ],
+ [
+ 63.69145957581605,
+ 12.195104434544652
+ ],
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ],
+ [
+ 63.69145957581605,
+ 12.195104434544652
+ ],
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ],
+ [
+ 63.57661689233237,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ],
+ [
+ 63.80630225929973,
+ 12.779047639330013
+ ],
+ [
+ 63.69145957581605,
+ 12.973695374258467
+ ],
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ],
+ [
+ 63.69145957581605,
+ 12.973695374258467
+ ],
+ [
+ 63.46177420884869,
+ 12.973695374258467
+ ],
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ],
+ [
+ 63.46177420884869,
+ 12.973695374258467
+ ],
+ [
+ 63.34693152536501,
+ 12.779047639330013
+ ],
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ],
+ [
+ 63.34693152536501,
+ 12.779047639330013
+ ],
+ [
+ 63.46177420884869,
+ 12.58439990440156
+ ],
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ],
+ [
+ 63.46177420884869,
+ 12.58439990440156
+ ],
+ [
+ 63.69145957581605,
+ 12.58439990440156
+ ],
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ],
+ [
+ 63.69145957581605,
+ 12.58439990440156
+ ],
+ [
+ 63.80630225929973,
+ 12.779047639330013
+ ],
+ [
+ 63.57661689233237,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ],
+ [
+ 63.80630225929973,
+ 13.16834310918692
+ ],
+ [
+ 63.69145957581605,
+ 13.362990844115373
+ ],
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ],
+ [
+ 63.69145957581605,
+ 13.362990844115373
+ ],
+ [
+ 63.46177420884869,
+ 13.362990844115373
+ ],
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ],
+ [
+ 63.46177420884869,
+ 13.362990844115373
+ ],
+ [
+ 63.34693152536501,
+ 13.16834310918692
+ ],
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ],
+ [
+ 63.34693152536501,
+ 13.16834310918692
+ ],
+ [
+ 63.46177420884869,
+ 12.973695374258465
+ ],
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ],
+ [
+ 63.46177420884869,
+ 12.973695374258465
+ ],
+ [
+ 63.69145957581605,
+ 12.973695374258465
+ ],
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ],
+ [
+ 63.69145957581605,
+ 12.973695374258465
+ ],
+ [
+ 63.80630225929973,
+ 13.16834310918692
+ ],
+ [
+ 63.57661689233237,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ],
+ [
+ 63.80630225929973,
+ 13.557638579043825
+ ],
+ [
+ 63.69145957581605,
+ 13.752286313972279
+ ],
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ],
+ [
+ 63.69145957581605,
+ 13.752286313972279
+ ],
+ [
+ 63.46177420884869,
+ 13.752286313972279
+ ],
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ],
+ [
+ 63.46177420884869,
+ 13.752286313972279
+ ],
+ [
+ 63.34693152536501,
+ 13.557638579043825
+ ],
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ],
+ [
+ 63.34693152536501,
+ 13.557638579043825
+ ],
+ [
+ 63.46177420884869,
+ 13.362990844115371
+ ],
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ],
+ [
+ 63.46177420884869,
+ 13.362990844115371
+ ],
+ [
+ 63.69145957581605,
+ 13.362990844115371
+ ],
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ],
+ [
+ 63.69145957581605,
+ 13.362990844115371
+ ],
+ [
+ 63.80630225929973,
+ 13.557638579043825
+ ],
+ [
+ 63.57661689233237,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ],
+ [
+ 63.80630225929973,
+ 13.946934048900731
+ ],
+ [
+ 63.69145957581605,
+ 14.141581783829185
+ ],
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ],
+ [
+ 63.69145957581605,
+ 14.141581783829185
+ ],
+ [
+ 63.46177420884869,
+ 14.141581783829185
+ ],
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ],
+ [
+ 63.46177420884869,
+ 14.141581783829185
+ ],
+ [
+ 63.34693152536501,
+ 13.946934048900731
+ ],
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ],
+ [
+ 63.34693152536501,
+ 13.946934048900731
+ ],
+ [
+ 63.46177420884869,
+ 13.752286313972277
+ ],
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ],
+ [
+ 63.46177420884869,
+ 13.752286313972277
+ ],
+ [
+ 63.69145957581605,
+ 13.752286313972277
+ ],
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ],
+ [
+ 63.69145957581605,
+ 13.752286313972277
+ ],
+ [
+ 63.80630225929973,
+ 13.946934048900731
+ ],
+ [
+ 63.57661689233237,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ],
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ],
+ [
+ 63.69145957581605,
+ 14.530877253686091
+ ],
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ],
+ [
+ 63.69145957581605,
+ 14.530877253686091
+ ],
+ [
+ 63.46177420884869,
+ 14.530877253686091
+ ],
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ],
+ [
+ 63.46177420884869,
+ 14.530877253686091
+ ],
+ [
+ 63.34693152536501,
+ 14.336229518757637
+ ],
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ],
+ [
+ 63.34693152536501,
+ 14.336229518757637
+ ],
+ [
+ 63.46177420884869,
+ 14.141581783829183
+ ],
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ],
+ [
+ 63.46177420884869,
+ 14.141581783829183
+ ],
+ [
+ 63.69145957581605,
+ 14.141581783829183
+ ],
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ],
+ [
+ 63.69145957581605,
+ 14.141581783829183
+ ],
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ],
+ [
+ 63.57661689233237,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ],
+ [
+ 63.80630225929973,
+ 14.725524988614545
+ ],
+ [
+ 63.69145957581605,
+ 14.920172723542999
+ ],
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ],
+ [
+ 63.69145957581605,
+ 14.920172723542999
+ ],
+ [
+ 63.46177420884869,
+ 14.920172723542999
+ ],
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ],
+ [
+ 63.46177420884869,
+ 14.920172723542999
+ ],
+ [
+ 63.34693152536501,
+ 14.725524988614545
+ ],
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ],
+ [
+ 63.34693152536501,
+ 14.725524988614545
+ ],
+ [
+ 63.46177420884869,
+ 14.530877253686091
+ ],
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ],
+ [
+ 63.46177420884869,
+ 14.530877253686091
+ ],
+ [
+ 63.69145957581605,
+ 14.530877253686091
+ ],
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ],
+ [
+ 63.69145957581605,
+ 14.530877253686091
+ ],
+ [
+ 63.80630225929973,
+ 14.725524988614545
+ ],
+ [
+ 63.57661689233237,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ],
+ [
+ 63.80630225929973,
+ 15.114820458471451
+ ],
+ [
+ 63.69145957581605,
+ 15.309468193399905
+ ],
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ],
+ [
+ 63.69145957581605,
+ 15.309468193399905
+ ],
+ [
+ 63.46177420884869,
+ 15.309468193399905
+ ],
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ],
+ [
+ 63.46177420884869,
+ 15.309468193399905
+ ],
+ [
+ 63.34693152536501,
+ 15.114820458471451
+ ],
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ],
+ [
+ 63.34693152536501,
+ 15.114820458471451
+ ],
+ [
+ 63.46177420884869,
+ 14.920172723542997
+ ],
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ],
+ [
+ 63.46177420884869,
+ 14.920172723542997
+ ],
+ [
+ 63.69145957581605,
+ 14.920172723542997
+ ],
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ],
+ [
+ 63.69145957581605,
+ 14.920172723542997
+ ],
+ [
+ 63.80630225929973,
+ 15.114820458471451
+ ],
+ [
+ 63.57661689233237,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ],
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ],
+ [
+ 63.69145957581605,
+ 15.69876366325681
+ ],
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ],
+ [
+ 63.69145957581605,
+ 15.69876366325681
+ ],
+ [
+ 63.46177420884869,
+ 15.69876366325681
+ ],
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ],
+ [
+ 63.46177420884869,
+ 15.69876366325681
+ ],
+ [
+ 63.34693152536501,
+ 15.504115928328357
+ ],
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ],
+ [
+ 63.34693152536501,
+ 15.504115928328357
+ ],
+ [
+ 63.46177420884869,
+ 15.309468193399903
+ ],
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ],
+ [
+ 63.46177420884869,
+ 15.309468193399903
+ ],
+ [
+ 63.69145957581605,
+ 15.309468193399903
+ ],
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ],
+ [
+ 63.69145957581605,
+ 15.309468193399903
+ ],
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ],
+ [
+ 63.57661689233237,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ],
+ [
+ 63.80630225929973,
+ 15.893411398185265
+ ],
+ [
+ 63.69145957581605,
+ 16.088059133113717
+ ],
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ],
+ [
+ 63.69145957581605,
+ 16.088059133113717
+ ],
+ [
+ 63.46177420884869,
+ 16.088059133113717
+ ],
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ],
+ [
+ 63.46177420884869,
+ 16.088059133113717
+ ],
+ [
+ 63.34693152536501,
+ 15.893411398185265
+ ],
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ],
+ [
+ 63.34693152536501,
+ 15.893411398185265
+ ],
+ [
+ 63.46177420884869,
+ 15.69876366325681
+ ],
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ],
+ [
+ 63.46177420884869,
+ 15.69876366325681
+ ],
+ [
+ 63.69145957581605,
+ 15.69876366325681
+ ],
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ],
+ [
+ 63.69145957581605,
+ 15.69876366325681
+ ],
+ [
+ 63.80630225929973,
+ 15.893411398185265
+ ],
+ [
+ 63.57661689233237,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ],
+ [
+ 63.80630225929973,
+ 16.28270686804217
+ ],
+ [
+ 63.69145957581605,
+ 16.47735460297062
+ ],
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ],
+ [
+ 63.69145957581605,
+ 16.47735460297062
+ ],
+ [
+ 63.46177420884869,
+ 16.47735460297062
+ ],
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ],
+ [
+ 63.46177420884869,
+ 16.47735460297062
+ ],
+ [
+ 63.34693152536501,
+ 16.28270686804217
+ ],
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ],
+ [
+ 63.34693152536501,
+ 16.28270686804217
+ ],
+ [
+ 63.46177420884869,
+ 16.088059133113717
+ ],
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ],
+ [
+ 63.46177420884869,
+ 16.088059133113717
+ ],
+ [
+ 63.69145957581605,
+ 16.088059133113717
+ ],
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ],
+ [
+ 63.69145957581605,
+ 16.088059133113717
+ ],
+ [
+ 63.80630225929973,
+ 16.28270686804217
+ ],
+ [
+ 63.57661689233237,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ],
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ],
+ [
+ 63.69145957581605,
+ 16.86665007282753
+ ],
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ],
+ [
+ 63.69145957581605,
+ 16.86665007282753
+ ],
+ [
+ 63.46177420884869,
+ 16.86665007282753
+ ],
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ],
+ [
+ 63.46177420884869,
+ 16.86665007282753
+ ],
+ [
+ 63.34693152536501,
+ 16.672002337899077
+ ],
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ],
+ [
+ 63.34693152536501,
+ 16.672002337899077
+ ],
+ [
+ 63.46177420884869,
+ 16.477354602970625
+ ],
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ],
+ [
+ 63.46177420884869,
+ 16.477354602970625
+ ],
+ [
+ 63.69145957581605,
+ 16.477354602970625
+ ],
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ],
+ [
+ 63.69145957581605,
+ 16.477354602970625
+ ],
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ],
+ [
+ 63.57661689233237,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ],
+ [
+ 63.80630225929973,
+ 17.06129780775598
+ ],
+ [
+ 63.69145957581605,
+ 17.255945542684433
+ ],
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ],
+ [
+ 63.69145957581605,
+ 17.255945542684433
+ ],
+ [
+ 63.46177420884869,
+ 17.255945542684433
+ ],
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ],
+ [
+ 63.46177420884869,
+ 17.255945542684433
+ ],
+ [
+ 63.34693152536501,
+ 17.06129780775598
+ ],
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ],
+ [
+ 63.34693152536501,
+ 17.06129780775598
+ ],
+ [
+ 63.46177420884869,
+ 16.86665007282753
+ ],
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ],
+ [
+ 63.46177420884869,
+ 16.86665007282753
+ ],
+ [
+ 63.69145957581605,
+ 16.86665007282753
+ ],
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ],
+ [
+ 63.69145957581605,
+ 16.86665007282753
+ ],
+ [
+ 63.80630225929973,
+ 17.06129780775598
+ ],
+ [
+ 63.57661689233237,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ],
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ],
+ [
+ 63.69145957581605,
+ 17.64524101254134
+ ],
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ],
+ [
+ 63.69145957581605,
+ 17.64524101254134
+ ],
+ [
+ 63.46177420884869,
+ 17.64524101254134
+ ],
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ],
+ [
+ 63.46177420884869,
+ 17.64524101254134
+ ],
+ [
+ 63.34693152536501,
+ 17.45059327761289
+ ],
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ],
+ [
+ 63.34693152536501,
+ 17.45059327761289
+ ],
+ [
+ 63.46177420884869,
+ 17.255945542684437
+ ],
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ],
+ [
+ 63.46177420884869,
+ 17.255945542684437
+ ],
+ [
+ 63.69145957581605,
+ 17.255945542684437
+ ],
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ],
+ [
+ 63.69145957581605,
+ 17.255945542684437
+ ],
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ],
+ [
+ 63.57661689233237,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ],
+ [
+ 63.80630225929973,
+ 17.839888747469793
+ ],
+ [
+ 63.69145957581605,
+ 18.034536482398245
+ ],
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ],
+ [
+ 63.69145957581605,
+ 18.034536482398245
+ ],
+ [
+ 63.46177420884869,
+ 18.034536482398245
+ ],
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ],
+ [
+ 63.46177420884869,
+ 18.034536482398245
+ ],
+ [
+ 63.34693152536501,
+ 17.839888747469793
+ ],
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ],
+ [
+ 63.34693152536501,
+ 17.839888747469793
+ ],
+ [
+ 63.46177420884869,
+ 17.64524101254134
+ ],
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ],
+ [
+ 63.46177420884869,
+ 17.64524101254134
+ ],
+ [
+ 63.69145957581605,
+ 17.64524101254134
+ ],
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ],
+ [
+ 63.69145957581605,
+ 17.64524101254134
+ ],
+ [
+ 63.80630225929973,
+ 17.839888747469793
+ ],
+ [
+ 63.57661689233237,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ],
+ [
+ 63.80630225929973,
+ 18.2291842173267
+ ],
+ [
+ 63.69145957581605,
+ 18.423831952255153
+ ],
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ],
+ [
+ 63.69145957581605,
+ 18.423831952255153
+ ],
+ [
+ 63.46177420884869,
+ 18.423831952255153
+ ],
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ],
+ [
+ 63.46177420884869,
+ 18.423831952255153
+ ],
+ [
+ 63.34693152536501,
+ 18.2291842173267
+ ],
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ],
+ [
+ 63.34693152536501,
+ 18.2291842173267
+ ],
+ [
+ 63.46177420884869,
+ 18.03453648239825
+ ],
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ],
+ [
+ 63.46177420884869,
+ 18.03453648239825
+ ],
+ [
+ 63.69145957581605,
+ 18.03453648239825
+ ],
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ],
+ [
+ 63.69145957581605,
+ 18.03453648239825
+ ],
+ [
+ 63.80630225929973,
+ 18.2291842173267
+ ],
+ [
+ 63.57661689233237,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ],
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ],
+ [
+ 63.69145957581605,
+ 18.81312742211206
+ ],
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ],
+ [
+ 63.69145957581605,
+ 18.81312742211206
+ ],
+ [
+ 63.46177420884869,
+ 18.81312742211206
+ ],
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ],
+ [
+ 63.46177420884869,
+ 18.81312742211206
+ ],
+ [
+ 63.34693152536501,
+ 18.61847968718361
+ ],
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ],
+ [
+ 63.34693152536501,
+ 18.61847968718361
+ ],
+ [
+ 63.46177420884869,
+ 18.423831952255156
+ ],
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ],
+ [
+ 63.46177420884869,
+ 18.423831952255156
+ ],
+ [
+ 63.69145957581605,
+ 18.423831952255156
+ ],
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ],
+ [
+ 63.69145957581605,
+ 18.423831952255156
+ ],
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ],
+ [
+ 63.57661689233237,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ],
+ [
+ 63.80630225929973,
+ 19.007775157040513
+ ],
+ [
+ 63.69145957581605,
+ 19.202422891968965
+ ],
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ],
+ [
+ 63.69145957581605,
+ 19.202422891968965
+ ],
+ [
+ 63.46177420884869,
+ 19.202422891968965
+ ],
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ],
+ [
+ 63.46177420884869,
+ 19.202422891968965
+ ],
+ [
+ 63.34693152536501,
+ 19.007775157040513
+ ],
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ],
+ [
+ 63.34693152536501,
+ 19.007775157040513
+ ],
+ [
+ 63.46177420884869,
+ 18.81312742211206
+ ],
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ],
+ [
+ 63.46177420884869,
+ 18.81312742211206
+ ],
+ [
+ 63.69145957581605,
+ 18.81312742211206
+ ],
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ],
+ [
+ 63.69145957581605,
+ 18.81312742211206
+ ],
+ [
+ 63.80630225929973,
+ 19.007775157040513
+ ],
+ [
+ 63.57661689233237,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ],
+ [
+ 63.80630225929973,
+ 19.39707062689742
+ ],
+ [
+ 63.69145957581605,
+ 19.591718361825873
+ ],
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ],
+ [
+ 63.69145957581605,
+ 19.591718361825873
+ ],
+ [
+ 63.46177420884869,
+ 19.591718361825873
+ ],
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ],
+ [
+ 63.46177420884869,
+ 19.591718361825873
+ ],
+ [
+ 63.34693152536501,
+ 19.39707062689742
+ ],
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ],
+ [
+ 63.34693152536501,
+ 19.39707062689742
+ ],
+ [
+ 63.46177420884869,
+ 19.20242289196897
+ ],
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ],
+ [
+ 63.46177420884869,
+ 19.20242289196897
+ ],
+ [
+ 63.69145957581605,
+ 19.20242289196897
+ ],
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ],
+ [
+ 63.69145957581605,
+ 19.20242289196897
+ ],
+ [
+ 63.80630225929973,
+ 19.39707062689742
+ ],
+ [
+ 63.57661689233237,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ],
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ],
+ [
+ 63.69145957581605,
+ 19.98101383168278
+ ],
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ],
+ [
+ 63.69145957581605,
+ 19.98101383168278
+ ],
+ [
+ 63.46177420884869,
+ 19.98101383168278
+ ],
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ],
+ [
+ 63.46177420884869,
+ 19.98101383168278
+ ],
+ [
+ 63.34693152536501,
+ 19.78636609675433
+ ],
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ],
+ [
+ 63.34693152536501,
+ 19.78636609675433
+ ],
+ [
+ 63.46177420884869,
+ 19.591718361825876
+ ],
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ],
+ [
+ 63.46177420884869,
+ 19.591718361825876
+ ],
+ [
+ 63.69145957581605,
+ 19.591718361825876
+ ],
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ],
+ [
+ 63.69145957581605,
+ 19.591718361825876
+ ],
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ],
+ [
+ 63.57661689233237,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ],
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ],
+ [
+ 63.69145957581605,
+ 20.370309301539685
+ ],
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ],
+ [
+ 63.69145957581605,
+ 20.370309301539685
+ ],
+ [
+ 63.46177420884869,
+ 20.370309301539685
+ ],
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ],
+ [
+ 63.46177420884869,
+ 20.370309301539685
+ ],
+ [
+ 63.34693152536501,
+ 20.175661566611232
+ ],
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ],
+ [
+ 63.34693152536501,
+ 20.175661566611232
+ ],
+ [
+ 63.46177420884869,
+ 19.98101383168278
+ ],
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ],
+ [
+ 63.46177420884869,
+ 19.98101383168278
+ ],
+ [
+ 63.69145957581605,
+ 19.98101383168278
+ ],
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ],
+ [
+ 63.69145957581605,
+ 19.98101383168278
+ ],
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ],
+ [
+ 63.57661689233237,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ],
+ [
+ 63.80630225929973,
+ 20.564957036468137
+ ],
+ [
+ 63.69145957581605,
+ 20.75960477139659
+ ],
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ],
+ [
+ 63.69145957581605,
+ 20.75960477139659
+ ],
+ [
+ 63.46177420884869,
+ 20.75960477139659
+ ],
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ],
+ [
+ 63.46177420884869,
+ 20.75960477139659
+ ],
+ [
+ 63.34693152536501,
+ 20.564957036468137
+ ],
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ],
+ [
+ 63.34693152536501,
+ 20.564957036468137
+ ],
+ [
+ 63.46177420884869,
+ 20.370309301539685
+ ],
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ],
+ [
+ 63.46177420884869,
+ 20.370309301539685
+ ],
+ [
+ 63.69145957581605,
+ 20.370309301539685
+ ],
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ],
+ [
+ 63.69145957581605,
+ 20.370309301539685
+ ],
+ [
+ 63.80630225929973,
+ 20.564957036468137
+ ],
+ [
+ 63.57661689233237,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ],
+ [
+ 63.80630225929973,
+ 20.954252506325044
+ ],
+ [
+ 63.69145957581605,
+ 21.148900241253497
+ ],
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ],
+ [
+ 63.69145957581605,
+ 21.148900241253497
+ ],
+ [
+ 63.46177420884869,
+ 21.148900241253497
+ ],
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ],
+ [
+ 63.46177420884869,
+ 21.148900241253497
+ ],
+ [
+ 63.34693152536501,
+ 20.954252506325044
+ ],
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ],
+ [
+ 63.34693152536501,
+ 20.954252506325044
+ ],
+ [
+ 63.46177420884869,
+ 20.759604771396592
+ ],
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ],
+ [
+ 63.46177420884869,
+ 20.759604771396592
+ ],
+ [
+ 63.69145957581605,
+ 20.759604771396592
+ ],
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ],
+ [
+ 63.69145957581605,
+ 20.759604771396592
+ ],
+ [
+ 63.80630225929973,
+ 20.954252506325044
+ ],
+ [
+ 63.57661689233237,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ],
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ],
+ [
+ 63.69145957581605,
+ 21.538195711110404
+ ],
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ],
+ [
+ 63.69145957581605,
+ 21.538195711110404
+ ],
+ [
+ 63.46177420884869,
+ 21.538195711110404
+ ],
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ],
+ [
+ 63.46177420884869,
+ 21.538195711110404
+ ],
+ [
+ 63.34693152536501,
+ 21.343547976181952
+ ],
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ],
+ [
+ 63.34693152536501,
+ 21.343547976181952
+ ],
+ [
+ 63.46177420884869,
+ 21.1489002412535
+ ],
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ],
+ [
+ 63.46177420884869,
+ 21.1489002412535
+ ],
+ [
+ 63.69145957581605,
+ 21.1489002412535
+ ],
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ],
+ [
+ 63.69145957581605,
+ 21.1489002412535
+ ],
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ],
+ [
+ 63.57661689233237,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ],
+ [
+ 63.80630225929973,
+ 21.732843446038856
+ ],
+ [
+ 63.69145957581605,
+ 21.92749118096731
+ ],
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ],
+ [
+ 63.69145957581605,
+ 21.92749118096731
+ ],
+ [
+ 63.46177420884869,
+ 21.92749118096731
+ ],
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ],
+ [
+ 63.46177420884869,
+ 21.92749118096731
+ ],
+ [
+ 63.34693152536501,
+ 21.732843446038856
+ ],
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ],
+ [
+ 63.34693152536501,
+ 21.732843446038856
+ ],
+ [
+ 63.46177420884869,
+ 21.538195711110404
+ ],
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ],
+ [
+ 63.46177420884869,
+ 21.538195711110404
+ ],
+ [
+ 63.69145957581605,
+ 21.538195711110404
+ ],
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ],
+ [
+ 63.69145957581605,
+ 21.538195711110404
+ ],
+ [
+ 63.80630225929973,
+ 21.732843446038856
+ ],
+ [
+ 63.57661689233237,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ],
+ [
+ 63.80630225929973,
+ 22.122138915895764
+ ],
+ [
+ 63.69145957581605,
+ 22.316786650824216
+ ],
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ],
+ [
+ 63.69145957581605,
+ 22.316786650824216
+ ],
+ [
+ 63.46177420884869,
+ 22.316786650824216
+ ],
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ],
+ [
+ 63.46177420884869,
+ 22.316786650824216
+ ],
+ [
+ 63.34693152536501,
+ 22.122138915895764
+ ],
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ],
+ [
+ 63.34693152536501,
+ 22.122138915895764
+ ],
+ [
+ 63.46177420884869,
+ 21.927491180967312
+ ],
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ],
+ [
+ 63.46177420884869,
+ 21.927491180967312
+ ],
+ [
+ 63.69145957581605,
+ 21.927491180967312
+ ],
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ],
+ [
+ 63.69145957581605,
+ 21.927491180967312
+ ],
+ [
+ 63.80630225929973,
+ 22.122138915895764
+ ],
+ [
+ 63.57661689233237,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ],
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ],
+ [
+ 63.69145957581605,
+ 22.706082120681124
+ ],
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ],
+ [
+ 63.69145957581605,
+ 22.706082120681124
+ ],
+ [
+ 63.46177420884869,
+ 22.706082120681124
+ ],
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ],
+ [
+ 63.46177420884869,
+ 22.706082120681124
+ ],
+ [
+ 63.34693152536501,
+ 22.511434385752672
+ ],
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ],
+ [
+ 63.34693152536501,
+ 22.511434385752672
+ ],
+ [
+ 63.46177420884869,
+ 22.31678665082422
+ ],
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ],
+ [
+ 63.46177420884869,
+ 22.31678665082422
+ ],
+ [
+ 63.69145957581605,
+ 22.31678665082422
+ ],
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ],
+ [
+ 63.69145957581605,
+ 22.31678665082422
+ ],
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ],
+ [
+ 63.57661689233237,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ],
+ [
+ 63.80630225929973,
+ 22.900729855609576
+ ],
+ [
+ 63.69145957581605,
+ 23.09537759053803
+ ],
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ],
+ [
+ 63.69145957581605,
+ 23.09537759053803
+ ],
+ [
+ 63.46177420884869,
+ 23.09537759053803
+ ],
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ],
+ [
+ 63.46177420884869,
+ 23.09537759053803
+ ],
+ [
+ 63.34693152536501,
+ 22.900729855609576
+ ],
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ],
+ [
+ 63.34693152536501,
+ 22.900729855609576
+ ],
+ [
+ 63.46177420884869,
+ 22.706082120681124
+ ],
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ],
+ [
+ 63.46177420884869,
+ 22.706082120681124
+ ],
+ [
+ 63.69145957581605,
+ 22.706082120681124
+ ],
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ],
+ [
+ 63.69145957581605,
+ 22.706082120681124
+ ],
+ [
+ 63.80630225929973,
+ 22.900729855609576
+ ],
+ [
+ 63.57661689233237,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ],
+ [
+ 63.80630225929973,
+ 23.290025325466484
+ ],
+ [
+ 63.69145957581605,
+ 23.484673060394936
+ ],
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ],
+ [
+ 63.69145957581605,
+ 23.484673060394936
+ ],
+ [
+ 63.46177420884869,
+ 23.484673060394936
+ ],
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ],
+ [
+ 63.46177420884869,
+ 23.484673060394936
+ ],
+ [
+ 63.34693152536501,
+ 23.290025325466484
+ ],
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ],
+ [
+ 63.34693152536501,
+ 23.290025325466484
+ ],
+ [
+ 63.46177420884869,
+ 23.095377590538032
+ ],
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ],
+ [
+ 63.46177420884869,
+ 23.095377590538032
+ ],
+ [
+ 63.69145957581605,
+ 23.095377590538032
+ ],
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ],
+ [
+ 63.69145957581605,
+ 23.095377590538032
+ ],
+ [
+ 63.80630225929973,
+ 23.290025325466484
+ ],
+ [
+ 63.57661689233237,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ],
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ],
+ [
+ 63.69145957581605,
+ 23.873968530251844
+ ],
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ],
+ [
+ 63.69145957581605,
+ 23.873968530251844
+ ],
+ [
+ 63.46177420884869,
+ 23.873968530251844
+ ],
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ],
+ [
+ 63.46177420884869,
+ 23.873968530251844
+ ],
+ [
+ 63.34693152536501,
+ 23.67932079532339
+ ],
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ],
+ [
+ 63.34693152536501,
+ 23.67932079532339
+ ],
+ [
+ 63.46177420884869,
+ 23.48467306039494
+ ],
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ],
+ [
+ 63.46177420884869,
+ 23.48467306039494
+ ],
+ [
+ 63.69145957581605,
+ 23.48467306039494
+ ],
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ],
+ [
+ 63.69145957581605,
+ 23.48467306039494
+ ],
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ],
+ [
+ 63.57661689233237,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ],
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ],
+ [
+ 63.69145957581605,
+ 24.263264000108748
+ ],
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ],
+ [
+ 63.69145957581605,
+ 24.263264000108748
+ ],
+ [
+ 63.46177420884869,
+ 24.263264000108748
+ ],
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ],
+ [
+ 63.46177420884869,
+ 24.263264000108748
+ ],
+ [
+ 63.34693152536501,
+ 24.068616265180296
+ ],
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ],
+ [
+ 63.34693152536501,
+ 24.068616265180296
+ ],
+ [
+ 63.46177420884869,
+ 23.873968530251844
+ ],
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ],
+ [
+ 63.46177420884869,
+ 23.873968530251844
+ ],
+ [
+ 63.69145957581605,
+ 23.873968530251844
+ ],
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ],
+ [
+ 63.69145957581605,
+ 23.873968530251844
+ ],
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ],
+ [
+ 63.57661689233237,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ],
+ [
+ 63.80630225929973,
+ 24.4579117350372
+ ],
+ [
+ 63.69145957581605,
+ 24.652559469965652
+ ],
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ],
+ [
+ 63.69145957581605,
+ 24.652559469965652
+ ],
+ [
+ 63.46177420884869,
+ 24.652559469965652
+ ],
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ],
+ [
+ 63.46177420884869,
+ 24.652559469965652
+ ],
+ [
+ 63.34693152536501,
+ 24.4579117350372
+ ],
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ],
+ [
+ 63.34693152536501,
+ 24.4579117350372
+ ],
+ [
+ 63.46177420884869,
+ 24.263264000108748
+ ],
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ],
+ [
+ 63.46177420884869,
+ 24.263264000108748
+ ],
+ [
+ 63.69145957581605,
+ 24.263264000108748
+ ],
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ],
+ [
+ 63.69145957581605,
+ 24.263264000108748
+ ],
+ [
+ 63.80630225929973,
+ 24.4579117350372
+ ],
+ [
+ 63.57661689233237,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ],
+ [
+ 63.80630225929973,
+ 24.847207204894108
+ ],
+ [
+ 63.69145957581605,
+ 25.04185493982256
+ ],
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ],
+ [
+ 63.69145957581605,
+ 25.04185493982256
+ ],
+ [
+ 63.46177420884869,
+ 25.04185493982256
+ ],
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ],
+ [
+ 63.46177420884869,
+ 25.04185493982256
+ ],
+ [
+ 63.34693152536501,
+ 24.847207204894108
+ ],
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ],
+ [
+ 63.34693152536501,
+ 24.847207204894108
+ ],
+ [
+ 63.46177420884869,
+ 24.652559469965656
+ ],
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ],
+ [
+ 63.46177420884869,
+ 24.652559469965656
+ ],
+ [
+ 63.69145957581605,
+ 24.652559469965656
+ ],
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ],
+ [
+ 63.69145957581605,
+ 24.652559469965656
+ ],
+ [
+ 63.80630225929973,
+ 24.847207204894108
+ ],
+ [
+ 63.57661689233237,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ],
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ],
+ [
+ 63.69145957581605,
+ 25.431150409679468
+ ],
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ],
+ [
+ 63.69145957581605,
+ 25.431150409679468
+ ],
+ [
+ 63.46177420884869,
+ 25.431150409679468
+ ],
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ],
+ [
+ 63.46177420884869,
+ 25.431150409679468
+ ],
+ [
+ 63.34693152536501,
+ 25.236502674751016
+ ],
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ],
+ [
+ 63.34693152536501,
+ 25.236502674751016
+ ],
+ [
+ 63.46177420884869,
+ 25.041854939822564
+ ],
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ],
+ [
+ 63.46177420884869,
+ 25.041854939822564
+ ],
+ [
+ 63.69145957581605,
+ 25.041854939822564
+ ],
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ],
+ [
+ 63.69145957581605,
+ 25.041854939822564
+ ],
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ],
+ [
+ 63.57661689233237,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ],
+ [
+ 63.80630225929973,
+ 25.62579814460792
+ ],
+ [
+ 63.69145957581605,
+ 25.820445879536372
+ ],
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ],
+ [
+ 63.69145957581605,
+ 25.820445879536372
+ ],
+ [
+ 63.46177420884869,
+ 25.820445879536372
+ ],
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ],
+ [
+ 63.46177420884869,
+ 25.820445879536372
+ ],
+ [
+ 63.34693152536501,
+ 25.62579814460792
+ ],
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ],
+ [
+ 63.34693152536501,
+ 25.62579814460792
+ ],
+ [
+ 63.46177420884869,
+ 25.431150409679468
+ ],
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ],
+ [
+ 63.46177420884869,
+ 25.431150409679468
+ ],
+ [
+ 63.69145957581605,
+ 25.431150409679468
+ ],
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ],
+ [
+ 63.69145957581605,
+ 25.431150409679468
+ ],
+ [
+ 63.80630225929973,
+ 25.62579814460792
+ ],
+ [
+ 63.57661689233237,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ],
+ [
+ 63.80630225929973,
+ 26.015093614464828
+ ],
+ [
+ 63.69145957581605,
+ 26.20974134939328
+ ],
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ],
+ [
+ 63.69145957581605,
+ 26.20974134939328
+ ],
+ [
+ 63.46177420884869,
+ 26.20974134939328
+ ],
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ],
+ [
+ 63.46177420884869,
+ 26.20974134939328
+ ],
+ [
+ 63.34693152536501,
+ 26.015093614464828
+ ],
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ],
+ [
+ 63.34693152536501,
+ 26.015093614464828
+ ],
+ [
+ 63.46177420884869,
+ 25.820445879536376
+ ],
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ],
+ [
+ 63.46177420884869,
+ 25.820445879536376
+ ],
+ [
+ 63.69145957581605,
+ 25.820445879536376
+ ],
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ],
+ [
+ 63.69145957581605,
+ 25.820445879536376
+ ],
+ [
+ 63.80630225929973,
+ 26.015093614464828
+ ],
+ [
+ 63.57661689233237,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ],
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ],
+ [
+ 63.69145957581605,
+ 26.599036819250188
+ ],
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ],
+ [
+ 63.69145957581605,
+ 26.599036819250188
+ ],
+ [
+ 63.46177420884869,
+ 26.599036819250188
+ ],
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ],
+ [
+ 63.46177420884869,
+ 26.599036819250188
+ ],
+ [
+ 63.34693152536501,
+ 26.404389084321735
+ ],
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ],
+ [
+ 63.34693152536501,
+ 26.404389084321735
+ ],
+ [
+ 63.46177420884869,
+ 26.209741349393283
+ ],
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ],
+ [
+ 63.46177420884869,
+ 26.209741349393283
+ ],
+ [
+ 63.69145957581605,
+ 26.209741349393283
+ ],
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ],
+ [
+ 63.69145957581605,
+ 26.209741349393283
+ ],
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ],
+ [
+ 63.57661689233237,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ],
+ [
+ 63.80630225929973,
+ 26.79368455417864
+ ],
+ [
+ 63.69145957581605,
+ 26.988332289107092
+ ],
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ],
+ [
+ 63.69145957581605,
+ 26.988332289107092
+ ],
+ [
+ 63.46177420884869,
+ 26.988332289107092
+ ],
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ],
+ [
+ 63.46177420884869,
+ 26.988332289107092
+ ],
+ [
+ 63.34693152536501,
+ 26.79368455417864
+ ],
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ],
+ [
+ 63.34693152536501,
+ 26.79368455417864
+ ],
+ [
+ 63.46177420884869,
+ 26.599036819250188
+ ],
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ],
+ [
+ 63.46177420884869,
+ 26.599036819250188
+ ],
+ [
+ 63.69145957581605,
+ 26.599036819250188
+ ],
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ],
+ [
+ 63.69145957581605,
+ 26.599036819250188
+ ],
+ [
+ 63.80630225929973,
+ 26.79368455417864
+ ],
+ [
+ 63.57661689233237,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ],
+ [
+ 63.80630225929973,
+ 27.182980024035547
+ ],
+ [
+ 63.69145957581605,
+ 27.377627758964
+ ],
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ],
+ [
+ 63.69145957581605,
+ 27.377627758964
+ ],
+ [
+ 63.46177420884869,
+ 27.377627758964
+ ],
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ],
+ [
+ 63.46177420884869,
+ 27.377627758964
+ ],
+ [
+ 63.34693152536501,
+ 27.182980024035547
+ ],
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ],
+ [
+ 63.34693152536501,
+ 27.182980024035547
+ ],
+ [
+ 63.46177420884869,
+ 26.988332289107095
+ ],
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ],
+ [
+ 63.46177420884869,
+ 26.988332289107095
+ ],
+ [
+ 63.69145957581605,
+ 26.988332289107095
+ ],
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ],
+ [
+ 63.69145957581605,
+ 26.988332289107095
+ ],
+ [
+ 63.80630225929973,
+ 27.182980024035547
+ ],
+ [
+ 63.57661689233237,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ],
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ],
+ [
+ 63.69145957581605,
+ 27.766923228820907
+ ],
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ],
+ [
+ 63.69145957581605,
+ 27.766923228820907
+ ],
+ [
+ 63.46177420884869,
+ 27.766923228820907
+ ],
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ],
+ [
+ 63.46177420884869,
+ 27.766923228820907
+ ],
+ [
+ 63.34693152536501,
+ 27.572275493892455
+ ],
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ],
+ [
+ 63.34693152536501,
+ 27.572275493892455
+ ],
+ [
+ 63.46177420884869,
+ 27.377627758964003
+ ],
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ],
+ [
+ 63.46177420884869,
+ 27.377627758964003
+ ],
+ [
+ 63.69145957581605,
+ 27.377627758964003
+ ],
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ],
+ [
+ 63.69145957581605,
+ 27.377627758964003
+ ],
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ],
+ [
+ 63.57661689233237,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ],
+ [
+ 63.80630225929973,
+ 27.96157096374936
+ ],
+ [
+ 63.69145957581605,
+ 28.15621869867781
+ ],
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ],
+ [
+ 63.69145957581605,
+ 28.15621869867781
+ ],
+ [
+ 63.46177420884869,
+ 28.15621869867781
+ ],
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ],
+ [
+ 63.46177420884869,
+ 28.15621869867781
+ ],
+ [
+ 63.34693152536501,
+ 27.96157096374936
+ ],
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ],
+ [
+ 63.34693152536501,
+ 27.96157096374936
+ ],
+ [
+ 63.46177420884869,
+ 27.766923228820907
+ ],
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ],
+ [
+ 63.46177420884869,
+ 27.766923228820907
+ ],
+ [
+ 63.69145957581605,
+ 27.766923228820907
+ ],
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ],
+ [
+ 63.69145957581605,
+ 27.766923228820907
+ ],
+ [
+ 63.80630225929973,
+ 27.96157096374936
+ ],
+ [
+ 63.57661689233237,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ],
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ],
+ [
+ 63.69145957581605,
+ 28.54551416853472
+ ],
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ],
+ [
+ 63.69145957581605,
+ 28.54551416853472
+ ],
+ [
+ 63.46177420884869,
+ 28.54551416853472
+ ],
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ],
+ [
+ 63.46177420884869,
+ 28.54551416853472
+ ],
+ [
+ 63.34693152536501,
+ 28.350866433606267
+ ],
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ],
+ [
+ 63.34693152536501,
+ 28.350866433606267
+ ],
+ [
+ 63.46177420884869,
+ 28.156218698677815
+ ],
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ],
+ [
+ 63.46177420884869,
+ 28.156218698677815
+ ],
+ [
+ 63.69145957581605,
+ 28.156218698677815
+ ],
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ],
+ [
+ 63.69145957581605,
+ 28.156218698677815
+ ],
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ],
+ [
+ 63.57661689233237,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ],
+ [
+ 63.80630225929973,
+ 28.74016190346317
+ ],
+ [
+ 63.69145957581605,
+ 28.934809638391624
+ ],
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ],
+ [
+ 63.69145957581605,
+ 28.934809638391624
+ ],
+ [
+ 63.46177420884869,
+ 28.934809638391624
+ ],
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ],
+ [
+ 63.46177420884869,
+ 28.934809638391624
+ ],
+ [
+ 63.34693152536501,
+ 28.74016190346317
+ ],
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ],
+ [
+ 63.34693152536501,
+ 28.74016190346317
+ ],
+ [
+ 63.46177420884869,
+ 28.54551416853472
+ ],
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ],
+ [
+ 63.46177420884869,
+ 28.54551416853472
+ ],
+ [
+ 63.69145957581605,
+ 28.54551416853472
+ ],
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ],
+ [
+ 63.69145957581605,
+ 28.54551416853472
+ ],
+ [
+ 63.80630225929973,
+ 28.74016190346317
+ ],
+ [
+ 63.57661689233237,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ],
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ],
+ [
+ 63.69145957581605,
+ 29.32410510824853
+ ],
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ],
+ [
+ 63.69145957581605,
+ 29.32410510824853
+ ],
+ [
+ 63.46177420884869,
+ 29.32410510824853
+ ],
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ],
+ [
+ 63.46177420884869,
+ 29.32410510824853
+ ],
+ [
+ 63.34693152536501,
+ 29.12945737332008
+ ],
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ],
+ [
+ 63.34693152536501,
+ 29.12945737332008
+ ],
+ [
+ 63.46177420884869,
+ 28.934809638391627
+ ],
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ],
+ [
+ 63.46177420884869,
+ 28.934809638391627
+ ],
+ [
+ 63.69145957581605,
+ 28.934809638391627
+ ],
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ],
+ [
+ 63.69145957581605,
+ 28.934809638391627
+ ],
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ],
+ [
+ 63.57661689233237,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ],
+ [
+ 63.80630225929973,
+ 29.518752843176983
+ ],
+ [
+ 63.69145957581605,
+ 29.713400578105436
+ ],
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ],
+ [
+ 63.69145957581605,
+ 29.713400578105436
+ ],
+ [
+ 63.46177420884869,
+ 29.713400578105436
+ ],
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ],
+ [
+ 63.46177420884869,
+ 29.713400578105436
+ ],
+ [
+ 63.34693152536501,
+ 29.518752843176983
+ ],
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ],
+ [
+ 63.34693152536501,
+ 29.518752843176983
+ ],
+ [
+ 63.46177420884869,
+ 29.32410510824853
+ ],
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ],
+ [
+ 63.46177420884869,
+ 29.32410510824853
+ ],
+ [
+ 63.69145957581605,
+ 29.32410510824853
+ ],
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ],
+ [
+ 63.69145957581605,
+ 29.32410510824853
+ ],
+ [
+ 63.80630225929973,
+ 29.518752843176983
+ ],
+ [
+ 63.57661689233237,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ],
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ],
+ [
+ 63.69145957581605,
+ 30.102696047962343
+ ],
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ],
+ [
+ 63.69145957581605,
+ 30.102696047962343
+ ],
+ [
+ 63.46177420884869,
+ 30.102696047962343
+ ],
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ],
+ [
+ 63.46177420884869,
+ 30.102696047962343
+ ],
+ [
+ 63.34693152536501,
+ 29.90804831303389
+ ],
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ],
+ [
+ 63.34693152536501,
+ 29.90804831303389
+ ],
+ [
+ 63.46177420884869,
+ 29.71340057810544
+ ],
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ],
+ [
+ 63.46177420884869,
+ 29.71340057810544
+ ],
+ [
+ 63.69145957581605,
+ 29.71340057810544
+ ],
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ],
+ [
+ 63.69145957581605,
+ 29.71340057810544
+ ],
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ],
+ [
+ 63.57661689233237,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ],
+ [
+ 63.80630225929973,
+ 30.297343782890795
+ ],
+ [
+ 63.69145957581605,
+ 30.491991517819248
+ ],
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ],
+ [
+ 63.69145957581605,
+ 30.491991517819248
+ ],
+ [
+ 63.46177420884869,
+ 30.491991517819248
+ ],
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ],
+ [
+ 63.46177420884869,
+ 30.491991517819248
+ ],
+ [
+ 63.34693152536501,
+ 30.297343782890795
+ ],
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ],
+ [
+ 63.34693152536501,
+ 30.297343782890795
+ ],
+ [
+ 63.46177420884869,
+ 30.102696047962343
+ ],
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ],
+ [
+ 63.46177420884869,
+ 30.102696047962343
+ ],
+ [
+ 63.69145957581605,
+ 30.102696047962343
+ ],
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ],
+ [
+ 63.69145957581605,
+ 30.102696047962343
+ ],
+ [
+ 63.80630225929973,
+ 30.297343782890795
+ ],
+ [
+ 63.57661689233237,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ],
+ [
+ 63.80630225929973,
+ 30.686639252747703
+ ],
+ [
+ 63.69145957581605,
+ 30.881286987676155
+ ],
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ],
+ [
+ 63.69145957581605,
+ 30.881286987676155
+ ],
+ [
+ 63.46177420884869,
+ 30.881286987676155
+ ],
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ],
+ [
+ 63.46177420884869,
+ 30.881286987676155
+ ],
+ [
+ 63.34693152536501,
+ 30.686639252747703
+ ],
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ],
+ [
+ 63.34693152536501,
+ 30.686639252747703
+ ],
+ [
+ 63.46177420884869,
+ 30.49199151781925
+ ],
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ],
+ [
+ 63.46177420884869,
+ 30.49199151781925
+ ],
+ [
+ 63.69145957581605,
+ 30.49199151781925
+ ],
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ],
+ [
+ 63.69145957581605,
+ 30.49199151781925
+ ],
+ [
+ 63.80630225929973,
+ 30.686639252747703
+ ],
+ [
+ 63.57661689233237,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ],
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ],
+ [
+ 63.69145957581605,
+ 31.270582457533063
+ ],
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ],
+ [
+ 63.69145957581605,
+ 31.270582457533063
+ ],
+ [
+ 63.46177420884869,
+ 31.270582457533063
+ ],
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ],
+ [
+ 63.46177420884869,
+ 31.270582457533063
+ ],
+ [
+ 63.34693152536501,
+ 31.07593472260461
+ ],
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ],
+ [
+ 63.34693152536501,
+ 31.07593472260461
+ ],
+ [
+ 63.46177420884869,
+ 30.88128698767616
+ ],
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ],
+ [
+ 63.46177420884869,
+ 30.88128698767616
+ ],
+ [
+ 63.69145957581605,
+ 30.88128698767616
+ ],
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ],
+ [
+ 63.69145957581605,
+ 30.88128698767616
+ ],
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ],
+ [
+ 63.57661689233237,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ],
+ [
+ 63.80630225929973,
+ 31.465230192461515
+ ],
+ [
+ 63.69145957581605,
+ 31.659877927389967
+ ],
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ],
+ [
+ 63.69145957581605,
+ 31.659877927389967
+ ],
+ [
+ 63.46177420884869,
+ 31.659877927389967
+ ],
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ],
+ [
+ 63.46177420884869,
+ 31.659877927389967
+ ],
+ [
+ 63.34693152536501,
+ 31.465230192461515
+ ],
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ],
+ [
+ 63.34693152536501,
+ 31.465230192461515
+ ],
+ [
+ 63.46177420884869,
+ 31.270582457533063
+ ],
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ],
+ [
+ 63.46177420884869,
+ 31.270582457533063
+ ],
+ [
+ 63.69145957581605,
+ 31.270582457533063
+ ],
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ],
+ [
+ 63.69145957581605,
+ 31.270582457533063
+ ],
+ [
+ 63.80630225929973,
+ 31.465230192461515
+ ],
+ [
+ 63.57661689233237,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ],
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ],
+ [
+ 63.69145957581605,
+ 32.049173397246875
+ ],
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ],
+ [
+ 63.69145957581605,
+ 32.049173397246875
+ ],
+ [
+ 63.46177420884869,
+ 32.049173397246875
+ ],
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ],
+ [
+ 63.46177420884869,
+ 32.049173397246875
+ ],
+ [
+ 63.34693152536501,
+ 31.854525662318423
+ ],
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ],
+ [
+ 63.34693152536501,
+ 31.854525662318423
+ ],
+ [
+ 63.46177420884869,
+ 31.65987792738997
+ ],
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ],
+ [
+ 63.46177420884869,
+ 31.65987792738997
+ ],
+ [
+ 63.69145957581605,
+ 31.65987792738997
+ ],
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ],
+ [
+ 63.69145957581605,
+ 31.65987792738997
+ ],
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ],
+ [
+ 63.57661689233237,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ],
+ [
+ 63.80630225929973,
+ 32.24382113217533
+ ],
+ [
+ 63.69145957581605,
+ 32.43846886710378
+ ],
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ],
+ [
+ 63.69145957581605,
+ 32.43846886710378
+ ],
+ [
+ 63.46177420884869,
+ 32.43846886710378
+ ],
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ],
+ [
+ 63.46177420884869,
+ 32.43846886710378
+ ],
+ [
+ 63.34693152536501,
+ 32.24382113217533
+ ],
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ],
+ [
+ 63.34693152536501,
+ 32.24382113217533
+ ],
+ [
+ 63.46177420884869,
+ 32.049173397246875
+ ],
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ],
+ [
+ 63.46177420884869,
+ 32.049173397246875
+ ],
+ [
+ 63.69145957581605,
+ 32.049173397246875
+ ],
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ],
+ [
+ 63.69145957581605,
+ 32.049173397246875
+ ],
+ [
+ 63.80630225929973,
+ 32.24382113217533
+ ],
+ [
+ 63.57661689233237,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ],
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ],
+ [
+ 63.69145957581605,
+ 32.82776433696069
+ ],
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ],
+ [
+ 63.69145957581605,
+ 32.82776433696069
+ ],
+ [
+ 63.46177420884869,
+ 32.82776433696069
+ ],
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ],
+ [
+ 63.46177420884869,
+ 32.82776433696069
+ ],
+ [
+ 63.34693152536501,
+ 32.63311660203224
+ ],
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ],
+ [
+ 63.34693152536501,
+ 32.63311660203224
+ ],
+ [
+ 63.46177420884869,
+ 32.438468867103786
+ ],
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ],
+ [
+ 63.46177420884869,
+ 32.438468867103786
+ ],
+ [
+ 63.69145957581605,
+ 32.438468867103786
+ ],
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ],
+ [
+ 63.69145957581605,
+ 32.438468867103786
+ ],
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ],
+ [
+ 63.57661689233237,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ],
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ],
+ [
+ 63.69145957581605,
+ 33.217059806817595
+ ],
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ],
+ [
+ 63.69145957581605,
+ 33.217059806817595
+ ],
+ [
+ 63.46177420884869,
+ 33.217059806817595
+ ],
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ],
+ [
+ 63.46177420884869,
+ 33.217059806817595
+ ],
+ [
+ 63.34693152536501,
+ 33.02241207188914
+ ],
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ],
+ [
+ 63.34693152536501,
+ 33.02241207188914
+ ],
+ [
+ 63.46177420884869,
+ 32.82776433696069
+ ],
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ],
+ [
+ 63.46177420884869,
+ 32.82776433696069
+ ],
+ [
+ 63.69145957581605,
+ 32.82776433696069
+ ],
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ],
+ [
+ 63.69145957581605,
+ 32.82776433696069
+ ],
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ],
+ [
+ 63.57661689233237,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ],
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ],
+ [
+ 63.69145957581605,
+ 33.6063552766745
+ ],
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ],
+ [
+ 63.69145957581605,
+ 33.6063552766745
+ ],
+ [
+ 63.46177420884869,
+ 33.6063552766745
+ ],
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ],
+ [
+ 63.46177420884869,
+ 33.6063552766745
+ ],
+ [
+ 63.34693152536501,
+ 33.41170754174605
+ ],
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ],
+ [
+ 63.34693152536501,
+ 33.41170754174605
+ ],
+ [
+ 63.46177420884869,
+ 33.217059806817595
+ ],
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ],
+ [
+ 63.46177420884869,
+ 33.217059806817595
+ ],
+ [
+ 63.69145957581605,
+ 33.217059806817595
+ ],
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ],
+ [
+ 63.69145957581605,
+ 33.217059806817595
+ ],
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ],
+ [
+ 63.57661689233237,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ],
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ],
+ [
+ 63.69145957581605,
+ 33.9956507465314
+ ],
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ],
+ [
+ 63.69145957581605,
+ 33.9956507465314
+ ],
+ [
+ 63.46177420884869,
+ 33.9956507465314
+ ],
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ],
+ [
+ 63.46177420884869,
+ 33.9956507465314
+ ],
+ [
+ 63.34693152536501,
+ 33.80100301160295
+ ],
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ],
+ [
+ 63.34693152536501,
+ 33.80100301160295
+ ],
+ [
+ 63.46177420884869,
+ 33.6063552766745
+ ],
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ],
+ [
+ 63.46177420884869,
+ 33.6063552766745
+ ],
+ [
+ 63.69145957581605,
+ 33.6063552766745
+ ],
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ],
+ [
+ 63.69145957581605,
+ 33.6063552766745
+ ],
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ],
+ [
+ 63.57661689233237,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ],
+ [
+ 63.80630225929973,
+ 34.190298481459855
+ ],
+ [
+ 63.69145957581605,
+ 34.38494621638831
+ ],
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ],
+ [
+ 63.69145957581605,
+ 34.38494621638831
+ ],
+ [
+ 63.46177420884869,
+ 34.38494621638831
+ ],
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ],
+ [
+ 63.46177420884869,
+ 34.38494621638831
+ ],
+ [
+ 63.34693152536501,
+ 34.190298481459855
+ ],
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ],
+ [
+ 63.34693152536501,
+ 34.190298481459855
+ ],
+ [
+ 63.46177420884869,
+ 33.9956507465314
+ ],
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ],
+ [
+ 63.46177420884869,
+ 33.9956507465314
+ ],
+ [
+ 63.69145957581605,
+ 33.9956507465314
+ ],
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ],
+ [
+ 63.69145957581605,
+ 33.9956507465314
+ ],
+ [
+ 63.80630225929973,
+ 34.190298481459855
+ ],
+ [
+ 63.57661689233237,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ],
+ [
+ 63.80630225929973,
+ 34.57959395131677
+ ],
+ [
+ 63.69145957581605,
+ 34.77424168624522
+ ],
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ],
+ [
+ 63.69145957581605,
+ 34.77424168624522
+ ],
+ [
+ 63.46177420884869,
+ 34.77424168624522
+ ],
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ],
+ [
+ 63.46177420884869,
+ 34.77424168624522
+ ],
+ [
+ 63.34693152536501,
+ 34.57959395131677
+ ],
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ],
+ [
+ 63.34693152536501,
+ 34.57959395131677
+ ],
+ [
+ 63.46177420884869,
+ 34.384946216388315
+ ],
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ],
+ [
+ 63.46177420884869,
+ 34.384946216388315
+ ],
+ [
+ 63.69145957581605,
+ 34.384946216388315
+ ],
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ],
+ [
+ 63.69145957581605,
+ 34.384946216388315
+ ],
+ [
+ 63.80630225929973,
+ 34.57959395131677
+ ],
+ [
+ 63.57661689233237,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ],
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ],
+ [
+ 63.69145957581605,
+ 35.16353715610213
+ ],
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ],
+ [
+ 63.69145957581605,
+ 35.16353715610213
+ ],
+ [
+ 63.46177420884869,
+ 35.16353715610213
+ ],
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ],
+ [
+ 63.46177420884869,
+ 35.16353715610213
+ ],
+ [
+ 63.34693152536501,
+ 34.96888942117368
+ ],
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ],
+ [
+ 63.34693152536501,
+ 34.96888942117368
+ ],
+ [
+ 63.46177420884869,
+ 34.774241686245226
+ ],
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ],
+ [
+ 63.46177420884869,
+ 34.774241686245226
+ ],
+ [
+ 63.69145957581605,
+ 34.774241686245226
+ ],
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ],
+ [
+ 63.69145957581605,
+ 34.774241686245226
+ ],
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ],
+ [
+ 63.57661689233237,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ],
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ],
+ [
+ 63.69145957581605,
+ 35.552832625959034
+ ],
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ],
+ [
+ 63.69145957581605,
+ 35.552832625959034
+ ],
+ [
+ 63.46177420884869,
+ 35.552832625959034
+ ],
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ],
+ [
+ 63.46177420884869,
+ 35.552832625959034
+ ],
+ [
+ 63.34693152536501,
+ 35.35818489103058
+ ],
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ],
+ [
+ 63.34693152536501,
+ 35.35818489103058
+ ],
+ [
+ 63.46177420884869,
+ 35.16353715610213
+ ],
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ],
+ [
+ 63.46177420884869,
+ 35.16353715610213
+ ],
+ [
+ 63.69145957581605,
+ 35.16353715610213
+ ],
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ],
+ [
+ 63.69145957581605,
+ 35.16353715610213
+ ],
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ],
+ [
+ 63.57661689233237,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ],
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ],
+ [
+ 63.69145957581605,
+ 35.94212809581594
+ ],
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ],
+ [
+ 63.69145957581605,
+ 35.94212809581594
+ ],
+ [
+ 63.46177420884869,
+ 35.94212809581594
+ ],
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ],
+ [
+ 63.46177420884869,
+ 35.94212809581594
+ ],
+ [
+ 63.34693152536501,
+ 35.74748036088749
+ ],
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ],
+ [
+ 63.34693152536501,
+ 35.74748036088749
+ ],
+ [
+ 63.46177420884869,
+ 35.552832625959034
+ ],
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ],
+ [
+ 63.46177420884869,
+ 35.552832625959034
+ ],
+ [
+ 63.69145957581605,
+ 35.552832625959034
+ ],
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ],
+ [
+ 63.69145957581605,
+ 35.552832625959034
+ ],
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ],
+ [
+ 63.57661689233237,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ],
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ],
+ [
+ 63.69145957581605,
+ 36.33142356567284
+ ],
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ],
+ [
+ 63.69145957581605,
+ 36.33142356567284
+ ],
+ [
+ 63.46177420884869,
+ 36.33142356567284
+ ],
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ],
+ [
+ 63.46177420884869,
+ 36.33142356567284
+ ],
+ [
+ 63.34693152536501,
+ 36.13677583074439
+ ],
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ],
+ [
+ 63.34693152536501,
+ 36.13677583074439
+ ],
+ [
+ 63.46177420884869,
+ 35.94212809581594
+ ],
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ],
+ [
+ 63.46177420884869,
+ 35.94212809581594
+ ],
+ [
+ 63.69145957581605,
+ 35.94212809581594
+ ],
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ],
+ [
+ 63.69145957581605,
+ 35.94212809581594
+ ],
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ],
+ [
+ 63.57661689233237,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ],
+ [
+ 63.80630225929973,
+ 36.526071300601295
+ ],
+ [
+ 63.69145957581605,
+ 36.72071903552975
+ ],
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ],
+ [
+ 63.69145957581605,
+ 36.72071903552975
+ ],
+ [
+ 63.46177420884869,
+ 36.72071903552975
+ ],
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ],
+ [
+ 63.46177420884869,
+ 36.72071903552975
+ ],
+ [
+ 63.34693152536501,
+ 36.526071300601295
+ ],
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ],
+ [
+ 63.34693152536501,
+ 36.526071300601295
+ ],
+ [
+ 63.46177420884869,
+ 36.33142356567284
+ ],
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ],
+ [
+ 63.46177420884869,
+ 36.33142356567284
+ ],
+ [
+ 63.69145957581605,
+ 36.33142356567284
+ ],
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ],
+ [
+ 63.69145957581605,
+ 36.33142356567284
+ ],
+ [
+ 63.80630225929973,
+ 36.526071300601295
+ ],
+ [
+ 63.57661689233237,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ],
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ],
+ [
+ 63.69145957581605,
+ 37.11001450538666
+ ],
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ],
+ [
+ 63.69145957581605,
+ 37.11001450538666
+ ],
+ [
+ 63.46177420884869,
+ 37.11001450538666
+ ],
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ],
+ [
+ 63.46177420884869,
+ 37.11001450538666
+ ],
+ [
+ 63.34693152536501,
+ 36.915366770458206
+ ],
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ],
+ [
+ 63.34693152536501,
+ 36.915366770458206
+ ],
+ [
+ 63.46177420884869,
+ 36.720719035529754
+ ],
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ],
+ [
+ 63.46177420884869,
+ 36.720719035529754
+ ],
+ [
+ 63.69145957581605,
+ 36.720719035529754
+ ],
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ],
+ [
+ 63.69145957581605,
+ 36.720719035529754
+ ],
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ],
+ [
+ 63.57661689233237,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ],
+ [
+ 63.80630225929973,
+ 37.30466224031511
+ ],
+ [
+ 63.69145957581605,
+ 37.49930997524356
+ ],
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ],
+ [
+ 63.69145957581605,
+ 37.49930997524356
+ ],
+ [
+ 63.46177420884869,
+ 37.49930997524356
+ ],
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ],
+ [
+ 63.46177420884869,
+ 37.49930997524356
+ ],
+ [
+ 63.34693152536501,
+ 37.30466224031511
+ ],
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ],
+ [
+ 63.34693152536501,
+ 37.30466224031511
+ ],
+ [
+ 63.46177420884869,
+ 37.11001450538666
+ ],
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ],
+ [
+ 63.46177420884869,
+ 37.11001450538666
+ ],
+ [
+ 63.69145957581605,
+ 37.11001450538666
+ ],
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ],
+ [
+ 63.69145957581605,
+ 37.11001450538666
+ ],
+ [
+ 63.80630225929973,
+ 37.30466224031511
+ ],
+ [
+ 63.57661689233237,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ],
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ],
+ [
+ 63.69145957581605,
+ 37.888605445100474
+ ],
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ],
+ [
+ 63.69145957581605,
+ 37.888605445100474
+ ],
+ [
+ 63.46177420884869,
+ 37.888605445100474
+ ],
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ],
+ [
+ 63.46177420884869,
+ 37.888605445100474
+ ],
+ [
+ 63.34693152536501,
+ 37.69395771017202
+ ],
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ],
+ [
+ 63.34693152536501,
+ 37.69395771017202
+ ],
+ [
+ 63.46177420884869,
+ 37.49930997524357
+ ],
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ],
+ [
+ 63.46177420884869,
+ 37.49930997524357
+ ],
+ [
+ 63.69145957581605,
+ 37.49930997524357
+ ],
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ],
+ [
+ 63.69145957581605,
+ 37.49930997524357
+ ],
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ],
+ [
+ 63.57661689233237,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ],
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ],
+ [
+ 63.69145957581605,
+ 38.27790091495738
+ ],
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ],
+ [
+ 63.69145957581605,
+ 38.27790091495738
+ ],
+ [
+ 63.46177420884869,
+ 38.27790091495738
+ ],
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ],
+ [
+ 63.46177420884869,
+ 38.27790091495738
+ ],
+ [
+ 63.34693152536501,
+ 38.083253180028926
+ ],
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ],
+ [
+ 63.34693152536501,
+ 38.083253180028926
+ ],
+ [
+ 63.46177420884869,
+ 37.888605445100474
+ ],
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ],
+ [
+ 63.46177420884869,
+ 37.888605445100474
+ ],
+ [
+ 63.69145957581605,
+ 37.888605445100474
+ ],
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ],
+ [
+ 63.69145957581605,
+ 37.888605445100474
+ ],
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ],
+ [
+ 63.57661689233237,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ],
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ],
+ [
+ 63.69145957581605,
+ 38.66719638481428
+ ],
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ],
+ [
+ 63.69145957581605,
+ 38.66719638481428
+ ],
+ [
+ 63.46177420884869,
+ 38.66719638481428
+ ],
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ],
+ [
+ 63.46177420884869,
+ 38.66719638481428
+ ],
+ [
+ 63.34693152536501,
+ 38.47254864988583
+ ],
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ],
+ [
+ 63.34693152536501,
+ 38.47254864988583
+ ],
+ [
+ 63.46177420884869,
+ 38.27790091495738
+ ],
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ],
+ [
+ 63.46177420884869,
+ 38.27790091495738
+ ],
+ [
+ 63.69145957581605,
+ 38.27790091495738
+ ],
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ],
+ [
+ 63.69145957581605,
+ 38.27790091495738
+ ],
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ],
+ [
+ 63.57661689233237,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ],
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ],
+ [
+ 63.69145957581605,
+ 39.05649185467119
+ ],
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ],
+ [
+ 63.69145957581605,
+ 39.05649185467119
+ ],
+ [
+ 63.46177420884869,
+ 39.05649185467119
+ ],
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ],
+ [
+ 63.46177420884869,
+ 39.05649185467119
+ ],
+ [
+ 63.34693152536501,
+ 38.861844119742734
+ ],
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ],
+ [
+ 63.34693152536501,
+ 38.861844119742734
+ ],
+ [
+ 63.46177420884869,
+ 38.66719638481428
+ ],
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ],
+ [
+ 63.46177420884869,
+ 38.66719638481428
+ ],
+ [
+ 63.69145957581605,
+ 38.66719638481428
+ ],
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ],
+ [
+ 63.69145957581605,
+ 38.66719638481428
+ ],
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ],
+ [
+ 63.57661689233237,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ],
+ [
+ 63.80630225929973,
+ 39.25113958959964
+ ],
+ [
+ 63.69145957581605,
+ 39.44578732452809
+ ],
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ],
+ [
+ 63.69145957581605,
+ 39.44578732452809
+ ],
+ [
+ 63.46177420884869,
+ 39.44578732452809
+ ],
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ],
+ [
+ 63.46177420884869,
+ 39.44578732452809
+ ],
+ [
+ 63.34693152536501,
+ 39.25113958959964
+ ],
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ],
+ [
+ 63.34693152536501,
+ 39.25113958959964
+ ],
+ [
+ 63.46177420884869,
+ 39.05649185467119
+ ],
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ],
+ [
+ 63.46177420884869,
+ 39.05649185467119
+ ],
+ [
+ 63.69145957581605,
+ 39.05649185467119
+ ],
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ],
+ [
+ 63.69145957581605,
+ 39.05649185467119
+ ],
+ [
+ 63.80630225929973,
+ 39.25113958959964
+ ],
+ [
+ 63.57661689233237,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ],
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ],
+ [
+ 63.69145957581605,
+ 39.835082794385
+ ],
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ],
+ [
+ 63.69145957581605,
+ 39.835082794385
+ ],
+ [
+ 63.46177420884869,
+ 39.835082794385
+ ],
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ],
+ [
+ 63.46177420884869,
+ 39.835082794385
+ ],
+ [
+ 63.34693152536501,
+ 39.64043505945655
+ ],
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ],
+ [
+ 63.34693152536501,
+ 39.64043505945655
+ ],
+ [
+ 63.46177420884869,
+ 39.4457873245281
+ ],
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ],
+ [
+ 63.46177420884869,
+ 39.4457873245281
+ ],
+ [
+ 63.69145957581605,
+ 39.4457873245281
+ ],
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ],
+ [
+ 63.69145957581605,
+ 39.4457873245281
+ ],
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ],
+ [
+ 63.57661689233237,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ],
+ [
+ 63.80630225929973,
+ 40.029730529313454
+ ],
+ [
+ 63.69145957581605,
+ 40.224378264241906
+ ],
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ],
+ [
+ 63.69145957581605,
+ 40.224378264241906
+ ],
+ [
+ 63.46177420884869,
+ 40.224378264241906
+ ],
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ],
+ [
+ 63.46177420884869,
+ 40.224378264241906
+ ],
+ [
+ 63.34693152536501,
+ 40.029730529313454
+ ],
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ],
+ [
+ 63.34693152536501,
+ 40.029730529313454
+ ],
+ [
+ 63.46177420884869,
+ 39.835082794385
+ ],
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ],
+ [
+ 63.46177420884869,
+ 39.835082794385
+ ],
+ [
+ 63.69145957581605,
+ 39.835082794385
+ ],
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ],
+ [
+ 63.69145957581605,
+ 39.835082794385
+ ],
+ [
+ 63.80630225929973,
+ 40.029730529313454
+ ],
+ [
+ 63.57661689233237,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ],
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ],
+ [
+ 63.69145957581605,
+ 40.61367373409882
+ ],
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ],
+ [
+ 63.69145957581605,
+ 40.61367373409882
+ ],
+ [
+ 63.46177420884869,
+ 40.61367373409882
+ ],
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ],
+ [
+ 63.46177420884869,
+ 40.61367373409882
+ ],
+ [
+ 63.34693152536501,
+ 40.419025999170366
+ ],
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ],
+ [
+ 63.34693152536501,
+ 40.419025999170366
+ ],
+ [
+ 63.46177420884869,
+ 40.22437826424191
+ ],
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ],
+ [
+ 63.46177420884869,
+ 40.22437826424191
+ ],
+ [
+ 63.69145957581605,
+ 40.22437826424191
+ ],
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ],
+ [
+ 63.69145957581605,
+ 40.22437826424191
+ ],
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ],
+ [
+ 63.57661689233237,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ],
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ],
+ [
+ 63.69145957581605,
+ 41.00296920395572
+ ],
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ],
+ [
+ 63.69145957581605,
+ 41.00296920395572
+ ],
+ [
+ 63.46177420884869,
+ 41.00296920395572
+ ],
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ],
+ [
+ 63.46177420884869,
+ 41.00296920395572
+ ],
+ [
+ 63.34693152536501,
+ 40.80832146902727
+ ],
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ],
+ [
+ 63.34693152536501,
+ 40.80832146902727
+ ],
+ [
+ 63.46177420884869,
+ 40.61367373409882
+ ],
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ],
+ [
+ 63.46177420884869,
+ 40.61367373409882
+ ],
+ [
+ 63.69145957581605,
+ 40.61367373409882
+ ],
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ],
+ [
+ 63.69145957581605,
+ 40.61367373409882
+ ],
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ],
+ [
+ 63.57661689233237,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ],
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ],
+ [
+ 63.69145957581605,
+ 41.392264673812626
+ ],
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ],
+ [
+ 63.69145957581605,
+ 41.392264673812626
+ ],
+ [
+ 63.46177420884869,
+ 41.392264673812626
+ ],
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ],
+ [
+ 63.46177420884869,
+ 41.392264673812626
+ ],
+ [
+ 63.34693152536501,
+ 41.197616938884174
+ ],
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ],
+ [
+ 63.34693152536501,
+ 41.197616938884174
+ ],
+ [
+ 63.46177420884869,
+ 41.00296920395572
+ ],
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ],
+ [
+ 63.46177420884869,
+ 41.00296920395572
+ ],
+ [
+ 63.69145957581605,
+ 41.00296920395572
+ ],
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ],
+ [
+ 63.69145957581605,
+ 41.00296920395572
+ ],
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ],
+ [
+ 63.57661689233237,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ],
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ],
+ [
+ 63.69145957581605,
+ 41.78156014366953
+ ],
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ],
+ [
+ 63.69145957581605,
+ 41.78156014366953
+ ],
+ [
+ 63.46177420884869,
+ 41.78156014366953
+ ],
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ],
+ [
+ 63.46177420884869,
+ 41.78156014366953
+ ],
+ [
+ 63.34693152536501,
+ 41.58691240874108
+ ],
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ],
+ [
+ 63.34693152536501,
+ 41.58691240874108
+ ],
+ [
+ 63.46177420884869,
+ 41.392264673812626
+ ],
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ],
+ [
+ 63.46177420884869,
+ 41.392264673812626
+ ],
+ [
+ 63.69145957581605,
+ 41.392264673812626
+ ],
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ],
+ [
+ 63.69145957581605,
+ 41.392264673812626
+ ],
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ],
+ [
+ 63.57661689233237,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ],
+ [
+ 63.80630225929973,
+ 41.97620787859798
+ ],
+ [
+ 63.69145957581605,
+ 42.170855613526435
+ ],
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ],
+ [
+ 63.69145957581605,
+ 42.170855613526435
+ ],
+ [
+ 63.46177420884869,
+ 42.170855613526435
+ ],
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ],
+ [
+ 63.46177420884869,
+ 42.170855613526435
+ ],
+ [
+ 63.34693152536501,
+ 41.97620787859798
+ ],
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ],
+ [
+ 63.34693152536501,
+ 41.97620787859798
+ ],
+ [
+ 63.46177420884869,
+ 41.78156014366953
+ ],
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ],
+ [
+ 63.46177420884869,
+ 41.78156014366953
+ ],
+ [
+ 63.69145957581605,
+ 41.78156014366953
+ ],
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ],
+ [
+ 63.69145957581605,
+ 41.78156014366953
+ ],
+ [
+ 63.80630225929973,
+ 41.97620787859798
+ ],
+ [
+ 63.57661689233237,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ],
+ [
+ 63.80630225929973,
+ 42.365503348454894
+ ],
+ [
+ 63.69145957581605,
+ 42.560151083383346
+ ],
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ],
+ [
+ 63.69145957581605,
+ 42.560151083383346
+ ],
+ [
+ 63.46177420884869,
+ 42.560151083383346
+ ],
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ],
+ [
+ 63.46177420884869,
+ 42.560151083383346
+ ],
+ [
+ 63.34693152536501,
+ 42.365503348454894
+ ],
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ],
+ [
+ 63.34693152536501,
+ 42.365503348454894
+ ],
+ [
+ 63.46177420884869,
+ 42.17085561352644
+ ],
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ],
+ [
+ 63.46177420884869,
+ 42.17085561352644
+ ],
+ [
+ 63.69145957581605,
+ 42.17085561352644
+ ],
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ],
+ [
+ 63.69145957581605,
+ 42.17085561352644
+ ],
+ [
+ 63.80630225929973,
+ 42.365503348454894
+ ],
+ [
+ 63.57661689233237,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ],
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ],
+ [
+ 63.69145957581605,
+ 42.94944655324026
+ ],
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ],
+ [
+ 63.69145957581605,
+ 42.94944655324026
+ ],
+ [
+ 63.46177420884869,
+ 42.94944655324026
+ ],
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ],
+ [
+ 63.46177420884869,
+ 42.94944655324026
+ ],
+ [
+ 63.34693152536501,
+ 42.754798818311805
+ ],
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ],
+ [
+ 63.34693152536501,
+ 42.754798818311805
+ ],
+ [
+ 63.46177420884869,
+ 42.56015108338335
+ ],
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ],
+ [
+ 63.46177420884869,
+ 42.56015108338335
+ ],
+ [
+ 63.69145957581605,
+ 42.56015108338335
+ ],
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ],
+ [
+ 63.69145957581605,
+ 42.56015108338335
+ ],
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ],
+ [
+ 63.57661689233237,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ],
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ],
+ [
+ 63.69145957581605,
+ 43.33874202309716
+ ],
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ],
+ [
+ 63.69145957581605,
+ 43.33874202309716
+ ],
+ [
+ 63.46177420884869,
+ 43.33874202309716
+ ],
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ],
+ [
+ 63.46177420884869,
+ 43.33874202309716
+ ],
+ [
+ 63.34693152536501,
+ 43.14409428816871
+ ],
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ],
+ [
+ 63.34693152536501,
+ 43.14409428816871
+ ],
+ [
+ 63.46177420884869,
+ 42.94944655324026
+ ],
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ],
+ [
+ 63.46177420884869,
+ 42.94944655324026
+ ],
+ [
+ 63.69145957581605,
+ 42.94944655324026
+ ],
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ],
+ [
+ 63.69145957581605,
+ 42.94944655324026
+ ],
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ],
+ [
+ 63.57661689233237,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ],
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ],
+ [
+ 63.69145957581605,
+ 43.728037492954066
+ ],
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ],
+ [
+ 63.69145957581605,
+ 43.728037492954066
+ ],
+ [
+ 63.46177420884869,
+ 43.728037492954066
+ ],
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ],
+ [
+ 63.46177420884869,
+ 43.728037492954066
+ ],
+ [
+ 63.34693152536501,
+ 43.53338975802561
+ ],
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ],
+ [
+ 63.34693152536501,
+ 43.53338975802561
+ ],
+ [
+ 63.46177420884869,
+ 43.33874202309716
+ ],
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ],
+ [
+ 63.46177420884869,
+ 43.33874202309716
+ ],
+ [
+ 63.69145957581605,
+ 43.33874202309716
+ ],
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ],
+ [
+ 63.69145957581605,
+ 43.33874202309716
+ ],
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ],
+ [
+ 63.57661689233237,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ],
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ],
+ [
+ 63.69145957581605,
+ 44.11733296281097
+ ],
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ],
+ [
+ 63.69145957581605,
+ 44.11733296281097
+ ],
+ [
+ 63.46177420884869,
+ 44.11733296281097
+ ],
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ],
+ [
+ 63.46177420884869,
+ 44.11733296281097
+ ],
+ [
+ 63.34693152536501,
+ 43.92268522788252
+ ],
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ],
+ [
+ 63.34693152536501,
+ 43.92268522788252
+ ],
+ [
+ 63.46177420884869,
+ 43.728037492954066
+ ],
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ],
+ [
+ 63.46177420884869,
+ 43.728037492954066
+ ],
+ [
+ 63.69145957581605,
+ 43.728037492954066
+ ],
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ],
+ [
+ 63.69145957581605,
+ 43.728037492954066
+ ],
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ],
+ [
+ 63.57661689233237,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ],
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ],
+ [
+ 63.69145957581605,
+ 44.506628432667874
+ ],
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ],
+ [
+ 63.69145957581605,
+ 44.506628432667874
+ ],
+ [
+ 63.46177420884869,
+ 44.506628432667874
+ ],
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ],
+ [
+ 63.46177420884869,
+ 44.506628432667874
+ ],
+ [
+ 63.34693152536501,
+ 44.31198069773942
+ ],
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ],
+ [
+ 63.34693152536501,
+ 44.31198069773942
+ ],
+ [
+ 63.46177420884869,
+ 44.11733296281097
+ ],
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ],
+ [
+ 63.46177420884869,
+ 44.11733296281097
+ ],
+ [
+ 63.69145957581605,
+ 44.11733296281097
+ ],
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ],
+ [
+ 63.69145957581605,
+ 44.11733296281097
+ ],
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ],
+ [
+ 63.57661689233237,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ],
+ [
+ 63.80630225929973,
+ 44.701276167596326
+ ],
+ [
+ 63.69145957581605,
+ 44.89592390252478
+ ],
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ],
+ [
+ 63.69145957581605,
+ 44.89592390252478
+ ],
+ [
+ 63.46177420884869,
+ 44.89592390252478
+ ],
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ],
+ [
+ 63.46177420884869,
+ 44.89592390252478
+ ],
+ [
+ 63.34693152536501,
+ 44.701276167596326
+ ],
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ],
+ [
+ 63.34693152536501,
+ 44.701276167596326
+ ],
+ [
+ 63.46177420884869,
+ 44.506628432667874
+ ],
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ],
+ [
+ 63.46177420884869,
+ 44.506628432667874
+ ],
+ [
+ 63.69145957581605,
+ 44.506628432667874
+ ],
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ],
+ [
+ 63.69145957581605,
+ 44.506628432667874
+ ],
+ [
+ 63.80630225929973,
+ 44.701276167596326
+ ],
+ [
+ 63.57661689233237,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ],
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ],
+ [
+ 63.69145957581605,
+ 45.2852193723817
+ ],
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ],
+ [
+ 63.69145957581605,
+ 45.2852193723817
+ ],
+ [
+ 63.46177420884869,
+ 45.2852193723817
+ ],
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ],
+ [
+ 63.46177420884869,
+ 45.2852193723817
+ ],
+ [
+ 63.34693152536501,
+ 45.090571637453245
+ ],
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ],
+ [
+ 63.34693152536501,
+ 45.090571637453245
+ ],
+ [
+ 63.46177420884869,
+ 44.89592390252479
+ ],
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ],
+ [
+ 63.46177420884869,
+ 44.89592390252479
+ ],
+ [
+ 63.69145957581605,
+ 44.89592390252479
+ ],
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ],
+ [
+ 63.69145957581605,
+ 44.89592390252479
+ ],
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ],
+ [
+ 63.57661689233237,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ],
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ],
+ [
+ 63.69145957581605,
+ 45.6745148422386
+ ],
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ],
+ [
+ 63.69145957581605,
+ 45.6745148422386
+ ],
+ [
+ 63.46177420884869,
+ 45.6745148422386
+ ],
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ],
+ [
+ 63.46177420884869,
+ 45.6745148422386
+ ],
+ [
+ 63.34693152536501,
+ 45.47986710731015
+ ],
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ],
+ [
+ 63.34693152536501,
+ 45.47986710731015
+ ],
+ [
+ 63.46177420884869,
+ 45.2852193723817
+ ],
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ],
+ [
+ 63.46177420884869,
+ 45.2852193723817
+ ],
+ [
+ 63.69145957581605,
+ 45.2852193723817
+ ],
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ],
+ [
+ 63.69145957581605,
+ 45.2852193723817
+ ],
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ],
+ [
+ 63.57661689233237,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ],
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ],
+ [
+ 63.69145957581605,
+ 46.063810312095505
+ ],
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ],
+ [
+ 63.69145957581605,
+ 46.063810312095505
+ ],
+ [
+ 63.46177420884869,
+ 46.063810312095505
+ ],
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ],
+ [
+ 63.46177420884869,
+ 46.063810312095505
+ ],
+ [
+ 63.34693152536501,
+ 45.86916257716705
+ ],
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ],
+ [
+ 63.34693152536501,
+ 45.86916257716705
+ ],
+ [
+ 63.46177420884869,
+ 45.6745148422386
+ ],
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ],
+ [
+ 63.46177420884869,
+ 45.6745148422386
+ ],
+ [
+ 63.69145957581605,
+ 45.6745148422386
+ ],
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ],
+ [
+ 63.69145957581605,
+ 45.6745148422386
+ ],
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ],
+ [
+ 63.57661689233237,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ],
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ],
+ [
+ 63.69145957581605,
+ 46.45310578195241
+ ],
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ],
+ [
+ 63.69145957581605,
+ 46.45310578195241
+ ],
+ [
+ 63.46177420884869,
+ 46.45310578195241
+ ],
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ],
+ [
+ 63.46177420884869,
+ 46.45310578195241
+ ],
+ [
+ 63.34693152536501,
+ 46.25845804702396
+ ],
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ],
+ [
+ 63.34693152536501,
+ 46.25845804702396
+ ],
+ [
+ 63.46177420884869,
+ 46.063810312095505
+ ],
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ],
+ [
+ 63.46177420884869,
+ 46.063810312095505
+ ],
+ [
+ 63.69145957581605,
+ 46.063810312095505
+ ],
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ],
+ [
+ 63.69145957581605,
+ 46.063810312095505
+ ],
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ],
+ [
+ 63.57661689233237,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ],
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ],
+ [
+ 63.69145957581605,
+ 46.842401251809314
+ ],
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ],
+ [
+ 63.69145957581605,
+ 46.842401251809314
+ ],
+ [
+ 63.46177420884869,
+ 46.842401251809314
+ ],
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ],
+ [
+ 63.46177420884869,
+ 46.842401251809314
+ ],
+ [
+ 63.34693152536501,
+ 46.64775351688086
+ ],
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ],
+ [
+ 63.34693152536501,
+ 46.64775351688086
+ ],
+ [
+ 63.46177420884869,
+ 46.45310578195241
+ ],
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ],
+ [
+ 63.46177420884869,
+ 46.45310578195241
+ ],
+ [
+ 63.69145957581605,
+ 46.45310578195241
+ ],
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ],
+ [
+ 63.69145957581605,
+ 46.45310578195241
+ ],
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ],
+ [
+ 63.57661689233237,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ],
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ],
+ [
+ 63.69145957581605,
+ 47.23169672166622
+ ],
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ],
+ [
+ 63.69145957581605,
+ 47.23169672166622
+ ],
+ [
+ 63.46177420884869,
+ 47.23169672166622
+ ],
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ],
+ [
+ 63.46177420884869,
+ 47.23169672166622
+ ],
+ [
+ 63.34693152536501,
+ 47.037048986737766
+ ],
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ],
+ [
+ 63.34693152536501,
+ 47.037048986737766
+ ],
+ [
+ 63.46177420884869,
+ 46.842401251809314
+ ],
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ],
+ [
+ 63.46177420884869,
+ 46.842401251809314
+ ],
+ [
+ 63.69145957581605,
+ 46.842401251809314
+ ],
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ],
+ [
+ 63.69145957581605,
+ 46.842401251809314
+ ],
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ],
+ [
+ 63.57661689233237,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ],
+ [
+ 63.80630225929973,
+ 47.42634445659467
+ ],
+ [
+ 63.69145957581605,
+ 47.62099219152312
+ ],
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ],
+ [
+ 63.69145957581605,
+ 47.62099219152312
+ ],
+ [
+ 63.46177420884869,
+ 47.62099219152312
+ ],
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ],
+ [
+ 63.46177420884869,
+ 47.62099219152312
+ ],
+ [
+ 63.34693152536501,
+ 47.42634445659467
+ ],
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ],
+ [
+ 63.34693152536501,
+ 47.42634445659467
+ ],
+ [
+ 63.46177420884869,
+ 47.23169672166622
+ ],
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ],
+ [
+ 63.46177420884869,
+ 47.23169672166622
+ ],
+ [
+ 63.69145957581605,
+ 47.23169672166622
+ ],
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ],
+ [
+ 63.69145957581605,
+ 47.23169672166622
+ ],
+ [
+ 63.80630225929973,
+ 47.42634445659467
+ ],
+ [
+ 63.57661689233237,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ],
+ [
+ 63.80630225929973,
+ 47.81563992645159
+ ],
+ [
+ 63.69145957581605,
+ 48.01028766138004
+ ],
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ],
+ [
+ 63.69145957581605,
+ 48.01028766138004
+ ],
+ [
+ 63.46177420884869,
+ 48.01028766138004
+ ],
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ],
+ [
+ 63.46177420884869,
+ 48.01028766138004
+ ],
+ [
+ 63.34693152536501,
+ 47.81563992645159
+ ],
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ],
+ [
+ 63.34693152536501,
+ 47.81563992645159
+ ],
+ [
+ 63.46177420884869,
+ 47.620992191523136
+ ],
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ],
+ [
+ 63.46177420884869,
+ 47.620992191523136
+ ],
+ [
+ 63.69145957581605,
+ 47.620992191523136
+ ],
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ],
+ [
+ 63.69145957581605,
+ 47.620992191523136
+ ],
+ [
+ 63.80630225929973,
+ 47.81563992645159
+ ],
+ [
+ 63.57661689233237,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ],
+ [
+ 64.15083030975076,
+ 11.805808964687746
+ ],
+ [
+ 64.03598762626709,
+ 12.0004566996162
+ ],
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ],
+ [
+ 64.03598762626709,
+ 12.0004566996162
+ ],
+ [
+ 63.80630225929973,
+ 12.0004566996162
+ ],
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ],
+ [
+ 63.80630225929973,
+ 12.0004566996162
+ ],
+ [
+ 63.69145957581605,
+ 11.805808964687746
+ ],
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ],
+ [
+ 63.69145957581605,
+ 11.805808964687746
+ ],
+ [
+ 63.80630225929973,
+ 11.611161229759292
+ ],
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ],
+ [
+ 63.80630225929973,
+ 11.611161229759292
+ ],
+ [
+ 64.03598762626709,
+ 11.611161229759292
+ ],
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ],
+ [
+ 64.03598762626709,
+ 11.611161229759292
+ ],
+ [
+ 64.15083030975076,
+ 11.805808964687746
+ ],
+ [
+ 63.92114494278341,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ],
+ [
+ 64.15083030975076,
+ 12.195104434544652
+ ],
+ [
+ 64.03598762626709,
+ 12.389752169473105
+ ],
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ],
+ [
+ 64.03598762626709,
+ 12.389752169473105
+ ],
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ],
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ],
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ],
+ [
+ 63.69145957581605,
+ 12.195104434544652
+ ],
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ],
+ [
+ 63.69145957581605,
+ 12.195104434544652
+ ],
+ [
+ 63.80630225929973,
+ 12.000456699616198
+ ],
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ],
+ [
+ 63.80630225929973,
+ 12.000456699616198
+ ],
+ [
+ 64.03598762626709,
+ 12.000456699616198
+ ],
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ],
+ [
+ 64.03598762626709,
+ 12.000456699616198
+ ],
+ [
+ 64.15083030975076,
+ 12.195104434544652
+ ],
+ [
+ 63.92114494278341,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ],
+ [
+ 64.15083030975076,
+ 12.58439990440156
+ ],
+ [
+ 64.03598762626709,
+ 12.779047639330013
+ ],
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ],
+ [
+ 64.03598762626709,
+ 12.779047639330013
+ ],
+ [
+ 63.80630225929973,
+ 12.779047639330013
+ ],
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ],
+ [
+ 63.80630225929973,
+ 12.779047639330013
+ ],
+ [
+ 63.69145957581605,
+ 12.58439990440156
+ ],
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ],
+ [
+ 63.69145957581605,
+ 12.58439990440156
+ ],
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ],
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ],
+ [
+ 63.80630225929973,
+ 12.389752169473105
+ ],
+ [
+ 64.03598762626709,
+ 12.389752169473105
+ ],
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ],
+ [
+ 64.03598762626709,
+ 12.389752169473105
+ ],
+ [
+ 64.15083030975076,
+ 12.58439990440156
+ ],
+ [
+ 63.92114494278341,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ],
+ [
+ 64.15083030975076,
+ 12.973695374258465
+ ],
+ [
+ 64.03598762626709,
+ 13.16834310918692
+ ],
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ],
+ [
+ 64.03598762626709,
+ 13.16834310918692
+ ],
+ [
+ 63.80630225929973,
+ 13.16834310918692
+ ],
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ],
+ [
+ 63.80630225929973,
+ 13.16834310918692
+ ],
+ [
+ 63.69145957581605,
+ 12.973695374258465
+ ],
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ],
+ [
+ 63.69145957581605,
+ 12.973695374258465
+ ],
+ [
+ 63.80630225929973,
+ 12.779047639330011
+ ],
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ],
+ [
+ 63.80630225929973,
+ 12.779047639330011
+ ],
+ [
+ 64.03598762626709,
+ 12.779047639330011
+ ],
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ],
+ [
+ 64.03598762626709,
+ 12.779047639330011
+ ],
+ [
+ 64.15083030975076,
+ 12.973695374258465
+ ],
+ [
+ 63.92114494278341,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ],
+ [
+ 64.15083030975076,
+ 13.362990844115371
+ ],
+ [
+ 64.03598762626709,
+ 13.557638579043825
+ ],
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ],
+ [
+ 64.03598762626709,
+ 13.557638579043825
+ ],
+ [
+ 63.80630225929973,
+ 13.557638579043825
+ ],
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ],
+ [
+ 63.80630225929973,
+ 13.557638579043825
+ ],
+ [
+ 63.69145957581605,
+ 13.362990844115371
+ ],
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ],
+ [
+ 63.69145957581605,
+ 13.362990844115371
+ ],
+ [
+ 63.80630225929973,
+ 13.168343109186917
+ ],
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ],
+ [
+ 63.80630225929973,
+ 13.168343109186917
+ ],
+ [
+ 64.03598762626709,
+ 13.168343109186917
+ ],
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ],
+ [
+ 64.03598762626709,
+ 13.168343109186917
+ ],
+ [
+ 64.15083030975076,
+ 13.362990844115371
+ ],
+ [
+ 63.92114494278341,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ],
+ [
+ 64.15083030975076,
+ 13.752286313972277
+ ],
+ [
+ 64.03598762626709,
+ 13.946934048900731
+ ],
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ],
+ [
+ 64.03598762626709,
+ 13.946934048900731
+ ],
+ [
+ 63.80630225929973,
+ 13.946934048900731
+ ],
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ],
+ [
+ 63.80630225929973,
+ 13.946934048900731
+ ],
+ [
+ 63.69145957581605,
+ 13.752286313972277
+ ],
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ],
+ [
+ 63.69145957581605,
+ 13.752286313972277
+ ],
+ [
+ 63.80630225929973,
+ 13.557638579043823
+ ],
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ],
+ [
+ 63.80630225929973,
+ 13.557638579043823
+ ],
+ [
+ 64.03598762626709,
+ 13.557638579043823
+ ],
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ],
+ [
+ 64.03598762626709,
+ 13.557638579043823
+ ],
+ [
+ 64.15083030975076,
+ 13.752286313972277
+ ],
+ [
+ 63.92114494278341,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ],
+ [
+ 64.15083030975076,
+ 14.141581783829183
+ ],
+ [
+ 64.03598762626709,
+ 14.336229518757637
+ ],
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ],
+ [
+ 64.03598762626709,
+ 14.336229518757637
+ ],
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ],
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ],
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ],
+ [
+ 63.69145957581605,
+ 14.141581783829183
+ ],
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ],
+ [
+ 63.69145957581605,
+ 14.141581783829183
+ ],
+ [
+ 63.80630225929973,
+ 13.94693404890073
+ ],
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ],
+ [
+ 63.80630225929973,
+ 13.94693404890073
+ ],
+ [
+ 64.03598762626709,
+ 13.94693404890073
+ ],
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ],
+ [
+ 64.03598762626709,
+ 13.94693404890073
+ ],
+ [
+ 64.15083030975076,
+ 14.141581783829183
+ ],
+ [
+ 63.92114494278341,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ],
+ [
+ 64.15083030975076,
+ 14.530877253686091
+ ],
+ [
+ 64.03598762626709,
+ 14.725524988614545
+ ],
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ],
+ [
+ 64.03598762626709,
+ 14.725524988614545
+ ],
+ [
+ 63.80630225929973,
+ 14.725524988614545
+ ],
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ],
+ [
+ 63.80630225929973,
+ 14.725524988614545
+ ],
+ [
+ 63.69145957581605,
+ 14.530877253686091
+ ],
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ],
+ [
+ 63.69145957581605,
+ 14.530877253686091
+ ],
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ],
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ],
+ [
+ 63.80630225929973,
+ 14.336229518757637
+ ],
+ [
+ 64.03598762626709,
+ 14.336229518757637
+ ],
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ],
+ [
+ 64.03598762626709,
+ 14.336229518757637
+ ],
+ [
+ 64.15083030975076,
+ 14.530877253686091
+ ],
+ [
+ 63.92114494278341,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ],
+ [
+ 64.15083030975076,
+ 14.920172723542997
+ ],
+ [
+ 64.03598762626709,
+ 15.114820458471451
+ ],
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ],
+ [
+ 64.03598762626709,
+ 15.114820458471451
+ ],
+ [
+ 63.80630225929973,
+ 15.114820458471451
+ ],
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ],
+ [
+ 63.80630225929973,
+ 15.114820458471451
+ ],
+ [
+ 63.69145957581605,
+ 14.920172723542997
+ ],
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ],
+ [
+ 63.69145957581605,
+ 14.920172723542997
+ ],
+ [
+ 63.80630225929973,
+ 14.725524988614543
+ ],
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ],
+ [
+ 63.80630225929973,
+ 14.725524988614543
+ ],
+ [
+ 64.03598762626709,
+ 14.725524988614543
+ ],
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ],
+ [
+ 64.03598762626709,
+ 14.725524988614543
+ ],
+ [
+ 64.15083030975076,
+ 14.920172723542997
+ ],
+ [
+ 63.92114494278341,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ],
+ [
+ 64.15083030975076,
+ 15.309468193399903
+ ],
+ [
+ 64.03598762626709,
+ 15.504115928328357
+ ],
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ],
+ [
+ 64.03598762626709,
+ 15.504115928328357
+ ],
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ],
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ],
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ],
+ [
+ 63.69145957581605,
+ 15.309468193399903
+ ],
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ],
+ [
+ 63.69145957581605,
+ 15.309468193399903
+ ],
+ [
+ 63.80630225929973,
+ 15.11482045847145
+ ],
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ],
+ [
+ 63.80630225929973,
+ 15.11482045847145
+ ],
+ [
+ 64.03598762626709,
+ 15.11482045847145
+ ],
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ],
+ [
+ 64.03598762626709,
+ 15.11482045847145
+ ],
+ [
+ 64.15083030975076,
+ 15.309468193399903
+ ],
+ [
+ 63.92114494278341,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ],
+ [
+ 64.15083030975076,
+ 15.69876366325681
+ ],
+ [
+ 64.03598762626709,
+ 15.893411398185265
+ ],
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ],
+ [
+ 64.03598762626709,
+ 15.893411398185265
+ ],
+ [
+ 63.80630225929973,
+ 15.893411398185265
+ ],
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ],
+ [
+ 63.80630225929973,
+ 15.893411398185265
+ ],
+ [
+ 63.69145957581605,
+ 15.69876366325681
+ ],
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ],
+ [
+ 63.69145957581605,
+ 15.69876366325681
+ ],
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ],
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ],
+ [
+ 63.80630225929973,
+ 15.504115928328357
+ ],
+ [
+ 64.03598762626709,
+ 15.504115928328357
+ ],
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ],
+ [
+ 64.03598762626709,
+ 15.504115928328357
+ ],
+ [
+ 64.15083030975076,
+ 15.69876366325681
+ ],
+ [
+ 63.92114494278341,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ],
+ [
+ 64.15083030975076,
+ 16.088059133113717
+ ],
+ [
+ 64.03598762626709,
+ 16.28270686804217
+ ],
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ],
+ [
+ 64.03598762626709,
+ 16.28270686804217
+ ],
+ [
+ 63.80630225929973,
+ 16.28270686804217
+ ],
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ],
+ [
+ 63.80630225929973,
+ 16.28270686804217
+ ],
+ [
+ 63.69145957581605,
+ 16.088059133113717
+ ],
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ],
+ [
+ 63.69145957581605,
+ 16.088059133113717
+ ],
+ [
+ 63.80630225929973,
+ 15.893411398185263
+ ],
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ],
+ [
+ 63.80630225929973,
+ 15.893411398185263
+ ],
+ [
+ 64.03598762626709,
+ 15.893411398185263
+ ],
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ],
+ [
+ 64.03598762626709,
+ 15.893411398185263
+ ],
+ [
+ 64.15083030975076,
+ 16.088059133113717
+ ],
+ [
+ 63.92114494278341,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ],
+ [
+ 64.15083030975076,
+ 16.477354602970625
+ ],
+ [
+ 64.03598762626709,
+ 16.672002337899077
+ ],
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ],
+ [
+ 64.03598762626709,
+ 16.672002337899077
+ ],
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ],
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ],
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ],
+ [
+ 63.69145957581605,
+ 16.477354602970625
+ ],
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ],
+ [
+ 63.69145957581605,
+ 16.477354602970625
+ ],
+ [
+ 63.80630225929973,
+ 16.282706868042172
+ ],
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ],
+ [
+ 63.80630225929973,
+ 16.282706868042172
+ ],
+ [
+ 64.03598762626709,
+ 16.282706868042172
+ ],
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ],
+ [
+ 64.03598762626709,
+ 16.282706868042172
+ ],
+ [
+ 64.15083030975076,
+ 16.477354602970625
+ ],
+ [
+ 63.92114494278341,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ],
+ [
+ 64.15083030975076,
+ 16.86665007282753
+ ],
+ [
+ 64.03598762626709,
+ 17.06129780775598
+ ],
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ],
+ [
+ 64.03598762626709,
+ 17.06129780775598
+ ],
+ [
+ 63.80630225929973,
+ 17.06129780775598
+ ],
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ],
+ [
+ 63.80630225929973,
+ 17.06129780775598
+ ],
+ [
+ 63.69145957581605,
+ 16.86665007282753
+ ],
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ],
+ [
+ 63.69145957581605,
+ 16.86665007282753
+ ],
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ],
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ],
+ [
+ 63.80630225929973,
+ 16.672002337899077
+ ],
+ [
+ 64.03598762626709,
+ 16.672002337899077
+ ],
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ],
+ [
+ 64.03598762626709,
+ 16.672002337899077
+ ],
+ [
+ 64.15083030975076,
+ 16.86665007282753
+ ],
+ [
+ 63.92114494278341,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ],
+ [
+ 64.15083030975076,
+ 17.255945542684437
+ ],
+ [
+ 64.03598762626709,
+ 17.45059327761289
+ ],
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ],
+ [
+ 64.03598762626709,
+ 17.45059327761289
+ ],
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ],
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ],
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ],
+ [
+ 63.69145957581605,
+ 17.255945542684437
+ ],
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ],
+ [
+ 63.69145957581605,
+ 17.255945542684437
+ ],
+ [
+ 63.80630225929973,
+ 17.061297807755984
+ ],
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ],
+ [
+ 63.80630225929973,
+ 17.061297807755984
+ ],
+ [
+ 64.03598762626709,
+ 17.061297807755984
+ ],
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ],
+ [
+ 64.03598762626709,
+ 17.061297807755984
+ ],
+ [
+ 64.15083030975076,
+ 17.255945542684437
+ ],
+ [
+ 63.92114494278341,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ],
+ [
+ 64.15083030975076,
+ 17.64524101254134
+ ],
+ [
+ 64.03598762626709,
+ 17.839888747469793
+ ],
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ],
+ [
+ 64.03598762626709,
+ 17.839888747469793
+ ],
+ [
+ 63.80630225929973,
+ 17.839888747469793
+ ],
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ],
+ [
+ 63.80630225929973,
+ 17.839888747469793
+ ],
+ [
+ 63.69145957581605,
+ 17.64524101254134
+ ],
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ],
+ [
+ 63.69145957581605,
+ 17.64524101254134
+ ],
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ],
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ],
+ [
+ 63.80630225929973,
+ 17.45059327761289
+ ],
+ [
+ 64.03598762626709,
+ 17.45059327761289
+ ],
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ],
+ [
+ 64.03598762626709,
+ 17.45059327761289
+ ],
+ [
+ 64.15083030975076,
+ 17.64524101254134
+ ],
+ [
+ 63.92114494278341,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ],
+ [
+ 64.15083030975076,
+ 18.03453648239825
+ ],
+ [
+ 64.03598762626709,
+ 18.2291842173267
+ ],
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ],
+ [
+ 64.03598762626709,
+ 18.2291842173267
+ ],
+ [
+ 63.80630225929973,
+ 18.2291842173267
+ ],
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ],
+ [
+ 63.80630225929973,
+ 18.2291842173267
+ ],
+ [
+ 63.69145957581605,
+ 18.03453648239825
+ ],
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ],
+ [
+ 63.69145957581605,
+ 18.03453648239825
+ ],
+ [
+ 63.80630225929973,
+ 17.839888747469796
+ ],
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ],
+ [
+ 63.80630225929973,
+ 17.839888747469796
+ ],
+ [
+ 64.03598762626709,
+ 17.839888747469796
+ ],
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ],
+ [
+ 64.03598762626709,
+ 17.839888747469796
+ ],
+ [
+ 64.15083030975076,
+ 18.03453648239825
+ ],
+ [
+ 63.92114494278341,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ],
+ [
+ 64.15083030975076,
+ 18.423831952255156
+ ],
+ [
+ 64.03598762626709,
+ 18.61847968718361
+ ],
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ],
+ [
+ 64.03598762626709,
+ 18.61847968718361
+ ],
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ],
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ],
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ],
+ [
+ 63.69145957581605,
+ 18.423831952255156
+ ],
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ],
+ [
+ 63.69145957581605,
+ 18.423831952255156
+ ],
+ [
+ 63.80630225929973,
+ 18.229184217326704
+ ],
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ],
+ [
+ 63.80630225929973,
+ 18.229184217326704
+ ],
+ [
+ 64.03598762626709,
+ 18.229184217326704
+ ],
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ],
+ [
+ 64.03598762626709,
+ 18.229184217326704
+ ],
+ [
+ 64.15083030975076,
+ 18.423831952255156
+ ],
+ [
+ 63.92114494278341,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ],
+ [
+ 64.15083030975076,
+ 18.81312742211206
+ ],
+ [
+ 64.03598762626709,
+ 19.007775157040513
+ ],
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ],
+ [
+ 64.03598762626709,
+ 19.007775157040513
+ ],
+ [
+ 63.80630225929973,
+ 19.007775157040513
+ ],
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ],
+ [
+ 63.80630225929973,
+ 19.007775157040513
+ ],
+ [
+ 63.69145957581605,
+ 18.81312742211206
+ ],
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ],
+ [
+ 63.69145957581605,
+ 18.81312742211206
+ ],
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ],
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ],
+ [
+ 63.80630225929973,
+ 18.61847968718361
+ ],
+ [
+ 64.03598762626709,
+ 18.61847968718361
+ ],
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ],
+ [
+ 64.03598762626709,
+ 18.61847968718361
+ ],
+ [
+ 64.15083030975076,
+ 18.81312742211206
+ ],
+ [
+ 63.92114494278341,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ],
+ [
+ 64.15083030975076,
+ 19.20242289196897
+ ],
+ [
+ 64.03598762626709,
+ 19.39707062689742
+ ],
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ],
+ [
+ 64.03598762626709,
+ 19.39707062689742
+ ],
+ [
+ 63.80630225929973,
+ 19.39707062689742
+ ],
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ],
+ [
+ 63.80630225929973,
+ 19.39707062689742
+ ],
+ [
+ 63.69145957581605,
+ 19.20242289196897
+ ],
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ],
+ [
+ 63.69145957581605,
+ 19.20242289196897
+ ],
+ [
+ 63.80630225929973,
+ 19.007775157040516
+ ],
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ],
+ [
+ 63.80630225929973,
+ 19.007775157040516
+ ],
+ [
+ 64.03598762626709,
+ 19.007775157040516
+ ],
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ],
+ [
+ 64.03598762626709,
+ 19.007775157040516
+ ],
+ [
+ 64.15083030975076,
+ 19.20242289196897
+ ],
+ [
+ 63.92114494278341,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ],
+ [
+ 64.15083030975076,
+ 19.591718361825876
+ ],
+ [
+ 64.03598762626709,
+ 19.78636609675433
+ ],
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ],
+ [
+ 64.03598762626709,
+ 19.78636609675433
+ ],
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ],
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ],
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ],
+ [
+ 63.69145957581605,
+ 19.591718361825876
+ ],
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ],
+ [
+ 63.69145957581605,
+ 19.591718361825876
+ ],
+ [
+ 63.80630225929973,
+ 19.397070626897424
+ ],
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ],
+ [
+ 63.80630225929973,
+ 19.397070626897424
+ ],
+ [
+ 64.03598762626709,
+ 19.397070626897424
+ ],
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ],
+ [
+ 64.03598762626709,
+ 19.397070626897424
+ ],
+ [
+ 64.15083030975076,
+ 19.591718361825876
+ ],
+ [
+ 63.92114494278341,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ],
+ [
+ 64.15083030975076,
+ 19.98101383168278
+ ],
+ [
+ 64.03598762626709,
+ 20.175661566611232
+ ],
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ],
+ [
+ 64.03598762626709,
+ 20.175661566611232
+ ],
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ],
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ],
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ],
+ [
+ 63.69145957581605,
+ 19.98101383168278
+ ],
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ],
+ [
+ 63.69145957581605,
+ 19.98101383168278
+ ],
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ],
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ],
+ [
+ 63.80630225929973,
+ 19.78636609675433
+ ],
+ [
+ 64.03598762626709,
+ 19.78636609675433
+ ],
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ],
+ [
+ 64.03598762626709,
+ 19.78636609675433
+ ],
+ [
+ 64.15083030975076,
+ 19.98101383168278
+ ],
+ [
+ 63.92114494278341,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ],
+ [
+ 64.15083030975076,
+ 20.370309301539685
+ ],
+ [
+ 64.03598762626709,
+ 20.564957036468137
+ ],
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ],
+ [
+ 64.03598762626709,
+ 20.564957036468137
+ ],
+ [
+ 63.80630225929973,
+ 20.564957036468137
+ ],
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ],
+ [
+ 63.80630225929973,
+ 20.564957036468137
+ ],
+ [
+ 63.69145957581605,
+ 20.370309301539685
+ ],
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ],
+ [
+ 63.69145957581605,
+ 20.370309301539685
+ ],
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ],
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ],
+ [
+ 63.80630225929973,
+ 20.175661566611232
+ ],
+ [
+ 64.03598762626709,
+ 20.175661566611232
+ ],
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ],
+ [
+ 64.03598762626709,
+ 20.175661566611232
+ ],
+ [
+ 64.15083030975076,
+ 20.370309301539685
+ ],
+ [
+ 63.92114494278341,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ],
+ [
+ 64.15083030975076,
+ 20.759604771396592
+ ],
+ [
+ 64.03598762626709,
+ 20.954252506325044
+ ],
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ],
+ [
+ 64.03598762626709,
+ 20.954252506325044
+ ],
+ [
+ 63.80630225929973,
+ 20.954252506325044
+ ],
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ],
+ [
+ 63.80630225929973,
+ 20.954252506325044
+ ],
+ [
+ 63.69145957581605,
+ 20.759604771396592
+ ],
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ],
+ [
+ 63.69145957581605,
+ 20.759604771396592
+ ],
+ [
+ 63.80630225929973,
+ 20.56495703646814
+ ],
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ],
+ [
+ 63.80630225929973,
+ 20.56495703646814
+ ],
+ [
+ 64.03598762626709,
+ 20.56495703646814
+ ],
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ],
+ [
+ 64.03598762626709,
+ 20.56495703646814
+ ],
+ [
+ 64.15083030975076,
+ 20.759604771396592
+ ],
+ [
+ 63.92114494278341,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ],
+ [
+ 64.15083030975076,
+ 21.1489002412535
+ ],
+ [
+ 64.03598762626709,
+ 21.343547976181952
+ ],
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ],
+ [
+ 64.03598762626709,
+ 21.343547976181952
+ ],
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ],
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ],
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ],
+ [
+ 63.69145957581605,
+ 21.1489002412535
+ ],
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ],
+ [
+ 63.69145957581605,
+ 21.1489002412535
+ ],
+ [
+ 63.80630225929973,
+ 20.954252506325048
+ ],
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ],
+ [
+ 63.80630225929973,
+ 20.954252506325048
+ ],
+ [
+ 64.03598762626709,
+ 20.954252506325048
+ ],
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ],
+ [
+ 64.03598762626709,
+ 20.954252506325048
+ ],
+ [
+ 64.15083030975076,
+ 21.1489002412535
+ ],
+ [
+ 63.92114494278341,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ],
+ [
+ 64.15083030975076,
+ 21.538195711110404
+ ],
+ [
+ 64.03598762626709,
+ 21.732843446038856
+ ],
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ],
+ [
+ 64.03598762626709,
+ 21.732843446038856
+ ],
+ [
+ 63.80630225929973,
+ 21.732843446038856
+ ],
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ],
+ [
+ 63.80630225929973,
+ 21.732843446038856
+ ],
+ [
+ 63.69145957581605,
+ 21.538195711110404
+ ],
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ],
+ [
+ 63.69145957581605,
+ 21.538195711110404
+ ],
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ],
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ],
+ [
+ 63.80630225929973,
+ 21.343547976181952
+ ],
+ [
+ 64.03598762626709,
+ 21.343547976181952
+ ],
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ],
+ [
+ 64.03598762626709,
+ 21.343547976181952
+ ],
+ [
+ 64.15083030975076,
+ 21.538195711110404
+ ],
+ [
+ 63.92114494278341,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ],
+ [
+ 64.15083030975076,
+ 21.927491180967312
+ ],
+ [
+ 64.03598762626709,
+ 22.122138915895764
+ ],
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ],
+ [
+ 64.03598762626709,
+ 22.122138915895764
+ ],
+ [
+ 63.80630225929973,
+ 22.122138915895764
+ ],
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ],
+ [
+ 63.80630225929973,
+ 22.122138915895764
+ ],
+ [
+ 63.69145957581605,
+ 21.927491180967312
+ ],
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ],
+ [
+ 63.69145957581605,
+ 21.927491180967312
+ ],
+ [
+ 63.80630225929973,
+ 21.73284344603886
+ ],
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ],
+ [
+ 63.80630225929973,
+ 21.73284344603886
+ ],
+ [
+ 64.03598762626709,
+ 21.73284344603886
+ ],
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ],
+ [
+ 64.03598762626709,
+ 21.73284344603886
+ ],
+ [
+ 64.15083030975076,
+ 21.927491180967312
+ ],
+ [
+ 63.92114494278341,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ],
+ [
+ 64.15083030975076,
+ 22.31678665082422
+ ],
+ [
+ 64.03598762626709,
+ 22.511434385752672
+ ],
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ],
+ [
+ 64.03598762626709,
+ 22.511434385752672
+ ],
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ],
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ],
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ],
+ [
+ 63.69145957581605,
+ 22.31678665082422
+ ],
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ],
+ [
+ 63.69145957581605,
+ 22.31678665082422
+ ],
+ [
+ 63.80630225929973,
+ 22.122138915895768
+ ],
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ],
+ [
+ 63.80630225929973,
+ 22.122138915895768
+ ],
+ [
+ 64.03598762626709,
+ 22.122138915895768
+ ],
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ],
+ [
+ 64.03598762626709,
+ 22.122138915895768
+ ],
+ [
+ 64.15083030975076,
+ 22.31678665082422
+ ],
+ [
+ 63.92114494278341,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ],
+ [
+ 64.15083030975076,
+ 22.706082120681124
+ ],
+ [
+ 64.03598762626709,
+ 22.900729855609576
+ ],
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ],
+ [
+ 64.03598762626709,
+ 22.900729855609576
+ ],
+ [
+ 63.80630225929973,
+ 22.900729855609576
+ ],
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ],
+ [
+ 63.80630225929973,
+ 22.900729855609576
+ ],
+ [
+ 63.69145957581605,
+ 22.706082120681124
+ ],
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ],
+ [
+ 63.69145957581605,
+ 22.706082120681124
+ ],
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ],
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ],
+ [
+ 63.80630225929973,
+ 22.511434385752672
+ ],
+ [
+ 64.03598762626709,
+ 22.511434385752672
+ ],
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ],
+ [
+ 64.03598762626709,
+ 22.511434385752672
+ ],
+ [
+ 64.15083030975076,
+ 22.706082120681124
+ ],
+ [
+ 63.92114494278341,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ],
+ [
+ 64.15083030975076,
+ 23.095377590538032
+ ],
+ [
+ 64.03598762626709,
+ 23.290025325466484
+ ],
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ],
+ [
+ 64.03598762626709,
+ 23.290025325466484
+ ],
+ [
+ 63.80630225929973,
+ 23.290025325466484
+ ],
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ],
+ [
+ 63.80630225929973,
+ 23.290025325466484
+ ],
+ [
+ 63.69145957581605,
+ 23.095377590538032
+ ],
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ],
+ [
+ 63.69145957581605,
+ 23.095377590538032
+ ],
+ [
+ 63.80630225929973,
+ 22.90072985560958
+ ],
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ],
+ [
+ 63.80630225929973,
+ 22.90072985560958
+ ],
+ [
+ 64.03598762626709,
+ 22.90072985560958
+ ],
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ],
+ [
+ 64.03598762626709,
+ 22.90072985560958
+ ],
+ [
+ 64.15083030975076,
+ 23.095377590538032
+ ],
+ [
+ 63.92114494278341,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ],
+ [
+ 64.15083030975076,
+ 23.48467306039494
+ ],
+ [
+ 64.03598762626709,
+ 23.67932079532339
+ ],
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ],
+ [
+ 64.03598762626709,
+ 23.67932079532339
+ ],
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ],
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ],
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ],
+ [
+ 63.69145957581605,
+ 23.48467306039494
+ ],
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ],
+ [
+ 63.69145957581605,
+ 23.48467306039494
+ ],
+ [
+ 63.80630225929973,
+ 23.290025325466488
+ ],
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ],
+ [
+ 63.80630225929973,
+ 23.290025325466488
+ ],
+ [
+ 64.03598762626709,
+ 23.290025325466488
+ ],
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ],
+ [
+ 64.03598762626709,
+ 23.290025325466488
+ ],
+ [
+ 64.15083030975076,
+ 23.48467306039494
+ ],
+ [
+ 63.92114494278341,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ],
+ [
+ 64.15083030975076,
+ 23.873968530251844
+ ],
+ [
+ 64.03598762626709,
+ 24.068616265180296
+ ],
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ],
+ [
+ 64.03598762626709,
+ 24.068616265180296
+ ],
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ],
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ],
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ],
+ [
+ 63.69145957581605,
+ 23.873968530251844
+ ],
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ],
+ [
+ 63.69145957581605,
+ 23.873968530251844
+ ],
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ],
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ],
+ [
+ 63.80630225929973,
+ 23.67932079532339
+ ],
+ [
+ 64.03598762626709,
+ 23.67932079532339
+ ],
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ],
+ [
+ 64.03598762626709,
+ 23.67932079532339
+ ],
+ [
+ 64.15083030975076,
+ 23.873968530251844
+ ],
+ [
+ 63.92114494278341,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ],
+ [
+ 64.15083030975076,
+ 24.263264000108748
+ ],
+ [
+ 64.03598762626709,
+ 24.4579117350372
+ ],
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ],
+ [
+ 64.03598762626709,
+ 24.4579117350372
+ ],
+ [
+ 63.80630225929973,
+ 24.4579117350372
+ ],
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ],
+ [
+ 63.80630225929973,
+ 24.4579117350372
+ ],
+ [
+ 63.69145957581605,
+ 24.263264000108748
+ ],
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ],
+ [
+ 63.69145957581605,
+ 24.263264000108748
+ ],
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ],
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ],
+ [
+ 63.80630225929973,
+ 24.068616265180296
+ ],
+ [
+ 64.03598762626709,
+ 24.068616265180296
+ ],
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ],
+ [
+ 64.03598762626709,
+ 24.068616265180296
+ ],
+ [
+ 64.15083030975076,
+ 24.263264000108748
+ ],
+ [
+ 63.92114494278341,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ],
+ [
+ 64.15083030975076,
+ 24.652559469965656
+ ],
+ [
+ 64.03598762626709,
+ 24.847207204894108
+ ],
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ],
+ [
+ 64.03598762626709,
+ 24.847207204894108
+ ],
+ [
+ 63.80630225929973,
+ 24.847207204894108
+ ],
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ],
+ [
+ 63.80630225929973,
+ 24.847207204894108
+ ],
+ [
+ 63.69145957581605,
+ 24.652559469965656
+ ],
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ],
+ [
+ 63.69145957581605,
+ 24.652559469965656
+ ],
+ [
+ 63.80630225929973,
+ 24.457911735037204
+ ],
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ],
+ [
+ 63.80630225929973,
+ 24.457911735037204
+ ],
+ [
+ 64.03598762626709,
+ 24.457911735037204
+ ],
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ],
+ [
+ 64.03598762626709,
+ 24.457911735037204
+ ],
+ [
+ 64.15083030975076,
+ 24.652559469965656
+ ],
+ [
+ 63.92114494278341,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ],
+ [
+ 64.15083030975076,
+ 25.041854939822564
+ ],
+ [
+ 64.03598762626709,
+ 25.236502674751016
+ ],
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ],
+ [
+ 64.03598762626709,
+ 25.236502674751016
+ ],
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ],
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ],
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ],
+ [
+ 63.69145957581605,
+ 25.041854939822564
+ ],
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ],
+ [
+ 63.69145957581605,
+ 25.041854939822564
+ ],
+ [
+ 63.80630225929973,
+ 24.84720720489411
+ ],
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ],
+ [
+ 63.80630225929973,
+ 24.84720720489411
+ ],
+ [
+ 64.03598762626709,
+ 24.84720720489411
+ ],
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ],
+ [
+ 64.03598762626709,
+ 24.84720720489411
+ ],
+ [
+ 64.15083030975076,
+ 25.041854939822564
+ ],
+ [
+ 63.92114494278341,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ],
+ [
+ 64.15083030975076,
+ 25.431150409679468
+ ],
+ [
+ 64.03598762626709,
+ 25.62579814460792
+ ],
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ],
+ [
+ 64.03598762626709,
+ 25.62579814460792
+ ],
+ [
+ 63.80630225929973,
+ 25.62579814460792
+ ],
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ],
+ [
+ 63.80630225929973,
+ 25.62579814460792
+ ],
+ [
+ 63.69145957581605,
+ 25.431150409679468
+ ],
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ],
+ [
+ 63.69145957581605,
+ 25.431150409679468
+ ],
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ],
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ],
+ [
+ 63.80630225929973,
+ 25.236502674751016
+ ],
+ [
+ 64.03598762626709,
+ 25.236502674751016
+ ],
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ],
+ [
+ 64.03598762626709,
+ 25.236502674751016
+ ],
+ [
+ 64.15083030975076,
+ 25.431150409679468
+ ],
+ [
+ 63.92114494278341,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ],
+ [
+ 64.15083030975076,
+ 25.820445879536376
+ ],
+ [
+ 64.03598762626709,
+ 26.015093614464828
+ ],
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ],
+ [
+ 64.03598762626709,
+ 26.015093614464828
+ ],
+ [
+ 63.80630225929973,
+ 26.015093614464828
+ ],
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ],
+ [
+ 63.80630225929973,
+ 26.015093614464828
+ ],
+ [
+ 63.69145957581605,
+ 25.820445879536376
+ ],
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ],
+ [
+ 63.69145957581605,
+ 25.820445879536376
+ ],
+ [
+ 63.80630225929973,
+ 25.625798144607923
+ ],
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ],
+ [
+ 63.80630225929973,
+ 25.625798144607923
+ ],
+ [
+ 64.03598762626709,
+ 25.625798144607923
+ ],
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ],
+ [
+ 64.03598762626709,
+ 25.625798144607923
+ ],
+ [
+ 64.15083030975076,
+ 25.820445879536376
+ ],
+ [
+ 63.92114494278341,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ],
+ [
+ 64.15083030975076,
+ 26.209741349393283
+ ],
+ [
+ 64.03598762626709,
+ 26.404389084321735
+ ],
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ],
+ [
+ 64.03598762626709,
+ 26.404389084321735
+ ],
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ],
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ],
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ],
+ [
+ 63.69145957581605,
+ 26.209741349393283
+ ],
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ],
+ [
+ 63.69145957581605,
+ 26.209741349393283
+ ],
+ [
+ 63.80630225929973,
+ 26.01509361446483
+ ],
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ],
+ [
+ 63.80630225929973,
+ 26.01509361446483
+ ],
+ [
+ 64.03598762626709,
+ 26.01509361446483
+ ],
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ],
+ [
+ 64.03598762626709,
+ 26.01509361446483
+ ],
+ [
+ 64.15083030975076,
+ 26.209741349393283
+ ],
+ [
+ 63.92114494278341,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ],
+ [
+ 64.15083030975076,
+ 26.599036819250188
+ ],
+ [
+ 64.03598762626709,
+ 26.79368455417864
+ ],
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ],
+ [
+ 64.03598762626709,
+ 26.79368455417864
+ ],
+ [
+ 63.80630225929973,
+ 26.79368455417864
+ ],
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ],
+ [
+ 63.80630225929973,
+ 26.79368455417864
+ ],
+ [
+ 63.69145957581605,
+ 26.599036819250188
+ ],
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ],
+ [
+ 63.69145957581605,
+ 26.599036819250188
+ ],
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ],
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ],
+ [
+ 63.80630225929973,
+ 26.404389084321735
+ ],
+ [
+ 64.03598762626709,
+ 26.404389084321735
+ ],
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ],
+ [
+ 64.03598762626709,
+ 26.404389084321735
+ ],
+ [
+ 64.15083030975076,
+ 26.599036819250188
+ ],
+ [
+ 63.92114494278341,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ],
+ [
+ 64.15083030975076,
+ 26.988332289107095
+ ],
+ [
+ 64.03598762626709,
+ 27.182980024035547
+ ],
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ],
+ [
+ 64.03598762626709,
+ 27.182980024035547
+ ],
+ [
+ 63.80630225929973,
+ 27.182980024035547
+ ],
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ],
+ [
+ 63.80630225929973,
+ 27.182980024035547
+ ],
+ [
+ 63.69145957581605,
+ 26.988332289107095
+ ],
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ],
+ [
+ 63.69145957581605,
+ 26.988332289107095
+ ],
+ [
+ 63.80630225929973,
+ 26.793684554178643
+ ],
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ],
+ [
+ 63.80630225929973,
+ 26.793684554178643
+ ],
+ [
+ 64.03598762626709,
+ 26.793684554178643
+ ],
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ],
+ [
+ 64.03598762626709,
+ 26.793684554178643
+ ],
+ [
+ 64.15083030975076,
+ 26.988332289107095
+ ],
+ [
+ 63.92114494278341,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ],
+ [
+ 64.15083030975076,
+ 27.377627758964003
+ ],
+ [
+ 64.03598762626709,
+ 27.572275493892455
+ ],
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ],
+ [
+ 64.03598762626709,
+ 27.572275493892455
+ ],
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ],
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ],
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ],
+ [
+ 63.69145957581605,
+ 27.377627758964003
+ ],
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ],
+ [
+ 63.69145957581605,
+ 27.377627758964003
+ ],
+ [
+ 63.80630225929973,
+ 27.18298002403555
+ ],
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ],
+ [
+ 63.80630225929973,
+ 27.18298002403555
+ ],
+ [
+ 64.03598762626709,
+ 27.18298002403555
+ ],
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ],
+ [
+ 64.03598762626709,
+ 27.18298002403555
+ ],
+ [
+ 64.15083030975076,
+ 27.377627758964003
+ ],
+ [
+ 63.92114494278341,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ],
+ [
+ 64.15083030975076,
+ 27.766923228820907
+ ],
+ [
+ 64.03598762626709,
+ 27.96157096374936
+ ],
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ],
+ [
+ 64.03598762626709,
+ 27.96157096374936
+ ],
+ [
+ 63.80630225929973,
+ 27.96157096374936
+ ],
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ],
+ [
+ 63.80630225929973,
+ 27.96157096374936
+ ],
+ [
+ 63.69145957581605,
+ 27.766923228820907
+ ],
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ],
+ [
+ 63.69145957581605,
+ 27.766923228820907
+ ],
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ],
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ],
+ [
+ 63.80630225929973,
+ 27.572275493892455
+ ],
+ [
+ 64.03598762626709,
+ 27.572275493892455
+ ],
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ],
+ [
+ 64.03598762626709,
+ 27.572275493892455
+ ],
+ [
+ 64.15083030975076,
+ 27.766923228820907
+ ],
+ [
+ 63.92114494278341,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ],
+ [
+ 64.15083030975076,
+ 28.156218698677815
+ ],
+ [
+ 64.03598762626709,
+ 28.350866433606267
+ ],
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ],
+ [
+ 64.03598762626709,
+ 28.350866433606267
+ ],
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ],
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ],
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ],
+ [
+ 63.69145957581605,
+ 28.156218698677815
+ ],
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ],
+ [
+ 63.69145957581605,
+ 28.156218698677815
+ ],
+ [
+ 63.80630225929973,
+ 27.961570963749363
+ ],
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ],
+ [
+ 63.80630225929973,
+ 27.961570963749363
+ ],
+ [
+ 64.03598762626709,
+ 27.961570963749363
+ ],
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ],
+ [
+ 64.03598762626709,
+ 27.961570963749363
+ ],
+ [
+ 64.15083030975076,
+ 28.156218698677815
+ ],
+ [
+ 63.92114494278341,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ],
+ [
+ 64.15083030975076,
+ 28.54551416853472
+ ],
+ [
+ 64.03598762626709,
+ 28.74016190346317
+ ],
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ],
+ [
+ 64.03598762626709,
+ 28.74016190346317
+ ],
+ [
+ 63.80630225929973,
+ 28.74016190346317
+ ],
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ],
+ [
+ 63.80630225929973,
+ 28.74016190346317
+ ],
+ [
+ 63.69145957581605,
+ 28.54551416853472
+ ],
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ],
+ [
+ 63.69145957581605,
+ 28.54551416853472
+ ],
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ],
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ],
+ [
+ 63.80630225929973,
+ 28.350866433606267
+ ],
+ [
+ 64.03598762626709,
+ 28.350866433606267
+ ],
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ],
+ [
+ 64.03598762626709,
+ 28.350866433606267
+ ],
+ [
+ 64.15083030975076,
+ 28.54551416853472
+ ],
+ [
+ 63.92114494278341,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ],
+ [
+ 64.15083030975076,
+ 28.934809638391627
+ ],
+ [
+ 64.03598762626709,
+ 29.12945737332008
+ ],
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ],
+ [
+ 64.03598762626709,
+ 29.12945737332008
+ ],
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ],
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ],
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ],
+ [
+ 63.69145957581605,
+ 28.934809638391627
+ ],
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ],
+ [
+ 63.69145957581605,
+ 28.934809638391627
+ ],
+ [
+ 63.80630225929973,
+ 28.740161903463175
+ ],
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ],
+ [
+ 63.80630225929973,
+ 28.740161903463175
+ ],
+ [
+ 64.03598762626709,
+ 28.740161903463175
+ ],
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ],
+ [
+ 64.03598762626709,
+ 28.740161903463175
+ ],
+ [
+ 64.15083030975076,
+ 28.934809638391627
+ ],
+ [
+ 63.92114494278341,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ],
+ [
+ 64.15083030975076,
+ 29.32410510824853
+ ],
+ [
+ 64.03598762626709,
+ 29.518752843176983
+ ],
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ],
+ [
+ 64.03598762626709,
+ 29.518752843176983
+ ],
+ [
+ 63.80630225929973,
+ 29.518752843176983
+ ],
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ],
+ [
+ 63.80630225929973,
+ 29.518752843176983
+ ],
+ [
+ 63.69145957581605,
+ 29.32410510824853
+ ],
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ],
+ [
+ 63.69145957581605,
+ 29.32410510824853
+ ],
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ],
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ],
+ [
+ 63.80630225929973,
+ 29.12945737332008
+ ],
+ [
+ 64.03598762626709,
+ 29.12945737332008
+ ],
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ],
+ [
+ 64.03598762626709,
+ 29.12945737332008
+ ],
+ [
+ 64.15083030975076,
+ 29.32410510824853
+ ],
+ [
+ 63.92114494278341,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ],
+ [
+ 64.15083030975076,
+ 29.71340057810544
+ ],
+ [
+ 64.03598762626709,
+ 29.90804831303389
+ ],
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ],
+ [
+ 64.03598762626709,
+ 29.90804831303389
+ ],
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ],
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ],
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ],
+ [
+ 63.69145957581605,
+ 29.71340057810544
+ ],
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ],
+ [
+ 63.69145957581605,
+ 29.71340057810544
+ ],
+ [
+ 63.80630225929973,
+ 29.518752843176987
+ ],
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ],
+ [
+ 63.80630225929973,
+ 29.518752843176987
+ ],
+ [
+ 64.03598762626709,
+ 29.518752843176987
+ ],
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ],
+ [
+ 64.03598762626709,
+ 29.518752843176987
+ ],
+ [
+ 64.15083030975076,
+ 29.71340057810544
+ ],
+ [
+ 63.92114494278341,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ],
+ [
+ 64.15083030975076,
+ 30.102696047962343
+ ],
+ [
+ 64.03598762626709,
+ 30.297343782890795
+ ],
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ],
+ [
+ 64.03598762626709,
+ 30.297343782890795
+ ],
+ [
+ 63.80630225929973,
+ 30.297343782890795
+ ],
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ],
+ [
+ 63.80630225929973,
+ 30.297343782890795
+ ],
+ [
+ 63.69145957581605,
+ 30.102696047962343
+ ],
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ],
+ [
+ 63.69145957581605,
+ 30.102696047962343
+ ],
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ],
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ],
+ [
+ 63.80630225929973,
+ 29.90804831303389
+ ],
+ [
+ 64.03598762626709,
+ 29.90804831303389
+ ],
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ],
+ [
+ 64.03598762626709,
+ 29.90804831303389
+ ],
+ [
+ 64.15083030975076,
+ 30.102696047962343
+ ],
+ [
+ 63.92114494278341,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ],
+ [
+ 64.15083030975076,
+ 30.49199151781925
+ ],
+ [
+ 64.03598762626709,
+ 30.686639252747703
+ ],
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ],
+ [
+ 64.03598762626709,
+ 30.686639252747703
+ ],
+ [
+ 63.80630225929973,
+ 30.686639252747703
+ ],
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ],
+ [
+ 63.80630225929973,
+ 30.686639252747703
+ ],
+ [
+ 63.69145957581605,
+ 30.49199151781925
+ ],
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ],
+ [
+ 63.69145957581605,
+ 30.49199151781925
+ ],
+ [
+ 63.80630225929973,
+ 30.2973437828908
+ ],
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ],
+ [
+ 63.80630225929973,
+ 30.2973437828908
+ ],
+ [
+ 64.03598762626709,
+ 30.2973437828908
+ ],
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ],
+ [
+ 64.03598762626709,
+ 30.2973437828908
+ ],
+ [
+ 64.15083030975076,
+ 30.49199151781925
+ ],
+ [
+ 63.92114494278341,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ],
+ [
+ 64.15083030975076,
+ 30.88128698767616
+ ],
+ [
+ 64.03598762626709,
+ 31.07593472260461
+ ],
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ],
+ [
+ 64.03598762626709,
+ 31.07593472260461
+ ],
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ],
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ],
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ],
+ [
+ 63.69145957581605,
+ 30.88128698767616
+ ],
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ],
+ [
+ 63.69145957581605,
+ 30.88128698767616
+ ],
+ [
+ 63.80630225929973,
+ 30.686639252747707
+ ],
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ],
+ [
+ 63.80630225929973,
+ 30.686639252747707
+ ],
+ [
+ 64.03598762626709,
+ 30.686639252747707
+ ],
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ],
+ [
+ 64.03598762626709,
+ 30.686639252747707
+ ],
+ [
+ 64.15083030975076,
+ 30.88128698767616
+ ],
+ [
+ 63.92114494278341,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ],
+ [
+ 64.15083030975076,
+ 31.270582457533063
+ ],
+ [
+ 64.03598762626709,
+ 31.465230192461515
+ ],
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ],
+ [
+ 64.03598762626709,
+ 31.465230192461515
+ ],
+ [
+ 63.80630225929973,
+ 31.465230192461515
+ ],
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ],
+ [
+ 63.80630225929973,
+ 31.465230192461515
+ ],
+ [
+ 63.69145957581605,
+ 31.270582457533063
+ ],
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ],
+ [
+ 63.69145957581605,
+ 31.270582457533063
+ ],
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ],
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ],
+ [
+ 63.80630225929973,
+ 31.07593472260461
+ ],
+ [
+ 64.03598762626709,
+ 31.07593472260461
+ ],
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ],
+ [
+ 64.03598762626709,
+ 31.07593472260461
+ ],
+ [
+ 64.15083030975076,
+ 31.270582457533063
+ ],
+ [
+ 63.92114494278341,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ],
+ [
+ 64.15083030975076,
+ 31.65987792738997
+ ],
+ [
+ 64.03598762626709,
+ 31.854525662318423
+ ],
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ],
+ [
+ 64.03598762626709,
+ 31.854525662318423
+ ],
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ],
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ],
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ],
+ [
+ 63.69145957581605,
+ 31.65987792738997
+ ],
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ],
+ [
+ 63.69145957581605,
+ 31.65987792738997
+ ],
+ [
+ 63.80630225929973,
+ 31.46523019246152
+ ],
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ],
+ [
+ 63.80630225929973,
+ 31.46523019246152
+ ],
+ [
+ 64.03598762626709,
+ 31.46523019246152
+ ],
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ],
+ [
+ 64.03598762626709,
+ 31.46523019246152
+ ],
+ [
+ 64.15083030975076,
+ 31.65987792738997
+ ],
+ [
+ 63.92114494278341,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ],
+ [
+ 64.15083030975076,
+ 32.049173397246875
+ ],
+ [
+ 64.03598762626709,
+ 32.24382113217533
+ ],
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ],
+ [
+ 64.03598762626709,
+ 32.24382113217533
+ ],
+ [
+ 63.80630225929973,
+ 32.24382113217533
+ ],
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ],
+ [
+ 63.80630225929973,
+ 32.24382113217533
+ ],
+ [
+ 63.69145957581605,
+ 32.049173397246875
+ ],
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ],
+ [
+ 63.69145957581605,
+ 32.049173397246875
+ ],
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ],
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ],
+ [
+ 63.80630225929973,
+ 31.854525662318423
+ ],
+ [
+ 64.03598762626709,
+ 31.854525662318423
+ ],
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ],
+ [
+ 64.03598762626709,
+ 31.854525662318423
+ ],
+ [
+ 64.15083030975076,
+ 32.049173397246875
+ ],
+ [
+ 63.92114494278341,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ],
+ [
+ 64.15083030975076,
+ 32.438468867103786
+ ],
+ [
+ 64.03598762626709,
+ 32.63311660203224
+ ],
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ],
+ [
+ 64.03598762626709,
+ 32.63311660203224
+ ],
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ],
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ],
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ],
+ [
+ 63.69145957581605,
+ 32.438468867103786
+ ],
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ],
+ [
+ 63.69145957581605,
+ 32.438468867103786
+ ],
+ [
+ 63.80630225929973,
+ 32.243821132175334
+ ],
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ],
+ [
+ 63.80630225929973,
+ 32.243821132175334
+ ],
+ [
+ 64.03598762626709,
+ 32.243821132175334
+ ],
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ],
+ [
+ 64.03598762626709,
+ 32.243821132175334
+ ],
+ [
+ 64.15083030975076,
+ 32.438468867103786
+ ],
+ [
+ 63.92114494278341,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ],
+ [
+ 64.15083030975076,
+ 32.82776433696069
+ ],
+ [
+ 64.03598762626709,
+ 33.02241207188914
+ ],
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ],
+ [
+ 64.03598762626709,
+ 33.02241207188914
+ ],
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ],
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ],
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ],
+ [
+ 63.69145957581605,
+ 32.82776433696069
+ ],
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ],
+ [
+ 63.69145957581605,
+ 32.82776433696069
+ ],
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ],
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ],
+ [
+ 63.80630225929973,
+ 32.63311660203224
+ ],
+ [
+ 64.03598762626709,
+ 32.63311660203224
+ ],
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ],
+ [
+ 64.03598762626709,
+ 32.63311660203224
+ ],
+ [
+ 64.15083030975076,
+ 32.82776433696069
+ ],
+ [
+ 63.92114494278341,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ],
+ [
+ 64.15083030975076,
+ 33.217059806817595
+ ],
+ [
+ 64.03598762626709,
+ 33.41170754174605
+ ],
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ],
+ [
+ 64.03598762626709,
+ 33.41170754174605
+ ],
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ],
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ],
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ],
+ [
+ 63.69145957581605,
+ 33.217059806817595
+ ],
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ],
+ [
+ 63.69145957581605,
+ 33.217059806817595
+ ],
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ],
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ],
+ [
+ 63.80630225929973,
+ 33.02241207188914
+ ],
+ [
+ 64.03598762626709,
+ 33.02241207188914
+ ],
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ],
+ [
+ 64.03598762626709,
+ 33.02241207188914
+ ],
+ [
+ 64.15083030975076,
+ 33.217059806817595
+ ],
+ [
+ 63.92114494278341,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ],
+ [
+ 64.15083030975076,
+ 33.6063552766745
+ ],
+ [
+ 64.03598762626709,
+ 33.80100301160295
+ ],
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ],
+ [
+ 64.03598762626709,
+ 33.80100301160295
+ ],
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ],
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ],
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ],
+ [
+ 63.69145957581605,
+ 33.6063552766745
+ ],
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ],
+ [
+ 63.69145957581605,
+ 33.6063552766745
+ ],
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ],
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ],
+ [
+ 63.80630225929973,
+ 33.41170754174605
+ ],
+ [
+ 64.03598762626709,
+ 33.41170754174605
+ ],
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ],
+ [
+ 64.03598762626709,
+ 33.41170754174605
+ ],
+ [
+ 64.15083030975076,
+ 33.6063552766745
+ ],
+ [
+ 63.92114494278341,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ],
+ [
+ 64.15083030975076,
+ 33.9956507465314
+ ],
+ [
+ 64.03598762626709,
+ 34.190298481459855
+ ],
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ],
+ [
+ 64.03598762626709,
+ 34.190298481459855
+ ],
+ [
+ 63.80630225929973,
+ 34.190298481459855
+ ],
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ],
+ [
+ 63.80630225929973,
+ 34.190298481459855
+ ],
+ [
+ 63.69145957581605,
+ 33.9956507465314
+ ],
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ],
+ [
+ 63.69145957581605,
+ 33.9956507465314
+ ],
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ],
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ],
+ [
+ 63.80630225929973,
+ 33.80100301160295
+ ],
+ [
+ 64.03598762626709,
+ 33.80100301160295
+ ],
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ],
+ [
+ 64.03598762626709,
+ 33.80100301160295
+ ],
+ [
+ 64.15083030975076,
+ 33.9956507465314
+ ],
+ [
+ 63.92114494278341,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ],
+ [
+ 64.15083030975076,
+ 34.384946216388315
+ ],
+ [
+ 64.03598762626709,
+ 34.57959395131677
+ ],
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ],
+ [
+ 64.03598762626709,
+ 34.57959395131677
+ ],
+ [
+ 63.80630225929973,
+ 34.57959395131677
+ ],
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ],
+ [
+ 63.80630225929973,
+ 34.57959395131677
+ ],
+ [
+ 63.69145957581605,
+ 34.384946216388315
+ ],
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ],
+ [
+ 63.69145957581605,
+ 34.384946216388315
+ ],
+ [
+ 63.80630225929973,
+ 34.19029848145986
+ ],
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ],
+ [
+ 63.80630225929973,
+ 34.19029848145986
+ ],
+ [
+ 64.03598762626709,
+ 34.19029848145986
+ ],
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ],
+ [
+ 64.03598762626709,
+ 34.19029848145986
+ ],
+ [
+ 64.15083030975076,
+ 34.384946216388315
+ ],
+ [
+ 63.92114494278341,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ],
+ [
+ 64.15083030975076,
+ 34.774241686245226
+ ],
+ [
+ 64.03598762626709,
+ 34.96888942117368
+ ],
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ],
+ [
+ 64.03598762626709,
+ 34.96888942117368
+ ],
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ],
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ],
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ],
+ [
+ 63.69145957581605,
+ 34.774241686245226
+ ],
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ],
+ [
+ 63.69145957581605,
+ 34.774241686245226
+ ],
+ [
+ 63.80630225929973,
+ 34.579593951316774
+ ],
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ],
+ [
+ 63.80630225929973,
+ 34.579593951316774
+ ],
+ [
+ 64.03598762626709,
+ 34.579593951316774
+ ],
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ],
+ [
+ 64.03598762626709,
+ 34.579593951316774
+ ],
+ [
+ 64.15083030975076,
+ 34.774241686245226
+ ],
+ [
+ 63.92114494278341,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ],
+ [
+ 64.15083030975076,
+ 35.16353715610213
+ ],
+ [
+ 64.03598762626709,
+ 35.35818489103058
+ ],
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ],
+ [
+ 64.03598762626709,
+ 35.35818489103058
+ ],
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ],
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ],
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ],
+ [
+ 63.69145957581605,
+ 35.16353715610213
+ ],
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ],
+ [
+ 63.69145957581605,
+ 35.16353715610213
+ ],
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ],
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ],
+ [
+ 63.80630225929973,
+ 34.96888942117368
+ ],
+ [
+ 64.03598762626709,
+ 34.96888942117368
+ ],
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ],
+ [
+ 64.03598762626709,
+ 34.96888942117368
+ ],
+ [
+ 64.15083030975076,
+ 35.16353715610213
+ ],
+ [
+ 63.92114494278341,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ],
+ [
+ 64.15083030975076,
+ 35.552832625959034
+ ],
+ [
+ 64.03598762626709,
+ 35.74748036088749
+ ],
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ],
+ [
+ 64.03598762626709,
+ 35.74748036088749
+ ],
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ],
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ],
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ],
+ [
+ 63.69145957581605,
+ 35.552832625959034
+ ],
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ],
+ [
+ 63.69145957581605,
+ 35.552832625959034
+ ],
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ],
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ],
+ [
+ 63.80630225929973,
+ 35.35818489103058
+ ],
+ [
+ 64.03598762626709,
+ 35.35818489103058
+ ],
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ],
+ [
+ 64.03598762626709,
+ 35.35818489103058
+ ],
+ [
+ 64.15083030975076,
+ 35.552832625959034
+ ],
+ [
+ 63.92114494278341,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ],
+ [
+ 64.15083030975076,
+ 35.94212809581594
+ ],
+ [
+ 64.03598762626709,
+ 36.13677583074439
+ ],
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ],
+ [
+ 64.03598762626709,
+ 36.13677583074439
+ ],
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ],
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ],
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ],
+ [
+ 63.69145957581605,
+ 35.94212809581594
+ ],
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ],
+ [
+ 63.69145957581605,
+ 35.94212809581594
+ ],
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ],
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ],
+ [
+ 63.80630225929973,
+ 35.74748036088749
+ ],
+ [
+ 64.03598762626709,
+ 35.74748036088749
+ ],
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ],
+ [
+ 64.03598762626709,
+ 35.74748036088749
+ ],
+ [
+ 64.15083030975076,
+ 35.94212809581594
+ ],
+ [
+ 63.92114494278341,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ],
+ [
+ 64.15083030975076,
+ 36.33142356567284
+ ],
+ [
+ 64.03598762626709,
+ 36.526071300601295
+ ],
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ],
+ [
+ 64.03598762626709,
+ 36.526071300601295
+ ],
+ [
+ 63.80630225929973,
+ 36.526071300601295
+ ],
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ],
+ [
+ 63.80630225929973,
+ 36.526071300601295
+ ],
+ [
+ 63.69145957581605,
+ 36.33142356567284
+ ],
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ],
+ [
+ 63.69145957581605,
+ 36.33142356567284
+ ],
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ],
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ],
+ [
+ 63.80630225929973,
+ 36.13677583074439
+ ],
+ [
+ 64.03598762626709,
+ 36.13677583074439
+ ],
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ],
+ [
+ 64.03598762626709,
+ 36.13677583074439
+ ],
+ [
+ 64.15083030975076,
+ 36.33142356567284
+ ],
+ [
+ 63.92114494278341,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ],
+ [
+ 64.15083030975076,
+ 36.720719035529754
+ ],
+ [
+ 64.03598762626709,
+ 36.915366770458206
+ ],
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ],
+ [
+ 64.03598762626709,
+ 36.915366770458206
+ ],
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ],
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ],
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ],
+ [
+ 63.69145957581605,
+ 36.720719035529754
+ ],
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ],
+ [
+ 63.69145957581605,
+ 36.720719035529754
+ ],
+ [
+ 63.80630225929973,
+ 36.5260713006013
+ ],
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ],
+ [
+ 63.80630225929973,
+ 36.5260713006013
+ ],
+ [
+ 64.03598762626709,
+ 36.5260713006013
+ ],
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ],
+ [
+ 64.03598762626709,
+ 36.5260713006013
+ ],
+ [
+ 64.15083030975076,
+ 36.720719035529754
+ ],
+ [
+ 63.92114494278341,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ],
+ [
+ 64.15083030975076,
+ 37.11001450538666
+ ],
+ [
+ 64.03598762626709,
+ 37.30466224031511
+ ],
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ],
+ [
+ 64.03598762626709,
+ 37.30466224031511
+ ],
+ [
+ 63.80630225929973,
+ 37.30466224031511
+ ],
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ],
+ [
+ 63.80630225929973,
+ 37.30466224031511
+ ],
+ [
+ 63.69145957581605,
+ 37.11001450538666
+ ],
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ],
+ [
+ 63.69145957581605,
+ 37.11001450538666
+ ],
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ],
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ],
+ [
+ 63.80630225929973,
+ 36.915366770458206
+ ],
+ [
+ 64.03598762626709,
+ 36.915366770458206
+ ],
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ],
+ [
+ 64.03598762626709,
+ 36.915366770458206
+ ],
+ [
+ 64.15083030975076,
+ 37.11001450538666
+ ],
+ [
+ 63.92114494278341,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ],
+ [
+ 64.15083030975076,
+ 37.49930997524357
+ ],
+ [
+ 64.03598762626709,
+ 37.69395771017202
+ ],
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ],
+ [
+ 64.03598762626709,
+ 37.69395771017202
+ ],
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ],
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ],
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ],
+ [
+ 63.69145957581605,
+ 37.49930997524357
+ ],
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ],
+ [
+ 63.69145957581605,
+ 37.49930997524357
+ ],
+ [
+ 63.80630225929973,
+ 37.30466224031512
+ ],
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ],
+ [
+ 63.80630225929973,
+ 37.30466224031512
+ ],
+ [
+ 64.03598762626709,
+ 37.30466224031512
+ ],
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ],
+ [
+ 64.03598762626709,
+ 37.30466224031512
+ ],
+ [
+ 64.15083030975076,
+ 37.49930997524357
+ ],
+ [
+ 63.92114494278341,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ],
+ [
+ 64.15083030975076,
+ 37.888605445100474
+ ],
+ [
+ 64.03598762626709,
+ 38.083253180028926
+ ],
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ],
+ [
+ 64.03598762626709,
+ 38.083253180028926
+ ],
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ],
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ],
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ],
+ [
+ 63.69145957581605,
+ 37.888605445100474
+ ],
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ],
+ [
+ 63.69145957581605,
+ 37.888605445100474
+ ],
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ],
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ],
+ [
+ 63.80630225929973,
+ 37.69395771017202
+ ],
+ [
+ 64.03598762626709,
+ 37.69395771017202
+ ],
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ],
+ [
+ 64.03598762626709,
+ 37.69395771017202
+ ],
+ [
+ 64.15083030975076,
+ 37.888605445100474
+ ],
+ [
+ 63.92114494278341,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ],
+ [
+ 64.15083030975076,
+ 38.27790091495738
+ ],
+ [
+ 64.03598762626709,
+ 38.47254864988583
+ ],
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ],
+ [
+ 64.03598762626709,
+ 38.47254864988583
+ ],
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ],
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ],
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ],
+ [
+ 63.69145957581605,
+ 38.27790091495738
+ ],
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ],
+ [
+ 63.69145957581605,
+ 38.27790091495738
+ ],
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ],
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ],
+ [
+ 63.80630225929973,
+ 38.083253180028926
+ ],
+ [
+ 64.03598762626709,
+ 38.083253180028926
+ ],
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ],
+ [
+ 64.03598762626709,
+ 38.083253180028926
+ ],
+ [
+ 64.15083030975076,
+ 38.27790091495738
+ ],
+ [
+ 63.92114494278341,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ],
+ [
+ 64.15083030975076,
+ 38.66719638481428
+ ],
+ [
+ 64.03598762626709,
+ 38.861844119742734
+ ],
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ],
+ [
+ 64.03598762626709,
+ 38.861844119742734
+ ],
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ],
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ],
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ],
+ [
+ 63.69145957581605,
+ 38.66719638481428
+ ],
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ],
+ [
+ 63.69145957581605,
+ 38.66719638481428
+ ],
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ],
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ],
+ [
+ 63.80630225929973,
+ 38.47254864988583
+ ],
+ [
+ 64.03598762626709,
+ 38.47254864988583
+ ],
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ],
+ [
+ 64.03598762626709,
+ 38.47254864988583
+ ],
+ [
+ 64.15083030975076,
+ 38.66719638481428
+ ],
+ [
+ 63.92114494278341,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ],
+ [
+ 64.15083030975076,
+ 39.05649185467119
+ ],
+ [
+ 64.03598762626709,
+ 39.25113958959964
+ ],
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ],
+ [
+ 64.03598762626709,
+ 39.25113958959964
+ ],
+ [
+ 63.80630225929973,
+ 39.25113958959964
+ ],
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ],
+ [
+ 63.80630225929973,
+ 39.25113958959964
+ ],
+ [
+ 63.69145957581605,
+ 39.05649185467119
+ ],
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ],
+ [
+ 63.69145957581605,
+ 39.05649185467119
+ ],
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ],
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ],
+ [
+ 63.80630225929973,
+ 38.861844119742734
+ ],
+ [
+ 64.03598762626709,
+ 38.861844119742734
+ ],
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ],
+ [
+ 64.03598762626709,
+ 38.861844119742734
+ ],
+ [
+ 64.15083030975076,
+ 39.05649185467119
+ ],
+ [
+ 63.92114494278341,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ],
+ [
+ 64.15083030975076,
+ 39.4457873245281
+ ],
+ [
+ 64.03598762626709,
+ 39.64043505945655
+ ],
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ],
+ [
+ 64.03598762626709,
+ 39.64043505945655
+ ],
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ],
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ],
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ],
+ [
+ 63.69145957581605,
+ 39.4457873245281
+ ],
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ],
+ [
+ 63.69145957581605,
+ 39.4457873245281
+ ],
+ [
+ 63.80630225929973,
+ 39.251139589599646
+ ],
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ],
+ [
+ 63.80630225929973,
+ 39.251139589599646
+ ],
+ [
+ 64.03598762626709,
+ 39.251139589599646
+ ],
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ],
+ [
+ 64.03598762626709,
+ 39.251139589599646
+ ],
+ [
+ 64.15083030975076,
+ 39.4457873245281
+ ],
+ [
+ 63.92114494278341,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ],
+ [
+ 64.15083030975076,
+ 39.835082794385
+ ],
+ [
+ 64.03598762626709,
+ 40.029730529313454
+ ],
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ],
+ [
+ 64.03598762626709,
+ 40.029730529313454
+ ],
+ [
+ 63.80630225929973,
+ 40.029730529313454
+ ],
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ],
+ [
+ 63.80630225929973,
+ 40.029730529313454
+ ],
+ [
+ 63.69145957581605,
+ 39.835082794385
+ ],
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ],
+ [
+ 63.69145957581605,
+ 39.835082794385
+ ],
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ],
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ],
+ [
+ 63.80630225929973,
+ 39.64043505945655
+ ],
+ [
+ 64.03598762626709,
+ 39.64043505945655
+ ],
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ],
+ [
+ 64.03598762626709,
+ 39.64043505945655
+ ],
+ [
+ 64.15083030975076,
+ 39.835082794385
+ ],
+ [
+ 63.92114494278341,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ],
+ [
+ 64.15083030975076,
+ 40.22437826424191
+ ],
+ [
+ 64.03598762626709,
+ 40.419025999170366
+ ],
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ],
+ [
+ 64.03598762626709,
+ 40.419025999170366
+ ],
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ],
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ],
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ],
+ [
+ 63.69145957581605,
+ 40.22437826424191
+ ],
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ],
+ [
+ 63.69145957581605,
+ 40.22437826424191
+ ],
+ [
+ 63.80630225929973,
+ 40.02973052931346
+ ],
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ],
+ [
+ 63.80630225929973,
+ 40.02973052931346
+ ],
+ [
+ 64.03598762626709,
+ 40.02973052931346
+ ],
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ],
+ [
+ 64.03598762626709,
+ 40.02973052931346
+ ],
+ [
+ 64.15083030975076,
+ 40.22437826424191
+ ],
+ [
+ 63.92114494278341,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ],
+ [
+ 64.15083030975076,
+ 40.61367373409882
+ ],
+ [
+ 64.03598762626709,
+ 40.80832146902727
+ ],
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ],
+ [
+ 64.03598762626709,
+ 40.80832146902727
+ ],
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ],
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ],
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ],
+ [
+ 63.69145957581605,
+ 40.61367373409882
+ ],
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ],
+ [
+ 63.69145957581605,
+ 40.61367373409882
+ ],
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ],
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ],
+ [
+ 63.80630225929973,
+ 40.419025999170366
+ ],
+ [
+ 64.03598762626709,
+ 40.419025999170366
+ ],
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ],
+ [
+ 64.03598762626709,
+ 40.419025999170366
+ ],
+ [
+ 64.15083030975076,
+ 40.61367373409882
+ ],
+ [
+ 63.92114494278341,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ],
+ [
+ 64.15083030975076,
+ 41.00296920395572
+ ],
+ [
+ 64.03598762626709,
+ 41.197616938884174
+ ],
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ],
+ [
+ 64.03598762626709,
+ 41.197616938884174
+ ],
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ],
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ],
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ],
+ [
+ 63.69145957581605,
+ 41.00296920395572
+ ],
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ],
+ [
+ 63.69145957581605,
+ 41.00296920395572
+ ],
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ],
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ],
+ [
+ 63.80630225929973,
+ 40.80832146902727
+ ],
+ [
+ 64.03598762626709,
+ 40.80832146902727
+ ],
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ],
+ [
+ 64.03598762626709,
+ 40.80832146902727
+ ],
+ [
+ 64.15083030975076,
+ 41.00296920395572
+ ],
+ [
+ 63.92114494278341,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ],
+ [
+ 64.15083030975076,
+ 41.392264673812626
+ ],
+ [
+ 64.03598762626709,
+ 41.58691240874108
+ ],
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ],
+ [
+ 64.03598762626709,
+ 41.58691240874108
+ ],
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ],
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ],
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ],
+ [
+ 63.69145957581605,
+ 41.392264673812626
+ ],
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ],
+ [
+ 63.69145957581605,
+ 41.392264673812626
+ ],
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ],
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ],
+ [
+ 63.80630225929973,
+ 41.197616938884174
+ ],
+ [
+ 64.03598762626709,
+ 41.197616938884174
+ ],
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ],
+ [
+ 64.03598762626709,
+ 41.197616938884174
+ ],
+ [
+ 64.15083030975076,
+ 41.392264673812626
+ ],
+ [
+ 63.92114494278341,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ],
+ [
+ 64.15083030975076,
+ 41.78156014366953
+ ],
+ [
+ 64.03598762626709,
+ 41.97620787859798
+ ],
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ],
+ [
+ 64.03598762626709,
+ 41.97620787859798
+ ],
+ [
+ 63.80630225929973,
+ 41.97620787859798
+ ],
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ],
+ [
+ 63.80630225929973,
+ 41.97620787859798
+ ],
+ [
+ 63.69145957581605,
+ 41.78156014366953
+ ],
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ],
+ [
+ 63.69145957581605,
+ 41.78156014366953
+ ],
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ],
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ],
+ [
+ 63.80630225929973,
+ 41.58691240874108
+ ],
+ [
+ 64.03598762626709,
+ 41.58691240874108
+ ],
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ],
+ [
+ 64.03598762626709,
+ 41.58691240874108
+ ],
+ [
+ 64.15083030975076,
+ 41.78156014366953
+ ],
+ [
+ 63.92114494278341,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ],
+ [
+ 64.15083030975076,
+ 42.17085561352644
+ ],
+ [
+ 64.03598762626709,
+ 42.365503348454894
+ ],
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ],
+ [
+ 64.03598762626709,
+ 42.365503348454894
+ ],
+ [
+ 63.80630225929973,
+ 42.365503348454894
+ ],
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ],
+ [
+ 63.80630225929973,
+ 42.365503348454894
+ ],
+ [
+ 63.69145957581605,
+ 42.17085561352644
+ ],
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ],
+ [
+ 63.69145957581605,
+ 42.17085561352644
+ ],
+ [
+ 63.80630225929973,
+ 41.97620787859799
+ ],
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ],
+ [
+ 63.80630225929973,
+ 41.97620787859799
+ ],
+ [
+ 64.03598762626709,
+ 41.97620787859799
+ ],
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ],
+ [
+ 64.03598762626709,
+ 41.97620787859799
+ ],
+ [
+ 64.15083030975076,
+ 42.17085561352644
+ ],
+ [
+ 63.92114494278341,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ],
+ [
+ 64.15083030975076,
+ 42.56015108338335
+ ],
+ [
+ 64.03598762626709,
+ 42.754798818311805
+ ],
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ],
+ [
+ 64.03598762626709,
+ 42.754798818311805
+ ],
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ],
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ],
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ],
+ [
+ 63.69145957581605,
+ 42.56015108338335
+ ],
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ],
+ [
+ 63.69145957581605,
+ 42.56015108338335
+ ],
+ [
+ 63.80630225929973,
+ 42.3655033484549
+ ],
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ],
+ [
+ 63.80630225929973,
+ 42.3655033484549
+ ],
+ [
+ 64.03598762626709,
+ 42.3655033484549
+ ],
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ],
+ [
+ 64.03598762626709,
+ 42.3655033484549
+ ],
+ [
+ 64.15083030975076,
+ 42.56015108338335
+ ],
+ [
+ 63.92114494278341,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ],
+ [
+ 64.15083030975076,
+ 42.94944655324026
+ ],
+ [
+ 64.03598762626709,
+ 43.14409428816871
+ ],
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ],
+ [
+ 64.03598762626709,
+ 43.14409428816871
+ ],
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ],
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ],
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ],
+ [
+ 63.69145957581605,
+ 42.94944655324026
+ ],
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ],
+ [
+ 63.69145957581605,
+ 42.94944655324026
+ ],
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ],
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ],
+ [
+ 63.80630225929973,
+ 42.754798818311805
+ ],
+ [
+ 64.03598762626709,
+ 42.754798818311805
+ ],
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ],
+ [
+ 64.03598762626709,
+ 42.754798818311805
+ ],
+ [
+ 64.15083030975076,
+ 42.94944655324026
+ ],
+ [
+ 63.92114494278341,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ],
+ [
+ 64.15083030975076,
+ 43.33874202309716
+ ],
+ [
+ 64.03598762626709,
+ 43.53338975802561
+ ],
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ],
+ [
+ 64.03598762626709,
+ 43.53338975802561
+ ],
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ],
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ],
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ],
+ [
+ 63.69145957581605,
+ 43.33874202309716
+ ],
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ],
+ [
+ 63.69145957581605,
+ 43.33874202309716
+ ],
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ],
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ],
+ [
+ 63.80630225929973,
+ 43.14409428816871
+ ],
+ [
+ 64.03598762626709,
+ 43.14409428816871
+ ],
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ],
+ [
+ 64.03598762626709,
+ 43.14409428816871
+ ],
+ [
+ 64.15083030975076,
+ 43.33874202309716
+ ],
+ [
+ 63.92114494278341,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ],
+ [
+ 64.15083030975076,
+ 43.728037492954066
+ ],
+ [
+ 64.03598762626709,
+ 43.92268522788252
+ ],
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ],
+ [
+ 64.03598762626709,
+ 43.92268522788252
+ ],
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ],
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ],
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ],
+ [
+ 63.69145957581605,
+ 43.728037492954066
+ ],
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ],
+ [
+ 63.69145957581605,
+ 43.728037492954066
+ ],
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ],
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ],
+ [
+ 63.80630225929973,
+ 43.53338975802561
+ ],
+ [
+ 64.03598762626709,
+ 43.53338975802561
+ ],
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ],
+ [
+ 64.03598762626709,
+ 43.53338975802561
+ ],
+ [
+ 64.15083030975076,
+ 43.728037492954066
+ ],
+ [
+ 63.92114494278341,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ],
+ [
+ 64.15083030975076,
+ 44.11733296281097
+ ],
+ [
+ 64.03598762626709,
+ 44.31198069773942
+ ],
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ],
+ [
+ 64.03598762626709,
+ 44.31198069773942
+ ],
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ],
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ],
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ],
+ [
+ 63.69145957581605,
+ 44.11733296281097
+ ],
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ],
+ [
+ 63.69145957581605,
+ 44.11733296281097
+ ],
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ],
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ],
+ [
+ 63.80630225929973,
+ 43.92268522788252
+ ],
+ [
+ 64.03598762626709,
+ 43.92268522788252
+ ],
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ],
+ [
+ 64.03598762626709,
+ 43.92268522788252
+ ],
+ [
+ 64.15083030975076,
+ 44.11733296281097
+ ],
+ [
+ 63.92114494278341,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ],
+ [
+ 64.15083030975076,
+ 44.506628432667874
+ ],
+ [
+ 64.03598762626709,
+ 44.701276167596326
+ ],
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ],
+ [
+ 64.03598762626709,
+ 44.701276167596326
+ ],
+ [
+ 63.80630225929973,
+ 44.701276167596326
+ ],
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ],
+ [
+ 63.80630225929973,
+ 44.701276167596326
+ ],
+ [
+ 63.69145957581605,
+ 44.506628432667874
+ ],
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ],
+ [
+ 63.69145957581605,
+ 44.506628432667874
+ ],
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ],
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ],
+ [
+ 63.80630225929973,
+ 44.31198069773942
+ ],
+ [
+ 64.03598762626709,
+ 44.31198069773942
+ ],
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ],
+ [
+ 64.03598762626709,
+ 44.31198069773942
+ ],
+ [
+ 64.15083030975076,
+ 44.506628432667874
+ ],
+ [
+ 63.92114494278341,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ],
+ [
+ 64.15083030975076,
+ 44.89592390252479
+ ],
+ [
+ 64.03598762626709,
+ 45.090571637453245
+ ],
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ],
+ [
+ 64.03598762626709,
+ 45.090571637453245
+ ],
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ],
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ],
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ],
+ [
+ 63.69145957581605,
+ 44.89592390252479
+ ],
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ],
+ [
+ 63.69145957581605,
+ 44.89592390252479
+ ],
+ [
+ 63.80630225929973,
+ 44.70127616759634
+ ],
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ],
+ [
+ 63.80630225929973,
+ 44.70127616759634
+ ],
+ [
+ 64.03598762626709,
+ 44.70127616759634
+ ],
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ],
+ [
+ 64.03598762626709,
+ 44.70127616759634
+ ],
+ [
+ 64.15083030975076,
+ 44.89592390252479
+ ],
+ [
+ 63.92114494278341,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ],
+ [
+ 64.15083030975076,
+ 45.2852193723817
+ ],
+ [
+ 64.03598762626709,
+ 45.47986710731015
+ ],
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ],
+ [
+ 64.03598762626709,
+ 45.47986710731015
+ ],
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ],
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ],
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ],
+ [
+ 63.69145957581605,
+ 45.2852193723817
+ ],
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ],
+ [
+ 63.69145957581605,
+ 45.2852193723817
+ ],
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ],
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ],
+ [
+ 63.80630225929973,
+ 45.090571637453245
+ ],
+ [
+ 64.03598762626709,
+ 45.090571637453245
+ ],
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ],
+ [
+ 64.03598762626709,
+ 45.090571637453245
+ ],
+ [
+ 64.15083030975076,
+ 45.2852193723817
+ ],
+ [
+ 63.92114494278341,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ],
+ [
+ 64.15083030975076,
+ 45.6745148422386
+ ],
+ [
+ 64.03598762626709,
+ 45.86916257716705
+ ],
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ],
+ [
+ 64.03598762626709,
+ 45.86916257716705
+ ],
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ],
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ],
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ],
+ [
+ 63.69145957581605,
+ 45.6745148422386
+ ],
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ],
+ [
+ 63.69145957581605,
+ 45.6745148422386
+ ],
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ],
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ],
+ [
+ 63.80630225929973,
+ 45.47986710731015
+ ],
+ [
+ 64.03598762626709,
+ 45.47986710731015
+ ],
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ],
+ [
+ 64.03598762626709,
+ 45.47986710731015
+ ],
+ [
+ 64.15083030975076,
+ 45.6745148422386
+ ],
+ [
+ 63.92114494278341,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ],
+ [
+ 64.15083030975076,
+ 46.063810312095505
+ ],
+ [
+ 64.03598762626709,
+ 46.25845804702396
+ ],
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ],
+ [
+ 64.03598762626709,
+ 46.25845804702396
+ ],
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ],
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ],
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ],
+ [
+ 63.69145957581605,
+ 46.063810312095505
+ ],
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ],
+ [
+ 63.69145957581605,
+ 46.063810312095505
+ ],
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ],
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ],
+ [
+ 63.80630225929973,
+ 45.86916257716705
+ ],
+ [
+ 64.03598762626709,
+ 45.86916257716705
+ ],
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ],
+ [
+ 64.03598762626709,
+ 45.86916257716705
+ ],
+ [
+ 64.15083030975076,
+ 46.063810312095505
+ ],
+ [
+ 63.92114494278341,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ],
+ [
+ 64.15083030975076,
+ 46.45310578195241
+ ],
+ [
+ 64.03598762626709,
+ 46.64775351688086
+ ],
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ],
+ [
+ 64.03598762626709,
+ 46.64775351688086
+ ],
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ],
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ],
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ],
+ [
+ 63.69145957581605,
+ 46.45310578195241
+ ],
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ],
+ [
+ 63.69145957581605,
+ 46.45310578195241
+ ],
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ],
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ],
+ [
+ 63.80630225929973,
+ 46.25845804702396
+ ],
+ [
+ 64.03598762626709,
+ 46.25845804702396
+ ],
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ],
+ [
+ 64.03598762626709,
+ 46.25845804702396
+ ],
+ [
+ 64.15083030975076,
+ 46.45310578195241
+ ],
+ [
+ 63.92114494278341,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ],
+ [
+ 64.15083030975076,
+ 46.842401251809314
+ ],
+ [
+ 64.03598762626709,
+ 47.037048986737766
+ ],
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ],
+ [
+ 64.03598762626709,
+ 47.037048986737766
+ ],
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ],
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ],
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ],
+ [
+ 63.69145957581605,
+ 46.842401251809314
+ ],
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ],
+ [
+ 63.69145957581605,
+ 46.842401251809314
+ ],
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ],
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ],
+ [
+ 63.80630225929973,
+ 46.64775351688086
+ ],
+ [
+ 64.03598762626709,
+ 46.64775351688086
+ ],
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ],
+ [
+ 64.03598762626709,
+ 46.64775351688086
+ ],
+ [
+ 64.15083030975076,
+ 46.842401251809314
+ ],
+ [
+ 63.92114494278341,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ],
+ [
+ 64.15083030975076,
+ 47.23169672166622
+ ],
+ [
+ 64.03598762626709,
+ 47.42634445659467
+ ],
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ],
+ [
+ 64.03598762626709,
+ 47.42634445659467
+ ],
+ [
+ 63.80630225929973,
+ 47.42634445659467
+ ],
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ],
+ [
+ 63.80630225929973,
+ 47.42634445659467
+ ],
+ [
+ 63.69145957581605,
+ 47.23169672166622
+ ],
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ],
+ [
+ 63.69145957581605,
+ 47.23169672166622
+ ],
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ],
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ],
+ [
+ 63.80630225929973,
+ 47.037048986737766
+ ],
+ [
+ 64.03598762626709,
+ 47.037048986737766
+ ],
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ],
+ [
+ 64.03598762626709,
+ 47.037048986737766
+ ],
+ [
+ 64.15083030975076,
+ 47.23169672166622
+ ],
+ [
+ 63.92114494278341,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ],
+ [
+ 64.15083030975076,
+ 47.620992191523136
+ ],
+ [
+ 64.03598762626709,
+ 47.81563992645159
+ ],
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ],
+ [
+ 64.03598762626709,
+ 47.81563992645159
+ ],
+ [
+ 63.80630225929973,
+ 47.81563992645159
+ ],
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ],
+ [
+ 63.80630225929973,
+ 47.81563992645159
+ ],
+ [
+ 63.69145957581605,
+ 47.620992191523136
+ ],
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ],
+ [
+ 63.69145957581605,
+ 47.620992191523136
+ ],
+ [
+ 63.80630225929973,
+ 47.426344456594684
+ ],
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ],
+ [
+ 63.80630225929973,
+ 47.426344456594684
+ ],
+ [
+ 64.03598762626709,
+ 47.426344456594684
+ ],
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ],
+ [
+ 64.03598762626709,
+ 47.426344456594684
+ ],
+ [
+ 64.15083030975076,
+ 47.620992191523136
+ ],
+ [
+ 63.92114494278341,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ],
+ [
+ 64.4953583602018,
+ 12.0004566996162
+ ],
+ [
+ 64.38051567671812,
+ 12.195104434544653
+ ],
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ],
+ [
+ 64.38051567671812,
+ 12.195104434544653
+ ],
+ [
+ 64.15083030975077,
+ 12.195104434544653
+ ],
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ],
+ [
+ 64.15083030975077,
+ 12.195104434544653
+ ],
+ [
+ 64.03598762626709,
+ 12.0004566996162
+ ],
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ],
+ [
+ 64.03598762626709,
+ 12.0004566996162
+ ],
+ [
+ 64.15083030975077,
+ 11.805808964687746
+ ],
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ],
+ [
+ 64.15083030975077,
+ 11.805808964687746
+ ],
+ [
+ 64.38051567671812,
+ 11.805808964687746
+ ],
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ],
+ [
+ 64.38051567671812,
+ 11.805808964687746
+ ],
+ [
+ 64.4953583602018,
+ 12.0004566996162
+ ],
+ [
+ 64.26567299323445,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ],
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ],
+ [
+ 64.38051567671812,
+ 12.58439990440156
+ ],
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ],
+ [
+ 64.38051567671812,
+ 12.58439990440156
+ ],
+ [
+ 64.15083030975077,
+ 12.58439990440156
+ ],
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ],
+ [
+ 64.15083030975077,
+ 12.58439990440156
+ ],
+ [
+ 64.03598762626709,
+ 12.389752169473105
+ ],
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ],
+ [
+ 64.03598762626709,
+ 12.389752169473105
+ ],
+ [
+ 64.15083030975077,
+ 12.195104434544652
+ ],
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ],
+ [
+ 64.15083030975077,
+ 12.195104434544652
+ ],
+ [
+ 64.38051567671812,
+ 12.195104434544652
+ ],
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ],
+ [
+ 64.38051567671812,
+ 12.195104434544652
+ ],
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ],
+ [
+ 64.26567299323445,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ],
+ [
+ 64.4953583602018,
+ 12.779047639330013
+ ],
+ [
+ 64.38051567671812,
+ 12.973695374258467
+ ],
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ],
+ [
+ 64.38051567671812,
+ 12.973695374258467
+ ],
+ [
+ 64.15083030975077,
+ 12.973695374258467
+ ],
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ],
+ [
+ 64.15083030975077,
+ 12.973695374258467
+ ],
+ [
+ 64.03598762626709,
+ 12.779047639330013
+ ],
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ],
+ [
+ 64.03598762626709,
+ 12.779047639330013
+ ],
+ [
+ 64.15083030975077,
+ 12.58439990440156
+ ],
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ],
+ [
+ 64.15083030975077,
+ 12.58439990440156
+ ],
+ [
+ 64.38051567671812,
+ 12.58439990440156
+ ],
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ],
+ [
+ 64.38051567671812,
+ 12.58439990440156
+ ],
+ [
+ 64.4953583602018,
+ 12.779047639330013
+ ],
+ [
+ 64.26567299323445,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ],
+ [
+ 64.4953583602018,
+ 13.16834310918692
+ ],
+ [
+ 64.38051567671812,
+ 13.362990844115373
+ ],
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ],
+ [
+ 64.38051567671812,
+ 13.362990844115373
+ ],
+ [
+ 64.15083030975077,
+ 13.362990844115373
+ ],
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ],
+ [
+ 64.15083030975077,
+ 13.362990844115373
+ ],
+ [
+ 64.03598762626709,
+ 13.16834310918692
+ ],
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ],
+ [
+ 64.03598762626709,
+ 13.16834310918692
+ ],
+ [
+ 64.15083030975077,
+ 12.973695374258465
+ ],
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ],
+ [
+ 64.15083030975077,
+ 12.973695374258465
+ ],
+ [
+ 64.38051567671812,
+ 12.973695374258465
+ ],
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ],
+ [
+ 64.38051567671812,
+ 12.973695374258465
+ ],
+ [
+ 64.4953583602018,
+ 13.16834310918692
+ ],
+ [
+ 64.26567299323445,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ],
+ [
+ 64.4953583602018,
+ 13.557638579043825
+ ],
+ [
+ 64.38051567671812,
+ 13.752286313972279
+ ],
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ],
+ [
+ 64.38051567671812,
+ 13.752286313972279
+ ],
+ [
+ 64.15083030975077,
+ 13.752286313972279
+ ],
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ],
+ [
+ 64.15083030975077,
+ 13.752286313972279
+ ],
+ [
+ 64.03598762626709,
+ 13.557638579043825
+ ],
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ],
+ [
+ 64.03598762626709,
+ 13.557638579043825
+ ],
+ [
+ 64.15083030975077,
+ 13.362990844115371
+ ],
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ],
+ [
+ 64.15083030975077,
+ 13.362990844115371
+ ],
+ [
+ 64.38051567671812,
+ 13.362990844115371
+ ],
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ],
+ [
+ 64.38051567671812,
+ 13.362990844115371
+ ],
+ [
+ 64.4953583602018,
+ 13.557638579043825
+ ],
+ [
+ 64.26567299323445,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ],
+ [
+ 64.4953583602018,
+ 13.946934048900731
+ ],
+ [
+ 64.38051567671812,
+ 14.141581783829185
+ ],
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ],
+ [
+ 64.38051567671812,
+ 14.141581783829185
+ ],
+ [
+ 64.15083030975077,
+ 14.141581783829185
+ ],
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ],
+ [
+ 64.15083030975077,
+ 14.141581783829185
+ ],
+ [
+ 64.03598762626709,
+ 13.946934048900731
+ ],
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ],
+ [
+ 64.03598762626709,
+ 13.946934048900731
+ ],
+ [
+ 64.15083030975077,
+ 13.752286313972277
+ ],
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ],
+ [
+ 64.15083030975077,
+ 13.752286313972277
+ ],
+ [
+ 64.38051567671812,
+ 13.752286313972277
+ ],
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ],
+ [
+ 64.38051567671812,
+ 13.752286313972277
+ ],
+ [
+ 64.4953583602018,
+ 13.946934048900731
+ ],
+ [
+ 64.26567299323445,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ],
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ],
+ [
+ 64.38051567671812,
+ 14.530877253686091
+ ],
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ],
+ [
+ 64.38051567671812,
+ 14.530877253686091
+ ],
+ [
+ 64.15083030975077,
+ 14.530877253686091
+ ],
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ],
+ [
+ 64.15083030975077,
+ 14.530877253686091
+ ],
+ [
+ 64.03598762626709,
+ 14.336229518757637
+ ],
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ],
+ [
+ 64.03598762626709,
+ 14.336229518757637
+ ],
+ [
+ 64.15083030975077,
+ 14.141581783829183
+ ],
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ],
+ [
+ 64.15083030975077,
+ 14.141581783829183
+ ],
+ [
+ 64.38051567671812,
+ 14.141581783829183
+ ],
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ],
+ [
+ 64.38051567671812,
+ 14.141581783829183
+ ],
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ],
+ [
+ 64.26567299323445,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ],
+ [
+ 64.4953583602018,
+ 14.725524988614545
+ ],
+ [
+ 64.38051567671812,
+ 14.920172723542999
+ ],
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ],
+ [
+ 64.38051567671812,
+ 14.920172723542999
+ ],
+ [
+ 64.15083030975077,
+ 14.920172723542999
+ ],
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ],
+ [
+ 64.15083030975077,
+ 14.920172723542999
+ ],
+ [
+ 64.03598762626709,
+ 14.725524988614545
+ ],
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ],
+ [
+ 64.03598762626709,
+ 14.725524988614545
+ ],
+ [
+ 64.15083030975077,
+ 14.530877253686091
+ ],
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ],
+ [
+ 64.15083030975077,
+ 14.530877253686091
+ ],
+ [
+ 64.38051567671812,
+ 14.530877253686091
+ ],
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ],
+ [
+ 64.38051567671812,
+ 14.530877253686091
+ ],
+ [
+ 64.4953583602018,
+ 14.725524988614545
+ ],
+ [
+ 64.26567299323445,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ],
+ [
+ 64.4953583602018,
+ 15.114820458471451
+ ],
+ [
+ 64.38051567671812,
+ 15.309468193399905
+ ],
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ],
+ [
+ 64.38051567671812,
+ 15.309468193399905
+ ],
+ [
+ 64.15083030975077,
+ 15.309468193399905
+ ],
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ],
+ [
+ 64.15083030975077,
+ 15.309468193399905
+ ],
+ [
+ 64.03598762626709,
+ 15.114820458471451
+ ],
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ],
+ [
+ 64.03598762626709,
+ 15.114820458471451
+ ],
+ [
+ 64.15083030975077,
+ 14.920172723542997
+ ],
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ],
+ [
+ 64.15083030975077,
+ 14.920172723542997
+ ],
+ [
+ 64.38051567671812,
+ 14.920172723542997
+ ],
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ],
+ [
+ 64.38051567671812,
+ 14.920172723542997
+ ],
+ [
+ 64.4953583602018,
+ 15.114820458471451
+ ],
+ [
+ 64.26567299323445,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ],
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ],
+ [
+ 64.38051567671812,
+ 15.69876366325681
+ ],
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ],
+ [
+ 64.38051567671812,
+ 15.69876366325681
+ ],
+ [
+ 64.15083030975077,
+ 15.69876366325681
+ ],
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ],
+ [
+ 64.15083030975077,
+ 15.69876366325681
+ ],
+ [
+ 64.03598762626709,
+ 15.504115928328357
+ ],
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ],
+ [
+ 64.03598762626709,
+ 15.504115928328357
+ ],
+ [
+ 64.15083030975077,
+ 15.309468193399903
+ ],
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ],
+ [
+ 64.15083030975077,
+ 15.309468193399903
+ ],
+ [
+ 64.38051567671812,
+ 15.309468193399903
+ ],
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ],
+ [
+ 64.38051567671812,
+ 15.309468193399903
+ ],
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ],
+ [
+ 64.26567299323445,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ],
+ [
+ 64.4953583602018,
+ 15.893411398185265
+ ],
+ [
+ 64.38051567671812,
+ 16.088059133113717
+ ],
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ],
+ [
+ 64.38051567671812,
+ 16.088059133113717
+ ],
+ [
+ 64.15083030975077,
+ 16.088059133113717
+ ],
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ],
+ [
+ 64.15083030975077,
+ 16.088059133113717
+ ],
+ [
+ 64.03598762626709,
+ 15.893411398185265
+ ],
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ],
+ [
+ 64.03598762626709,
+ 15.893411398185265
+ ],
+ [
+ 64.15083030975077,
+ 15.69876366325681
+ ],
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ],
+ [
+ 64.15083030975077,
+ 15.69876366325681
+ ],
+ [
+ 64.38051567671812,
+ 15.69876366325681
+ ],
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ],
+ [
+ 64.38051567671812,
+ 15.69876366325681
+ ],
+ [
+ 64.4953583602018,
+ 15.893411398185265
+ ],
+ [
+ 64.26567299323445,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ],
+ [
+ 64.4953583602018,
+ 16.28270686804217
+ ],
+ [
+ 64.38051567671812,
+ 16.47735460297062
+ ],
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ],
+ [
+ 64.38051567671812,
+ 16.47735460297062
+ ],
+ [
+ 64.15083030975077,
+ 16.47735460297062
+ ],
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ],
+ [
+ 64.15083030975077,
+ 16.47735460297062
+ ],
+ [
+ 64.03598762626709,
+ 16.28270686804217
+ ],
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ],
+ [
+ 64.03598762626709,
+ 16.28270686804217
+ ],
+ [
+ 64.15083030975077,
+ 16.088059133113717
+ ],
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ],
+ [
+ 64.15083030975077,
+ 16.088059133113717
+ ],
+ [
+ 64.38051567671812,
+ 16.088059133113717
+ ],
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ],
+ [
+ 64.38051567671812,
+ 16.088059133113717
+ ],
+ [
+ 64.4953583602018,
+ 16.28270686804217
+ ],
+ [
+ 64.26567299323445,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ],
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ],
+ [
+ 64.38051567671812,
+ 16.86665007282753
+ ],
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ],
+ [
+ 64.38051567671812,
+ 16.86665007282753
+ ],
+ [
+ 64.15083030975077,
+ 16.86665007282753
+ ],
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ],
+ [
+ 64.15083030975077,
+ 16.86665007282753
+ ],
+ [
+ 64.03598762626709,
+ 16.672002337899077
+ ],
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ],
+ [
+ 64.03598762626709,
+ 16.672002337899077
+ ],
+ [
+ 64.15083030975077,
+ 16.477354602970625
+ ],
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ],
+ [
+ 64.15083030975077,
+ 16.477354602970625
+ ],
+ [
+ 64.38051567671812,
+ 16.477354602970625
+ ],
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ],
+ [
+ 64.38051567671812,
+ 16.477354602970625
+ ],
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ],
+ [
+ 64.26567299323445,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ],
+ [
+ 64.4953583602018,
+ 17.06129780775598
+ ],
+ [
+ 64.38051567671812,
+ 17.255945542684433
+ ],
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ],
+ [
+ 64.38051567671812,
+ 17.255945542684433
+ ],
+ [
+ 64.15083030975077,
+ 17.255945542684433
+ ],
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ],
+ [
+ 64.15083030975077,
+ 17.255945542684433
+ ],
+ [
+ 64.03598762626709,
+ 17.06129780775598
+ ],
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ],
+ [
+ 64.03598762626709,
+ 17.06129780775598
+ ],
+ [
+ 64.15083030975077,
+ 16.86665007282753
+ ],
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ],
+ [
+ 64.15083030975077,
+ 16.86665007282753
+ ],
+ [
+ 64.38051567671812,
+ 16.86665007282753
+ ],
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ],
+ [
+ 64.38051567671812,
+ 16.86665007282753
+ ],
+ [
+ 64.4953583602018,
+ 17.06129780775598
+ ],
+ [
+ 64.26567299323445,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ],
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ],
+ [
+ 64.38051567671812,
+ 17.64524101254134
+ ],
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ],
+ [
+ 64.38051567671812,
+ 17.64524101254134
+ ],
+ [
+ 64.15083030975077,
+ 17.64524101254134
+ ],
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ],
+ [
+ 64.15083030975077,
+ 17.64524101254134
+ ],
+ [
+ 64.03598762626709,
+ 17.45059327761289
+ ],
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ],
+ [
+ 64.03598762626709,
+ 17.45059327761289
+ ],
+ [
+ 64.15083030975077,
+ 17.255945542684437
+ ],
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ],
+ [
+ 64.15083030975077,
+ 17.255945542684437
+ ],
+ [
+ 64.38051567671812,
+ 17.255945542684437
+ ],
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ],
+ [
+ 64.38051567671812,
+ 17.255945542684437
+ ],
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ],
+ [
+ 64.26567299323445,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ],
+ [
+ 64.4953583602018,
+ 17.839888747469793
+ ],
+ [
+ 64.38051567671812,
+ 18.034536482398245
+ ],
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ],
+ [
+ 64.38051567671812,
+ 18.034536482398245
+ ],
+ [
+ 64.15083030975077,
+ 18.034536482398245
+ ],
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ],
+ [
+ 64.15083030975077,
+ 18.034536482398245
+ ],
+ [
+ 64.03598762626709,
+ 17.839888747469793
+ ],
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ],
+ [
+ 64.03598762626709,
+ 17.839888747469793
+ ],
+ [
+ 64.15083030975077,
+ 17.64524101254134
+ ],
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ],
+ [
+ 64.15083030975077,
+ 17.64524101254134
+ ],
+ [
+ 64.38051567671812,
+ 17.64524101254134
+ ],
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ],
+ [
+ 64.38051567671812,
+ 17.64524101254134
+ ],
+ [
+ 64.4953583602018,
+ 17.839888747469793
+ ],
+ [
+ 64.26567299323445,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ],
+ [
+ 64.4953583602018,
+ 18.2291842173267
+ ],
+ [
+ 64.38051567671812,
+ 18.423831952255153
+ ],
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ],
+ [
+ 64.38051567671812,
+ 18.423831952255153
+ ],
+ [
+ 64.15083030975077,
+ 18.423831952255153
+ ],
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ],
+ [
+ 64.15083030975077,
+ 18.423831952255153
+ ],
+ [
+ 64.03598762626709,
+ 18.2291842173267
+ ],
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ],
+ [
+ 64.03598762626709,
+ 18.2291842173267
+ ],
+ [
+ 64.15083030975077,
+ 18.03453648239825
+ ],
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ],
+ [
+ 64.15083030975077,
+ 18.03453648239825
+ ],
+ [
+ 64.38051567671812,
+ 18.03453648239825
+ ],
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ],
+ [
+ 64.38051567671812,
+ 18.03453648239825
+ ],
+ [
+ 64.4953583602018,
+ 18.2291842173267
+ ],
+ [
+ 64.26567299323445,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ],
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ],
+ [
+ 64.38051567671812,
+ 18.81312742211206
+ ],
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ],
+ [
+ 64.38051567671812,
+ 18.81312742211206
+ ],
+ [
+ 64.15083030975077,
+ 18.81312742211206
+ ],
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ],
+ [
+ 64.15083030975077,
+ 18.81312742211206
+ ],
+ [
+ 64.03598762626709,
+ 18.61847968718361
+ ],
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ],
+ [
+ 64.03598762626709,
+ 18.61847968718361
+ ],
+ [
+ 64.15083030975077,
+ 18.423831952255156
+ ],
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ],
+ [
+ 64.15083030975077,
+ 18.423831952255156
+ ],
+ [
+ 64.38051567671812,
+ 18.423831952255156
+ ],
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ],
+ [
+ 64.38051567671812,
+ 18.423831952255156
+ ],
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ],
+ [
+ 64.26567299323445,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ],
+ [
+ 64.4953583602018,
+ 19.007775157040513
+ ],
+ [
+ 64.38051567671812,
+ 19.202422891968965
+ ],
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ],
+ [
+ 64.38051567671812,
+ 19.202422891968965
+ ],
+ [
+ 64.15083030975077,
+ 19.202422891968965
+ ],
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ],
+ [
+ 64.15083030975077,
+ 19.202422891968965
+ ],
+ [
+ 64.03598762626709,
+ 19.007775157040513
+ ],
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ],
+ [
+ 64.03598762626709,
+ 19.007775157040513
+ ],
+ [
+ 64.15083030975077,
+ 18.81312742211206
+ ],
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ],
+ [
+ 64.15083030975077,
+ 18.81312742211206
+ ],
+ [
+ 64.38051567671812,
+ 18.81312742211206
+ ],
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ],
+ [
+ 64.38051567671812,
+ 18.81312742211206
+ ],
+ [
+ 64.4953583602018,
+ 19.007775157040513
+ ],
+ [
+ 64.26567299323445,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ],
+ [
+ 64.4953583602018,
+ 19.39707062689742
+ ],
+ [
+ 64.38051567671812,
+ 19.591718361825873
+ ],
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ],
+ [
+ 64.38051567671812,
+ 19.591718361825873
+ ],
+ [
+ 64.15083030975077,
+ 19.591718361825873
+ ],
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ],
+ [
+ 64.15083030975077,
+ 19.591718361825873
+ ],
+ [
+ 64.03598762626709,
+ 19.39707062689742
+ ],
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ],
+ [
+ 64.03598762626709,
+ 19.39707062689742
+ ],
+ [
+ 64.15083030975077,
+ 19.20242289196897
+ ],
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ],
+ [
+ 64.15083030975077,
+ 19.20242289196897
+ ],
+ [
+ 64.38051567671812,
+ 19.20242289196897
+ ],
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ],
+ [
+ 64.38051567671812,
+ 19.20242289196897
+ ],
+ [
+ 64.4953583602018,
+ 19.39707062689742
+ ],
+ [
+ 64.26567299323445,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ],
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ],
+ [
+ 64.38051567671812,
+ 19.98101383168278
+ ],
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ],
+ [
+ 64.38051567671812,
+ 19.98101383168278
+ ],
+ [
+ 64.15083030975077,
+ 19.98101383168278
+ ],
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ],
+ [
+ 64.15083030975077,
+ 19.98101383168278
+ ],
+ [
+ 64.03598762626709,
+ 19.78636609675433
+ ],
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ],
+ [
+ 64.03598762626709,
+ 19.78636609675433
+ ],
+ [
+ 64.15083030975077,
+ 19.591718361825876
+ ],
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ],
+ [
+ 64.15083030975077,
+ 19.591718361825876
+ ],
+ [
+ 64.38051567671812,
+ 19.591718361825876
+ ],
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ],
+ [
+ 64.38051567671812,
+ 19.591718361825876
+ ],
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ],
+ [
+ 64.26567299323445,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ],
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ],
+ [
+ 64.38051567671812,
+ 20.370309301539685
+ ],
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ],
+ [
+ 64.38051567671812,
+ 20.370309301539685
+ ],
+ [
+ 64.15083030975077,
+ 20.370309301539685
+ ],
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ],
+ [
+ 64.15083030975077,
+ 20.370309301539685
+ ],
+ [
+ 64.03598762626709,
+ 20.175661566611232
+ ],
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ],
+ [
+ 64.03598762626709,
+ 20.175661566611232
+ ],
+ [
+ 64.15083030975077,
+ 19.98101383168278
+ ],
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ],
+ [
+ 64.15083030975077,
+ 19.98101383168278
+ ],
+ [
+ 64.38051567671812,
+ 19.98101383168278
+ ],
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ],
+ [
+ 64.38051567671812,
+ 19.98101383168278
+ ],
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ],
+ [
+ 64.26567299323445,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ],
+ [
+ 64.4953583602018,
+ 20.564957036468137
+ ],
+ [
+ 64.38051567671812,
+ 20.75960477139659
+ ],
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ],
+ [
+ 64.38051567671812,
+ 20.75960477139659
+ ],
+ [
+ 64.15083030975077,
+ 20.75960477139659
+ ],
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ],
+ [
+ 64.15083030975077,
+ 20.75960477139659
+ ],
+ [
+ 64.03598762626709,
+ 20.564957036468137
+ ],
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ],
+ [
+ 64.03598762626709,
+ 20.564957036468137
+ ],
+ [
+ 64.15083030975077,
+ 20.370309301539685
+ ],
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ],
+ [
+ 64.15083030975077,
+ 20.370309301539685
+ ],
+ [
+ 64.38051567671812,
+ 20.370309301539685
+ ],
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ],
+ [
+ 64.38051567671812,
+ 20.370309301539685
+ ],
+ [
+ 64.4953583602018,
+ 20.564957036468137
+ ],
+ [
+ 64.26567299323445,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ],
+ [
+ 64.4953583602018,
+ 20.954252506325044
+ ],
+ [
+ 64.38051567671812,
+ 21.148900241253497
+ ],
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ],
+ [
+ 64.38051567671812,
+ 21.148900241253497
+ ],
+ [
+ 64.15083030975077,
+ 21.148900241253497
+ ],
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ],
+ [
+ 64.15083030975077,
+ 21.148900241253497
+ ],
+ [
+ 64.03598762626709,
+ 20.954252506325044
+ ],
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ],
+ [
+ 64.03598762626709,
+ 20.954252506325044
+ ],
+ [
+ 64.15083030975077,
+ 20.759604771396592
+ ],
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ],
+ [
+ 64.15083030975077,
+ 20.759604771396592
+ ],
+ [
+ 64.38051567671812,
+ 20.759604771396592
+ ],
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ],
+ [
+ 64.38051567671812,
+ 20.759604771396592
+ ],
+ [
+ 64.4953583602018,
+ 20.954252506325044
+ ],
+ [
+ 64.26567299323445,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ],
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ],
+ [
+ 64.38051567671812,
+ 21.538195711110404
+ ],
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ],
+ [
+ 64.38051567671812,
+ 21.538195711110404
+ ],
+ [
+ 64.15083030975077,
+ 21.538195711110404
+ ],
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ],
+ [
+ 64.15083030975077,
+ 21.538195711110404
+ ],
+ [
+ 64.03598762626709,
+ 21.343547976181952
+ ],
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ],
+ [
+ 64.03598762626709,
+ 21.343547976181952
+ ],
+ [
+ 64.15083030975077,
+ 21.1489002412535
+ ],
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ],
+ [
+ 64.15083030975077,
+ 21.1489002412535
+ ],
+ [
+ 64.38051567671812,
+ 21.1489002412535
+ ],
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ],
+ [
+ 64.38051567671812,
+ 21.1489002412535
+ ],
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ],
+ [
+ 64.26567299323445,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ],
+ [
+ 64.4953583602018,
+ 21.732843446038856
+ ],
+ [
+ 64.38051567671812,
+ 21.92749118096731
+ ],
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ],
+ [
+ 64.38051567671812,
+ 21.92749118096731
+ ],
+ [
+ 64.15083030975077,
+ 21.92749118096731
+ ],
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ],
+ [
+ 64.15083030975077,
+ 21.92749118096731
+ ],
+ [
+ 64.03598762626709,
+ 21.732843446038856
+ ],
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ],
+ [
+ 64.03598762626709,
+ 21.732843446038856
+ ],
+ [
+ 64.15083030975077,
+ 21.538195711110404
+ ],
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ],
+ [
+ 64.15083030975077,
+ 21.538195711110404
+ ],
+ [
+ 64.38051567671812,
+ 21.538195711110404
+ ],
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ],
+ [
+ 64.38051567671812,
+ 21.538195711110404
+ ],
+ [
+ 64.4953583602018,
+ 21.732843446038856
+ ],
+ [
+ 64.26567299323445,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ],
+ [
+ 64.4953583602018,
+ 22.122138915895764
+ ],
+ [
+ 64.38051567671812,
+ 22.316786650824216
+ ],
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ],
+ [
+ 64.38051567671812,
+ 22.316786650824216
+ ],
+ [
+ 64.15083030975077,
+ 22.316786650824216
+ ],
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ],
+ [
+ 64.15083030975077,
+ 22.316786650824216
+ ],
+ [
+ 64.03598762626709,
+ 22.122138915895764
+ ],
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ],
+ [
+ 64.03598762626709,
+ 22.122138915895764
+ ],
+ [
+ 64.15083030975077,
+ 21.927491180967312
+ ],
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ],
+ [
+ 64.15083030975077,
+ 21.927491180967312
+ ],
+ [
+ 64.38051567671812,
+ 21.927491180967312
+ ],
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ],
+ [
+ 64.38051567671812,
+ 21.927491180967312
+ ],
+ [
+ 64.4953583602018,
+ 22.122138915895764
+ ],
+ [
+ 64.26567299323445,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ],
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ],
+ [
+ 64.38051567671812,
+ 22.706082120681124
+ ],
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ],
+ [
+ 64.38051567671812,
+ 22.706082120681124
+ ],
+ [
+ 64.15083030975077,
+ 22.706082120681124
+ ],
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ],
+ [
+ 64.15083030975077,
+ 22.706082120681124
+ ],
+ [
+ 64.03598762626709,
+ 22.511434385752672
+ ],
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ],
+ [
+ 64.03598762626709,
+ 22.511434385752672
+ ],
+ [
+ 64.15083030975077,
+ 22.31678665082422
+ ],
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ],
+ [
+ 64.15083030975077,
+ 22.31678665082422
+ ],
+ [
+ 64.38051567671812,
+ 22.31678665082422
+ ],
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ],
+ [
+ 64.38051567671812,
+ 22.31678665082422
+ ],
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ],
+ [
+ 64.26567299323445,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ],
+ [
+ 64.4953583602018,
+ 22.900729855609576
+ ],
+ [
+ 64.38051567671812,
+ 23.09537759053803
+ ],
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ],
+ [
+ 64.38051567671812,
+ 23.09537759053803
+ ],
+ [
+ 64.15083030975077,
+ 23.09537759053803
+ ],
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ],
+ [
+ 64.15083030975077,
+ 23.09537759053803
+ ],
+ [
+ 64.03598762626709,
+ 22.900729855609576
+ ],
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ],
+ [
+ 64.03598762626709,
+ 22.900729855609576
+ ],
+ [
+ 64.15083030975077,
+ 22.706082120681124
+ ],
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ],
+ [
+ 64.15083030975077,
+ 22.706082120681124
+ ],
+ [
+ 64.38051567671812,
+ 22.706082120681124
+ ],
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ],
+ [
+ 64.38051567671812,
+ 22.706082120681124
+ ],
+ [
+ 64.4953583602018,
+ 22.900729855609576
+ ],
+ [
+ 64.26567299323445,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ],
+ [
+ 64.4953583602018,
+ 23.290025325466484
+ ],
+ [
+ 64.38051567671812,
+ 23.484673060394936
+ ],
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ],
+ [
+ 64.38051567671812,
+ 23.484673060394936
+ ],
+ [
+ 64.15083030975077,
+ 23.484673060394936
+ ],
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ],
+ [
+ 64.15083030975077,
+ 23.484673060394936
+ ],
+ [
+ 64.03598762626709,
+ 23.290025325466484
+ ],
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ],
+ [
+ 64.03598762626709,
+ 23.290025325466484
+ ],
+ [
+ 64.15083030975077,
+ 23.095377590538032
+ ],
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ],
+ [
+ 64.15083030975077,
+ 23.095377590538032
+ ],
+ [
+ 64.38051567671812,
+ 23.095377590538032
+ ],
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ],
+ [
+ 64.38051567671812,
+ 23.095377590538032
+ ],
+ [
+ 64.4953583602018,
+ 23.290025325466484
+ ],
+ [
+ 64.26567299323445,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ],
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ],
+ [
+ 64.38051567671812,
+ 23.873968530251844
+ ],
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ],
+ [
+ 64.38051567671812,
+ 23.873968530251844
+ ],
+ [
+ 64.15083030975077,
+ 23.873968530251844
+ ],
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ],
+ [
+ 64.15083030975077,
+ 23.873968530251844
+ ],
+ [
+ 64.03598762626709,
+ 23.67932079532339
+ ],
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ],
+ [
+ 64.03598762626709,
+ 23.67932079532339
+ ],
+ [
+ 64.15083030975077,
+ 23.48467306039494
+ ],
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ],
+ [
+ 64.15083030975077,
+ 23.48467306039494
+ ],
+ [
+ 64.38051567671812,
+ 23.48467306039494
+ ],
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ],
+ [
+ 64.38051567671812,
+ 23.48467306039494
+ ],
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ],
+ [
+ 64.26567299323445,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ],
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ],
+ [
+ 64.38051567671812,
+ 24.263264000108748
+ ],
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ],
+ [
+ 64.38051567671812,
+ 24.263264000108748
+ ],
+ [
+ 64.15083030975077,
+ 24.263264000108748
+ ],
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ],
+ [
+ 64.15083030975077,
+ 24.263264000108748
+ ],
+ [
+ 64.03598762626709,
+ 24.068616265180296
+ ],
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ],
+ [
+ 64.03598762626709,
+ 24.068616265180296
+ ],
+ [
+ 64.15083030975077,
+ 23.873968530251844
+ ],
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ],
+ [
+ 64.15083030975077,
+ 23.873968530251844
+ ],
+ [
+ 64.38051567671812,
+ 23.873968530251844
+ ],
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ],
+ [
+ 64.38051567671812,
+ 23.873968530251844
+ ],
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ],
+ [
+ 64.26567299323445,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ],
+ [
+ 64.4953583602018,
+ 24.4579117350372
+ ],
+ [
+ 64.38051567671812,
+ 24.652559469965652
+ ],
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ],
+ [
+ 64.38051567671812,
+ 24.652559469965652
+ ],
+ [
+ 64.15083030975077,
+ 24.652559469965652
+ ],
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ],
+ [
+ 64.15083030975077,
+ 24.652559469965652
+ ],
+ [
+ 64.03598762626709,
+ 24.4579117350372
+ ],
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ],
+ [
+ 64.03598762626709,
+ 24.4579117350372
+ ],
+ [
+ 64.15083030975077,
+ 24.263264000108748
+ ],
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ],
+ [
+ 64.15083030975077,
+ 24.263264000108748
+ ],
+ [
+ 64.38051567671812,
+ 24.263264000108748
+ ],
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ],
+ [
+ 64.38051567671812,
+ 24.263264000108748
+ ],
+ [
+ 64.4953583602018,
+ 24.4579117350372
+ ],
+ [
+ 64.26567299323445,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ],
+ [
+ 64.4953583602018,
+ 24.847207204894108
+ ],
+ [
+ 64.38051567671812,
+ 25.04185493982256
+ ],
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ],
+ [
+ 64.38051567671812,
+ 25.04185493982256
+ ],
+ [
+ 64.15083030975077,
+ 25.04185493982256
+ ],
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ],
+ [
+ 64.15083030975077,
+ 25.04185493982256
+ ],
+ [
+ 64.03598762626709,
+ 24.847207204894108
+ ],
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ],
+ [
+ 64.03598762626709,
+ 24.847207204894108
+ ],
+ [
+ 64.15083030975077,
+ 24.652559469965656
+ ],
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ],
+ [
+ 64.15083030975077,
+ 24.652559469965656
+ ],
+ [
+ 64.38051567671812,
+ 24.652559469965656
+ ],
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ],
+ [
+ 64.38051567671812,
+ 24.652559469965656
+ ],
+ [
+ 64.4953583602018,
+ 24.847207204894108
+ ],
+ [
+ 64.26567299323445,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ],
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ],
+ [
+ 64.38051567671812,
+ 25.431150409679468
+ ],
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ],
+ [
+ 64.38051567671812,
+ 25.431150409679468
+ ],
+ [
+ 64.15083030975077,
+ 25.431150409679468
+ ],
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ],
+ [
+ 64.15083030975077,
+ 25.431150409679468
+ ],
+ [
+ 64.03598762626709,
+ 25.236502674751016
+ ],
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ],
+ [
+ 64.03598762626709,
+ 25.236502674751016
+ ],
+ [
+ 64.15083030975077,
+ 25.041854939822564
+ ],
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ],
+ [
+ 64.15083030975077,
+ 25.041854939822564
+ ],
+ [
+ 64.38051567671812,
+ 25.041854939822564
+ ],
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ],
+ [
+ 64.38051567671812,
+ 25.041854939822564
+ ],
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ],
+ [
+ 64.26567299323445,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ],
+ [
+ 64.4953583602018,
+ 25.62579814460792
+ ],
+ [
+ 64.38051567671812,
+ 25.820445879536372
+ ],
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ],
+ [
+ 64.38051567671812,
+ 25.820445879536372
+ ],
+ [
+ 64.15083030975077,
+ 25.820445879536372
+ ],
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ],
+ [
+ 64.15083030975077,
+ 25.820445879536372
+ ],
+ [
+ 64.03598762626709,
+ 25.62579814460792
+ ],
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ],
+ [
+ 64.03598762626709,
+ 25.62579814460792
+ ],
+ [
+ 64.15083030975077,
+ 25.431150409679468
+ ],
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ],
+ [
+ 64.15083030975077,
+ 25.431150409679468
+ ],
+ [
+ 64.38051567671812,
+ 25.431150409679468
+ ],
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ],
+ [
+ 64.38051567671812,
+ 25.431150409679468
+ ],
+ [
+ 64.4953583602018,
+ 25.62579814460792
+ ],
+ [
+ 64.26567299323445,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ],
+ [
+ 64.4953583602018,
+ 26.015093614464828
+ ],
+ [
+ 64.38051567671812,
+ 26.20974134939328
+ ],
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ],
+ [
+ 64.38051567671812,
+ 26.20974134939328
+ ],
+ [
+ 64.15083030975077,
+ 26.20974134939328
+ ],
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ],
+ [
+ 64.15083030975077,
+ 26.20974134939328
+ ],
+ [
+ 64.03598762626709,
+ 26.015093614464828
+ ],
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ],
+ [
+ 64.03598762626709,
+ 26.015093614464828
+ ],
+ [
+ 64.15083030975077,
+ 25.820445879536376
+ ],
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ],
+ [
+ 64.15083030975077,
+ 25.820445879536376
+ ],
+ [
+ 64.38051567671812,
+ 25.820445879536376
+ ],
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ],
+ [
+ 64.38051567671812,
+ 25.820445879536376
+ ],
+ [
+ 64.4953583602018,
+ 26.015093614464828
+ ],
+ [
+ 64.26567299323445,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ],
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ],
+ [
+ 64.38051567671812,
+ 26.599036819250188
+ ],
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ],
+ [
+ 64.38051567671812,
+ 26.599036819250188
+ ],
+ [
+ 64.15083030975077,
+ 26.599036819250188
+ ],
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ],
+ [
+ 64.15083030975077,
+ 26.599036819250188
+ ],
+ [
+ 64.03598762626709,
+ 26.404389084321735
+ ],
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ],
+ [
+ 64.03598762626709,
+ 26.404389084321735
+ ],
+ [
+ 64.15083030975077,
+ 26.209741349393283
+ ],
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ],
+ [
+ 64.15083030975077,
+ 26.209741349393283
+ ],
+ [
+ 64.38051567671812,
+ 26.209741349393283
+ ],
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ],
+ [
+ 64.38051567671812,
+ 26.209741349393283
+ ],
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ],
+ [
+ 64.26567299323445,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ],
+ [
+ 64.4953583602018,
+ 26.79368455417864
+ ],
+ [
+ 64.38051567671812,
+ 26.988332289107092
+ ],
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ],
+ [
+ 64.38051567671812,
+ 26.988332289107092
+ ],
+ [
+ 64.15083030975077,
+ 26.988332289107092
+ ],
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ],
+ [
+ 64.15083030975077,
+ 26.988332289107092
+ ],
+ [
+ 64.03598762626709,
+ 26.79368455417864
+ ],
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ],
+ [
+ 64.03598762626709,
+ 26.79368455417864
+ ],
+ [
+ 64.15083030975077,
+ 26.599036819250188
+ ],
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ],
+ [
+ 64.15083030975077,
+ 26.599036819250188
+ ],
+ [
+ 64.38051567671812,
+ 26.599036819250188
+ ],
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ],
+ [
+ 64.38051567671812,
+ 26.599036819250188
+ ],
+ [
+ 64.4953583602018,
+ 26.79368455417864
+ ],
+ [
+ 64.26567299323445,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ],
+ [
+ 64.4953583602018,
+ 27.182980024035547
+ ],
+ [
+ 64.38051567671812,
+ 27.377627758964
+ ],
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ],
+ [
+ 64.38051567671812,
+ 27.377627758964
+ ],
+ [
+ 64.15083030975077,
+ 27.377627758964
+ ],
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ],
+ [
+ 64.15083030975077,
+ 27.377627758964
+ ],
+ [
+ 64.03598762626709,
+ 27.182980024035547
+ ],
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ],
+ [
+ 64.03598762626709,
+ 27.182980024035547
+ ],
+ [
+ 64.15083030975077,
+ 26.988332289107095
+ ],
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ],
+ [
+ 64.15083030975077,
+ 26.988332289107095
+ ],
+ [
+ 64.38051567671812,
+ 26.988332289107095
+ ],
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ],
+ [
+ 64.38051567671812,
+ 26.988332289107095
+ ],
+ [
+ 64.4953583602018,
+ 27.182980024035547
+ ],
+ [
+ 64.26567299323445,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ],
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ],
+ [
+ 64.38051567671812,
+ 27.766923228820907
+ ],
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ],
+ [
+ 64.38051567671812,
+ 27.766923228820907
+ ],
+ [
+ 64.15083030975077,
+ 27.766923228820907
+ ],
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ],
+ [
+ 64.15083030975077,
+ 27.766923228820907
+ ],
+ [
+ 64.03598762626709,
+ 27.572275493892455
+ ],
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ],
+ [
+ 64.03598762626709,
+ 27.572275493892455
+ ],
+ [
+ 64.15083030975077,
+ 27.377627758964003
+ ],
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ],
+ [
+ 64.15083030975077,
+ 27.377627758964003
+ ],
+ [
+ 64.38051567671812,
+ 27.377627758964003
+ ],
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ],
+ [
+ 64.38051567671812,
+ 27.377627758964003
+ ],
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ],
+ [
+ 64.26567299323445,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ],
+ [
+ 64.4953583602018,
+ 27.96157096374936
+ ],
+ [
+ 64.38051567671812,
+ 28.15621869867781
+ ],
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ],
+ [
+ 64.38051567671812,
+ 28.15621869867781
+ ],
+ [
+ 64.15083030975077,
+ 28.15621869867781
+ ],
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ],
+ [
+ 64.15083030975077,
+ 28.15621869867781
+ ],
+ [
+ 64.03598762626709,
+ 27.96157096374936
+ ],
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ],
+ [
+ 64.03598762626709,
+ 27.96157096374936
+ ],
+ [
+ 64.15083030975077,
+ 27.766923228820907
+ ],
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ],
+ [
+ 64.15083030975077,
+ 27.766923228820907
+ ],
+ [
+ 64.38051567671812,
+ 27.766923228820907
+ ],
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ],
+ [
+ 64.38051567671812,
+ 27.766923228820907
+ ],
+ [
+ 64.4953583602018,
+ 27.96157096374936
+ ],
+ [
+ 64.26567299323445,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ],
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ],
+ [
+ 64.38051567671812,
+ 28.54551416853472
+ ],
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ],
+ [
+ 64.38051567671812,
+ 28.54551416853472
+ ],
+ [
+ 64.15083030975077,
+ 28.54551416853472
+ ],
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ],
+ [
+ 64.15083030975077,
+ 28.54551416853472
+ ],
+ [
+ 64.03598762626709,
+ 28.350866433606267
+ ],
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ],
+ [
+ 64.03598762626709,
+ 28.350866433606267
+ ],
+ [
+ 64.15083030975077,
+ 28.156218698677815
+ ],
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ],
+ [
+ 64.15083030975077,
+ 28.156218698677815
+ ],
+ [
+ 64.38051567671812,
+ 28.156218698677815
+ ],
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ],
+ [
+ 64.38051567671812,
+ 28.156218698677815
+ ],
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ],
+ [
+ 64.26567299323445,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ],
+ [
+ 64.4953583602018,
+ 28.74016190346317
+ ],
+ [
+ 64.38051567671812,
+ 28.934809638391624
+ ],
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ],
+ [
+ 64.38051567671812,
+ 28.934809638391624
+ ],
+ [
+ 64.15083030975077,
+ 28.934809638391624
+ ],
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ],
+ [
+ 64.15083030975077,
+ 28.934809638391624
+ ],
+ [
+ 64.03598762626709,
+ 28.74016190346317
+ ],
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ],
+ [
+ 64.03598762626709,
+ 28.74016190346317
+ ],
+ [
+ 64.15083030975077,
+ 28.54551416853472
+ ],
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ],
+ [
+ 64.15083030975077,
+ 28.54551416853472
+ ],
+ [
+ 64.38051567671812,
+ 28.54551416853472
+ ],
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ],
+ [
+ 64.38051567671812,
+ 28.54551416853472
+ ],
+ [
+ 64.4953583602018,
+ 28.74016190346317
+ ],
+ [
+ 64.26567299323445,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ],
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ],
+ [
+ 64.38051567671812,
+ 29.32410510824853
+ ],
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ],
+ [
+ 64.38051567671812,
+ 29.32410510824853
+ ],
+ [
+ 64.15083030975077,
+ 29.32410510824853
+ ],
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ],
+ [
+ 64.15083030975077,
+ 29.32410510824853
+ ],
+ [
+ 64.03598762626709,
+ 29.12945737332008
+ ],
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ],
+ [
+ 64.03598762626709,
+ 29.12945737332008
+ ],
+ [
+ 64.15083030975077,
+ 28.934809638391627
+ ],
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ],
+ [
+ 64.15083030975077,
+ 28.934809638391627
+ ],
+ [
+ 64.38051567671812,
+ 28.934809638391627
+ ],
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ],
+ [
+ 64.38051567671812,
+ 28.934809638391627
+ ],
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ],
+ [
+ 64.26567299323445,
+ 29.12945737332008
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ],
+ [
+ 64.4953583602018,
+ 29.518752843176983
+ ],
+ [
+ 64.38051567671812,
+ 29.713400578105436
+ ],
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ],
+ [
+ 64.38051567671812,
+ 29.713400578105436
+ ],
+ [
+ 64.15083030975077,
+ 29.713400578105436
+ ],
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ],
+ [
+ 64.15083030975077,
+ 29.713400578105436
+ ],
+ [
+ 64.03598762626709,
+ 29.518752843176983
+ ],
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ],
+ [
+ 64.03598762626709,
+ 29.518752843176983
+ ],
+ [
+ 64.15083030975077,
+ 29.32410510824853
+ ],
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ],
+ [
+ 64.15083030975077,
+ 29.32410510824853
+ ],
+ [
+ 64.38051567671812,
+ 29.32410510824853
+ ],
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ],
+ [
+ 64.38051567671812,
+ 29.32410510824853
+ ],
+ [
+ 64.4953583602018,
+ 29.518752843176983
+ ],
+ [
+ 64.26567299323445,
+ 29.518752843176983
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ],
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ],
+ [
+ 64.38051567671812,
+ 30.102696047962343
+ ],
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ],
+ [
+ 64.38051567671812,
+ 30.102696047962343
+ ],
+ [
+ 64.15083030975077,
+ 30.102696047962343
+ ],
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ],
+ [
+ 64.15083030975077,
+ 30.102696047962343
+ ],
+ [
+ 64.03598762626709,
+ 29.90804831303389
+ ],
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ],
+ [
+ 64.03598762626709,
+ 29.90804831303389
+ ],
+ [
+ 64.15083030975077,
+ 29.71340057810544
+ ],
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ],
+ [
+ 64.15083030975077,
+ 29.71340057810544
+ ],
+ [
+ 64.38051567671812,
+ 29.71340057810544
+ ],
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ],
+ [
+ 64.38051567671812,
+ 29.71340057810544
+ ],
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ],
+ [
+ 64.26567299323445,
+ 29.90804831303389
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ],
+ [
+ 64.4953583602018,
+ 30.297343782890795
+ ],
+ [
+ 64.38051567671812,
+ 30.491991517819248
+ ],
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ],
+ [
+ 64.38051567671812,
+ 30.491991517819248
+ ],
+ [
+ 64.15083030975077,
+ 30.491991517819248
+ ],
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ],
+ [
+ 64.15083030975077,
+ 30.491991517819248
+ ],
+ [
+ 64.03598762626709,
+ 30.297343782890795
+ ],
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ],
+ [
+ 64.03598762626709,
+ 30.297343782890795
+ ],
+ [
+ 64.15083030975077,
+ 30.102696047962343
+ ],
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ],
+ [
+ 64.15083030975077,
+ 30.102696047962343
+ ],
+ [
+ 64.38051567671812,
+ 30.102696047962343
+ ],
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ],
+ [
+ 64.38051567671812,
+ 30.102696047962343
+ ],
+ [
+ 64.4953583602018,
+ 30.297343782890795
+ ],
+ [
+ 64.26567299323445,
+ 30.297343782890795
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ],
+ [
+ 64.4953583602018,
+ 30.686639252747703
+ ],
+ [
+ 64.38051567671812,
+ 30.881286987676155
+ ],
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ],
+ [
+ 64.38051567671812,
+ 30.881286987676155
+ ],
+ [
+ 64.15083030975077,
+ 30.881286987676155
+ ],
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ],
+ [
+ 64.15083030975077,
+ 30.881286987676155
+ ],
+ [
+ 64.03598762626709,
+ 30.686639252747703
+ ],
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ],
+ [
+ 64.03598762626709,
+ 30.686639252747703
+ ],
+ [
+ 64.15083030975077,
+ 30.49199151781925
+ ],
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ],
+ [
+ 64.15083030975077,
+ 30.49199151781925
+ ],
+ [
+ 64.38051567671812,
+ 30.49199151781925
+ ],
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ],
+ [
+ 64.38051567671812,
+ 30.49199151781925
+ ],
+ [
+ 64.4953583602018,
+ 30.686639252747703
+ ],
+ [
+ 64.26567299323445,
+ 30.686639252747703
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ],
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ],
+ [
+ 64.38051567671812,
+ 31.270582457533063
+ ],
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ],
+ [
+ 64.38051567671812,
+ 31.270582457533063
+ ],
+ [
+ 64.15083030975077,
+ 31.270582457533063
+ ],
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ],
+ [
+ 64.15083030975077,
+ 31.270582457533063
+ ],
+ [
+ 64.03598762626709,
+ 31.07593472260461
+ ],
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ],
+ [
+ 64.03598762626709,
+ 31.07593472260461
+ ],
+ [
+ 64.15083030975077,
+ 30.88128698767616
+ ],
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ],
+ [
+ 64.15083030975077,
+ 30.88128698767616
+ ],
+ [
+ 64.38051567671812,
+ 30.88128698767616
+ ],
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ],
+ [
+ 64.38051567671812,
+ 30.88128698767616
+ ],
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ],
+ [
+ 64.26567299323445,
+ 31.07593472260461
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ],
+ [
+ 64.4953583602018,
+ 31.465230192461515
+ ],
+ [
+ 64.38051567671812,
+ 31.659877927389967
+ ],
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ],
+ [
+ 64.38051567671812,
+ 31.659877927389967
+ ],
+ [
+ 64.15083030975077,
+ 31.659877927389967
+ ],
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ],
+ [
+ 64.15083030975077,
+ 31.659877927389967
+ ],
+ [
+ 64.03598762626709,
+ 31.465230192461515
+ ],
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ],
+ [
+ 64.03598762626709,
+ 31.465230192461515
+ ],
+ [
+ 64.15083030975077,
+ 31.270582457533063
+ ],
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ],
+ [
+ 64.15083030975077,
+ 31.270582457533063
+ ],
+ [
+ 64.38051567671812,
+ 31.270582457533063
+ ],
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ],
+ [
+ 64.38051567671812,
+ 31.270582457533063
+ ],
+ [
+ 64.4953583602018,
+ 31.465230192461515
+ ],
+ [
+ 64.26567299323445,
+ 31.465230192461515
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ],
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ],
+ [
+ 64.38051567671812,
+ 32.049173397246875
+ ],
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ],
+ [
+ 64.38051567671812,
+ 32.049173397246875
+ ],
+ [
+ 64.15083030975077,
+ 32.049173397246875
+ ],
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ],
+ [
+ 64.15083030975077,
+ 32.049173397246875
+ ],
+ [
+ 64.03598762626709,
+ 31.854525662318423
+ ],
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ],
+ [
+ 64.03598762626709,
+ 31.854525662318423
+ ],
+ [
+ 64.15083030975077,
+ 31.65987792738997
+ ],
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ],
+ [
+ 64.15083030975077,
+ 31.65987792738997
+ ],
+ [
+ 64.38051567671812,
+ 31.65987792738997
+ ],
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ],
+ [
+ 64.38051567671812,
+ 31.65987792738997
+ ],
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ],
+ [
+ 64.26567299323445,
+ 31.854525662318423
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ],
+ [
+ 64.4953583602018,
+ 32.24382113217533
+ ],
+ [
+ 64.38051567671812,
+ 32.43846886710378
+ ],
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ],
+ [
+ 64.38051567671812,
+ 32.43846886710378
+ ],
+ [
+ 64.15083030975077,
+ 32.43846886710378
+ ],
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ],
+ [
+ 64.15083030975077,
+ 32.43846886710378
+ ],
+ [
+ 64.03598762626709,
+ 32.24382113217533
+ ],
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ],
+ [
+ 64.03598762626709,
+ 32.24382113217533
+ ],
+ [
+ 64.15083030975077,
+ 32.049173397246875
+ ],
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ],
+ [
+ 64.15083030975077,
+ 32.049173397246875
+ ],
+ [
+ 64.38051567671812,
+ 32.049173397246875
+ ],
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ],
+ [
+ 64.38051567671812,
+ 32.049173397246875
+ ],
+ [
+ 64.4953583602018,
+ 32.24382113217533
+ ],
+ [
+ 64.26567299323445,
+ 32.24382113217533
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ],
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ],
+ [
+ 64.38051567671812,
+ 32.82776433696069
+ ],
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ],
+ [
+ 64.38051567671812,
+ 32.82776433696069
+ ],
+ [
+ 64.15083030975077,
+ 32.82776433696069
+ ],
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ],
+ [
+ 64.15083030975077,
+ 32.82776433696069
+ ],
+ [
+ 64.03598762626709,
+ 32.63311660203224
+ ],
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ],
+ [
+ 64.03598762626709,
+ 32.63311660203224
+ ],
+ [
+ 64.15083030975077,
+ 32.438468867103786
+ ],
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ],
+ [
+ 64.15083030975077,
+ 32.438468867103786
+ ],
+ [
+ 64.38051567671812,
+ 32.438468867103786
+ ],
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ],
+ [
+ 64.38051567671812,
+ 32.438468867103786
+ ],
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ],
+ [
+ 64.26567299323445,
+ 32.63311660203224
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ],
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ],
+ [
+ 64.38051567671812,
+ 33.217059806817595
+ ],
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ],
+ [
+ 64.38051567671812,
+ 33.217059806817595
+ ],
+ [
+ 64.15083030975077,
+ 33.217059806817595
+ ],
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ],
+ [
+ 64.15083030975077,
+ 33.217059806817595
+ ],
+ [
+ 64.03598762626709,
+ 33.02241207188914
+ ],
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ],
+ [
+ 64.03598762626709,
+ 33.02241207188914
+ ],
+ [
+ 64.15083030975077,
+ 32.82776433696069
+ ],
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ],
+ [
+ 64.15083030975077,
+ 32.82776433696069
+ ],
+ [
+ 64.38051567671812,
+ 32.82776433696069
+ ],
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ],
+ [
+ 64.38051567671812,
+ 32.82776433696069
+ ],
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ],
+ [
+ 64.26567299323445,
+ 33.02241207188914
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ],
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ],
+ [
+ 64.38051567671812,
+ 33.6063552766745
+ ],
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ],
+ [
+ 64.38051567671812,
+ 33.6063552766745
+ ],
+ [
+ 64.15083030975077,
+ 33.6063552766745
+ ],
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ],
+ [
+ 64.15083030975077,
+ 33.6063552766745
+ ],
+ [
+ 64.03598762626709,
+ 33.41170754174605
+ ],
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ],
+ [
+ 64.03598762626709,
+ 33.41170754174605
+ ],
+ [
+ 64.15083030975077,
+ 33.217059806817595
+ ],
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ],
+ [
+ 64.15083030975077,
+ 33.217059806817595
+ ],
+ [
+ 64.38051567671812,
+ 33.217059806817595
+ ],
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ],
+ [
+ 64.38051567671812,
+ 33.217059806817595
+ ],
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ],
+ [
+ 64.26567299323445,
+ 33.41170754174605
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ],
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ],
+ [
+ 64.38051567671812,
+ 33.9956507465314
+ ],
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ],
+ [
+ 64.38051567671812,
+ 33.9956507465314
+ ],
+ [
+ 64.15083030975077,
+ 33.9956507465314
+ ],
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ],
+ [
+ 64.15083030975077,
+ 33.9956507465314
+ ],
+ [
+ 64.03598762626709,
+ 33.80100301160295
+ ],
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ],
+ [
+ 64.03598762626709,
+ 33.80100301160295
+ ],
+ [
+ 64.15083030975077,
+ 33.6063552766745
+ ],
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ],
+ [
+ 64.15083030975077,
+ 33.6063552766745
+ ],
+ [
+ 64.38051567671812,
+ 33.6063552766745
+ ],
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ],
+ [
+ 64.38051567671812,
+ 33.6063552766745
+ ],
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ],
+ [
+ 64.26567299323445,
+ 33.80100301160295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ],
+ [
+ 64.4953583602018,
+ 34.190298481459855
+ ],
+ [
+ 64.38051567671812,
+ 34.38494621638831
+ ],
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ],
+ [
+ 64.38051567671812,
+ 34.38494621638831
+ ],
+ [
+ 64.15083030975077,
+ 34.38494621638831
+ ],
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ],
+ [
+ 64.15083030975077,
+ 34.38494621638831
+ ],
+ [
+ 64.03598762626709,
+ 34.190298481459855
+ ],
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ],
+ [
+ 64.03598762626709,
+ 34.190298481459855
+ ],
+ [
+ 64.15083030975077,
+ 33.9956507465314
+ ],
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ],
+ [
+ 64.15083030975077,
+ 33.9956507465314
+ ],
+ [
+ 64.38051567671812,
+ 33.9956507465314
+ ],
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ],
+ [
+ 64.38051567671812,
+ 33.9956507465314
+ ],
+ [
+ 64.4953583602018,
+ 34.190298481459855
+ ],
+ [
+ 64.26567299323445,
+ 34.190298481459855
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ],
+ [
+ 64.4953583602018,
+ 34.57959395131677
+ ],
+ [
+ 64.38051567671812,
+ 34.77424168624522
+ ],
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ],
+ [
+ 64.38051567671812,
+ 34.77424168624522
+ ],
+ [
+ 64.15083030975077,
+ 34.77424168624522
+ ],
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ],
+ [
+ 64.15083030975077,
+ 34.77424168624522
+ ],
+ [
+ 64.03598762626709,
+ 34.57959395131677
+ ],
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ],
+ [
+ 64.03598762626709,
+ 34.57959395131677
+ ],
+ [
+ 64.15083030975077,
+ 34.384946216388315
+ ],
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ],
+ [
+ 64.15083030975077,
+ 34.384946216388315
+ ],
+ [
+ 64.38051567671812,
+ 34.384946216388315
+ ],
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ],
+ [
+ 64.38051567671812,
+ 34.384946216388315
+ ],
+ [
+ 64.4953583602018,
+ 34.57959395131677
+ ],
+ [
+ 64.26567299323445,
+ 34.57959395131677
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ],
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ],
+ [
+ 64.38051567671812,
+ 35.16353715610213
+ ],
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ],
+ [
+ 64.38051567671812,
+ 35.16353715610213
+ ],
+ [
+ 64.15083030975077,
+ 35.16353715610213
+ ],
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ],
+ [
+ 64.15083030975077,
+ 35.16353715610213
+ ],
+ [
+ 64.03598762626709,
+ 34.96888942117368
+ ],
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ],
+ [
+ 64.03598762626709,
+ 34.96888942117368
+ ],
+ [
+ 64.15083030975077,
+ 34.774241686245226
+ ],
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ],
+ [
+ 64.15083030975077,
+ 34.774241686245226
+ ],
+ [
+ 64.38051567671812,
+ 34.774241686245226
+ ],
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ],
+ [
+ 64.38051567671812,
+ 34.774241686245226
+ ],
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ],
+ [
+ 64.26567299323445,
+ 34.96888942117368
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ],
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ],
+ [
+ 64.38051567671812,
+ 35.552832625959034
+ ],
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ],
+ [
+ 64.38051567671812,
+ 35.552832625959034
+ ],
+ [
+ 64.15083030975077,
+ 35.552832625959034
+ ],
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ],
+ [
+ 64.15083030975077,
+ 35.552832625959034
+ ],
+ [
+ 64.03598762626709,
+ 35.35818489103058
+ ],
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ],
+ [
+ 64.03598762626709,
+ 35.35818489103058
+ ],
+ [
+ 64.15083030975077,
+ 35.16353715610213
+ ],
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ],
+ [
+ 64.15083030975077,
+ 35.16353715610213
+ ],
+ [
+ 64.38051567671812,
+ 35.16353715610213
+ ],
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ],
+ [
+ 64.38051567671812,
+ 35.16353715610213
+ ],
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ],
+ [
+ 64.26567299323445,
+ 35.35818489103058
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ],
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ],
+ [
+ 64.38051567671812,
+ 35.94212809581594
+ ],
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ],
+ [
+ 64.38051567671812,
+ 35.94212809581594
+ ],
+ [
+ 64.15083030975077,
+ 35.94212809581594
+ ],
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ],
+ [
+ 64.15083030975077,
+ 35.94212809581594
+ ],
+ [
+ 64.03598762626709,
+ 35.74748036088749
+ ],
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ],
+ [
+ 64.03598762626709,
+ 35.74748036088749
+ ],
+ [
+ 64.15083030975077,
+ 35.552832625959034
+ ],
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ],
+ [
+ 64.15083030975077,
+ 35.552832625959034
+ ],
+ [
+ 64.38051567671812,
+ 35.552832625959034
+ ],
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ],
+ [
+ 64.38051567671812,
+ 35.552832625959034
+ ],
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ],
+ [
+ 64.26567299323445,
+ 35.74748036088749
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ],
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ],
+ [
+ 64.38051567671812,
+ 36.33142356567284
+ ],
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ],
+ [
+ 64.38051567671812,
+ 36.33142356567284
+ ],
+ [
+ 64.15083030975077,
+ 36.33142356567284
+ ],
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ],
+ [
+ 64.15083030975077,
+ 36.33142356567284
+ ],
+ [
+ 64.03598762626709,
+ 36.13677583074439
+ ],
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ],
+ [
+ 64.03598762626709,
+ 36.13677583074439
+ ],
+ [
+ 64.15083030975077,
+ 35.94212809581594
+ ],
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ],
+ [
+ 64.15083030975077,
+ 35.94212809581594
+ ],
+ [
+ 64.38051567671812,
+ 35.94212809581594
+ ],
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ],
+ [
+ 64.38051567671812,
+ 35.94212809581594
+ ],
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ],
+ [
+ 64.26567299323445,
+ 36.13677583074439
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ],
+ [
+ 64.4953583602018,
+ 36.526071300601295
+ ],
+ [
+ 64.38051567671812,
+ 36.72071903552975
+ ],
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ],
+ [
+ 64.38051567671812,
+ 36.72071903552975
+ ],
+ [
+ 64.15083030975077,
+ 36.72071903552975
+ ],
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ],
+ [
+ 64.15083030975077,
+ 36.72071903552975
+ ],
+ [
+ 64.03598762626709,
+ 36.526071300601295
+ ],
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ],
+ [
+ 64.03598762626709,
+ 36.526071300601295
+ ],
+ [
+ 64.15083030975077,
+ 36.33142356567284
+ ],
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ],
+ [
+ 64.15083030975077,
+ 36.33142356567284
+ ],
+ [
+ 64.38051567671812,
+ 36.33142356567284
+ ],
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ],
+ [
+ 64.38051567671812,
+ 36.33142356567284
+ ],
+ [
+ 64.4953583602018,
+ 36.526071300601295
+ ],
+ [
+ 64.26567299323445,
+ 36.526071300601295
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ],
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ],
+ [
+ 64.38051567671812,
+ 37.11001450538666
+ ],
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ],
+ [
+ 64.38051567671812,
+ 37.11001450538666
+ ],
+ [
+ 64.15083030975077,
+ 37.11001450538666
+ ],
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ],
+ [
+ 64.15083030975077,
+ 37.11001450538666
+ ],
+ [
+ 64.03598762626709,
+ 36.915366770458206
+ ],
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ],
+ [
+ 64.03598762626709,
+ 36.915366770458206
+ ],
+ [
+ 64.15083030975077,
+ 36.720719035529754
+ ],
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ],
+ [
+ 64.15083030975077,
+ 36.720719035529754
+ ],
+ [
+ 64.38051567671812,
+ 36.720719035529754
+ ],
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ],
+ [
+ 64.38051567671812,
+ 36.720719035529754
+ ],
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ],
+ [
+ 64.26567299323445,
+ 36.915366770458206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ],
+ [
+ 64.4953583602018,
+ 37.30466224031511
+ ],
+ [
+ 64.38051567671812,
+ 37.49930997524356
+ ],
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ],
+ [
+ 64.38051567671812,
+ 37.49930997524356
+ ],
+ [
+ 64.15083030975077,
+ 37.49930997524356
+ ],
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ],
+ [
+ 64.15083030975077,
+ 37.49930997524356
+ ],
+ [
+ 64.03598762626709,
+ 37.30466224031511
+ ],
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ],
+ [
+ 64.03598762626709,
+ 37.30466224031511
+ ],
+ [
+ 64.15083030975077,
+ 37.11001450538666
+ ],
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ],
+ [
+ 64.15083030975077,
+ 37.11001450538666
+ ],
+ [
+ 64.38051567671812,
+ 37.11001450538666
+ ],
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ],
+ [
+ 64.38051567671812,
+ 37.11001450538666
+ ],
+ [
+ 64.4953583602018,
+ 37.30466224031511
+ ],
+ [
+ 64.26567299323445,
+ 37.30466224031511
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ],
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ],
+ [
+ 64.38051567671812,
+ 37.888605445100474
+ ],
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ],
+ [
+ 64.38051567671812,
+ 37.888605445100474
+ ],
+ [
+ 64.15083030975077,
+ 37.888605445100474
+ ],
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ],
+ [
+ 64.15083030975077,
+ 37.888605445100474
+ ],
+ [
+ 64.03598762626709,
+ 37.69395771017202
+ ],
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ],
+ [
+ 64.03598762626709,
+ 37.69395771017202
+ ],
+ [
+ 64.15083030975077,
+ 37.49930997524357
+ ],
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ],
+ [
+ 64.15083030975077,
+ 37.49930997524357
+ ],
+ [
+ 64.38051567671812,
+ 37.49930997524357
+ ],
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ],
+ [
+ 64.38051567671812,
+ 37.49930997524357
+ ],
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ],
+ [
+ 64.26567299323445,
+ 37.69395771017202
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ],
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ],
+ [
+ 64.38051567671812,
+ 38.27790091495738
+ ],
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ],
+ [
+ 64.38051567671812,
+ 38.27790091495738
+ ],
+ [
+ 64.15083030975077,
+ 38.27790091495738
+ ],
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ],
+ [
+ 64.15083030975077,
+ 38.27790091495738
+ ],
+ [
+ 64.03598762626709,
+ 38.083253180028926
+ ],
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ],
+ [
+ 64.03598762626709,
+ 38.083253180028926
+ ],
+ [
+ 64.15083030975077,
+ 37.888605445100474
+ ],
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ],
+ [
+ 64.15083030975077,
+ 37.888605445100474
+ ],
+ [
+ 64.38051567671812,
+ 37.888605445100474
+ ],
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ],
+ [
+ 64.38051567671812,
+ 37.888605445100474
+ ],
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ],
+ [
+ 64.26567299323445,
+ 38.083253180028926
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ],
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ],
+ [
+ 64.38051567671812,
+ 38.66719638481428
+ ],
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ],
+ [
+ 64.38051567671812,
+ 38.66719638481428
+ ],
+ [
+ 64.15083030975077,
+ 38.66719638481428
+ ],
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ],
+ [
+ 64.15083030975077,
+ 38.66719638481428
+ ],
+ [
+ 64.03598762626709,
+ 38.47254864988583
+ ],
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ],
+ [
+ 64.03598762626709,
+ 38.47254864988583
+ ],
+ [
+ 64.15083030975077,
+ 38.27790091495738
+ ],
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ],
+ [
+ 64.15083030975077,
+ 38.27790091495738
+ ],
+ [
+ 64.38051567671812,
+ 38.27790091495738
+ ],
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ],
+ [
+ 64.38051567671812,
+ 38.27790091495738
+ ],
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ],
+ [
+ 64.26567299323445,
+ 38.47254864988583
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ],
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ],
+ [
+ 64.38051567671812,
+ 39.05649185467119
+ ],
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ],
+ [
+ 64.38051567671812,
+ 39.05649185467119
+ ],
+ [
+ 64.15083030975077,
+ 39.05649185467119
+ ],
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ],
+ [
+ 64.15083030975077,
+ 39.05649185467119
+ ],
+ [
+ 64.03598762626709,
+ 38.861844119742734
+ ],
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ],
+ [
+ 64.03598762626709,
+ 38.861844119742734
+ ],
+ [
+ 64.15083030975077,
+ 38.66719638481428
+ ],
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ],
+ [
+ 64.15083030975077,
+ 38.66719638481428
+ ],
+ [
+ 64.38051567671812,
+ 38.66719638481428
+ ],
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ],
+ [
+ 64.38051567671812,
+ 38.66719638481428
+ ],
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ],
+ [
+ 64.26567299323445,
+ 38.861844119742734
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ],
+ [
+ 64.4953583602018,
+ 39.25113958959964
+ ],
+ [
+ 64.38051567671812,
+ 39.44578732452809
+ ],
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ],
+ [
+ 64.38051567671812,
+ 39.44578732452809
+ ],
+ [
+ 64.15083030975077,
+ 39.44578732452809
+ ],
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ],
+ [
+ 64.15083030975077,
+ 39.44578732452809
+ ],
+ [
+ 64.03598762626709,
+ 39.25113958959964
+ ],
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ],
+ [
+ 64.03598762626709,
+ 39.25113958959964
+ ],
+ [
+ 64.15083030975077,
+ 39.05649185467119
+ ],
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ],
+ [
+ 64.15083030975077,
+ 39.05649185467119
+ ],
+ [
+ 64.38051567671812,
+ 39.05649185467119
+ ],
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ],
+ [
+ 64.38051567671812,
+ 39.05649185467119
+ ],
+ [
+ 64.4953583602018,
+ 39.25113958959964
+ ],
+ [
+ 64.26567299323445,
+ 39.25113958959964
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ],
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ],
+ [
+ 64.38051567671812,
+ 39.835082794385
+ ],
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ],
+ [
+ 64.38051567671812,
+ 39.835082794385
+ ],
+ [
+ 64.15083030975077,
+ 39.835082794385
+ ],
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ],
+ [
+ 64.15083030975077,
+ 39.835082794385
+ ],
+ [
+ 64.03598762626709,
+ 39.64043505945655
+ ],
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ],
+ [
+ 64.03598762626709,
+ 39.64043505945655
+ ],
+ [
+ 64.15083030975077,
+ 39.4457873245281
+ ],
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ],
+ [
+ 64.15083030975077,
+ 39.4457873245281
+ ],
+ [
+ 64.38051567671812,
+ 39.4457873245281
+ ],
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ],
+ [
+ 64.38051567671812,
+ 39.4457873245281
+ ],
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ],
+ [
+ 64.26567299323445,
+ 39.64043505945655
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ],
+ [
+ 64.4953583602018,
+ 40.029730529313454
+ ],
+ [
+ 64.38051567671812,
+ 40.224378264241906
+ ],
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ],
+ [
+ 64.38051567671812,
+ 40.224378264241906
+ ],
+ [
+ 64.15083030975077,
+ 40.224378264241906
+ ],
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ],
+ [
+ 64.15083030975077,
+ 40.224378264241906
+ ],
+ [
+ 64.03598762626709,
+ 40.029730529313454
+ ],
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ],
+ [
+ 64.03598762626709,
+ 40.029730529313454
+ ],
+ [
+ 64.15083030975077,
+ 39.835082794385
+ ],
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ],
+ [
+ 64.15083030975077,
+ 39.835082794385
+ ],
+ [
+ 64.38051567671812,
+ 39.835082794385
+ ],
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ],
+ [
+ 64.38051567671812,
+ 39.835082794385
+ ],
+ [
+ 64.4953583602018,
+ 40.029730529313454
+ ],
+ [
+ 64.26567299323445,
+ 40.029730529313454
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ],
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ],
+ [
+ 64.38051567671812,
+ 40.61367373409882
+ ],
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ],
+ [
+ 64.38051567671812,
+ 40.61367373409882
+ ],
+ [
+ 64.15083030975077,
+ 40.61367373409882
+ ],
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ],
+ [
+ 64.15083030975077,
+ 40.61367373409882
+ ],
+ [
+ 64.03598762626709,
+ 40.419025999170366
+ ],
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ],
+ [
+ 64.03598762626709,
+ 40.419025999170366
+ ],
+ [
+ 64.15083030975077,
+ 40.22437826424191
+ ],
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ],
+ [
+ 64.15083030975077,
+ 40.22437826424191
+ ],
+ [
+ 64.38051567671812,
+ 40.22437826424191
+ ],
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ],
+ [
+ 64.38051567671812,
+ 40.22437826424191
+ ],
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ],
+ [
+ 64.26567299323445,
+ 40.419025999170366
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ],
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ],
+ [
+ 64.38051567671812,
+ 41.00296920395572
+ ],
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ],
+ [
+ 64.38051567671812,
+ 41.00296920395572
+ ],
+ [
+ 64.15083030975077,
+ 41.00296920395572
+ ],
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ],
+ [
+ 64.15083030975077,
+ 41.00296920395572
+ ],
+ [
+ 64.03598762626709,
+ 40.80832146902727
+ ],
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ],
+ [
+ 64.03598762626709,
+ 40.80832146902727
+ ],
+ [
+ 64.15083030975077,
+ 40.61367373409882
+ ],
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ],
+ [
+ 64.15083030975077,
+ 40.61367373409882
+ ],
+ [
+ 64.38051567671812,
+ 40.61367373409882
+ ],
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ],
+ [
+ 64.38051567671812,
+ 40.61367373409882
+ ],
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ],
+ [
+ 64.26567299323445,
+ 40.80832146902727
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ],
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ],
+ [
+ 64.38051567671812,
+ 41.392264673812626
+ ],
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ],
+ [
+ 64.38051567671812,
+ 41.392264673812626
+ ],
+ [
+ 64.15083030975077,
+ 41.392264673812626
+ ],
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ],
+ [
+ 64.15083030975077,
+ 41.392264673812626
+ ],
+ [
+ 64.03598762626709,
+ 41.197616938884174
+ ],
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ],
+ [
+ 64.03598762626709,
+ 41.197616938884174
+ ],
+ [
+ 64.15083030975077,
+ 41.00296920395572
+ ],
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ],
+ [
+ 64.15083030975077,
+ 41.00296920395572
+ ],
+ [
+ 64.38051567671812,
+ 41.00296920395572
+ ],
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ],
+ [
+ 64.38051567671812,
+ 41.00296920395572
+ ],
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ],
+ [
+ 64.26567299323445,
+ 41.197616938884174
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ],
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ],
+ [
+ 64.38051567671812,
+ 41.78156014366953
+ ],
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ],
+ [
+ 64.38051567671812,
+ 41.78156014366953
+ ],
+ [
+ 64.15083030975077,
+ 41.78156014366953
+ ],
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ],
+ [
+ 64.15083030975077,
+ 41.78156014366953
+ ],
+ [
+ 64.03598762626709,
+ 41.58691240874108
+ ],
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ],
+ [
+ 64.03598762626709,
+ 41.58691240874108
+ ],
+ [
+ 64.15083030975077,
+ 41.392264673812626
+ ],
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ],
+ [
+ 64.15083030975077,
+ 41.392264673812626
+ ],
+ [
+ 64.38051567671812,
+ 41.392264673812626
+ ],
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ],
+ [
+ 64.38051567671812,
+ 41.392264673812626
+ ],
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ],
+ [
+ 64.26567299323445,
+ 41.58691240874108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ],
+ [
+ 64.4953583602018,
+ 41.97620787859798
+ ],
+ [
+ 64.38051567671812,
+ 42.170855613526435
+ ],
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ],
+ [
+ 64.38051567671812,
+ 42.170855613526435
+ ],
+ [
+ 64.15083030975077,
+ 42.170855613526435
+ ],
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ],
+ [
+ 64.15083030975077,
+ 42.170855613526435
+ ],
+ [
+ 64.03598762626709,
+ 41.97620787859798
+ ],
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ],
+ [
+ 64.03598762626709,
+ 41.97620787859798
+ ],
+ [
+ 64.15083030975077,
+ 41.78156014366953
+ ],
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ],
+ [
+ 64.15083030975077,
+ 41.78156014366953
+ ],
+ [
+ 64.38051567671812,
+ 41.78156014366953
+ ],
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ],
+ [
+ 64.38051567671812,
+ 41.78156014366953
+ ],
+ [
+ 64.4953583602018,
+ 41.97620787859798
+ ],
+ [
+ 64.26567299323445,
+ 41.97620787859798
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ],
+ [
+ 64.4953583602018,
+ 42.365503348454894
+ ],
+ [
+ 64.38051567671812,
+ 42.560151083383346
+ ],
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ],
+ [
+ 64.38051567671812,
+ 42.560151083383346
+ ],
+ [
+ 64.15083030975077,
+ 42.560151083383346
+ ],
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ],
+ [
+ 64.15083030975077,
+ 42.560151083383346
+ ],
+ [
+ 64.03598762626709,
+ 42.365503348454894
+ ],
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ],
+ [
+ 64.03598762626709,
+ 42.365503348454894
+ ],
+ [
+ 64.15083030975077,
+ 42.17085561352644
+ ],
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ],
+ [
+ 64.15083030975077,
+ 42.17085561352644
+ ],
+ [
+ 64.38051567671812,
+ 42.17085561352644
+ ],
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ],
+ [
+ 64.38051567671812,
+ 42.17085561352644
+ ],
+ [
+ 64.4953583602018,
+ 42.365503348454894
+ ],
+ [
+ 64.26567299323445,
+ 42.365503348454894
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ],
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ],
+ [
+ 64.38051567671812,
+ 42.94944655324026
+ ],
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ],
+ [
+ 64.38051567671812,
+ 42.94944655324026
+ ],
+ [
+ 64.15083030975077,
+ 42.94944655324026
+ ],
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ],
+ [
+ 64.15083030975077,
+ 42.94944655324026
+ ],
+ [
+ 64.03598762626709,
+ 42.754798818311805
+ ],
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ],
+ [
+ 64.03598762626709,
+ 42.754798818311805
+ ],
+ [
+ 64.15083030975077,
+ 42.56015108338335
+ ],
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ],
+ [
+ 64.15083030975077,
+ 42.56015108338335
+ ],
+ [
+ 64.38051567671812,
+ 42.56015108338335
+ ],
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ],
+ [
+ 64.38051567671812,
+ 42.56015108338335
+ ],
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ],
+ [
+ 64.26567299323445,
+ 42.754798818311805
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ],
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ],
+ [
+ 64.38051567671812,
+ 43.33874202309716
+ ],
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ],
+ [
+ 64.38051567671812,
+ 43.33874202309716
+ ],
+ [
+ 64.15083030975077,
+ 43.33874202309716
+ ],
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ],
+ [
+ 64.15083030975077,
+ 43.33874202309716
+ ],
+ [
+ 64.03598762626709,
+ 43.14409428816871
+ ],
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ],
+ [
+ 64.03598762626709,
+ 43.14409428816871
+ ],
+ [
+ 64.15083030975077,
+ 42.94944655324026
+ ],
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ],
+ [
+ 64.15083030975077,
+ 42.94944655324026
+ ],
+ [
+ 64.38051567671812,
+ 42.94944655324026
+ ],
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ],
+ [
+ 64.38051567671812,
+ 42.94944655324026
+ ],
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ],
+ [
+ 64.26567299323445,
+ 43.14409428816871
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ],
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ],
+ [
+ 64.38051567671812,
+ 43.728037492954066
+ ],
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ],
+ [
+ 64.38051567671812,
+ 43.728037492954066
+ ],
+ [
+ 64.15083030975077,
+ 43.728037492954066
+ ],
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ],
+ [
+ 64.15083030975077,
+ 43.728037492954066
+ ],
+ [
+ 64.03598762626709,
+ 43.53338975802561
+ ],
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ],
+ [
+ 64.03598762626709,
+ 43.53338975802561
+ ],
+ [
+ 64.15083030975077,
+ 43.33874202309716
+ ],
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ],
+ [
+ 64.15083030975077,
+ 43.33874202309716
+ ],
+ [
+ 64.38051567671812,
+ 43.33874202309716
+ ],
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ],
+ [
+ 64.38051567671812,
+ 43.33874202309716
+ ],
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ],
+ [
+ 64.26567299323445,
+ 43.53338975802561
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ],
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ],
+ [
+ 64.38051567671812,
+ 44.11733296281097
+ ],
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ],
+ [
+ 64.38051567671812,
+ 44.11733296281097
+ ],
+ [
+ 64.15083030975077,
+ 44.11733296281097
+ ],
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ],
+ [
+ 64.15083030975077,
+ 44.11733296281097
+ ],
+ [
+ 64.03598762626709,
+ 43.92268522788252
+ ],
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ],
+ [
+ 64.03598762626709,
+ 43.92268522788252
+ ],
+ [
+ 64.15083030975077,
+ 43.728037492954066
+ ],
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ],
+ [
+ 64.15083030975077,
+ 43.728037492954066
+ ],
+ [
+ 64.38051567671812,
+ 43.728037492954066
+ ],
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ],
+ [
+ 64.38051567671812,
+ 43.728037492954066
+ ],
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ],
+ [
+ 64.26567299323445,
+ 43.92268522788252
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ],
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ],
+ [
+ 64.38051567671812,
+ 44.506628432667874
+ ],
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ],
+ [
+ 64.38051567671812,
+ 44.506628432667874
+ ],
+ [
+ 64.15083030975077,
+ 44.506628432667874
+ ],
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ],
+ [
+ 64.15083030975077,
+ 44.506628432667874
+ ],
+ [
+ 64.03598762626709,
+ 44.31198069773942
+ ],
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ],
+ [
+ 64.03598762626709,
+ 44.31198069773942
+ ],
+ [
+ 64.15083030975077,
+ 44.11733296281097
+ ],
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ],
+ [
+ 64.15083030975077,
+ 44.11733296281097
+ ],
+ [
+ 64.38051567671812,
+ 44.11733296281097
+ ],
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ],
+ [
+ 64.38051567671812,
+ 44.11733296281097
+ ],
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ],
+ [
+ 64.26567299323445,
+ 44.31198069773942
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ],
+ [
+ 64.4953583602018,
+ 44.701276167596326
+ ],
+ [
+ 64.38051567671812,
+ 44.89592390252478
+ ],
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ],
+ [
+ 64.38051567671812,
+ 44.89592390252478
+ ],
+ [
+ 64.15083030975077,
+ 44.89592390252478
+ ],
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ],
+ [
+ 64.15083030975077,
+ 44.89592390252478
+ ],
+ [
+ 64.03598762626709,
+ 44.701276167596326
+ ],
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ],
+ [
+ 64.03598762626709,
+ 44.701276167596326
+ ],
+ [
+ 64.15083030975077,
+ 44.506628432667874
+ ],
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ],
+ [
+ 64.15083030975077,
+ 44.506628432667874
+ ],
+ [
+ 64.38051567671812,
+ 44.506628432667874
+ ],
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ],
+ [
+ 64.38051567671812,
+ 44.506628432667874
+ ],
+ [
+ 64.4953583602018,
+ 44.701276167596326
+ ],
+ [
+ 64.26567299323445,
+ 44.701276167596326
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ],
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ],
+ [
+ 64.38051567671812,
+ 45.2852193723817
+ ],
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ],
+ [
+ 64.38051567671812,
+ 45.2852193723817
+ ],
+ [
+ 64.15083030975077,
+ 45.2852193723817
+ ],
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ],
+ [
+ 64.15083030975077,
+ 45.2852193723817
+ ],
+ [
+ 64.03598762626709,
+ 45.090571637453245
+ ],
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ],
+ [
+ 64.03598762626709,
+ 45.090571637453245
+ ],
+ [
+ 64.15083030975077,
+ 44.89592390252479
+ ],
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ],
+ [
+ 64.15083030975077,
+ 44.89592390252479
+ ],
+ [
+ 64.38051567671812,
+ 44.89592390252479
+ ],
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ],
+ [
+ 64.38051567671812,
+ 44.89592390252479
+ ],
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ],
+ [
+ 64.26567299323445,
+ 45.090571637453245
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ],
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ],
+ [
+ 64.38051567671812,
+ 45.6745148422386
+ ],
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ],
+ [
+ 64.38051567671812,
+ 45.6745148422386
+ ],
+ [
+ 64.15083030975077,
+ 45.6745148422386
+ ],
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ],
+ [
+ 64.15083030975077,
+ 45.6745148422386
+ ],
+ [
+ 64.03598762626709,
+ 45.47986710731015
+ ],
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ],
+ [
+ 64.03598762626709,
+ 45.47986710731015
+ ],
+ [
+ 64.15083030975077,
+ 45.2852193723817
+ ],
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ],
+ [
+ 64.15083030975077,
+ 45.2852193723817
+ ],
+ [
+ 64.38051567671812,
+ 45.2852193723817
+ ],
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ],
+ [
+ 64.38051567671812,
+ 45.2852193723817
+ ],
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ],
+ [
+ 64.26567299323445,
+ 45.47986710731015
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ],
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ],
+ [
+ 64.38051567671812,
+ 46.063810312095505
+ ],
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ],
+ [
+ 64.38051567671812,
+ 46.063810312095505
+ ],
+ [
+ 64.15083030975077,
+ 46.063810312095505
+ ],
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ],
+ [
+ 64.15083030975077,
+ 46.063810312095505
+ ],
+ [
+ 64.03598762626709,
+ 45.86916257716705
+ ],
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ],
+ [
+ 64.03598762626709,
+ 45.86916257716705
+ ],
+ [
+ 64.15083030975077,
+ 45.6745148422386
+ ],
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ],
+ [
+ 64.15083030975077,
+ 45.6745148422386
+ ],
+ [
+ 64.38051567671812,
+ 45.6745148422386
+ ],
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ],
+ [
+ 64.38051567671812,
+ 45.6745148422386
+ ],
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ],
+ [
+ 64.26567299323445,
+ 45.86916257716705
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ],
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ],
+ [
+ 64.38051567671812,
+ 46.45310578195241
+ ],
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ],
+ [
+ 64.38051567671812,
+ 46.45310578195241
+ ],
+ [
+ 64.15083030975077,
+ 46.45310578195241
+ ],
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ],
+ [
+ 64.15083030975077,
+ 46.45310578195241
+ ],
+ [
+ 64.03598762626709,
+ 46.25845804702396
+ ],
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ],
+ [
+ 64.03598762626709,
+ 46.25845804702396
+ ],
+ [
+ 64.15083030975077,
+ 46.063810312095505
+ ],
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ],
+ [
+ 64.15083030975077,
+ 46.063810312095505
+ ],
+ [
+ 64.38051567671812,
+ 46.063810312095505
+ ],
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ],
+ [
+ 64.38051567671812,
+ 46.063810312095505
+ ],
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ],
+ [
+ 64.26567299323445,
+ 46.25845804702396
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ],
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ],
+ [
+ 64.38051567671812,
+ 46.842401251809314
+ ],
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ],
+ [
+ 64.38051567671812,
+ 46.842401251809314
+ ],
+ [
+ 64.15083030975077,
+ 46.842401251809314
+ ],
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ],
+ [
+ 64.15083030975077,
+ 46.842401251809314
+ ],
+ [
+ 64.03598762626709,
+ 46.64775351688086
+ ],
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ],
+ [
+ 64.03598762626709,
+ 46.64775351688086
+ ],
+ [
+ 64.15083030975077,
+ 46.45310578195241
+ ],
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ],
+ [
+ 64.15083030975077,
+ 46.45310578195241
+ ],
+ [
+ 64.38051567671812,
+ 46.45310578195241
+ ],
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ],
+ [
+ 64.38051567671812,
+ 46.45310578195241
+ ],
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ],
+ [
+ 64.26567299323445,
+ 46.64775351688086
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ],
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ],
+ [
+ 64.38051567671812,
+ 47.23169672166622
+ ],
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ],
+ [
+ 64.38051567671812,
+ 47.23169672166622
+ ],
+ [
+ 64.15083030975077,
+ 47.23169672166622
+ ],
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ],
+ [
+ 64.15083030975077,
+ 47.23169672166622
+ ],
+ [
+ 64.03598762626709,
+ 47.037048986737766
+ ],
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ],
+ [
+ 64.03598762626709,
+ 47.037048986737766
+ ],
+ [
+ 64.15083030975077,
+ 46.842401251809314
+ ],
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ],
+ [
+ 64.15083030975077,
+ 46.842401251809314
+ ],
+ [
+ 64.38051567671812,
+ 46.842401251809314
+ ],
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ],
+ [
+ 64.38051567671812,
+ 46.842401251809314
+ ],
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ],
+ [
+ 64.26567299323445,
+ 47.037048986737766
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ],
+ [
+ 64.4953583602018,
+ 47.42634445659467
+ ],
+ [
+ 64.38051567671812,
+ 47.62099219152312
+ ],
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ],
+ [
+ 64.38051567671812,
+ 47.62099219152312
+ ],
+ [
+ 64.15083030975077,
+ 47.62099219152312
+ ],
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ],
+ [
+ 64.15083030975077,
+ 47.62099219152312
+ ],
+ [
+ 64.03598762626709,
+ 47.42634445659467
+ ],
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ],
+ [
+ 64.03598762626709,
+ 47.42634445659467
+ ],
+ [
+ 64.15083030975077,
+ 47.23169672166622
+ ],
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ],
+ [
+ 64.15083030975077,
+ 47.23169672166622
+ ],
+ [
+ 64.38051567671812,
+ 47.23169672166622
+ ],
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ],
+ [
+ 64.38051567671812,
+ 47.23169672166622
+ ],
+ [
+ 64.4953583602018,
+ 47.42634445659467
+ ],
+ [
+ 64.26567299323445,
+ 47.42634445659467
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ],
+ [
+ 64.4953583602018,
+ 47.81563992645159
+ ],
+ [
+ 64.38051567671812,
+ 48.01028766138004
+ ],
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ],
+ [
+ 64.38051567671812,
+ 48.01028766138004
+ ],
+ [
+ 64.15083030975077,
+ 48.01028766138004
+ ],
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ],
+ [
+ 64.15083030975077,
+ 48.01028766138004
+ ],
+ [
+ 64.03598762626709,
+ 47.81563992645159
+ ],
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ],
+ [
+ 64.03598762626709,
+ 47.81563992645159
+ ],
+ [
+ 64.15083030975077,
+ 47.620992191523136
+ ],
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ],
+ [
+ 64.15083030975077,
+ 47.620992191523136
+ ],
+ [
+ 64.38051567671812,
+ 47.620992191523136
+ ],
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ],
+ [
+ 64.38051567671812,
+ 47.620992191523136
+ ],
+ [
+ 64.4953583602018,
+ 47.81563992645159
+ ],
+ [
+ 64.26567299323445,
+ 47.81563992645159
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ],
+ [
+ 64.83988641065284,
+ 11.805808964687746
+ ],
+ [
+ 64.72504372716915,
+ 12.0004566996162
+ ],
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ],
+ [
+ 64.72504372716915,
+ 12.0004566996162
+ ],
+ [
+ 64.4953583602018,
+ 12.0004566996162
+ ],
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ],
+ [
+ 64.4953583602018,
+ 12.0004566996162
+ ],
+ [
+ 64.38051567671812,
+ 11.805808964687746
+ ],
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ],
+ [
+ 64.38051567671812,
+ 11.805808964687746
+ ],
+ [
+ 64.4953583602018,
+ 11.611161229759292
+ ],
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ],
+ [
+ 64.4953583602018,
+ 11.611161229759292
+ ],
+ [
+ 64.72504372716915,
+ 11.611161229759292
+ ],
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ],
+ [
+ 64.72504372716915,
+ 11.611161229759292
+ ],
+ [
+ 64.83988641065284,
+ 11.805808964687746
+ ],
+ [
+ 64.61020104368548,
+ 11.805808964687746
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ],
+ [
+ 64.83988641065284,
+ 12.195104434544652
+ ],
+ [
+ 64.72504372716915,
+ 12.389752169473105
+ ],
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ],
+ [
+ 64.72504372716915,
+ 12.389752169473105
+ ],
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ],
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ],
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ],
+ [
+ 64.38051567671812,
+ 12.195104434544652
+ ],
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ],
+ [
+ 64.38051567671812,
+ 12.195104434544652
+ ],
+ [
+ 64.4953583602018,
+ 12.000456699616198
+ ],
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ],
+ [
+ 64.4953583602018,
+ 12.000456699616198
+ ],
+ [
+ 64.72504372716915,
+ 12.000456699616198
+ ],
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ],
+ [
+ 64.72504372716915,
+ 12.000456699616198
+ ],
+ [
+ 64.83988641065284,
+ 12.195104434544652
+ ],
+ [
+ 64.61020104368548,
+ 12.195104434544652
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ],
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ],
+ [
+ 64.72504372716915,
+ 12.779047639330013
+ ],
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ],
+ [
+ 64.72504372716915,
+ 12.779047639330013
+ ],
+ [
+ 64.4953583602018,
+ 12.779047639330013
+ ],
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ],
+ [
+ 64.4953583602018,
+ 12.779047639330013
+ ],
+ [
+ 64.38051567671812,
+ 12.58439990440156
+ ],
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ],
+ [
+ 64.38051567671812,
+ 12.58439990440156
+ ],
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ],
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ],
+ [
+ 64.4953583602018,
+ 12.389752169473105
+ ],
+ [
+ 64.72504372716915,
+ 12.389752169473105
+ ],
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ],
+ [
+ 64.72504372716915,
+ 12.389752169473105
+ ],
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ],
+ [
+ 64.61020104368548,
+ 12.58439990440156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ],
+ [
+ 64.83988641065284,
+ 12.973695374258465
+ ],
+ [
+ 64.72504372716915,
+ 13.16834310918692
+ ],
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ],
+ [
+ 64.72504372716915,
+ 13.16834310918692
+ ],
+ [
+ 64.4953583602018,
+ 13.16834310918692
+ ],
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ],
+ [
+ 64.4953583602018,
+ 13.16834310918692
+ ],
+ [
+ 64.38051567671812,
+ 12.973695374258465
+ ],
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ],
+ [
+ 64.38051567671812,
+ 12.973695374258465
+ ],
+ [
+ 64.4953583602018,
+ 12.779047639330011
+ ],
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ],
+ [
+ 64.4953583602018,
+ 12.779047639330011
+ ],
+ [
+ 64.72504372716915,
+ 12.779047639330011
+ ],
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ],
+ [
+ 64.72504372716915,
+ 12.779047639330011
+ ],
+ [
+ 64.83988641065284,
+ 12.973695374258465
+ ],
+ [
+ 64.61020104368548,
+ 12.973695374258465
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ],
+ [
+ 64.83988641065284,
+ 13.362990844115371
+ ],
+ [
+ 64.72504372716915,
+ 13.557638579043825
+ ],
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ],
+ [
+ 64.72504372716915,
+ 13.557638579043825
+ ],
+ [
+ 64.4953583602018,
+ 13.557638579043825
+ ],
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ],
+ [
+ 64.4953583602018,
+ 13.557638579043825
+ ],
+ [
+ 64.38051567671812,
+ 13.362990844115371
+ ],
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ],
+ [
+ 64.38051567671812,
+ 13.362990844115371
+ ],
+ [
+ 64.4953583602018,
+ 13.168343109186917
+ ],
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ],
+ [
+ 64.4953583602018,
+ 13.168343109186917
+ ],
+ [
+ 64.72504372716915,
+ 13.168343109186917
+ ],
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ],
+ [
+ 64.72504372716915,
+ 13.168343109186917
+ ],
+ [
+ 64.83988641065284,
+ 13.362990844115371
+ ],
+ [
+ 64.61020104368548,
+ 13.362990844115371
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ],
+ [
+ 64.83988641065284,
+ 13.752286313972277
+ ],
+ [
+ 64.72504372716915,
+ 13.946934048900731
+ ],
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ],
+ [
+ 64.72504372716915,
+ 13.946934048900731
+ ],
+ [
+ 64.4953583602018,
+ 13.946934048900731
+ ],
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ],
+ [
+ 64.4953583602018,
+ 13.946934048900731
+ ],
+ [
+ 64.38051567671812,
+ 13.752286313972277
+ ],
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ],
+ [
+ 64.38051567671812,
+ 13.752286313972277
+ ],
+ [
+ 64.4953583602018,
+ 13.557638579043823
+ ],
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ],
+ [
+ 64.4953583602018,
+ 13.557638579043823
+ ],
+ [
+ 64.72504372716915,
+ 13.557638579043823
+ ],
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ],
+ [
+ 64.72504372716915,
+ 13.557638579043823
+ ],
+ [
+ 64.83988641065284,
+ 13.752286313972277
+ ],
+ [
+ 64.61020104368548,
+ 13.752286313972277
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ],
+ [
+ 64.83988641065284,
+ 14.141581783829183
+ ],
+ [
+ 64.72504372716915,
+ 14.336229518757637
+ ],
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ],
+ [
+ 64.72504372716915,
+ 14.336229518757637
+ ],
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ],
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ],
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ],
+ [
+ 64.38051567671812,
+ 14.141581783829183
+ ],
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ],
+ [
+ 64.38051567671812,
+ 14.141581783829183
+ ],
+ [
+ 64.4953583602018,
+ 13.94693404890073
+ ],
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ],
+ [
+ 64.4953583602018,
+ 13.94693404890073
+ ],
+ [
+ 64.72504372716915,
+ 13.94693404890073
+ ],
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ],
+ [
+ 64.72504372716915,
+ 13.94693404890073
+ ],
+ [
+ 64.83988641065284,
+ 14.141581783829183
+ ],
+ [
+ 64.61020104368548,
+ 14.141581783829183
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ],
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ],
+ [
+ 64.72504372716915,
+ 14.725524988614545
+ ],
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ],
+ [
+ 64.72504372716915,
+ 14.725524988614545
+ ],
+ [
+ 64.4953583602018,
+ 14.725524988614545
+ ],
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ],
+ [
+ 64.4953583602018,
+ 14.725524988614545
+ ],
+ [
+ 64.38051567671812,
+ 14.530877253686091
+ ],
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ],
+ [
+ 64.38051567671812,
+ 14.530877253686091
+ ],
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ],
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ],
+ [
+ 64.4953583602018,
+ 14.336229518757637
+ ],
+ [
+ 64.72504372716915,
+ 14.336229518757637
+ ],
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ],
+ [
+ 64.72504372716915,
+ 14.336229518757637
+ ],
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ],
+ [
+ 64.61020104368548,
+ 14.530877253686091
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ],
+ [
+ 64.83988641065284,
+ 14.920172723542997
+ ],
+ [
+ 64.72504372716915,
+ 15.114820458471451
+ ],
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ],
+ [
+ 64.72504372716915,
+ 15.114820458471451
+ ],
+ [
+ 64.4953583602018,
+ 15.114820458471451
+ ],
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ],
+ [
+ 64.4953583602018,
+ 15.114820458471451
+ ],
+ [
+ 64.38051567671812,
+ 14.920172723542997
+ ],
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ],
+ [
+ 64.38051567671812,
+ 14.920172723542997
+ ],
+ [
+ 64.4953583602018,
+ 14.725524988614543
+ ],
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ],
+ [
+ 64.4953583602018,
+ 14.725524988614543
+ ],
+ [
+ 64.72504372716915,
+ 14.725524988614543
+ ],
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ],
+ [
+ 64.72504372716915,
+ 14.725524988614543
+ ],
+ [
+ 64.83988641065284,
+ 14.920172723542997
+ ],
+ [
+ 64.61020104368548,
+ 14.920172723542997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ],
+ [
+ 64.83988641065284,
+ 15.309468193399903
+ ],
+ [
+ 64.72504372716915,
+ 15.504115928328357
+ ],
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ],
+ [
+ 64.72504372716915,
+ 15.504115928328357
+ ],
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ],
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ],
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ],
+ [
+ 64.38051567671812,
+ 15.309468193399903
+ ],
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ],
+ [
+ 64.38051567671812,
+ 15.309468193399903
+ ],
+ [
+ 64.4953583602018,
+ 15.11482045847145
+ ],
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ],
+ [
+ 64.4953583602018,
+ 15.11482045847145
+ ],
+ [
+ 64.72504372716915,
+ 15.11482045847145
+ ],
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ],
+ [
+ 64.72504372716915,
+ 15.11482045847145
+ ],
+ [
+ 64.83988641065284,
+ 15.309468193399903
+ ],
+ [
+ 64.61020104368548,
+ 15.309468193399903
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ],
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ],
+ [
+ 64.72504372716915,
+ 15.893411398185265
+ ],
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ],
+ [
+ 64.72504372716915,
+ 15.893411398185265
+ ],
+ [
+ 64.4953583602018,
+ 15.893411398185265
+ ],
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ],
+ [
+ 64.4953583602018,
+ 15.893411398185265
+ ],
+ [
+ 64.38051567671812,
+ 15.69876366325681
+ ],
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ],
+ [
+ 64.38051567671812,
+ 15.69876366325681
+ ],
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ],
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ],
+ [
+ 64.4953583602018,
+ 15.504115928328357
+ ],
+ [
+ 64.72504372716915,
+ 15.504115928328357
+ ],
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ],
+ [
+ 64.72504372716915,
+ 15.504115928328357
+ ],
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ],
+ [
+ 64.61020104368548,
+ 15.69876366325681
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ],
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ],
+ [
+ 64.72504372716915,
+ 16.28270686804217
+ ],
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ],
+ [
+ 64.72504372716915,
+ 16.28270686804217
+ ],
+ [
+ 64.4953583602018,
+ 16.28270686804217
+ ],
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ],
+ [
+ 64.4953583602018,
+ 16.28270686804217
+ ],
+ [
+ 64.38051567671812,
+ 16.088059133113717
+ ],
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ],
+ [
+ 64.38051567671812,
+ 16.088059133113717
+ ],
+ [
+ 64.4953583602018,
+ 15.893411398185263
+ ],
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ],
+ [
+ 64.4953583602018,
+ 15.893411398185263
+ ],
+ [
+ 64.72504372716915,
+ 15.893411398185263
+ ],
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ],
+ [
+ 64.72504372716915,
+ 15.893411398185263
+ ],
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ],
+ [
+ 64.61020104368548,
+ 16.088059133113717
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ],
+ [
+ 64.83988641065284,
+ 16.477354602970625
+ ],
+ [
+ 64.72504372716915,
+ 16.672002337899077
+ ],
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ],
+ [
+ 64.72504372716915,
+ 16.672002337899077
+ ],
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ],
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ],
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ],
+ [
+ 64.38051567671812,
+ 16.477354602970625
+ ],
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ],
+ [
+ 64.38051567671812,
+ 16.477354602970625
+ ],
+ [
+ 64.4953583602018,
+ 16.282706868042172
+ ],
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ],
+ [
+ 64.4953583602018,
+ 16.282706868042172
+ ],
+ [
+ 64.72504372716915,
+ 16.282706868042172
+ ],
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ],
+ [
+ 64.72504372716915,
+ 16.282706868042172
+ ],
+ [
+ 64.83988641065284,
+ 16.477354602970625
+ ],
+ [
+ 64.61020104368548,
+ 16.477354602970625
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ],
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ],
+ [
+ 64.72504372716915,
+ 17.06129780775598
+ ],
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ],
+ [
+ 64.72504372716915,
+ 17.06129780775598
+ ],
+ [
+ 64.4953583602018,
+ 17.06129780775598
+ ],
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ],
+ [
+ 64.4953583602018,
+ 17.06129780775598
+ ],
+ [
+ 64.38051567671812,
+ 16.86665007282753
+ ],
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ],
+ [
+ 64.38051567671812,
+ 16.86665007282753
+ ],
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ],
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ],
+ [
+ 64.4953583602018,
+ 16.672002337899077
+ ],
+ [
+ 64.72504372716915,
+ 16.672002337899077
+ ],
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ],
+ [
+ 64.72504372716915,
+ 16.672002337899077
+ ],
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ],
+ [
+ 64.61020104368548,
+ 16.86665007282753
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ],
+ [
+ 64.83988641065284,
+ 17.255945542684437
+ ],
+ [
+ 64.72504372716915,
+ 17.45059327761289
+ ],
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ],
+ [
+ 64.72504372716915,
+ 17.45059327761289
+ ],
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ],
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ],
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ],
+ [
+ 64.38051567671812,
+ 17.255945542684437
+ ],
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ],
+ [
+ 64.38051567671812,
+ 17.255945542684437
+ ],
+ [
+ 64.4953583602018,
+ 17.061297807755984
+ ],
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ],
+ [
+ 64.4953583602018,
+ 17.061297807755984
+ ],
+ [
+ 64.72504372716915,
+ 17.061297807755984
+ ],
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ],
+ [
+ 64.72504372716915,
+ 17.061297807755984
+ ],
+ [
+ 64.83988641065284,
+ 17.255945542684437
+ ],
+ [
+ 64.61020104368548,
+ 17.255945542684437
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ],
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ],
+ [
+ 64.72504372716915,
+ 17.839888747469793
+ ],
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ],
+ [
+ 64.72504372716915,
+ 17.839888747469793
+ ],
+ [
+ 64.4953583602018,
+ 17.839888747469793
+ ],
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ],
+ [
+ 64.4953583602018,
+ 17.839888747469793
+ ],
+ [
+ 64.38051567671812,
+ 17.64524101254134
+ ],
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ],
+ [
+ 64.38051567671812,
+ 17.64524101254134
+ ],
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ],
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ],
+ [
+ 64.4953583602018,
+ 17.45059327761289
+ ],
+ [
+ 64.72504372716915,
+ 17.45059327761289
+ ],
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ],
+ [
+ 64.72504372716915,
+ 17.45059327761289
+ ],
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ],
+ [
+ 64.61020104368548,
+ 17.64524101254134
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ],
+ [
+ 64.83988641065284,
+ 18.03453648239825
+ ],
+ [
+ 64.72504372716915,
+ 18.2291842173267
+ ],
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ],
+ [
+ 64.72504372716915,
+ 18.2291842173267
+ ],
+ [
+ 64.4953583602018,
+ 18.2291842173267
+ ],
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ],
+ [
+ 64.4953583602018,
+ 18.2291842173267
+ ],
+ [
+ 64.38051567671812,
+ 18.03453648239825
+ ],
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ],
+ [
+ 64.38051567671812,
+ 18.03453648239825
+ ],
+ [
+ 64.4953583602018,
+ 17.839888747469796
+ ],
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ],
+ [
+ 64.4953583602018,
+ 17.839888747469796
+ ],
+ [
+ 64.72504372716915,
+ 17.839888747469796
+ ],
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ],
+ [
+ 64.72504372716915,
+ 17.839888747469796
+ ],
+ [
+ 64.83988641065284,
+ 18.03453648239825
+ ],
+ [
+ 64.61020104368548,
+ 18.03453648239825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ],
+ [
+ 64.83988641065284,
+ 18.423831952255156
+ ],
+ [
+ 64.72504372716915,
+ 18.61847968718361
+ ],
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ],
+ [
+ 64.72504372716915,
+ 18.61847968718361
+ ],
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ],
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ],
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ],
+ [
+ 64.38051567671812,
+ 18.423831952255156
+ ],
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ],
+ [
+ 64.38051567671812,
+ 18.423831952255156
+ ],
+ [
+ 64.4953583602018,
+ 18.229184217326704
+ ],
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ],
+ [
+ 64.4953583602018,
+ 18.229184217326704
+ ],
+ [
+ 64.72504372716915,
+ 18.229184217326704
+ ],
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ],
+ [
+ 64.72504372716915,
+ 18.229184217326704
+ ],
+ [
+ 64.83988641065284,
+ 18.423831952255156
+ ],
+ [
+ 64.61020104368548,
+ 18.423831952255156
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ],
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ],
+ [
+ 64.72504372716915,
+ 19.007775157040513
+ ],
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ],
+ [
+ 64.72504372716915,
+ 19.007775157040513
+ ],
+ [
+ 64.4953583602018,
+ 19.007775157040513
+ ],
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ],
+ [
+ 64.4953583602018,
+ 19.007775157040513
+ ],
+ [
+ 64.38051567671812,
+ 18.81312742211206
+ ],
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ],
+ [
+ 64.38051567671812,
+ 18.81312742211206
+ ],
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ],
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ],
+ [
+ 64.4953583602018,
+ 18.61847968718361
+ ],
+ [
+ 64.72504372716915,
+ 18.61847968718361
+ ],
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ],
+ [
+ 64.72504372716915,
+ 18.61847968718361
+ ],
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ],
+ [
+ 64.61020104368548,
+ 18.81312742211206
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ],
+ [
+ 64.83988641065284,
+ 19.20242289196897
+ ],
+ [
+ 64.72504372716915,
+ 19.39707062689742
+ ],
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ],
+ [
+ 64.72504372716915,
+ 19.39707062689742
+ ],
+ [
+ 64.4953583602018,
+ 19.39707062689742
+ ],
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ],
+ [
+ 64.4953583602018,
+ 19.39707062689742
+ ],
+ [
+ 64.38051567671812,
+ 19.20242289196897
+ ],
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ],
+ [
+ 64.38051567671812,
+ 19.20242289196897
+ ],
+ [
+ 64.4953583602018,
+ 19.007775157040516
+ ],
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ],
+ [
+ 64.4953583602018,
+ 19.007775157040516
+ ],
+ [
+ 64.72504372716915,
+ 19.007775157040516
+ ],
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ],
+ [
+ 64.72504372716915,
+ 19.007775157040516
+ ],
+ [
+ 64.83988641065284,
+ 19.20242289196897
+ ],
+ [
+ 64.61020104368548,
+ 19.20242289196897
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ],
+ [
+ 64.83988641065284,
+ 19.591718361825876
+ ],
+ [
+ 64.72504372716915,
+ 19.78636609675433
+ ],
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ],
+ [
+ 64.72504372716915,
+ 19.78636609675433
+ ],
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ],
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ],
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ],
+ [
+ 64.38051567671812,
+ 19.591718361825876
+ ],
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ],
+ [
+ 64.38051567671812,
+ 19.591718361825876
+ ],
+ [
+ 64.4953583602018,
+ 19.397070626897424
+ ],
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ],
+ [
+ 64.4953583602018,
+ 19.397070626897424
+ ],
+ [
+ 64.72504372716915,
+ 19.397070626897424
+ ],
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ],
+ [
+ 64.72504372716915,
+ 19.397070626897424
+ ],
+ [
+ 64.83988641065284,
+ 19.591718361825876
+ ],
+ [
+ 64.61020104368548,
+ 19.591718361825876
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ],
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ],
+ [
+ 64.72504372716915,
+ 20.175661566611232
+ ],
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ],
+ [
+ 64.72504372716915,
+ 20.175661566611232
+ ],
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ],
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ],
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ],
+ [
+ 64.38051567671812,
+ 19.98101383168278
+ ],
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ],
+ [
+ 64.38051567671812,
+ 19.98101383168278
+ ],
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ],
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ],
+ [
+ 64.4953583602018,
+ 19.78636609675433
+ ],
+ [
+ 64.72504372716915,
+ 19.78636609675433
+ ],
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ],
+ [
+ 64.72504372716915,
+ 19.78636609675433
+ ],
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ],
+ [
+ 64.61020104368548,
+ 19.98101383168278
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ],
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ],
+ [
+ 64.72504372716915,
+ 20.564957036468137
+ ],
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ],
+ [
+ 64.72504372716915,
+ 20.564957036468137
+ ],
+ [
+ 64.4953583602018,
+ 20.564957036468137
+ ],
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ],
+ [
+ 64.4953583602018,
+ 20.564957036468137
+ ],
+ [
+ 64.38051567671812,
+ 20.370309301539685
+ ],
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ],
+ [
+ 64.38051567671812,
+ 20.370309301539685
+ ],
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ],
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ],
+ [
+ 64.4953583602018,
+ 20.175661566611232
+ ],
+ [
+ 64.72504372716915,
+ 20.175661566611232
+ ],
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ],
+ [
+ 64.72504372716915,
+ 20.175661566611232
+ ],
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ],
+ [
+ 64.61020104368548,
+ 20.370309301539685
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ],
+ [
+ 64.83988641065284,
+ 20.759604771396592
+ ],
+ [
+ 64.72504372716915,
+ 20.954252506325044
+ ],
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ],
+ [
+ 64.72504372716915,
+ 20.954252506325044
+ ],
+ [
+ 64.4953583602018,
+ 20.954252506325044
+ ],
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ],
+ [
+ 64.4953583602018,
+ 20.954252506325044
+ ],
+ [
+ 64.38051567671812,
+ 20.759604771396592
+ ],
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ],
+ [
+ 64.38051567671812,
+ 20.759604771396592
+ ],
+ [
+ 64.4953583602018,
+ 20.56495703646814
+ ],
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ],
+ [
+ 64.4953583602018,
+ 20.56495703646814
+ ],
+ [
+ 64.72504372716915,
+ 20.56495703646814
+ ],
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ],
+ [
+ 64.72504372716915,
+ 20.56495703646814
+ ],
+ [
+ 64.83988641065284,
+ 20.759604771396592
+ ],
+ [
+ 64.61020104368548,
+ 20.759604771396592
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ],
+ [
+ 64.83988641065284,
+ 21.1489002412535
+ ],
+ [
+ 64.72504372716915,
+ 21.343547976181952
+ ],
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ],
+ [
+ 64.72504372716915,
+ 21.343547976181952
+ ],
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ],
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ],
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ],
+ [
+ 64.38051567671812,
+ 21.1489002412535
+ ],
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ],
+ [
+ 64.38051567671812,
+ 21.1489002412535
+ ],
+ [
+ 64.4953583602018,
+ 20.954252506325048
+ ],
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ],
+ [
+ 64.4953583602018,
+ 20.954252506325048
+ ],
+ [
+ 64.72504372716915,
+ 20.954252506325048
+ ],
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ],
+ [
+ 64.72504372716915,
+ 20.954252506325048
+ ],
+ [
+ 64.83988641065284,
+ 21.1489002412535
+ ],
+ [
+ 64.61020104368548,
+ 21.1489002412535
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ],
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ],
+ [
+ 64.72504372716915,
+ 21.732843446038856
+ ],
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ],
+ [
+ 64.72504372716915,
+ 21.732843446038856
+ ],
+ [
+ 64.4953583602018,
+ 21.732843446038856
+ ],
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ],
+ [
+ 64.4953583602018,
+ 21.732843446038856
+ ],
+ [
+ 64.38051567671812,
+ 21.538195711110404
+ ],
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ],
+ [
+ 64.38051567671812,
+ 21.538195711110404
+ ],
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ],
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ],
+ [
+ 64.4953583602018,
+ 21.343547976181952
+ ],
+ [
+ 64.72504372716915,
+ 21.343547976181952
+ ],
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ],
+ [
+ 64.72504372716915,
+ 21.343547976181952
+ ],
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ],
+ [
+ 64.61020104368548,
+ 21.538195711110404
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ],
+ [
+ 64.83988641065284,
+ 21.927491180967312
+ ],
+ [
+ 64.72504372716915,
+ 22.122138915895764
+ ],
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ],
+ [
+ 64.72504372716915,
+ 22.122138915895764
+ ],
+ [
+ 64.4953583602018,
+ 22.122138915895764
+ ],
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ],
+ [
+ 64.4953583602018,
+ 22.122138915895764
+ ],
+ [
+ 64.38051567671812,
+ 21.927491180967312
+ ],
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ],
+ [
+ 64.38051567671812,
+ 21.927491180967312
+ ],
+ [
+ 64.4953583602018,
+ 21.73284344603886
+ ],
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ],
+ [
+ 64.4953583602018,
+ 21.73284344603886
+ ],
+ [
+ 64.72504372716915,
+ 21.73284344603886
+ ],
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ],
+ [
+ 64.72504372716915,
+ 21.73284344603886
+ ],
+ [
+ 64.83988641065284,
+ 21.927491180967312
+ ],
+ [
+ 64.61020104368548,
+ 21.927491180967312
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ],
+ [
+ 64.83988641065284,
+ 22.31678665082422
+ ],
+ [
+ 64.72504372716915,
+ 22.511434385752672
+ ],
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ],
+ [
+ 64.72504372716915,
+ 22.511434385752672
+ ],
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ],
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ],
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ],
+ [
+ 64.38051567671812,
+ 22.31678665082422
+ ],
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ],
+ [
+ 64.38051567671812,
+ 22.31678665082422
+ ],
+ [
+ 64.4953583602018,
+ 22.122138915895768
+ ],
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ],
+ [
+ 64.4953583602018,
+ 22.122138915895768
+ ],
+ [
+ 64.72504372716915,
+ 22.122138915895768
+ ],
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ],
+ [
+ 64.72504372716915,
+ 22.122138915895768
+ ],
+ [
+ 64.83988641065284,
+ 22.31678665082422
+ ],
+ [
+ 64.61020104368548,
+ 22.31678665082422
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ],
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ],
+ [
+ 64.72504372716915,
+ 22.900729855609576
+ ],
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ],
+ [
+ 64.72504372716915,
+ 22.900729855609576
+ ],
+ [
+ 64.4953583602018,
+ 22.900729855609576
+ ],
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ],
+ [
+ 64.4953583602018,
+ 22.900729855609576
+ ],
+ [
+ 64.38051567671812,
+ 22.706082120681124
+ ],
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ],
+ [
+ 64.38051567671812,
+ 22.706082120681124
+ ],
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ],
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ],
+ [
+ 64.4953583602018,
+ 22.511434385752672
+ ],
+ [
+ 64.72504372716915,
+ 22.511434385752672
+ ],
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ],
+ [
+ 64.72504372716915,
+ 22.511434385752672
+ ],
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ],
+ [
+ 64.61020104368548,
+ 22.706082120681124
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ],
+ [
+ 64.83988641065284,
+ 23.095377590538032
+ ],
+ [
+ 64.72504372716915,
+ 23.290025325466484
+ ],
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ],
+ [
+ 64.72504372716915,
+ 23.290025325466484
+ ],
+ [
+ 64.4953583602018,
+ 23.290025325466484
+ ],
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ],
+ [
+ 64.4953583602018,
+ 23.290025325466484
+ ],
+ [
+ 64.38051567671812,
+ 23.095377590538032
+ ],
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ],
+ [
+ 64.38051567671812,
+ 23.095377590538032
+ ],
+ [
+ 64.4953583602018,
+ 22.90072985560958
+ ],
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ],
+ [
+ 64.4953583602018,
+ 22.90072985560958
+ ],
+ [
+ 64.72504372716915,
+ 22.90072985560958
+ ],
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ],
+ [
+ 64.72504372716915,
+ 22.90072985560958
+ ],
+ [
+ 64.83988641065284,
+ 23.095377590538032
+ ],
+ [
+ 64.61020104368548,
+ 23.095377590538032
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ],
+ [
+ 64.83988641065284,
+ 23.48467306039494
+ ],
+ [
+ 64.72504372716915,
+ 23.67932079532339
+ ],
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ],
+ [
+ 64.72504372716915,
+ 23.67932079532339
+ ],
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ],
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ],
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ],
+ [
+ 64.38051567671812,
+ 23.48467306039494
+ ],
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ],
+ [
+ 64.38051567671812,
+ 23.48467306039494
+ ],
+ [
+ 64.4953583602018,
+ 23.290025325466488
+ ],
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ],
+ [
+ 64.4953583602018,
+ 23.290025325466488
+ ],
+ [
+ 64.72504372716915,
+ 23.290025325466488
+ ],
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ],
+ [
+ 64.72504372716915,
+ 23.290025325466488
+ ],
+ [
+ 64.83988641065284,
+ 23.48467306039494
+ ],
+ [
+ 64.61020104368548,
+ 23.48467306039494
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ],
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ],
+ [
+ 64.72504372716915,
+ 24.068616265180296
+ ],
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ],
+ [
+ 64.72504372716915,
+ 24.068616265180296
+ ],
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ],
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ],
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ],
+ [
+ 64.38051567671812,
+ 23.873968530251844
+ ],
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ],
+ [
+ 64.38051567671812,
+ 23.873968530251844
+ ],
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ],
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ],
+ [
+ 64.4953583602018,
+ 23.67932079532339
+ ],
+ [
+ 64.72504372716915,
+ 23.67932079532339
+ ],
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ],
+ [
+ 64.72504372716915,
+ 23.67932079532339
+ ],
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ],
+ [
+ 64.61020104368548,
+ 23.873968530251844
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ],
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ],
+ [
+ 64.72504372716915,
+ 24.4579117350372
+ ],
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ],
+ [
+ 64.72504372716915,
+ 24.4579117350372
+ ],
+ [
+ 64.4953583602018,
+ 24.4579117350372
+ ],
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ],
+ [
+ 64.4953583602018,
+ 24.4579117350372
+ ],
+ [
+ 64.38051567671812,
+ 24.263264000108748
+ ],
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ],
+ [
+ 64.38051567671812,
+ 24.263264000108748
+ ],
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ],
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ],
+ [
+ 64.4953583602018,
+ 24.068616265180296
+ ],
+ [
+ 64.72504372716915,
+ 24.068616265180296
+ ],
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ],
+ [
+ 64.72504372716915,
+ 24.068616265180296
+ ],
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ],
+ [
+ 64.61020104368548,
+ 24.263264000108748
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ],
+ [
+ 64.83988641065284,
+ 24.652559469965656
+ ],
+ [
+ 64.72504372716915,
+ 24.847207204894108
+ ],
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ],
+ [
+ 64.72504372716915,
+ 24.847207204894108
+ ],
+ [
+ 64.4953583602018,
+ 24.847207204894108
+ ],
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ],
+ [
+ 64.4953583602018,
+ 24.847207204894108
+ ],
+ [
+ 64.38051567671812,
+ 24.652559469965656
+ ],
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ],
+ [
+ 64.38051567671812,
+ 24.652559469965656
+ ],
+ [
+ 64.4953583602018,
+ 24.457911735037204
+ ],
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ],
+ [
+ 64.4953583602018,
+ 24.457911735037204
+ ],
+ [
+ 64.72504372716915,
+ 24.457911735037204
+ ],
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ],
+ [
+ 64.72504372716915,
+ 24.457911735037204
+ ],
+ [
+ 64.83988641065284,
+ 24.652559469965656
+ ],
+ [
+ 64.61020104368548,
+ 24.652559469965656
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ],
+ [
+ 64.83988641065284,
+ 25.041854939822564
+ ],
+ [
+ 64.72504372716915,
+ 25.236502674751016
+ ],
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ],
+ [
+ 64.72504372716915,
+ 25.236502674751016
+ ],
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ],
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ],
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ],
+ [
+ 64.38051567671812,
+ 25.041854939822564
+ ],
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ],
+ [
+ 64.38051567671812,
+ 25.041854939822564
+ ],
+ [
+ 64.4953583602018,
+ 24.84720720489411
+ ],
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ],
+ [
+ 64.4953583602018,
+ 24.84720720489411
+ ],
+ [
+ 64.72504372716915,
+ 24.84720720489411
+ ],
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ],
+ [
+ 64.72504372716915,
+ 24.84720720489411
+ ],
+ [
+ 64.83988641065284,
+ 25.041854939822564
+ ],
+ [
+ 64.61020104368548,
+ 25.041854939822564
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ],
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ],
+ [
+ 64.72504372716915,
+ 25.62579814460792
+ ],
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ],
+ [
+ 64.72504372716915,
+ 25.62579814460792
+ ],
+ [
+ 64.4953583602018,
+ 25.62579814460792
+ ],
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ],
+ [
+ 64.4953583602018,
+ 25.62579814460792
+ ],
+ [
+ 64.38051567671812,
+ 25.431150409679468
+ ],
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ],
+ [
+ 64.38051567671812,
+ 25.431150409679468
+ ],
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ],
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ],
+ [
+ 64.4953583602018,
+ 25.236502674751016
+ ],
+ [
+ 64.72504372716915,
+ 25.236502674751016
+ ],
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ],
+ [
+ 64.72504372716915,
+ 25.236502674751016
+ ],
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ],
+ [
+ 64.61020104368548,
+ 25.431150409679468
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ],
+ [
+ 64.83988641065284,
+ 25.820445879536376
+ ],
+ [
+ 64.72504372716915,
+ 26.015093614464828
+ ],
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ],
+ [
+ 64.72504372716915,
+ 26.015093614464828
+ ],
+ [
+ 64.4953583602018,
+ 26.015093614464828
+ ],
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ],
+ [
+ 64.4953583602018,
+ 26.015093614464828
+ ],
+ [
+ 64.38051567671812,
+ 25.820445879536376
+ ],
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ],
+ [
+ 64.38051567671812,
+ 25.820445879536376
+ ],
+ [
+ 64.4953583602018,
+ 25.625798144607923
+ ],
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ],
+ [
+ 64.4953583602018,
+ 25.625798144607923
+ ],
+ [
+ 64.72504372716915,
+ 25.625798144607923
+ ],
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ],
+ [
+ 64.72504372716915,
+ 25.625798144607923
+ ],
+ [
+ 64.83988641065284,
+ 25.820445879536376
+ ],
+ [
+ 64.61020104368548,
+ 25.820445879536376
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ],
+ [
+ 64.83988641065284,
+ 26.209741349393283
+ ],
+ [
+ 64.72504372716915,
+ 26.404389084321735
+ ],
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ],
+ [
+ 64.72504372716915,
+ 26.404389084321735
+ ],
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ],
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ],
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ],
+ [
+ 64.38051567671812,
+ 26.209741349393283
+ ],
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ],
+ [
+ 64.38051567671812,
+ 26.209741349393283
+ ],
+ [
+ 64.4953583602018,
+ 26.01509361446483
+ ],
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ],
+ [
+ 64.4953583602018,
+ 26.01509361446483
+ ],
+ [
+ 64.72504372716915,
+ 26.01509361446483
+ ],
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ],
+ [
+ 64.72504372716915,
+ 26.01509361446483
+ ],
+ [
+ 64.83988641065284,
+ 26.209741349393283
+ ],
+ [
+ 64.61020104368548,
+ 26.209741349393283
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ],
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ],
+ [
+ 64.72504372716915,
+ 26.79368455417864
+ ],
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ],
+ [
+ 64.72504372716915,
+ 26.79368455417864
+ ],
+ [
+ 64.4953583602018,
+ 26.79368455417864
+ ],
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ],
+ [
+ 64.4953583602018,
+ 26.79368455417864
+ ],
+ [
+ 64.38051567671812,
+ 26.599036819250188
+ ],
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ],
+ [
+ 64.38051567671812,
+ 26.599036819250188
+ ],
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ],
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ],
+ [
+ 64.4953583602018,
+ 26.404389084321735
+ ],
+ [
+ 64.72504372716915,
+ 26.404389084321735
+ ],
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ],
+ [
+ 64.72504372716915,
+ 26.404389084321735
+ ],
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ],
+ [
+ 64.61020104368548,
+ 26.599036819250188
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ],
+ [
+ 64.83988641065284,
+ 26.988332289107095
+ ],
+ [
+ 64.72504372716915,
+ 27.182980024035547
+ ],
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ],
+ [
+ 64.72504372716915,
+ 27.182980024035547
+ ],
+ [
+ 64.4953583602018,
+ 27.182980024035547
+ ],
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ],
+ [
+ 64.4953583602018,
+ 27.182980024035547
+ ],
+ [
+ 64.38051567671812,
+ 26.988332289107095
+ ],
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ],
+ [
+ 64.38051567671812,
+ 26.988332289107095
+ ],
+ [
+ 64.4953583602018,
+ 26.793684554178643
+ ],
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ],
+ [
+ 64.4953583602018,
+ 26.793684554178643
+ ],
+ [
+ 64.72504372716915,
+ 26.793684554178643
+ ],
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ],
+ [
+ 64.72504372716915,
+ 26.793684554178643
+ ],
+ [
+ 64.83988641065284,
+ 26.988332289107095
+ ],
+ [
+ 64.61020104368548,
+ 26.988332289107095
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ],
+ [
+ 64.83988641065284,
+ 27.377627758964003
+ ],
+ [
+ 64.72504372716915,
+ 27.572275493892455
+ ],
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ],
+ [
+ 64.72504372716915,
+ 27.572275493892455
+ ],
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ],
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ],
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ],
+ [
+ 64.38051567671812,
+ 27.377627758964003
+ ],
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ],
+ [
+ 64.38051567671812,
+ 27.377627758964003
+ ],
+ [
+ 64.4953583602018,
+ 27.18298002403555
+ ],
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ],
+ [
+ 64.4953583602018,
+ 27.18298002403555
+ ],
+ [
+ 64.72504372716915,
+ 27.18298002403555
+ ],
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ],
+ [
+ 64.72504372716915,
+ 27.18298002403555
+ ],
+ [
+ 64.83988641065284,
+ 27.377627758964003
+ ],
+ [
+ 64.61020104368548,
+ 27.377627758964003
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ],
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ],
+ [
+ 64.72504372716915,
+ 27.96157096374936
+ ],
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ],
+ [
+ 64.72504372716915,
+ 27.96157096374936
+ ],
+ [
+ 64.4953583602018,
+ 27.96157096374936
+ ],
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ],
+ [
+ 64.4953583602018,
+ 27.96157096374936
+ ],
+ [
+ 64.38051567671812,
+ 27.766923228820907
+ ],
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ],
+ [
+ 64.38051567671812,
+ 27.766923228820907
+ ],
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ],
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ],
+ [
+ 64.4953583602018,
+ 27.572275493892455
+ ],
+ [
+ 64.72504372716915,
+ 27.572275493892455
+ ],
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ],
+ [
+ 64.72504372716915,
+ 27.572275493892455
+ ],
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ],
+ [
+ 64.61020104368548,
+ 27.766923228820907
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ],
+ [
+ 64.83988641065284,
+ 28.156218698677815
+ ],
+ [
+ 64.72504372716915,
+ 28.350866433606267
+ ],
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ],
+ [
+ 64.72504372716915,
+ 28.350866433606267
+ ],
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ],
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ],
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ],
+ [
+ 64.38051567671812,
+ 28.156218698677815
+ ],
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ],
+ [
+ 64.38051567671812,
+ 28.156218698677815
+ ],
+ [
+ 64.4953583602018,
+ 27.961570963749363
+ ],
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ],
+ [
+ 64.4953583602018,
+ 27.961570963749363
+ ],
+ [
+ 64.72504372716915,
+ 27.961570963749363
+ ],
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ],
+ [
+ 64.72504372716915,
+ 27.961570963749363
+ ],
+ [
+ 64.83988641065284,
+ 28.156218698677815
+ ],
+ [
+ 64.61020104368548,
+ 28.156218698677815
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ],
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ],
+ [
+ 64.72504372716915,
+ 28.74016190346317
+ ],
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ],
+ [
+ 64.72504372716915,
+ 28.74016190346317
+ ],
+ [
+ 64.4953583602018,
+ 28.74016190346317
+ ],
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ],
+ [
+ 64.4953583602018,
+ 28.74016190346317
+ ],
+ [
+ 64.38051567671812,
+ 28.54551416853472
+ ],
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ],
+ [
+ 64.38051567671812,
+ 28.54551416853472
+ ],
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ],
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ],
+ [
+ 64.4953583602018,
+ 28.350866433606267
+ ],
+ [
+ 64.72504372716915,
+ 28.350866433606267
+ ],
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ],
+ [
+ 64.72504372716915,
+ 28.350866433606267
+ ],
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ],
+ [
+ 64.61020104368548,
+ 28.54551416853472
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ],
+ [
+ 64.83988641065284,
+ 28.934809638391627
+ ],
+ [
+ 64.72504372716915,
+ 29.12945737332008
+ ],
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ],
+ [
+ 64.72504372716915,
+ 29.12945737332008
+ ],
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ],
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ],
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ],
+ [
+ 64.38051567671812,
+ 28.934809638391627
+ ],
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ],
+ [
+ 64.38051567671812,
+ 28.934809638391627
+ ],
+ [
+ 64.4953583602018,
+ 28.740161903463175
+ ],
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ],
+ [
+ 64.4953583602018,
+ 28.740161903463175
+ ],
+ [
+ 64.72504372716915,
+ 28.740161903463175
+ ],
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ],
+ [
+ 64.72504372716915,
+ 28.740161903463175
+ ],
+ [
+ 64.83988641065284,
+ 28.934809638391627
+ ],
+ [
+ 64.61020104368548,
+ 28.934809638391627
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ],
+ [
+ 64.83988641065284,
+ 29.32410510824853
+ ],
+ [
+ 64.72504372716915,
+ 29.518752843176983
+ ],
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ],
+ [
+ 64.72504372716915,
+ 29.518752843176983
+ ],
+ [
+ 64.4953583602018,
+ 29.518752843176983
+ ],
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ],
+ [
+ 64.4953583602018,
+ 29.518752843176983
+ ],
+ [
+ 64.38051567671812,
+ 29.32410510824853
+ ],
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ],
+ [
+ 64.38051567671812,
+ 29.32410510824853
+ ],
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ],
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ],
+ [
+ 64.4953583602018,
+ 29.12945737332008
+ ],
+ [
+ 64.72504372716915,
+ 29.12945737332008
+ ],
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ],
+ [
+ 64.72504372716915,
+ 29.12945737332008
+ ],
+ [
+ 64.83988641065284,
+ 29.32410510824853
+ ],
+ [
+ 64.61020104368548,
+ 29.32410510824853
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ],
+ [
+ 64.83988641065284,
+ 29.71340057810544
+ ],
+ [
+ 64.72504372716915,
+ 29.90804831303389
+ ],
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ],
+ [
+ 64.72504372716915,
+ 29.90804831303389
+ ],
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ],
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ],
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ],
+ [
+ 64.38051567671812,
+ 29.71340057810544
+ ],
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ],
+ [
+ 64.38051567671812,
+ 29.71340057810544
+ ],
+ [
+ 64.4953583602018,
+ 29.518752843176987
+ ],
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ],
+ [
+ 64.4953583602018,
+ 29.518752843176987
+ ],
+ [
+ 64.72504372716915,
+ 29.518752843176987
+ ],
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ],
+ [
+ 64.72504372716915,
+ 29.518752843176987
+ ],
+ [
+ 64.83988641065284,
+ 29.71340057810544
+ ],
+ [
+ 64.61020104368548,
+ 29.71340057810544
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ],
+ [
+ 64.83988641065284,
+ 30.102696047962343
+ ],
+ [
+ 64.72504372716915,
+ 30.297343782890795
+ ],
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ],
+ [
+ 64.72504372716915,
+ 30.297343782890795
+ ],
+ [
+ 64.4953583602018,
+ 30.297343782890795
+ ],
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ],
+ [
+ 64.4953583602018,
+ 30.297343782890795
+ ],
+ [
+ 64.38051567671812,
+ 30.102696047962343
+ ],
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ],
+ [
+ 64.38051567671812,
+ 30.102696047962343
+ ],
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ],
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ],
+ [
+ 64.4953583602018,
+ 29.90804831303389
+ ],
+ [
+ 64.72504372716915,
+ 29.90804831303389
+ ],
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ],
+ [
+ 64.72504372716915,
+ 29.90804831303389
+ ],
+ [
+ 64.83988641065284,
+ 30.102696047962343
+ ],
+ [
+ 64.61020104368548,
+ 30.102696047962343
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ],
+ [
+ 64.83988641065284,
+ 30.49199151781925
+ ],
+ [
+ 64.72504372716915,
+ 30.686639252747703
+ ],
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ],
+ [
+ 64.72504372716915,
+ 30.686639252747703
+ ],
+ [
+ 64.4953583602018,
+ 30.686639252747703
+ ],
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ],
+ [
+ 64.4953583602018,
+ 30.686639252747703
+ ],
+ [
+ 64.38051567671812,
+ 30.49199151781925
+ ],
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ],
+ [
+ 64.38051567671812,
+ 30.49199151781925
+ ],
+ [
+ 64.4953583602018,
+ 30.2973437828908
+ ],
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ],
+ [
+ 64.4953583602018,
+ 30.2973437828908
+ ],
+ [
+ 64.72504372716915,
+ 30.2973437828908
+ ],
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ],
+ [
+ 64.72504372716915,
+ 30.2973437828908
+ ],
+ [
+ 64.83988641065284,
+ 30.49199151781925
+ ],
+ [
+ 64.61020104368548,
+ 30.49199151781925
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ],
+ [
+ 64.83988641065284,
+ 30.88128698767616
+ ],
+ [
+ 64.72504372716915,
+ 31.07593472260461
+ ],
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ],
+ [
+ 64.72504372716915,
+ 31.07593472260461
+ ],
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ],
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ],
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ],
+ [
+ 64.38051567671812,
+ 30.88128698767616
+ ],
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ],
+ [
+ 64.38051567671812,
+ 30.88128698767616
+ ],
+ [
+ 64.4953583602018,
+ 30.686639252747707
+ ],
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ],
+ [
+ 64.4953583602018,
+ 30.686639252747707
+ ],
+ [
+ 64.72504372716915,
+ 30.686639252747707
+ ],
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ],
+ [
+ 64.72504372716915,
+ 30.686639252747707
+ ],
+ [
+ 64.83988641065284,
+ 30.88128698767616
+ ],
+ [
+ 64.61020104368548,
+ 30.88128698767616
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ],
+ [
+ 64.83988641065284,
+ 31.270582457533063
+ ],
+ [
+ 64.72504372716915,
+ 31.465230192461515
+ ],
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ],
+ [
+ 64.72504372716915,
+ 31.465230192461515
+ ],
+ [
+ 64.4953583602018,
+ 31.465230192461515
+ ],
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ],
+ [
+ 64.4953583602018,
+ 31.465230192461515
+ ],
+ [
+ 64.38051567671812,
+ 31.270582457533063
+ ],
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ],
+ [
+ 64.38051567671812,
+ 31.270582457533063
+ ],
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ],
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ],
+ [
+ 64.4953583602018,
+ 31.07593472260461
+ ],
+ [
+ 64.72504372716915,
+ 31.07593472260461
+ ],
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ],
+ [
+ 64.72504372716915,
+ 31.07593472260461
+ ],
+ [
+ 64.83988641065284,
+ 31.270582457533063
+ ],
+ [
+ 64.61020104368548,
+ 31.270582457533063
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ],
+ [
+ 64.83988641065284,
+ 31.65987792738997
+ ],
+ [
+ 64.72504372716915,
+ 31.854525662318423
+ ],
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ],
+ [
+ 64.72504372716915,
+ 31.854525662318423
+ ],
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ],
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ],
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ],
+ [
+ 64.38051567671812,
+ 31.65987792738997
+ ],
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ],
+ [
+ 64.38051567671812,
+ 31.65987792738997
+ ],
+ [
+ 64.4953583602018,
+ 31.46523019246152
+ ],
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ],
+ [
+ 64.4953583602018,
+ 31.46523019246152
+ ],
+ [
+ 64.72504372716915,
+ 31.46523019246152
+ ],
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ],
+ [
+ 64.72504372716915,
+ 31.46523019246152
+ ],
+ [
+ 64.83988641065284,
+ 31.65987792738997
+ ],
+ [
+ 64.61020104368548,
+ 31.65987792738997
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ],
+ [
+ 64.83988641065284,
+ 32.049173397246875
+ ],
+ [
+ 64.72504372716915,
+ 32.24382113217533
+ ],
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ],
+ [
+ 64.72504372716915,
+ 32.24382113217533
+ ],
+ [
+ 64.4953583602018,
+ 32.24382113217533
+ ],
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ],
+ [
+ 64.4953583602018,
+ 32.24382113217533
+ ],
+ [
+ 64.38051567671812,
+ 32.049173397246875
+ ],
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ],
+ [
+ 64.38051567671812,
+ 32.049173397246875
+ ],
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ],
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ],
+ [
+ 64.4953583602018,
+ 31.854525662318423
+ ],
+ [
+ 64.72504372716915,
+ 31.854525662318423
+ ],
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ],
+ [
+ 64.72504372716915,
+ 31.854525662318423
+ ],
+ [
+ 64.83988641065284,
+ 32.049173397246875
+ ],
+ [
+ 64.61020104368548,
+ 32.049173397246875
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ],
+ [
+ 64.83988641065284,
+ 32.438468867103786
+ ],
+ [
+ 64.72504372716915,
+ 32.63311660203224
+ ],
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ],
+ [
+ 64.72504372716915,
+ 32.63311660203224
+ ],
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ],
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ],
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ],
+ [
+ 64.38051567671812,
+ 32.438468867103786
+ ],
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ],
+ [
+ 64.38051567671812,
+ 32.438468867103786
+ ],
+ [
+ 64.4953583602018,
+ 32.243821132175334
+ ],
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ],
+ [
+ 64.4953583602018,
+ 32.243821132175334
+ ],
+ [
+ 64.72504372716915,
+ 32.243821132175334
+ ],
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ],
+ [
+ 64.72504372716915,
+ 32.243821132175334
+ ],
+ [
+ 64.83988641065284,
+ 32.438468867103786
+ ],
+ [
+ 64.61020104368548,
+ 32.438468867103786
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ],
+ [
+ 64.83988641065284,
+ 32.82776433696069
+ ],
+ [
+ 64.72504372716915,
+ 33.02241207188914
+ ],
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ],
+ [
+ 64.72504372716915,
+ 33.02241207188914
+ ],
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ],
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ],
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ],
+ [
+ 64.38051567671812,
+ 32.82776433696069
+ ],
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ],
+ [
+ 64.38051567671812,
+ 32.82776433696069
+ ],
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ],
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ],
+ [
+ 64.4953583602018,
+ 32.63311660203224
+ ],
+ [
+ 64.72504372716915,
+ 32.63311660203224
+ ],
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ],
+ [
+ 64.72504372716915,
+ 32.63311660203224
+ ],
+ [
+ 64.83988641065284,
+ 32.82776433696069
+ ],
+ [
+ 64.61020104368548,
+ 32.82776433696069
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ],
+ [
+ 64.83988641065284,
+ 33.217059806817595
+ ],
+ [
+ 64.72504372716915,
+ 33.41170754174605
+ ],
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ],
+ [
+ 64.72504372716915,
+ 33.41170754174605
+ ],
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ],
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ],
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ],
+ [
+ 64.38051567671812,
+ 33.217059806817595
+ ],
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ],
+ [
+ 64.38051567671812,
+ 33.217059806817595
+ ],
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ],
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ],
+ [
+ 64.4953583602018,
+ 33.02241207188914
+ ],
+ [
+ 64.72504372716915,
+ 33.02241207188914
+ ],
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ],
+ [
+ 64.72504372716915,
+ 33.02241207188914
+ ],
+ [
+ 64.83988641065284,
+ 33.217059806817595
+ ],
+ [
+ 64.61020104368548,
+ 33.217059806817595
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ],
+ [
+ 64.83988641065284,
+ 33.6063552766745
+ ],
+ [
+ 64.72504372716915,
+ 33.80100301160295
+ ],
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ],
+ [
+ 64.72504372716915,
+ 33.80100301160295
+ ],
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ],
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ],
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ],
+ [
+ 64.38051567671812,
+ 33.6063552766745
+ ],
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ],
+ [
+ 64.38051567671812,
+ 33.6063552766745
+ ],
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ],
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ],
+ [
+ 64.4953583602018,
+ 33.41170754174605
+ ],
+ [
+ 64.72504372716915,
+ 33.41170754174605
+ ],
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ],
+ [
+ 64.72504372716915,
+ 33.41170754174605
+ ],
+ [
+ 64.83988641065284,
+ 33.6063552766745
+ ],
+ [
+ 64.61020104368548,
+ 33.6063552766745
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ],
+ [
+ 64.83988641065284,
+ 33.9956507465314
+ ],
+ [
+ 64.72504372716915,
+ 34.190298481459855
+ ],
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ],
+ [
+ 64.72504372716915,
+ 34.190298481459855
+ ],
+ [
+ 64.4953583602018,
+ 34.190298481459855
+ ],
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ],
+ [
+ 64.4953583602018,
+ 34.190298481459855
+ ],
+ [
+ 64.38051567671812,
+ 33.9956507465314
+ ],
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ],
+ [
+ 64.38051567671812,
+ 33.9956507465314
+ ],
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ],
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ],
+ [
+ 64.4953583602018,
+ 33.80100301160295
+ ],
+ [
+ 64.72504372716915,
+ 33.80100301160295
+ ],
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ],
+ [
+ 64.72504372716915,
+ 33.80100301160295
+ ],
+ [
+ 64.83988641065284,
+ 33.9956507465314
+ ],
+ [
+ 64.61020104368548,
+ 33.9956507465314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ],
+ [
+ 64.83988641065284,
+ 34.384946216388315
+ ],
+ [
+ 64.72504372716915,
+ 34.57959395131677
+ ],
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ],
+ [
+ 64.72504372716915,
+ 34.57959395131677
+ ],
+ [
+ 64.4953583602018,
+ 34.57959395131677
+ ],
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ],
+ [
+ 64.4953583602018,
+ 34.57959395131677
+ ],
+ [
+ 64.38051567671812,
+ 34.384946216388315
+ ],
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ],
+ [
+ 64.38051567671812,
+ 34.384946216388315
+ ],
+ [
+ 64.4953583602018,
+ 34.19029848145986
+ ],
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ],
+ [
+ 64.4953583602018,
+ 34.19029848145986
+ ],
+ [
+ 64.72504372716915,
+ 34.19029848145986
+ ],
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ],
+ [
+ 64.72504372716915,
+ 34.19029848145986
+ ],
+ [
+ 64.83988641065284,
+ 34.384946216388315
+ ],
+ [
+ 64.61020104368548,
+ 34.384946216388315
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ],
+ [
+ 64.83988641065284,
+ 34.774241686245226
+ ],
+ [
+ 64.72504372716915,
+ 34.96888942117368
+ ],
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ],
+ [
+ 64.72504372716915,
+ 34.96888942117368
+ ],
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ],
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ],
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ],
+ [
+ 64.38051567671812,
+ 34.774241686245226
+ ],
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ],
+ [
+ 64.38051567671812,
+ 34.774241686245226
+ ],
+ [
+ 64.4953583602018,
+ 34.579593951316774
+ ],
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ],
+ [
+ 64.4953583602018,
+ 34.579593951316774
+ ],
+ [
+ 64.72504372716915,
+ 34.579593951316774
+ ],
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ],
+ [
+ 64.72504372716915,
+ 34.579593951316774
+ ],
+ [
+ 64.83988641065284,
+ 34.774241686245226
+ ],
+ [
+ 64.61020104368548,
+ 34.774241686245226
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ],
+ [
+ 64.83988641065284,
+ 35.16353715610213
+ ],
+ [
+ 64.72504372716915,
+ 35.35818489103058
+ ],
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ],
+ [
+ 64.72504372716915,
+ 35.35818489103058
+ ],
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ],
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ],
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ],
+ [
+ 64.38051567671812,
+ 35.16353715610213
+ ],
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ],
+ [
+ 64.38051567671812,
+ 35.16353715610213
+ ],
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ],
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ],
+ [
+ 64.4953583602018,
+ 34.96888942117368
+ ],
+ [
+ 64.72504372716915,
+ 34.96888942117368
+ ],
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ],
+ [
+ 64.72504372716915,
+ 34.96888942117368
+ ],
+ [
+ 64.83988641065284,
+ 35.16353715610213
+ ],
+ [
+ 64.61020104368548,
+ 35.16353715610213
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ],
+ [
+ 64.83988641065284,
+ 35.552832625959034
+ ],
+ [
+ 64.72504372716915,
+ 35.74748036088749
+ ],
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ],
+ [
+ 64.72504372716915,
+ 35.74748036088749
+ ],
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ],
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ],
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ],
+ [
+ 64.38051567671812,
+ 35.552832625959034
+ ],
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ],
+ [
+ 64.38051567671812,
+ 35.552832625959034
+ ],
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ],
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ],
+ [
+ 64.4953583602018,
+ 35.35818489103058
+ ],
+ [
+ 64.72504372716915,
+ 35.35818489103058
+ ],
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ],
+ [
+ 64.72504372716915,
+ 35.35818489103058
+ ],
+ [
+ 64.83988641065284,
+ 35.552832625959034
+ ],
+ [
+ 64.61020104368548,
+ 35.552832625959034
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ],
+ [
+ 64.83988641065284,
+ 35.94212809581594
+ ],
+ [
+ 64.72504372716915,
+ 36.13677583074439
+ ],
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ],
+ [
+ 64.72504372716915,
+ 36.13677583074439
+ ],
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ],
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ],
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ],
+ [
+ 64.38051567671812,
+ 35.94212809581594
+ ],
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ],
+ [
+ 64.38051567671812,
+ 35.94212809581594
+ ],
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ],
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ],
+ [
+ 64.4953583602018,
+ 35.74748036088749
+ ],
+ [
+ 64.72504372716915,
+ 35.74748036088749
+ ],
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ],
+ [
+ 64.72504372716915,
+ 35.74748036088749
+ ],
+ [
+ 64.83988641065284,
+ 35.94212809581594
+ ],
+ [
+ 64.61020104368548,
+ 35.94212809581594
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ],
+ [
+ 64.83988641065284,
+ 36.33142356567284
+ ],
+ [
+ 64.72504372716915,
+ 36.526071300601295
+ ],
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ],
+ [
+ 64.72504372716915,
+ 36.526071300601295
+ ],
+ [
+ 64.4953583602018,
+ 36.526071300601295
+ ],
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ],
+ [
+ 64.4953583602018,
+ 36.526071300601295
+ ],
+ [
+ 64.38051567671812,
+ 36.33142356567284
+ ],
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ],
+ [
+ 64.38051567671812,
+ 36.33142356567284
+ ],
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ],
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ],
+ [
+ 64.4953583602018,
+ 36.13677583074439
+ ],
+ [
+ 64.72504372716915,
+ 36.13677583074439
+ ],
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ],
+ [
+ 64.72504372716915,
+ 36.13677583074439
+ ],
+ [
+ 64.83988641065284,
+ 36.33142356567284
+ ],
+ [
+ 64.61020104368548,
+ 36.33142356567284
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ],
+ [
+ 64.83988641065284,
+ 36.720719035529754
+ ],
+ [
+ 64.72504372716915,
+ 36.915366770458206
+ ],
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ],
+ [
+ 64.72504372716915,
+ 36.915366770458206
+ ],
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ],
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ],
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ],
+ [
+ 64.38051567671812,
+ 36.720719035529754
+ ],
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ],
+ [
+ 64.38051567671812,
+ 36.720719035529754
+ ],
+ [
+ 64.4953583602018,
+ 36.5260713006013
+ ],
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ],
+ [
+ 64.4953583602018,
+ 36.5260713006013
+ ],
+ [
+ 64.72504372716915,
+ 36.5260713006013
+ ],
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ],
+ [
+ 64.72504372716915,
+ 36.5260713006013
+ ],
+ [
+ 64.83988641065284,
+ 36.720719035529754
+ ],
+ [
+ 64.61020104368548,
+ 36.720719035529754
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ],
+ [
+ 64.83988641065284,
+ 37.11001450538666
+ ],
+ [
+ 64.72504372716915,
+ 37.30466224031511
+ ],
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ],
+ [
+ 64.72504372716915,
+ 37.30466224031511
+ ],
+ [
+ 64.4953583602018,
+ 37.30466224031511
+ ],
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ],
+ [
+ 64.4953583602018,
+ 37.30466224031511
+ ],
+ [
+ 64.38051567671812,
+ 37.11001450538666
+ ],
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ],
+ [
+ 64.38051567671812,
+ 37.11001450538666
+ ],
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ],
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ],
+ [
+ 64.4953583602018,
+ 36.915366770458206
+ ],
+ [
+ 64.72504372716915,
+ 36.915366770458206
+ ],
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ],
+ [
+ 64.72504372716915,
+ 36.915366770458206
+ ],
+ [
+ 64.83988641065284,
+ 37.11001450538666
+ ],
+ [
+ 64.61020104368548,
+ 37.11001450538666
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ],
+ [
+ 64.83988641065284,
+ 37.49930997524357
+ ],
+ [
+ 64.72504372716915,
+ 37.69395771017202
+ ],
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ],
+ [
+ 64.72504372716915,
+ 37.69395771017202
+ ],
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ],
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ],
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ],
+ [
+ 64.38051567671812,
+ 37.49930997524357
+ ],
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ],
+ [
+ 64.38051567671812,
+ 37.49930997524357
+ ],
+ [
+ 64.4953583602018,
+ 37.30466224031512
+ ],
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ],
+ [
+ 64.4953583602018,
+ 37.30466224031512
+ ],
+ [
+ 64.72504372716915,
+ 37.30466224031512
+ ],
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ],
+ [
+ 64.72504372716915,
+ 37.30466224031512
+ ],
+ [
+ 64.83988641065284,
+ 37.49930997524357
+ ],
+ [
+ 64.61020104368548,
+ 37.49930997524357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ],
+ [
+ 64.83988641065284,
+ 37.888605445100474
+ ],
+ [
+ 64.72504372716915,
+ 38.083253180028926
+ ],
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ],
+ [
+ 64.72504372716915,
+ 38.083253180028926
+ ],
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ],
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ],
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ],
+ [
+ 64.38051567671812,
+ 37.888605445100474
+ ],
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ],
+ [
+ 64.38051567671812,
+ 37.888605445100474
+ ],
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ],
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ],
+ [
+ 64.4953583602018,
+ 37.69395771017202
+ ],
+ [
+ 64.72504372716915,
+ 37.69395771017202
+ ],
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ],
+ [
+ 64.72504372716915,
+ 37.69395771017202
+ ],
+ [
+ 64.83988641065284,
+ 37.888605445100474
+ ],
+ [
+ 64.61020104368548,
+ 37.888605445100474
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ],
+ [
+ 64.83988641065284,
+ 38.27790091495738
+ ],
+ [
+ 64.72504372716915,
+ 38.47254864988583
+ ],
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ],
+ [
+ 64.72504372716915,
+ 38.47254864988583
+ ],
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ],
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ],
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ],
+ [
+ 64.38051567671812,
+ 38.27790091495738
+ ],
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ],
+ [
+ 64.38051567671812,
+ 38.27790091495738
+ ],
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ],
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ],
+ [
+ 64.4953583602018,
+ 38.083253180028926
+ ],
+ [
+ 64.72504372716915,
+ 38.083253180028926
+ ],
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ],
+ [
+ 64.72504372716915,
+ 38.083253180028926
+ ],
+ [
+ 64.83988641065284,
+ 38.27790091495738
+ ],
+ [
+ 64.61020104368548,
+ 38.27790091495738
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ],
+ [
+ 64.83988641065284,
+ 38.66719638481428
+ ],
+ [
+ 64.72504372716915,
+ 38.861844119742734
+ ],
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ],
+ [
+ 64.72504372716915,
+ 38.861844119742734
+ ],
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ],
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ],
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ],
+ [
+ 64.38051567671812,
+ 38.66719638481428
+ ],
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ],
+ [
+ 64.38051567671812,
+ 38.66719638481428
+ ],
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ],
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ],
+ [
+ 64.4953583602018,
+ 38.47254864988583
+ ],
+ [
+ 64.72504372716915,
+ 38.47254864988583
+ ],
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ],
+ [
+ 64.72504372716915,
+ 38.47254864988583
+ ],
+ [
+ 64.83988641065284,
+ 38.66719638481428
+ ],
+ [
+ 64.61020104368548,
+ 38.66719638481428
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ],
+ [
+ 64.83988641065284,
+ 39.05649185467119
+ ],
+ [
+ 64.72504372716915,
+ 39.25113958959964
+ ],
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ],
+ [
+ 64.72504372716915,
+ 39.25113958959964
+ ],
+ [
+ 64.4953583602018,
+ 39.25113958959964
+ ],
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ],
+ [
+ 64.4953583602018,
+ 39.25113958959964
+ ],
+ [
+ 64.38051567671812,
+ 39.05649185467119
+ ],
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ],
+ [
+ 64.38051567671812,
+ 39.05649185467119
+ ],
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ],
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ],
+ [
+ 64.4953583602018,
+ 38.861844119742734
+ ],
+ [
+ 64.72504372716915,
+ 38.861844119742734
+ ],
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ],
+ [
+ 64.72504372716915,
+ 38.861844119742734
+ ],
+ [
+ 64.83988641065284,
+ 39.05649185467119
+ ],
+ [
+ 64.61020104368548,
+ 39.05649185467119
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ],
+ [
+ 64.83988641065284,
+ 39.4457873245281
+ ],
+ [
+ 64.72504372716915,
+ 39.64043505945655
+ ],
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ],
+ [
+ 64.72504372716915,
+ 39.64043505945655
+ ],
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ],
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ],
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ],
+ [
+ 64.38051567671812,
+ 39.4457873245281
+ ],
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ],
+ [
+ 64.38051567671812,
+ 39.4457873245281
+ ],
+ [
+ 64.4953583602018,
+ 39.251139589599646
+ ],
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ],
+ [
+ 64.4953583602018,
+ 39.251139589599646
+ ],
+ [
+ 64.72504372716915,
+ 39.251139589599646
+ ],
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ],
+ [
+ 64.72504372716915,
+ 39.251139589599646
+ ],
+ [
+ 64.83988641065284,
+ 39.4457873245281
+ ],
+ [
+ 64.61020104368548,
+ 39.4457873245281
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ],
+ [
+ 64.83988641065284,
+ 39.835082794385
+ ],
+ [
+ 64.72504372716915,
+ 40.029730529313454
+ ],
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ],
+ [
+ 64.72504372716915,
+ 40.029730529313454
+ ],
+ [
+ 64.4953583602018,
+ 40.029730529313454
+ ],
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ],
+ [
+ 64.4953583602018,
+ 40.029730529313454
+ ],
+ [
+ 64.38051567671812,
+ 39.835082794385
+ ],
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ],
+ [
+ 64.38051567671812,
+ 39.835082794385
+ ],
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ],
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ],
+ [
+ 64.4953583602018,
+ 39.64043505945655
+ ],
+ [
+ 64.72504372716915,
+ 39.64043505945655
+ ],
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ],
+ [
+ 64.72504372716915,
+ 39.64043505945655
+ ],
+ [
+ 64.83988641065284,
+ 39.835082794385
+ ],
+ [
+ 64.61020104368548,
+ 39.835082794385
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ],
+ [
+ 64.83988641065284,
+ 40.22437826424191
+ ],
+ [
+ 64.72504372716915,
+ 40.419025999170366
+ ],
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ],
+ [
+ 64.72504372716915,
+ 40.419025999170366
+ ],
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ],
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ],
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ],
+ [
+ 64.38051567671812,
+ 40.22437826424191
+ ],
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ],
+ [
+ 64.38051567671812,
+ 40.22437826424191
+ ],
+ [
+ 64.4953583602018,
+ 40.02973052931346
+ ],
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ],
+ [
+ 64.4953583602018,
+ 40.02973052931346
+ ],
+ [
+ 64.72504372716915,
+ 40.02973052931346
+ ],
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ],
+ [
+ 64.72504372716915,
+ 40.02973052931346
+ ],
+ [
+ 64.83988641065284,
+ 40.22437826424191
+ ],
+ [
+ 64.61020104368548,
+ 40.22437826424191
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ],
+ [
+ 64.83988641065284,
+ 40.61367373409882
+ ],
+ [
+ 64.72504372716915,
+ 40.80832146902727
+ ],
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ],
+ [
+ 64.72504372716915,
+ 40.80832146902727
+ ],
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ],
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ],
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ],
+ [
+ 64.38051567671812,
+ 40.61367373409882
+ ],
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ],
+ [
+ 64.38051567671812,
+ 40.61367373409882
+ ],
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ],
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ],
+ [
+ 64.4953583602018,
+ 40.419025999170366
+ ],
+ [
+ 64.72504372716915,
+ 40.419025999170366
+ ],
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ],
+ [
+ 64.72504372716915,
+ 40.419025999170366
+ ],
+ [
+ 64.83988641065284,
+ 40.61367373409882
+ ],
+ [
+ 64.61020104368548,
+ 40.61367373409882
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ],
+ [
+ 64.83988641065284,
+ 41.00296920395572
+ ],
+ [
+ 64.72504372716915,
+ 41.197616938884174
+ ],
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ],
+ [
+ 64.72504372716915,
+ 41.197616938884174
+ ],
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ],
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ],
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ],
+ [
+ 64.38051567671812,
+ 41.00296920395572
+ ],
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ],
+ [
+ 64.38051567671812,
+ 41.00296920395572
+ ],
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ],
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ],
+ [
+ 64.4953583602018,
+ 40.80832146902727
+ ],
+ [
+ 64.72504372716915,
+ 40.80832146902727
+ ],
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ],
+ [
+ 64.72504372716915,
+ 40.80832146902727
+ ],
+ [
+ 64.83988641065284,
+ 41.00296920395572
+ ],
+ [
+ 64.61020104368548,
+ 41.00296920395572
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ],
+ [
+ 64.83988641065284,
+ 41.392264673812626
+ ],
+ [
+ 64.72504372716915,
+ 41.58691240874108
+ ],
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ],
+ [
+ 64.72504372716915,
+ 41.58691240874108
+ ],
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ],
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ],
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ],
+ [
+ 64.38051567671812,
+ 41.392264673812626
+ ],
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ],
+ [
+ 64.38051567671812,
+ 41.392264673812626
+ ],
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ],
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ],
+ [
+ 64.4953583602018,
+ 41.197616938884174
+ ],
+ [
+ 64.72504372716915,
+ 41.197616938884174
+ ],
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ],
+ [
+ 64.72504372716915,
+ 41.197616938884174
+ ],
+ [
+ 64.83988641065284,
+ 41.392264673812626
+ ],
+ [
+ 64.61020104368548,
+ 41.392264673812626
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ],
+ [
+ 64.83988641065284,
+ 41.78156014366953
+ ],
+ [
+ 64.72504372716915,
+ 41.97620787859798
+ ],
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ],
+ [
+ 64.72504372716915,
+ 41.97620787859798
+ ],
+ [
+ 64.4953583602018,
+ 41.97620787859798
+ ],
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ],
+ [
+ 64.4953583602018,
+ 41.97620787859798
+ ],
+ [
+ 64.38051567671812,
+ 41.78156014366953
+ ],
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ],
+ [
+ 64.38051567671812,
+ 41.78156014366953
+ ],
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ],
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ],
+ [
+ 64.4953583602018,
+ 41.58691240874108
+ ],
+ [
+ 64.72504372716915,
+ 41.58691240874108
+ ],
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ],
+ [
+ 64.72504372716915,
+ 41.58691240874108
+ ],
+ [
+ 64.83988641065284,
+ 41.78156014366953
+ ],
+ [
+ 64.61020104368548,
+ 41.78156014366953
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ],
+ [
+ 64.83988641065284,
+ 42.17085561352644
+ ],
+ [
+ 64.72504372716915,
+ 42.365503348454894
+ ],
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ],
+ [
+ 64.72504372716915,
+ 42.365503348454894
+ ],
+ [
+ 64.4953583602018,
+ 42.365503348454894
+ ],
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ],
+ [
+ 64.4953583602018,
+ 42.365503348454894
+ ],
+ [
+ 64.38051567671812,
+ 42.17085561352644
+ ],
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ],
+ [
+ 64.38051567671812,
+ 42.17085561352644
+ ],
+ [
+ 64.4953583602018,
+ 41.97620787859799
+ ],
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ],
+ [
+ 64.4953583602018,
+ 41.97620787859799
+ ],
+ [
+ 64.72504372716915,
+ 41.97620787859799
+ ],
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ],
+ [
+ 64.72504372716915,
+ 41.97620787859799
+ ],
+ [
+ 64.83988641065284,
+ 42.17085561352644
+ ],
+ [
+ 64.61020104368548,
+ 42.17085561352644
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ],
+ [
+ 64.83988641065284,
+ 42.56015108338335
+ ],
+ [
+ 64.72504372716915,
+ 42.754798818311805
+ ],
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ],
+ [
+ 64.72504372716915,
+ 42.754798818311805
+ ],
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ],
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ],
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ],
+ [
+ 64.38051567671812,
+ 42.56015108338335
+ ],
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ],
+ [
+ 64.38051567671812,
+ 42.56015108338335
+ ],
+ [
+ 64.4953583602018,
+ 42.3655033484549
+ ],
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ],
+ [
+ 64.4953583602018,
+ 42.3655033484549
+ ],
+ [
+ 64.72504372716915,
+ 42.3655033484549
+ ],
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ],
+ [
+ 64.72504372716915,
+ 42.3655033484549
+ ],
+ [
+ 64.83988641065284,
+ 42.56015108338335
+ ],
+ [
+ 64.61020104368548,
+ 42.56015108338335
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ],
+ [
+ 64.83988641065284,
+ 42.94944655324026
+ ],
+ [
+ 64.72504372716915,
+ 43.14409428816871
+ ],
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ],
+ [
+ 64.72504372716915,
+ 43.14409428816871
+ ],
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ],
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ],
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ],
+ [
+ 64.38051567671812,
+ 42.94944655324026
+ ],
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ],
+ [
+ 64.38051567671812,
+ 42.94944655324026
+ ],
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ],
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ],
+ [
+ 64.4953583602018,
+ 42.754798818311805
+ ],
+ [
+ 64.72504372716915,
+ 42.754798818311805
+ ],
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ],
+ [
+ 64.72504372716915,
+ 42.754798818311805
+ ],
+ [
+ 64.83988641065284,
+ 42.94944655324026
+ ],
+ [
+ 64.61020104368548,
+ 42.94944655324026
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ],
+ [
+ 64.83988641065284,
+ 43.33874202309716
+ ],
+ [
+ 64.72504372716915,
+ 43.53338975802561
+ ],
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ],
+ [
+ 64.72504372716915,
+ 43.53338975802561
+ ],
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ],
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ],
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ],
+ [
+ 64.38051567671812,
+ 43.33874202309716
+ ],
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ],
+ [
+ 64.38051567671812,
+ 43.33874202309716
+ ],
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ],
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ],
+ [
+ 64.4953583602018,
+ 43.14409428816871
+ ],
+ [
+ 64.72504372716915,
+ 43.14409428816871
+ ],
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ],
+ [
+ 64.72504372716915,
+ 43.14409428816871
+ ],
+ [
+ 64.83988641065284,
+ 43.33874202309716
+ ],
+ [
+ 64.61020104368548,
+ 43.33874202309716
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ],
+ [
+ 64.83988641065284,
+ 43.728037492954066
+ ],
+ [
+ 64.72504372716915,
+ 43.92268522788252
+ ],
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ],
+ [
+ 64.72504372716915,
+ 43.92268522788252
+ ],
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ],
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ],
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ],
+ [
+ 64.38051567671812,
+ 43.728037492954066
+ ],
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ],
+ [
+ 64.38051567671812,
+ 43.728037492954066
+ ],
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ],
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ],
+ [
+ 64.4953583602018,
+ 43.53338975802561
+ ],
+ [
+ 64.72504372716915,
+ 43.53338975802561
+ ],
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ],
+ [
+ 64.72504372716915,
+ 43.53338975802561
+ ],
+ [
+ 64.83988641065284,
+ 43.728037492954066
+ ],
+ [
+ 64.61020104368548,
+ 43.728037492954066
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ],
+ [
+ 64.83988641065284,
+ 44.11733296281097
+ ],
+ [
+ 64.72504372716915,
+ 44.31198069773942
+ ],
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ],
+ [
+ 64.72504372716915,
+ 44.31198069773942
+ ],
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ],
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ],
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ],
+ [
+ 64.38051567671812,
+ 44.11733296281097
+ ],
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ],
+ [
+ 64.38051567671812,
+ 44.11733296281097
+ ],
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ],
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ],
+ [
+ 64.4953583602018,
+ 43.92268522788252
+ ],
+ [
+ 64.72504372716915,
+ 43.92268522788252
+ ],
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ],
+ [
+ 64.72504372716915,
+ 43.92268522788252
+ ],
+ [
+ 64.83988641065284,
+ 44.11733296281097
+ ],
+ [
+ 64.61020104368548,
+ 44.11733296281097
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ],
+ [
+ 64.83988641065284,
+ 44.506628432667874
+ ],
+ [
+ 64.72504372716915,
+ 44.701276167596326
+ ],
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ],
+ [
+ 64.72504372716915,
+ 44.701276167596326
+ ],
+ [
+ 64.4953583602018,
+ 44.701276167596326
+ ],
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ],
+ [
+ 64.4953583602018,
+ 44.701276167596326
+ ],
+ [
+ 64.38051567671812,
+ 44.506628432667874
+ ],
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ],
+ [
+ 64.38051567671812,
+ 44.506628432667874
+ ],
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ],
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ],
+ [
+ 64.4953583602018,
+ 44.31198069773942
+ ],
+ [
+ 64.72504372716915,
+ 44.31198069773942
+ ],
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ],
+ [
+ 64.72504372716915,
+ 44.31198069773942
+ ],
+ [
+ 64.83988641065284,
+ 44.506628432667874
+ ],
+ [
+ 64.61020104368548,
+ 44.506628432667874
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ],
+ [
+ 64.83988641065284,
+ 44.89592390252479
+ ],
+ [
+ 64.72504372716915,
+ 45.090571637453245
+ ],
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ],
+ [
+ 64.72504372716915,
+ 45.090571637453245
+ ],
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ],
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ],
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ],
+ [
+ 64.38051567671812,
+ 44.89592390252479
+ ],
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ],
+ [
+ 64.38051567671812,
+ 44.89592390252479
+ ],
+ [
+ 64.4953583602018,
+ 44.70127616759634
+ ],
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ],
+ [
+ 64.4953583602018,
+ 44.70127616759634
+ ],
+ [
+ 64.72504372716915,
+ 44.70127616759634
+ ],
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ],
+ [
+ 64.72504372716915,
+ 44.70127616759634
+ ],
+ [
+ 64.83988641065284,
+ 44.89592390252479
+ ],
+ [
+ 64.61020104368548,
+ 44.89592390252479
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ],
+ [
+ 64.83988641065284,
+ 45.2852193723817
+ ],
+ [
+ 64.72504372716915,
+ 45.47986710731015
+ ],
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ],
+ [
+ 64.72504372716915,
+ 45.47986710731015
+ ],
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ],
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ],
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ],
+ [
+ 64.38051567671812,
+ 45.2852193723817
+ ],
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ],
+ [
+ 64.38051567671812,
+ 45.2852193723817
+ ],
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ],
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ],
+ [
+ 64.4953583602018,
+ 45.090571637453245
+ ],
+ [
+ 64.72504372716915,
+ 45.090571637453245
+ ],
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ],
+ [
+ 64.72504372716915,
+ 45.090571637453245
+ ],
+ [
+ 64.83988641065284,
+ 45.2852193723817
+ ],
+ [
+ 64.61020104368548,
+ 45.2852193723817
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ],
+ [
+ 64.83988641065284,
+ 45.6745148422386
+ ],
+ [
+ 64.72504372716915,
+ 45.86916257716705
+ ],
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ],
+ [
+ 64.72504372716915,
+ 45.86916257716705
+ ],
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ],
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ],
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ],
+ [
+ 64.38051567671812,
+ 45.6745148422386
+ ],
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ],
+ [
+ 64.38051567671812,
+ 45.6745148422386
+ ],
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ],
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ],
+ [
+ 64.4953583602018,
+ 45.47986710731015
+ ],
+ [
+ 64.72504372716915,
+ 45.47986710731015
+ ],
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ],
+ [
+ 64.72504372716915,
+ 45.47986710731015
+ ],
+ [
+ 64.83988641065284,
+ 45.6745148422386
+ ],
+ [
+ 64.61020104368548,
+ 45.6745148422386
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ],
+ [
+ 64.83988641065284,
+ 46.063810312095505
+ ],
+ [
+ 64.72504372716915,
+ 46.25845804702396
+ ],
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ],
+ [
+ 64.72504372716915,
+ 46.25845804702396
+ ],
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ],
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ],
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ],
+ [
+ 64.38051567671812,
+ 46.063810312095505
+ ],
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ],
+ [
+ 64.38051567671812,
+ 46.063810312095505
+ ],
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ],
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ],
+ [
+ 64.4953583602018,
+ 45.86916257716705
+ ],
+ [
+ 64.72504372716915,
+ 45.86916257716705
+ ],
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ],
+ [
+ 64.72504372716915,
+ 45.86916257716705
+ ],
+ [
+ 64.83988641065284,
+ 46.063810312095505
+ ],
+ [
+ 64.61020104368548,
+ 46.063810312095505
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ],
+ [
+ 64.83988641065284,
+ 46.45310578195241
+ ],
+ [
+ 64.72504372716915,
+ 46.64775351688086
+ ],
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ],
+ [
+ 64.72504372716915,
+ 46.64775351688086
+ ],
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ],
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ],
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ],
+ [
+ 64.38051567671812,
+ 46.45310578195241
+ ],
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ],
+ [
+ 64.38051567671812,
+ 46.45310578195241
+ ],
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ],
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ],
+ [
+ 64.4953583602018,
+ 46.25845804702396
+ ],
+ [
+ 64.72504372716915,
+ 46.25845804702396
+ ],
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ],
+ [
+ 64.72504372716915,
+ 46.25845804702396
+ ],
+ [
+ 64.83988641065284,
+ 46.45310578195241
+ ],
+ [
+ 64.61020104368548,
+ 46.45310578195241
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ],
+ [
+ 64.83988641065284,
+ 46.842401251809314
+ ],
+ [
+ 64.72504372716915,
+ 47.037048986737766
+ ],
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ],
+ [
+ 64.72504372716915,
+ 47.037048986737766
+ ],
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ],
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ],
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ],
+ [
+ 64.38051567671812,
+ 46.842401251809314
+ ],
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ],
+ [
+ 64.38051567671812,
+ 46.842401251809314
+ ],
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ],
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ],
+ [
+ 64.4953583602018,
+ 46.64775351688086
+ ],
+ [
+ 64.72504372716915,
+ 46.64775351688086
+ ],
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ],
+ [
+ 64.72504372716915,
+ 46.64775351688086
+ ],
+ [
+ 64.83988641065284,
+ 46.842401251809314
+ ],
+ [
+ 64.61020104368548,
+ 46.842401251809314
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ],
+ [
+ 64.83988641065284,
+ 47.23169672166622
+ ],
+ [
+ 64.72504372716915,
+ 47.42634445659467
+ ],
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ],
+ [
+ 64.72504372716915,
+ 47.42634445659467
+ ],
+ [
+ 64.4953583602018,
+ 47.42634445659467
+ ],
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ],
+ [
+ 64.4953583602018,
+ 47.42634445659467
+ ],
+ [
+ 64.38051567671812,
+ 47.23169672166622
+ ],
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ],
+ [
+ 64.38051567671812,
+ 47.23169672166622
+ ],
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ],
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ],
+ [
+ 64.4953583602018,
+ 47.037048986737766
+ ],
+ [
+ 64.72504372716915,
+ 47.037048986737766
+ ],
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ],
+ [
+ 64.72504372716915,
+ 47.037048986737766
+ ],
+ [
+ 64.83988641065284,
+ 47.23169672166622
+ ],
+ [
+ 64.61020104368548,
+ 47.23169672166622
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ],
+ [
+ 64.83988641065284,
+ 47.620992191523136
+ ],
+ [
+ 64.72504372716915,
+ 47.81563992645159
+ ],
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ],
+ [
+ 64.72504372716915,
+ 47.81563992645159
+ ],
+ [
+ 64.4953583602018,
+ 47.81563992645159
+ ],
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ],
+ [
+ 64.4953583602018,
+ 47.81563992645159
+ ],
+ [
+ 64.38051567671812,
+ 47.620992191523136
+ ],
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ],
+ [
+ 64.38051567671812,
+ 47.620992191523136
+ ],
+ [
+ 64.4953583602018,
+ 47.426344456594684
+ ],
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ],
+ [
+ 64.4953583602018,
+ 47.426344456594684
+ ],
+ [
+ 64.72504372716915,
+ 47.426344456594684
+ ],
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ],
+ [
+ 64.72504372716915,
+ 47.426344456594684
+ ],
+ [
+ 64.83988641065284,
+ 47.620992191523136
+ ],
+ [
+ 64.61020104368548,
+ 47.620992191523136
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ],
+ [
+ 65.18441446110387,
+ 12.0004566996162
+ ],
+ [
+ 65.06957177762018,
+ 12.195104434544653
+ ],
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ],
+ [
+ 65.06957177762018,
+ 12.195104434544653
+ ],
+ [
+ 64.83988641065284,
+ 12.195104434544653
+ ],
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ],
+ [
+ 64.83988641065284,
+ 12.195104434544653
+ ],
+ [
+ 64.72504372716915,
+ 12.0004566996162
+ ],
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ],
+ [
+ 64.72504372716915,
+ 12.0004566996162
+ ],
+ [
+ 64.83988641065284,
+ 11.805808964687746
+ ],
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ],
+ [
+ 64.83988641065284,
+ 11.805808964687746
+ ],
+ [
+ 65.06957177762018,
+ 11.805808964687746
+ ],
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ],
+ [
+ 65.06957177762018,
+ 11.805808964687746
+ ],
+ [
+ 65.18441446110387,
+ 12.0004566996162
+ ],
+ [
+ 64.95472909413651,
+ 12.0004566996162
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ],
+ [
+ 65.18441446110387,
+ 12.389752169473105
+ ],
+ [
+ 65.06957177762018,
+ 12.58439990440156
+ ],
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ],
+ [
+ 65.06957177762018,
+ 12.58439990440156
+ ],
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ],
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ],
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ],
+ [
+ 64.72504372716915,
+ 12.389752169473105
+ ],
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ],
+ [
+ 64.72504372716915,
+ 12.389752169473105
+ ],
+ [
+ 64.83988641065284,
+ 12.195104434544652
+ ],
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ],
+ [
+ 64.83988641065284,
+ 12.195104434544652
+ ],
+ [
+ 65.06957177762018,
+ 12.195104434544652
+ ],
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ],
+ [
+ 65.06957177762018,
+ 12.195104434544652
+ ],
+ [
+ 65.18441446110387,
+ 12.389752169473105
+ ],
+ [
+ 64.95472909413651,
+ 12.389752169473105
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ],
+ [
+ 65.18441446110387,
+ 12.779047639330013
+ ],
+ [
+ 65.06957177762018,
+ 12.973695374258467
+ ],
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ],
+ [
+ 65.06957177762018,
+ 12.973695374258467
+ ],
+ [
+ 64.83988641065284,
+ 12.973695374258467
+ ],
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ],
+ [
+ 64.83988641065284,
+ 12.973695374258467
+ ],
+ [
+ 64.72504372716915,
+ 12.779047639330013
+ ],
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ],
+ [
+ 64.72504372716915,
+ 12.779047639330013
+ ],
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ],
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ],
+ [
+ 64.83988641065284,
+ 12.58439990440156
+ ],
+ [
+ 65.06957177762018,
+ 12.58439990440156
+ ],
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ],
+ [
+ 65.06957177762018,
+ 12.58439990440156
+ ],
+ [
+ 65.18441446110387,
+ 12.779047639330013
+ ],
+ [
+ 64.95472909413651,
+ 12.779047639330013
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ],
+ [
+ 65.18441446110387,
+ 13.16834310918692
+ ],
+ [
+ 65.06957177762018,
+ 13.362990844115373
+ ],
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ],
+ [
+ 65.06957177762018,
+ 13.362990844115373
+ ],
+ [
+ 64.83988641065284,
+ 13.362990844115373
+ ],
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ],
+ [
+ 64.83988641065284,
+ 13.362990844115373
+ ],
+ [
+ 64.72504372716915,
+ 13.16834310918692
+ ],
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ],
+ [
+ 64.72504372716915,
+ 13.16834310918692
+ ],
+ [
+ 64.83988641065284,
+ 12.973695374258465
+ ],
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ],
+ [
+ 64.83988641065284,
+ 12.973695374258465
+ ],
+ [
+ 65.06957177762018,
+ 12.973695374258465
+ ],
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ],
+ [
+ 65.06957177762018,
+ 12.973695374258465
+ ],
+ [
+ 65.18441446110387,
+ 13.16834310918692
+ ],
+ [
+ 64.95472909413651,
+ 13.16834310918692
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ],
+ [
+ 65.18441446110387,
+ 13.557638579043825
+ ],
+ [
+ 65.06957177762018,
+ 13.752286313972279
+ ],
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ],
+ [
+ 65.06957177762018,
+ 13.752286313972279
+ ],
+ [
+ 64.83988641065284,
+ 13.752286313972279
+ ],
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ],
+ [
+ 64.83988641065284,
+ 13.752286313972279
+ ],
+ [
+ 64.72504372716915,
+ 13.557638579043825
+ ],
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ],
+ [
+ 64.72504372716915,
+ 13.557638579043825
+ ],
+ [
+ 64.83988641065284,
+ 13.362990844115371
+ ],
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ],
+ [
+ 64.83988641065284,
+ 13.362990844115371
+ ],
+ [
+ 65.06957177762018,
+ 13.362990844115371
+ ],
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ],
+ [
+ 65.06957177762018,
+ 13.362990844115371
+ ],
+ [
+ 65.18441446110387,
+ 13.557638579043825
+ ],
+ [
+ 64.95472909413651,
+ 13.557638579043825
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ],
+ [
+ 65.18441446110387,
+ 13.946934048900731
+ ],
+ [
+ 65.06957177762018,
+ 14.141581783829185
+ ],
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ],
+ [
+ 65.06957177762018,
+ 14.141581783829185
+ ],
+ [
+ 64.83988641065284,
+ 14.141581783829185
+ ],
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ],
+ [
+ 64.83988641065284,
+ 14.141581783829185
+ ],
+ [
+ 64.72504372716915,
+ 13.946934048900731
+ ],
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ],
+ [
+ 64.72504372716915,
+ 13.946934048900731
+ ],
+ [
+ 64.83988641065284,
+ 13.752286313972277
+ ],
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ],
+ [
+ 64.83988641065284,
+ 13.752286313972277
+ ],
+ [
+ 65.06957177762018,
+ 13.752286313972277
+ ],
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ],
+ [
+ 65.06957177762018,
+ 13.752286313972277
+ ],
+ [
+ 65.18441446110387,
+ 13.946934048900731
+ ],
+ [
+ 64.95472909413651,
+ 13.946934048900731
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ],
+ [
+ 65.18441446110387,
+ 14.336229518757637
+ ],
+ [
+ 65.06957177762018,
+ 14.530877253686091
+ ],
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ],
+ [
+ 65.06957177762018,
+ 14.530877253686091
+ ],
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ],
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ],
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ],
+ [
+ 64.72504372716915,
+ 14.336229518757637
+ ],
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ],
+ [
+ 64.72504372716915,
+ 14.336229518757637
+ ],
+ [
+ 64.83988641065284,
+ 14.141581783829183
+ ],
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ],
+ [
+ 64.83988641065284,
+ 14.141581783829183
+ ],
+ [
+ 65.06957177762018,
+ 14.141581783829183
+ ],
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ],
+ [
+ 65.06957177762018,
+ 14.141581783829183
+ ],
+ [
+ 65.18441446110387,
+ 14.336229518757637
+ ],
+ [
+ 64.95472909413651,
+ 14.336229518757637
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ],
+ [
+ 65.18441446110387,
+ 14.725524988614545
+ ],
+ [
+ 65.06957177762018,
+ 14.920172723542999
+ ],
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ],
+ [
+ 65.06957177762018,
+ 14.920172723542999
+ ],
+ [
+ 64.83988641065284,
+ 14.920172723542999
+ ],
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ],
+ [
+ 64.83988641065284,
+ 14.920172723542999
+ ],
+ [
+ 64.72504372716915,
+ 14.725524988614545
+ ],
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ],
+ [
+ 64.72504372716915,
+ 14.725524988614545
+ ],
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ],
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ],
+ [
+ 64.83988641065284,
+ 14.530877253686091
+ ],
+ [
+ 65.06957177762018,
+ 14.530877253686091
+ ],
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ],
+ [
+ 65.06957177762018,
+ 14.530877253686091
+ ],
+ [
+ 65.18441446110387,
+ 14.725524988614545
+ ],
+ [
+ 64.95472909413651,
+ 14.725524988614545
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ],
+ [
+ 65.18441446110387,
+ 15.114820458471451
+ ],
+ [
+ 65.06957177762018,
+ 15.309468193399905
+ ],
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ],
+ [
+ 65.06957177762018,
+ 15.309468193399905
+ ],
+ [
+ 64.83988641065284,
+ 15.309468193399905
+ ],
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ],
+ [
+ 64.83988641065284,
+ 15.309468193399905
+ ],
+ [
+ 64.72504372716915,
+ 15.114820458471451
+ ],
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ],
+ [
+ 64.72504372716915,
+ 15.114820458471451
+ ],
+ [
+ 64.83988641065284,
+ 14.920172723542997
+ ],
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ],
+ [
+ 64.83988641065284,
+ 14.920172723542997
+ ],
+ [
+ 65.06957177762018,
+ 14.920172723542997
+ ],
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ],
+ [
+ 65.06957177762018,
+ 14.920172723542997
+ ],
+ [
+ 65.18441446110387,
+ 15.114820458471451
+ ],
+ [
+ 64.95472909413651,
+ 15.114820458471451
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ],
+ [
+ 65.18441446110387,
+ 15.504115928328357
+ ],
+ [
+ 65.06957177762018,
+ 15.69876366325681
+ ],
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ],
+ [
+ 65.06957177762018,
+ 15.69876366325681
+ ],
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ],
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ],
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ],
+ [
+ 64.72504372716915,
+ 15.504115928328357
+ ],
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ],
+ [
+ 64.72504372716915,
+ 15.504115928328357
+ ],
+ [
+ 64.83988641065284,
+ 15.309468193399903
+ ],
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ],
+ [
+ 64.83988641065284,
+ 15.309468193399903
+ ],
+ [
+ 65.06957177762018,
+ 15.309468193399903
+ ],
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ],
+ [
+ 65.06957177762018,
+ 15.309468193399903
+ ],
+ [
+ 65.18441446110387,
+ 15.504115928328357
+ ],
+ [
+ 64.95472909413651,
+ 15.504115928328357
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ],
+ [
+ 65.18441446110387,
+ 15.893411398185265
+ ],
+ [
+ 65.06957177762018,
+ 16.088059133113717
+ ],
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ],
+ [
+ 65.06957177762018,
+ 16.088059133113717
+ ],
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ],
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ],
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ],
+ [
+ 64.72504372716915,
+ 15.893411398185265
+ ],
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ],
+ [
+ 64.72504372716915,
+ 15.893411398185265
+ ],
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ],
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ],
+ [
+ 64.83988641065284,
+ 15.69876366325681
+ ],
+ [
+ 65.06957177762018,
+ 15.69876366325681
+ ],
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ],
+ [
+ 65.06957177762018,
+ 15.69876366325681
+ ],
+ [
+ 65.18441446110387,
+ 15.893411398185265
+ ],
+ [
+ 64.95472909413651,
+ 15.893411398185265
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ],
+ [
+ 65.18441446110387,
+ 16.28270686804217
+ ],
+ [
+ 65.06957177762018,
+ 16.47735460297062
+ ],
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ],
+ [
+ 65.06957177762018,
+ 16.47735460297062
+ ],
+ [
+ 64.83988641065284,
+ 16.47735460297062
+ ],
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ],
+ [
+ 64.83988641065284,
+ 16.47735460297062
+ ],
+ [
+ 64.72504372716915,
+ 16.28270686804217
+ ],
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ],
+ [
+ 64.72504372716915,
+ 16.28270686804217
+ ],
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ],
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ],
+ [
+ 64.83988641065284,
+ 16.088059133113717
+ ],
+ [
+ 65.06957177762018,
+ 16.088059133113717
+ ],
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ],
+ [
+ 65.06957177762018,
+ 16.088059133113717
+ ],
+ [
+ 65.18441446110387,
+ 16.28270686804217
+ ],
+ [
+ 64.95472909413651,
+ 16.28270686804217
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ],
+ [
+ 65.18441446110387,
+ 16.672002337899077
+ ],
+ [
+ 65.06957177762018,
+ 16.86665007282753
+ ],
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ],
+ [
+ 65.06957177762018,
+ 16.86665007282753
+ ],
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ],
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ],
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ],
+ [
+ 64.72504372716915,
+ 16.672002337899077
+ ],
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ],
+ [
+ 64.72504372716915,
+ 16.672002337899077
+ ],
+ [
+ 64.83988641065284,
+ 16.477354602970625
+ ],
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ],
+ [
+ 64.83988641065284,
+ 16.477354602970625
+ ],
+ [
+ 65.06957177762018,
+ 16.477354602970625
+ ],
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ],
+ [
+ 65.06957177762018,
+ 16.477354602970625
+ ],
+ [
+ 65.18441446110387,
+ 16.672002337899077
+ ],
+ [
+ 64.95472909413651,
+ 16.672002337899077
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ],
+ [
+ 65.18441446110387,
+ 17.06129780775598
+ ],
+ [
+ 65.06957177762018,
+ 17.255945542684433
+ ],
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ],
+ [
+ 65.06957177762018,
+ 17.255945542684433
+ ],
+ [
+ 64.83988641065284,
+ 17.255945542684433
+ ],
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ],
+ [
+ 64.83988641065284,
+ 17.255945542684433
+ ],
+ [
+ 64.72504372716915,
+ 17.06129780775598
+ ],
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ],
+ [
+ 64.72504372716915,
+ 17.06129780775598
+ ],
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ],
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ],
+ [
+ 64.83988641065284,
+ 16.86665007282753
+ ],
+ [
+ 65.06957177762018,
+ 16.86665007282753
+ ],
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ],
+ [
+ 65.06957177762018,
+ 16.86665007282753
+ ],
+ [
+ 65.18441446110387,
+ 17.06129780775598
+ ],
+ [
+ 64.95472909413651,
+ 17.06129780775598
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ],
+ [
+ 65.18441446110387,
+ 17.45059327761289
+ ],
+ [
+ 65.06957177762018,
+ 17.64524101254134
+ ],
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ],
+ [
+ 65.06957177762018,
+ 17.64524101254134
+ ],
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ],
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ],
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ],
+ [
+ 64.72504372716915,
+ 17.45059327761289
+ ],
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ],
+ [
+ 64.72504372716915,
+ 17.45059327761289
+ ],
+ [
+ 64.83988641065284,
+ 17.255945542684437
+ ],
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ],
+ [
+ 64.83988641065284,
+ 17.255945542684437
+ ],
+ [
+ 65.06957177762018,
+ 17.255945542684437
+ ],
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ],
+ [
+ 65.06957177762018,
+ 17.255945542684437
+ ],
+ [
+ 65.18441446110387,
+ 17.45059327761289
+ ],
+ [
+ 64.95472909413651,
+ 17.45059327761289
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ],
+ [
+ 65.18441446110387,
+ 17.839888747469793
+ ],
+ [
+ 65.06957177762018,
+ 18.034536482398245
+ ],
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ],
+ [
+ 65.06957177762018,
+ 18.034536482398245
+ ],
+ [
+ 64.83988641065284,
+ 18.034536482398245
+ ],
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ],
+ [
+ 64.83988641065284,
+ 18.034536482398245
+ ],
+ [
+ 64.72504372716915,
+ 17.839888747469793
+ ],
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ],
+ [
+ 64.72504372716915,
+ 17.839888747469793
+ ],
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ],
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ],
+ [
+ 64.83988641065284,
+ 17.64524101254134
+ ],
+ [
+ 65.06957177762018,
+ 17.64524101254134
+ ],
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ],
+ [
+ 65.06957177762018,
+ 17.64524101254134
+ ],
+ [
+ 65.18441446110387,
+ 17.839888747469793
+ ],
+ [
+ 64.95472909413651,
+ 17.839888747469793
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ],
+ [
+ 65.18441446110387,
+ 18.2291842173267
+ ],
+ [
+ 65.06957177762018,
+ 18.423831952255153
+ ],
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ],
+ [
+ 65.06957177762018,
+ 18.423831952255153
+ ],
+ [
+ 64.83988641065284,
+ 18.423831952255153
+ ],
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ],
+ [
+ 64.83988641065284,
+ 18.423831952255153
+ ],
+ [
+ 64.72504372716915,
+ 18.2291842173267
+ ],
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ],
+ [
+ 64.72504372716915,
+ 18.2291842173267
+ ],
+ [
+ 64.83988641065284,
+ 18.03453648239825
+ ],
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ],
+ [
+ 64.83988641065284,
+ 18.03453648239825
+ ],
+ [
+ 65.06957177762018,
+ 18.03453648239825
+ ],
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ],
+ [
+ 65.06957177762018,
+ 18.03453648239825
+ ],
+ [
+ 65.18441446110387,
+ 18.2291842173267
+ ],
+ [
+ 64.95472909413651,
+ 18.2291842173267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ],
+ [
+ 65.18441446110387,
+ 18.61847968718361
+ ],
+ [
+ 65.06957177762018,
+ 18.81312742211206
+ ],
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ],
+ [
+ 65.06957177762018,
+ 18.81312742211206
+ ],
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ],
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ],
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ],
+ [
+ 64.72504372716915,
+ 18.61847968718361
+ ],
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ],
+ [
+ 64.72504372716915,
+ 18.61847968718361
+ ],
+ [
+ 64.83988641065284,
+ 18.423831952255156
+ ],
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ],
+ [
+ 64.83988641065284,
+ 18.423831952255156
+ ],
+ [
+ 65.06957177762018,
+ 18.423831952255156
+ ],
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ],
+ [
+ 65.06957177762018,
+ 18.423831952255156
+ ],
+ [
+ 65.18441446110387,
+ 18.61847968718361
+ ],
+ [
+ 64.95472909413651,
+ 18.61847968718361
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ],
+ [
+ 65.18441446110387,
+ 19.007775157040513
+ ],
+ [
+ 65.06957177762018,
+ 19.202422891968965
+ ],
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ],
+ [
+ 65.06957177762018,
+ 19.202422891968965
+ ],
+ [
+ 64.83988641065284,
+ 19.202422891968965
+ ],
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ],
+ [
+ 64.83988641065284,
+ 19.202422891968965
+ ],
+ [
+ 64.72504372716915,
+ 19.007775157040513
+ ],
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ],
+ [
+ 64.72504372716915,
+ 19.007775157040513
+ ],
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ],
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ],
+ [
+ 64.83988641065284,
+ 18.81312742211206
+ ],
+ [
+ 65.06957177762018,
+ 18.81312742211206
+ ],
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ],
+ [
+ 65.06957177762018,
+ 18.81312742211206
+ ],
+ [
+ 65.18441446110387,
+ 19.007775157040513
+ ],
+ [
+ 64.95472909413651,
+ 19.007775157040513
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ],
+ [
+ 65.18441446110387,
+ 19.39707062689742
+ ],
+ [
+ 65.06957177762018,
+ 19.591718361825873
+ ],
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ],
+ [
+ 65.06957177762018,
+ 19.591718361825873
+ ],
+ [
+ 64.83988641065284,
+ 19.591718361825873
+ ],
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ],
+ [
+ 64.83988641065284,
+ 19.591718361825873
+ ],
+ [
+ 64.72504372716915,
+ 19.39707062689742
+ ],
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ],
+ [
+ 64.72504372716915,
+ 19.39707062689742
+ ],
+ [
+ 64.83988641065284,
+ 19.20242289196897
+ ],
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ],
+ [
+ 64.83988641065284,
+ 19.20242289196897
+ ],
+ [
+ 65.06957177762018,
+ 19.20242289196897
+ ],
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ],
+ [
+ 65.06957177762018,
+ 19.20242289196897
+ ],
+ [
+ 65.18441446110387,
+ 19.39707062689742
+ ],
+ [
+ 64.95472909413651,
+ 19.39707062689742
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ],
+ [
+ 65.18441446110387,
+ 19.78636609675433
+ ],
+ [
+ 65.06957177762018,
+ 19.98101383168278
+ ],
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ],
+ [
+ 65.06957177762018,
+ 19.98101383168278
+ ],
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ],
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ],
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ],
+ [
+ 64.72504372716915,
+ 19.78636609675433
+ ],
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ],
+ [
+ 64.72504372716915,
+ 19.78636609675433
+ ],
+ [
+ 64.83988641065284,
+ 19.591718361825876
+ ],
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ],
+ [
+ 64.83988641065284,
+ 19.591718361825876
+ ],
+ [
+ 65.06957177762018,
+ 19.591718361825876
+ ],
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ],
+ [
+ 65.06957177762018,
+ 19.591718361825876
+ ],
+ [
+ 65.18441446110387,
+ 19.78636609675433
+ ],
+ [
+ 64.95472909413651,
+ 19.78636609675433
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ],
+ [
+ 65.18441446110387,
+ 20.175661566611232
+ ],
+ [
+ 65.06957177762018,
+ 20.370309301539685
+ ],
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ],
+ [
+ 65.06957177762018,
+ 20.370309301539685
+ ],
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ],
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ],
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ],
+ [
+ 64.72504372716915,
+ 20.175661566611232
+ ],
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ],
+ [
+ 64.72504372716915,
+ 20.175661566611232
+ ],
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ],
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ],
+ [
+ 64.83988641065284,
+ 19.98101383168278
+ ],
+ [
+ 65.06957177762018,
+ 19.98101383168278
+ ],
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ],
+ [
+ 65.06957177762018,
+ 19.98101383168278
+ ],
+ [
+ 65.18441446110387,
+ 20.175661566611232
+ ],
+ [
+ 64.95472909413651,
+ 20.175661566611232
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ],
+ [
+ 65.18441446110387,
+ 20.564957036468137
+ ],
+ [
+ 65.06957177762018,
+ 20.75960477139659
+ ],
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ],
+ [
+ 65.06957177762018,
+ 20.75960477139659
+ ],
+ [
+ 64.83988641065284,
+ 20.75960477139659
+ ],
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ],
+ [
+ 64.83988641065284,
+ 20.75960477139659
+ ],
+ [
+ 64.72504372716915,
+ 20.564957036468137
+ ],
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ],
+ [
+ 64.72504372716915,
+ 20.564957036468137
+ ],
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ],
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ],
+ [
+ 64.83988641065284,
+ 20.370309301539685
+ ],
+ [
+ 65.06957177762018,
+ 20.370309301539685
+ ],
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ],
+ [
+ 65.06957177762018,
+ 20.370309301539685
+ ],
+ [
+ 65.18441446110387,
+ 20.564957036468137
+ ],
+ [
+ 64.95472909413651,
+ 20.564957036468137
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ],
+ [
+ 65.18441446110387,
+ 20.954252506325044
+ ],
+ [
+ 65.06957177762018,
+ 21.148900241253497
+ ],
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ],
+ [
+ 65.06957177762018,
+ 21.148900241253497
+ ],
+ [
+ 64.83988641065284,
+ 21.148900241253497
+ ],
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ],
+ [
+ 64.83988641065284,
+ 21.148900241253497
+ ],
+ [
+ 64.72504372716915,
+ 20.954252506325044
+ ],
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ],
+ [
+ 64.72504372716915,
+ 20.954252506325044
+ ],
+ [
+ 64.83988641065284,
+ 20.759604771396592
+ ],
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ],
+ [
+ 64.83988641065284,
+ 20.759604771396592
+ ],
+ [
+ 65.06957177762018,
+ 20.759604771396592
+ ],
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ],
+ [
+ 65.06957177762018,
+ 20.759604771396592
+ ],
+ [
+ 65.18441446110387,
+ 20.954252506325044
+ ],
+ [
+ 64.95472909413651,
+ 20.954252506325044
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ],
+ [
+ 65.18441446110387,
+ 21.343547976181952
+ ],
+ [
+ 65.06957177762018,
+ 21.538195711110404
+ ],
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ],
+ [
+ 65.06957177762018,
+ 21.538195711110404
+ ],
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ],
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ],
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ],
+ [
+ 64.72504372716915,
+ 21.343547976181952
+ ],
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ],
+ [
+ 64.72504372716915,
+ 21.343547976181952
+ ],
+ [
+ 64.83988641065284,
+ 21.1489002412535
+ ],
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ],
+ [
+ 64.83988641065284,
+ 21.1489002412535
+ ],
+ [
+ 65.06957177762018,
+ 21.1489002412535
+ ],
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ],
+ [
+ 65.06957177762018,
+ 21.1489002412535
+ ],
+ [
+ 65.18441446110387,
+ 21.343547976181952
+ ],
+ [
+ 64.95472909413651,
+ 21.343547976181952
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ],
+ [
+ 65.18441446110387,
+ 21.732843446038856
+ ],
+ [
+ 65.06957177762018,
+ 21.92749118096731
+ ],
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ],
+ [
+ 65.06957177762018,
+ 21.92749118096731
+ ],
+ [
+ 64.83988641065284,
+ 21.92749118096731
+ ],
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ],
+ [
+ 64.83988641065284,
+ 21.92749118096731
+ ],
+ [
+ 64.72504372716915,
+ 21.732843446038856
+ ],
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ],
+ [
+ 64.72504372716915,
+ 21.732843446038856
+ ],
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ],
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ],
+ [
+ 64.83988641065284,
+ 21.538195711110404
+ ],
+ [
+ 65.06957177762018,
+ 21.538195711110404
+ ],
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ],
+ [
+ 65.06957177762018,
+ 21.538195711110404
+ ],
+ [
+ 65.18441446110387,
+ 21.732843446038856
+ ],
+ [
+ 64.95472909413651,
+ 21.732843446038856
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ],
+ [
+ 65.18441446110387,
+ 22.122138915895764
+ ],
+ [
+ 65.06957177762018,
+ 22.316786650824216
+ ],
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ],
+ [
+ 65.06957177762018,
+ 22.316786650824216
+ ],
+ [
+ 64.83988641065284,
+ 22.316786650824216
+ ],
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ],
+ [
+ 64.83988641065284,
+ 22.316786650824216
+ ],
+ [
+ 64.72504372716915,
+ 22.122138915895764
+ ],
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ],
+ [
+ 64.72504372716915,
+ 22.122138915895764
+ ],
+ [
+ 64.83988641065284,
+ 21.927491180967312
+ ],
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ],
+ [
+ 64.83988641065284,
+ 21.927491180967312
+ ],
+ [
+ 65.06957177762018,
+ 21.927491180967312
+ ],
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ],
+ [
+ 65.06957177762018,
+ 21.927491180967312
+ ],
+ [
+ 65.18441446110387,
+ 22.122138915895764
+ ],
+ [
+ 64.95472909413651,
+ 22.122138915895764
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ],
+ [
+ 65.18441446110387,
+ 22.511434385752672
+ ],
+ [
+ 65.06957177762018,
+ 22.706082120681124
+ ],
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ],
+ [
+ 65.06957177762018,
+ 22.706082120681124
+ ],
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ],
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ],
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ],
+ [
+ 64.72504372716915,
+ 22.511434385752672
+ ],
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ],
+ [
+ 64.72504372716915,
+ 22.511434385752672
+ ],
+ [
+ 64.83988641065284,
+ 22.31678665082422
+ ],
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ],
+ [
+ 64.83988641065284,
+ 22.31678665082422
+ ],
+ [
+ 65.06957177762018,
+ 22.31678665082422
+ ],
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ],
+ [
+ 65.06957177762018,
+ 22.31678665082422
+ ],
+ [
+ 65.18441446110387,
+ 22.511434385752672
+ ],
+ [
+ 64.95472909413651,
+ 22.511434385752672
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ],
+ [
+ 65.18441446110387,
+ 22.900729855609576
+ ],
+ [
+ 65.06957177762018,
+ 23.09537759053803
+ ],
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ],
+ [
+ 65.06957177762018,
+ 23.09537759053803
+ ],
+ [
+ 64.83988641065284,
+ 23.09537759053803
+ ],
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ],
+ [
+ 64.83988641065284,
+ 23.09537759053803
+ ],
+ [
+ 64.72504372716915,
+ 22.900729855609576
+ ],
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ],
+ [
+ 64.72504372716915,
+ 22.900729855609576
+ ],
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ],
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ],
+ [
+ 64.83988641065284,
+ 22.706082120681124
+ ],
+ [
+ 65.06957177762018,
+ 22.706082120681124
+ ],
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ],
+ [
+ 65.06957177762018,
+ 22.706082120681124
+ ],
+ [
+ 65.18441446110387,
+ 22.900729855609576
+ ],
+ [
+ 64.95472909413651,
+ 22.900729855609576
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ],
+ [
+ 65.18441446110387,
+ 23.290025325466484
+ ],
+ [
+ 65.06957177762018,
+ 23.484673060394936
+ ],
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ],
+ [
+ 65.06957177762018,
+ 23.484673060394936
+ ],
+ [
+ 64.83988641065284,
+ 23.484673060394936
+ ],
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ],
+ [
+ 64.83988641065284,
+ 23.484673060394936
+ ],
+ [
+ 64.72504372716915,
+ 23.290025325466484
+ ],
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ],
+ [
+ 64.72504372716915,
+ 23.290025325466484
+ ],
+ [
+ 64.83988641065284,
+ 23.095377590538032
+ ],
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ],
+ [
+ 64.83988641065284,
+ 23.095377590538032
+ ],
+ [
+ 65.06957177762018,
+ 23.095377590538032
+ ],
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ],
+ [
+ 65.06957177762018,
+ 23.095377590538032
+ ],
+ [
+ 65.18441446110387,
+ 23.290025325466484
+ ],
+ [
+ 64.95472909413651,
+ 23.290025325466484
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ],
+ [
+ 65.18441446110387,
+ 23.67932079532339
+ ],
+ [
+ 65.06957177762018,
+ 23.873968530251844
+ ],
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ],
+ [
+ 65.06957177762018,
+ 23.873968530251844
+ ],
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ],
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ],
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ],
+ [
+ 64.72504372716915,
+ 23.67932079532339
+ ],
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ],
+ [
+ 64.72504372716915,
+ 23.67932079532339
+ ],
+ [
+ 64.83988641065284,
+ 23.48467306039494
+ ],
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ],
+ [
+ 64.83988641065284,
+ 23.48467306039494
+ ],
+ [
+ 65.06957177762018,
+ 23.48467306039494
+ ],
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ],
+ [
+ 65.06957177762018,
+ 23.48467306039494
+ ],
+ [
+ 65.18441446110387,
+ 23.67932079532339
+ ],
+ [
+ 64.95472909413651,
+ 23.67932079532339
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ],
+ [
+ 65.18441446110387,
+ 24.068616265180296
+ ],
+ [
+ 65.06957177762018,
+ 24.263264000108748
+ ],
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ],
+ [
+ 65.06957177762018,
+ 24.263264000108748
+ ],
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ],
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ],
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ],
+ [
+ 64.72504372716915,
+ 24.068616265180296
+ ],
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ],
+ [
+ 64.72504372716915,
+ 24.068616265180296
+ ],
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ],
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ],
+ [
+ 64.83988641065284,
+ 23.873968530251844
+ ],
+ [
+ 65.06957177762018,
+ 23.873968530251844
+ ],
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ],
+ [
+ 65.06957177762018,
+ 23.873968530251844
+ ],
+ [
+ 65.18441446110387,
+ 24.068616265180296
+ ],
+ [
+ 64.95472909413651,
+ 24.068616265180296
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ],
+ [
+ 65.18441446110387,
+ 24.4579117350372
+ ],
+ [
+ 65.06957177762018,
+ 24.652559469965652
+ ],
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ],
+ [
+ 65.06957177762018,
+ 24.652559469965652
+ ],
+ [
+ 64.83988641065284,
+ 24.652559469965652
+ ],
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ],
+ [
+ 64.83988641065284,
+ 24.652559469965652
+ ],
+ [
+ 64.72504372716915,
+ 24.4579117350372
+ ],
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ],
+ [
+ 64.72504372716915,
+ 24.4579117350372
+ ],
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ],
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ],
+ [
+ 64.83988641065284,
+ 24.263264000108748
+ ],
+ [
+ 65.06957177762018,
+ 24.263264000108748
+ ],
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ],
+ [
+ 65.06957177762018,
+ 24.263264000108748
+ ],
+ [
+ 65.18441446110387,
+ 24.4579117350372
+ ],
+ [
+ 64.95472909413651,
+ 24.4579117350372
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ],
+ [
+ 65.18441446110387,
+ 24.847207204894108
+ ],
+ [
+ 65.06957177762018,
+ 25.04185493982256
+ ],
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ],
+ [
+ 65.06957177762018,
+ 25.04185493982256
+ ],
+ [
+ 64.83988641065284,
+ 25.04185493982256
+ ],
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ],
+ [
+ 64.83988641065284,
+ 25.04185493982256
+ ],
+ [
+ 64.72504372716915,
+ 24.847207204894108
+ ],
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ],
+ [
+ 64.72504372716915,
+ 24.847207204894108
+ ],
+ [
+ 64.83988641065284,
+ 24.652559469965656
+ ],
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ],
+ [
+ 64.83988641065284,
+ 24.652559469965656
+ ],
+ [
+ 65.06957177762018,
+ 24.652559469965656
+ ],
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ],
+ [
+ 65.06957177762018,
+ 24.652559469965656
+ ],
+ [
+ 65.18441446110387,
+ 24.847207204894108
+ ],
+ [
+ 64.95472909413651,
+ 24.847207204894108
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ],
+ [
+ 65.18441446110387,
+ 25.236502674751016
+ ],
+ [
+ 65.06957177762018,
+ 25.431150409679468
+ ],
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ],
+ [
+ 65.06957177762018,
+ 25.431150409679468
+ ],
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ],
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ],
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ],
+ [
+ 64.72504372716915,
+ 25.236502674751016
+ ],
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ],
+ [
+ 64.72504372716915,
+ 25.236502674751016
+ ],
+ [
+ 64.83988641065284,
+ 25.041854939822564
+ ],
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ],
+ [
+ 64.83988641065284,
+ 25.041854939822564
+ ],
+ [
+ 65.06957177762018,
+ 25.041854939822564
+ ],
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ],
+ [
+ 65.06957177762018,
+ 25.041854939822564
+ ],
+ [
+ 65.18441446110387,
+ 25.236502674751016
+ ],
+ [
+ 64.95472909413651,
+ 25.236502674751016
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ],
+ [
+ 65.18441446110387,
+ 25.62579814460792
+ ],
+ [
+ 65.06957177762018,
+ 25.820445879536372
+ ],
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ],
+ [
+ 65.06957177762018,
+ 25.820445879536372
+ ],
+ [
+ 64.83988641065284,
+ 25.820445879536372
+ ],
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ],
+ [
+ 64.83988641065284,
+ 25.820445879536372
+ ],
+ [
+ 64.72504372716915,
+ 25.62579814460792
+ ],
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ],
+ [
+ 64.72504372716915,
+ 25.62579814460792
+ ],
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ],
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ],
+ [
+ 64.83988641065284,
+ 25.431150409679468
+ ],
+ [
+ 65.06957177762018,
+ 25.431150409679468
+ ],
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ],
+ [
+ 65.06957177762018,
+ 25.431150409679468
+ ],
+ [
+ 65.18441446110387,
+ 25.62579814460792
+ ],
+ [
+ 64.95472909413651,
+ 25.62579814460792
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ],
+ [
+ 65.18441446110387,
+ 26.015093614464828
+ ],
+ [
+ 65.06957177762018,
+ 26.20974134939328
+ ],
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ],
+ [
+ 65.06957177762018,
+ 26.20974134939328
+ ],
+ [
+ 64.83988641065284,
+ 26.20974134939328
+ ],
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ],
+ [
+ 64.83988641065284,
+ 26.20974134939328
+ ],
+ [
+ 64.72504372716915,
+ 26.015093614464828
+ ],
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ],
+ [
+ 64.72504372716915,
+ 26.015093614464828
+ ],
+ [
+ 64.83988641065284,
+ 25.820445879536376
+ ],
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ],
+ [
+ 64.83988641065284,
+ 25.820445879536376
+ ],
+ [
+ 65.06957177762018,
+ 25.820445879536376
+ ],
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ],
+ [
+ 65.06957177762018,
+ 25.820445879536376
+ ],
+ [
+ 65.18441446110387,
+ 26.015093614464828
+ ],
+ [
+ 64.95472909413651,
+ 26.015093614464828
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ],
+ [
+ 65.18441446110387,
+ 26.404389084321735
+ ],
+ [
+ 65.06957177762018,
+ 26.599036819250188
+ ],
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ],
+ [
+ 65.06957177762018,
+ 26.599036819250188
+ ],
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ],
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ],
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ],
+ [
+ 64.72504372716915,
+ 26.404389084321735
+ ],
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ],
+ [
+ 64.72504372716915,
+ 26.404389084321735
+ ],
+ [
+ 64.83988641065284,
+ 26.209741349393283
+ ],
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ],
+ [
+ 64.83988641065284,
+ 26.209741349393283
+ ],
+ [
+ 65.06957177762018,
+ 26.209741349393283
+ ],
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ],
+ [
+ 65.06957177762018,
+ 26.209741349393283
+ ],
+ [
+ 65.18441446110387,
+ 26.404389084321735
+ ],
+ [
+ 64.95472909413651,
+ 26.404389084321735
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ],
+ [
+ 65.18441446110387,
+ 26.79368455417864
+ ],
+ [
+ 65.06957177762018,
+ 26.988332289107092
+ ],
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ],
+ [
+ 65.06957177762018,
+ 26.988332289107092
+ ],
+ [
+ 64.83988641065284,
+ 26.988332289107092
+ ],
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ],
+ [
+ 64.83988641065284,
+ 26.988332289107092
+ ],
+ [
+ 64.72504372716915,
+ 26.79368455417864
+ ],
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ],
+ [
+ 64.72504372716915,
+ 26.79368455417864
+ ],
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ],
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ],
+ [
+ 64.83988641065284,
+ 26.599036819250188
+ ],
+ [
+ 65.06957177762018,
+ 26.599036819250188
+ ],
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ],
+ [
+ 65.06957177762018,
+ 26.599036819250188
+ ],
+ [
+ 65.18441446110387,
+ 26.79368455417864
+ ],
+ [
+ 64.95472909413651,
+ 26.79368455417864
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ],
+ [
+ 65.18441446110387,
+ 27.182980024035547
+ ],
+ [
+ 65.06957177762018,
+ 27.377627758964
+ ],
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ],
+ [
+ 65.06957177762018,
+ 27.377627758964
+ ],
+ [
+ 64.83988641065284,
+ 27.377627758964
+ ],
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ],
+ [
+ 64.83988641065284,
+ 27.377627758964
+ ],
+ [
+ 64.72504372716915,
+ 27.182980024035547
+ ],
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ],
+ [
+ 64.72504372716915,
+ 27.182980024035547
+ ],
+ [
+ 64.83988641065284,
+ 26.988332289107095
+ ],
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ],
+ [
+ 64.83988641065284,
+ 26.988332289107095
+ ],
+ [
+ 65.06957177762018,
+ 26.988332289107095
+ ],
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ],
+ [
+ 65.06957177762018,
+ 26.988332289107095
+ ],
+ [
+ 65.18441446110387,
+ 27.182980024035547
+ ],
+ [
+ 64.95472909413651,
+ 27.182980024035547
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ],
+ [
+ 65.18441446110387,
+ 27.572275493892455
+ ],
+ [
+ 65.06957177762018,
+ 27.766923228820907
+ ],
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ],
+ [
+ 65.06957177762018,
+ 27.766923228820907
+ ],
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ],
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ],
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ],
+ [
+ 64.72504372716915,
+ 27.572275493892455
+ ],
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ],
+ [
+ 64.72504372716915,
+ 27.572275493892455
+ ],
+ [
+ 64.83988641065284,
+ 27.377627758964003
+ ],
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ],
+ [
+ 64.83988641065284,
+ 27.377627758964003
+ ],
+ [
+ 65.06957177762018,
+ 27.377627758964003
+ ],
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ],
+ [
+ 65.06957177762018,
+ 27.377627758964003
+ ],
+ [
+ 65.18441446110387,
+ 27.572275493892455
+ ],
+ [
+ 64.95472909413651,
+ 27.572275493892455
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ],
+ [
+ 65.18441446110387,
+ 27.96157096374936
+ ],
+ [
+ 65.06957177762018,
+ 28.15621869867781
+ ],
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ],
+ [
+ 65.06957177762018,
+ 28.15621869867781
+ ],
+ [
+ 64.83988641065284,
+ 28.15621869867781
+ ],
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ],
+ [
+ 64.83988641065284,
+ 28.15621869867781
+ ],
+ [
+ 64.72504372716915,
+ 27.96157096374936
+ ],
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ],
+ [
+ 64.72504372716915,
+ 27.96157096374936
+ ],
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ],
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ],
+ [
+ 64.83988641065284,
+ 27.766923228820907
+ ],
+ [
+ 65.06957177762018,
+ 27.766923228820907
+ ],
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ],
+ [
+ 65.06957177762018,
+ 27.766923228820907
+ ],
+ [
+ 65.18441446110387,
+ 27.96157096374936
+ ],
+ [
+ 64.95472909413651,
+ 27.96157096374936
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ],
+ [
+ 65.18441446110387,
+ 28.350866433606267
+ ],
+ [
+ 65.06957177762018,
+ 28.54551416853472
+ ],
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ],
+ [
+ 65.06957177762018,
+ 28.54551416853472
+ ],
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ],
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ],
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ],
+ [
+ 64.72504372716915,
+ 28.350866433606267
+ ],
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ],
+ [
+ 64.72504372716915,
+ 28.350866433606267
+ ],
+ [
+ 64.83988641065284,
+ 28.156218698677815
+ ],
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ],
+ [
+ 64.83988641065284,
+ 28.156218698677815
+ ],
+ [
+ 65.06957177762018,
+ 28.156218698677815
+ ],
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ],
+ [
+ 65.06957177762018,
+ 28.156218698677815
+ ],
+ [
+ 65.18441446110387,
+ 28.350866433606267
+ ],
+ [
+ 64.95472909413651,
+ 28.350866433606267
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.74016190346317
+ ],
+ [
+ 65.18441446110387,
+ 28.74016190346317
+ ],
+ [
+ 65.06957177762018,
+ 28.934809638391624
+ ],
+ [
+ 64.95472909413651,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.74016190346317
+ ],
+ [
+ 65.06957177762018,
+ 28.934809638391624
+ ],
+ [
+ 64.83988641065284,
+ 28.934809638391624
+ ],
+ [
+ 64.95472909413651,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.74016190346317
+ ],
+ [
+ 64.83988641065284,
+ 28.934809638391624
+ ],
+ [
+ 64.72504372716915,
+ 28.74016190346317
+ ],
+ [
+ 64.95472909413651,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.74016190346317
+ ],
+ [
+ 64.72504372716915,
+ 28.74016190346317
+ ],
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ],
+ [
+ 64.95472909413651,
+ 28.74016190346317
+ ]
+ ]
+ ]
+ }
+ },
+ {
+ "type": "Feature",
+ "properties": {},
+ "geometry": {
+ "type": "Polygon",
+ "coordinates": [
+ [
+ [
+ 64.95472909413651,
+ 28.74016190346317
+ ],
+ [
+ 64.83988641065284,
+ 28.54551416853472
+ ],
+ [
+ 65.06957177762018,
+ 28.54551416853472